.support-page {
    background: #f5f7f6;
}

.support-page .main-nav > .nav-item > .nav-link.is-support-active {
    color: var(--green);
}

.support-page .main-nav > .nav-item > .nav-link.is-support-active::after {
    transform: scaleX(1);
}

.support-hero {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    color: var(--white);
    background: #17495a;
}

.support-hero::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(6, 30, 38, 0.74), rgba(6, 30, 38, 0.12) 68%);
}

.support-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 520px;
    flex-direction: column;
    justify-content: center;
    padding-top: 60px;
}

.support-hero-content p,
.support-kicker {
    color: #0e846f;
    font-size: 12px;
    font-weight: 700;
}

.support-hero-content p {
    color: #bfece0;
}

.support-hero-content h1 {
    max-width: 700px;
    margin-top: 0;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.25;
}

.support-hero-content span {
    max-width: 580px;
    margin-top: 20px;
    color: #e3f3ef;
    font-size: 17px;
    line-height: 1.85;
}

.support-overview,
.support-service,
.knowledge-section,
.support-cta {
    padding: 100px 0;
}

.support-overview {
    background: var(--white);
}

.support-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
    align-items: end;
    gap: 80px;
    margin-bottom: 54px;
}

.support-section-heading h2,
.support-service-copy h2,
.knowledge-hero h2,
.support-cta h2 {
    margin-top: 12px;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.35;
}

.support-page .support-section-heading h2,
.support-page .support-quick-promise h2 {
    margin-top: 0;
}

.support-section-heading > p {
    color: #6a7973;
    line-height: 1.85;
}

.support-index {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid #cad7d3;
    border-bottom: 1px solid #cad7d3;
}

.support-index a {
    display: grid;
    min-height: 154px;
    align-content: space-between;
    gap: 20px;
    padding: 24px 22px;
    border-right: 1px solid #cad7d3;
    transition: color 0.2s ease, background 0.2s ease;
}

.support-index a:last-child {
    border-right: 0;
}

.support-index a:hover {
    color: var(--green);
    background: #f1f8f6;
}

.support-index span {
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
}

.support-index strong {
    font-size: 18px;
    font-weight: 700;
}

.support-index svg {
    width: 18px;
    height: 18px;
    color: #6b7b75;
}

.support-service {
    scroll-margin-top: 80px;
    background: var(--white);
}

.support-service-alt {
    background: #f1f6f4;
}

.support-service-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
    gap: 80px;
    align-items: center;
}

.support-service-copy > p:not(.support-kicker):not(.support-lead) {
    color: #64746d;
    line-height: 1.9;
}

.support-lead {
    margin: 14px 0 20px;
    color: var(--green-dark);
    font-size: 19px;
    font-weight: 700;
}

.support-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
    margin: 28px 0 32px;
    border-top: 1px solid #ccd9d5;
}

.support-points > div {
    display: grid;
    gap: 7px;
    padding: 16px 0;
    border-bottom: 1px solid #ccd9d5;
}

.support-points strong {
    font-size: 15px;
    font-weight: 700;
}

.support-points span,
.support-steps span {
    color: #71817a;
    font-size: 13px;
    line-height: 1.7;
}

.support-steps {
    display: grid;
    gap: 13px;
    margin: 28px 0 32px;
    counter-reset: support-step;
}

.support-steps li {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 13px;
    counter-increment: support-step;
}

.support-steps li::before {
    content: counter(support-step, decimal-leading-zero);
    padding-top: 2px;
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
}

.support-steps li strong {
    display: block;
    margin-bottom: 3px;
    font-size: 15px;
    font-weight: 700;
}

.support-service-media {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.support-service-media img {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
}

.support-service-media img:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 1.68 / 1;
}

.knowledge-section {
    background: #f3f6f5;
}

.knowledge-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
    gap: 72px;
    margin-bottom: 44px;
}

.knowledge-hero img {
    width: 100%;
    aspect-ratio: 1.68 / 1;
    object-fit: cover;
}

.knowledge-hero h2 {
    font-size: 42px;
}

.knowledge-hero > div > p:last-child {
    margin-top: 16px;
    color: #697872;
    font-size: 17px;
    line-height: 1.8;
}

.knowledge-copy {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    max-width: 920px;
    color: #697872;
    line-height: 1.9;
}

.knowledge-tools {
    display: grid;
    grid-template-columns: minmax(190px, 0.46fr) minmax(320px, 1fr) auto;
    gap: 16px;
    align-items: end;
    margin-top: 46px;
    padding: 26px 0;
    border-top: 1px solid #cad7d3;
    border-bottom: 1px solid #cad7d3;
}

.knowledge-category,
.knowledge-search {
    display: grid;
    gap: 9px;
    color: #405049;
    font-size: 13px;
    font-weight: 700;
}

.knowledge-category select,
.knowledge-search-field {
    width: 100%;
    min-height: 52px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid #c8d6d1;
}

.knowledge-category select {
    padding: 0 38px 0 14px;
    font: inherit;
    font-weight: 400;
}

.knowledge-search-field {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 15px;
}

.knowledge-search-field > svg {
    flex: 0 0 auto;
    color: var(--green);
}

.knowledge-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
}

.knowledge-search input::placeholder {
    color: #8c9a94;
}

.knowledge-search button {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    color: #66756e;
    background: transparent;
    border: 0;
}

.knowledge-search button svg {
    width: 16px;
    height: 16px;
}

.knowledge-submit {
    display: inline-flex;
    min-width: 116px;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 22px;
    color: var(--white);
    background: var(--green);
    border: 1px solid var(--green);
    font-weight: 700;
}

.knowledge-submit:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
}

.knowledge-submit svg {
    width: 18px;
    height: 18px;
}

.knowledge-result-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 30px 0 16px;
    color: #76857f;
    font-size: 13px;
}

.knowledge-result-meta > div {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.knowledge-result-meta strong {
    color: var(--ink);
    font-size: 22px;
}

.knowledge-list {
    border-top: 1px solid #cbd8d4;
}

.knowledge-document {
    display: grid;
    min-height: 108px;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    padding: 20px 18px;
    background: var(--white);
    border-bottom: 1px solid #d7e0dc;
    transition: background 0.2s ease, color 0.2s ease;
}

.knowledge-document:hover {
    background: #edf7f3;
}

.knowledge-document-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--green);
    background: #e5f3ee;
    border-radius: 4px;
}

.knowledge-document-icon svg {
    width: 23px;
    height: 23px;
}

.knowledge-document-body {
    display: grid;
    min-width: 0;
    gap: 6px;
}

.knowledge-document-category {
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
}

.knowledge-document-body strong {
    overflow-wrap: anywhere;
    color: var(--ink);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.55;
}

.knowledge-document-meta {
    color: #718079;
    font-size: 12px;
}

.knowledge-document-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.knowledge-document-action svg {
    width: 16px;
    height: 16px;
}

.knowledge-empty {
    padding: 42px 0 12px;
    color: #788781;
    text-align: center;
}

.support-cta {
    color: var(--white);
    background: #113c34;
}

.support-cta-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 50px;
    align-items: center;
}

.support-cta .support-kicker {
    color: #87d4c1;
}

.support-cta h2 {
    font-size: 34px;
}

.support-cta-layout span {
    display: block;
    max-width: 680px;
    margin-top: 15px;
    color: #bfd3cd;
    line-height: 1.8;
}

.support-quick-promise {
    padding: 88px 0;
    color: var(--white);
    background: #113c34;
}

.support-quick-promise .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: 70px;
    align-items: center;
}

.support-quick-promise .support-kicker {
    color: #87d4c1;
}

.support-quick-promise h2 {
    margin-top: 12px;
    font-size: 34px;
    line-height: 1.35;
}

.support-quick-promise .container > p {
    color: #bfd3cd;
    line-height: 1.85;
}

@media (max-width: 960px) {
    .support-hero,
    .support-hero-content {
        min-height: 440px;
    }

    .support-hero-content h1 {
        font-size: 42px;
    }

    .support-overview,
    .support-service,
    .knowledge-section,
    .support-cta {
        padding: 78px 0;
    }

    .support-section-heading,
    .support-service-layout,
    .knowledge-hero {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .support-index {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .support-index a:nth-child(3) {
        border-right: 0;
    }

    .support-index a:nth-child(-n + 3) {
        border-bottom: 1px solid #cad7d3;
    }

    .support-index a:nth-child(4) {
        border-left: 0;
    }

    .knowledge-tools {
        grid-template-columns: minmax(180px, 0.45fr) minmax(280px, 1fr) auto;
    }

    .support-quick-promise .container {
        grid-template-columns: 1fr;
        gap: 26px;
    }
}

@media (max-width: 720px) {
    .support-hero,
    .support-hero-content {
        min-height: 430px;
    }

    .support-hero > img {
        object-position: 68% center;
    }

    .support-hero-content {
        justify-content: flex-end;
        padding-bottom: 42px;
    }

    .support-hero-content h1 {
        font-size: 34px;
    }

    .support-hero-content span {
        font-size: 15px;
    }

    .support-section-heading h2,
    .support-service-copy h2,
    .knowledge-hero h2,
    .support-cta h2 {
        font-size: 29px;
    }

    .support-index {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .support-index a,
    .support-index a:nth-child(3) {
        border-right: 1px solid #cad7d3;
    }

    .support-index a:nth-child(even) {
        border-right: 0;
    }

    .support-index a:nth-child(3),
    .support-index a:nth-child(4) {
        border-bottom: 1px solid #cad7d3;
    }

    .support-index a:nth-child(5) {
        border-right: 0;
    }

    .support-points,
    .knowledge-copy,
    .support-cta-layout {
        grid-template-columns: 1fr;
    }

    .support-service-media {
        gap: 10px;
    }

    .support-service-media img:first-child {
        aspect-ratio: 1.3 / 1;
    }

    .knowledge-hero {
        gap: 25px;
    }

    .knowledge-tools {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .knowledge-submit {
        width: 100%;
    }

    .knowledge-document {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 14px;
        padding: 18px 14px;
    }

    .knowledge-document-icon {
        width: 40px;
        height: 40px;
    }

    .knowledge-document-action {
        grid-column: 2;
        justify-self: start;
    }

    .knowledge-result-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }
}
