@font-face {
    font-family: "Savis";
    src: url("../employer-assets/s2.woff2") format("woff2");
    font-display: swap;
}

:root {
    --home-ink: #1f2b1b;
    --home-muted: #64705f;
    --home-green-950: #173516;
    --home-green-900: #234b21;
    --home-green-800: #315d2b;
    --home-green-700: #447839;
    --home-green-100: #eaf2e5;
    --home-lime: #dbe867;
    --home-cream: #f7f4ed;
    --home-surface: #ffffff;
    --home-line: rgba(31, 43, 27, 0.12);
    --home-danger: #c94242;
    --home-shadow-sm: 0 8px 24px rgba(32, 49, 26, 0.08);
    --home-shadow-lg: 0 24px 64px rgba(27, 46, 22, 0.16);
    --home-radius-sm: 14px;
    --home-radius-md: 22px;
    --home-radius-lg: 32px;
    --home-shell: 1280px;
    --home-ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
}

body[data-employer-home-page] {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(
            circle at 85% 8%,
            rgba(219, 232, 103, 0.13),
            transparent 25rem
        ),
        #fff;
    color: var(--home-ink);
    font-family: "Savis", Tahoma, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

@supports (overflow: clip) {
    body[data-employer-home-page] {
        overflow-x: clip;
    }
}

body[data-employer-home-page] *,
body[data-employer-home-page] *::before,
body[data-employer-home-page] *::after {
    box-sizing: border-box;
}

body[data-employer-home-page] :where(h1, h2, h3, p, ul) {
    margin-block: 0;
}

body[data-employer-home-page] :where(ul) {
    padding: 0;
    list-style: none;
}

body[data-employer-home-page] :where(a) {
    color: inherit;
    text-decoration: none;
}

body[data-employer-home-page] :where(img) {
    display: block;
    max-width: 100%;
}

body[data-employer-home-page] :where(button, input) {
    font: inherit;
}

body[data-employer-home-page] :where(button, a) {
    -webkit-tap-highlight-color: transparent;
}

body[data-employer-home-page] :where(a, button, input):focus-visible {
    outline: 3px solid #8aa53c;
    outline-offset: 3px;
}

.home-shell {
    width: min(var(--home-shell), calc(100% - 32px));
    margin-inline: auto;
}

.home-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.home-skip-link {
    position: fixed;
    z-index: 100000;
    top: 12px;
    right: 12px;
    padding: 10px 16px;
    border-radius: 10px;
    background: #fff;
    color: var(--home-green-950);
    box-shadow: var(--home-shadow-lg);
    transform: translateY(-150%);
    transition: transform 160ms ease;
}

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

/* Header */

.home-announcement {
    background: var(--home-green-950);
    color: #fff;
    font-size: 0.82rem;
}

.home-announcement__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.home-announcement__inner a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--home-lime);
    font-weight: 800;
    white-space: nowrap;
}

.home-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    border-bottom: 1px solid var(--home-line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 30px rgba(24, 43, 20, 0.05);
    backdrop-filter: blur(14px);
}

.home-header__main {
    min-height: 92px;
    display: grid;
    grid-template-columns: auto minmax(280px, 1fr) auto;
    align-items: center;
    gap: clamp(16px, 3vw, 38px);
}

.home-brand {
    width: 118px;
    height: 68px;
    display: grid;
    place-items: center;
    flex: none;
}

.home-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-search {
    min-width: 0;
    min-height: 50px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 5px 6px 5px 16px;
    border: 1px solid var(--home-line);
    border-radius: 999px;
    background: var(--home-cream);
    transition:
        border-color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;
}

.home-search:focus-within {
    border-color: rgba(68, 120, 57, 0.5);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(68, 120, 57, 0.1);
}

.home-search__icon {
    display: grid;
    place-items: center;
    color: var(--home-green-700);
    font-size: 1.45rem;
    line-height: 1;
}

.home-search input {
    min-width: 0;
    height: 42px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--home-ink);
}

.home-search input::placeholder {
    color: #7b8577;
}

.home-search input::-webkit-search-cancel-button {
    cursor: pointer;
}

.home-search button {
    min-width: 78px;
    min-height: 40px;
    padding: 7px 16px;
    border: 0;
    border-radius: 999px;
    background: var(--home-green-800);
    color: #fff;
    cursor: pointer;
    font-weight: 900;
}

.home-header__actions {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.home-seller-entry,
.home-icon-button,
.home-cart-button,
.home-menu-toggle {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 14px;
}

.home-seller-entry {
    padding: 8px 13px;
    background: var(--home-green-900);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 900;
    white-space: nowrap;
}

.home-seller-entry__icon {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--home-lime);
    color: var(--home-green-950);
    font-size: 1.15rem;
    line-height: 1;
}

.home-icon-button {
    max-width: 180px;
    padding: 8px 11px;
    border-color: var(--home-line);
    background: #fff;
    color: var(--home-green-950);
    font-size: 0.82rem;
    font-weight: 800;
}

.home-icon-button img {
    width: 26px;
    height: 26px;
    flex: none;
    border-radius: 9px;
    object-fit: cover;
}

.home-icon-button > span {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-cart-button {
    position: relative;
    width: 46px;
    flex: 0 0 46px;
    border-color: var(--home-line);
    background: #fff;
}

.home-cart-button img {
    width: 27px;
    height: 27px;
    object-fit: contain;
}

.home-cart-button .cart-badge {
    position: absolute;
    top: -6px;
    left: -5px;
    min-width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    padding-inline: 4px;
    border: 2px solid #fff;
    border-radius: 999px;
    background: var(--home-danger);
    color: #fff;
    font-size: 0.67rem;
    font-weight: 900;
    line-height: 1;
}

.home-menu-toggle {
    width: 46px;
    flex: 0 0 46px;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 0;
    border-color: var(--home-line);
    background: #fff;
    cursor: pointer;
}

.home-menu-toggle > span:not(.home-visually-hidden) {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--home-green-950);
    transition: transform 180ms ease, opacity 180ms ease;
}

body[data-nav-open] .home-menu-toggle > span:nth-of-type(2) {
    transform: translateY(6px) rotate(45deg);
}

body[data-nav-open] .home-menu-toggle > span:nth-of-type(3) {
    opacity: 0;
}

body[data-nav-open] .home-menu-toggle > span:nth-of-type(4) {
    transform: translateY(-6px) rotate(-45deg);
}

.home-navigation {
    border-top: 1px solid rgba(31, 43, 27, 0.07);
    background: #fff;
}

.home-navigation ul {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.home-navigation li {
    flex: none;
}

.home-navigation a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 7px 13px;
    border-radius: 10px;
    color: #3d4939;
    font-size: 0.83rem;
    font-weight: 800;
    white-space: nowrap;
    transition: background 160ms ease, color 160ms ease;
}

.home-navigation a:hover {
    background: var(--home-green-100);
    color: var(--home-green-950);
}

.home-navigation__offer a {
    background: #f8eed0;
    color: #6f5210;
}

.home-navigation__phone {
    margin-right: auto;
}

.home-navigation__phone a {
    color: var(--home-green-800);
    font-variant-numeric: tabular-nums;
}

/* Main and shared headings */

.employer-home {
    width: min(var(--home-shell), calc(100% - 32px));
    margin: 22px auto clamp(64px, 8vw, 110px);
}

.home-section,
.home-promotion,
.home-trust {
    margin-top: clamp(62px, 8vw, 104px);
}

.home-eyebrow {
    color: var(--home-green-700);
    font-size: 0.79rem;
    font-weight: 900;
    letter-spacing: 0.01em;
}

.home-section__heading {
    margin-bottom: 26px;
}

.home-section__heading h2 {
    margin-top: 4px;
    color: var(--home-ink);
    font-size: clamp(1.45rem, 3vw, 2.15rem);
    line-height: 1.45;
}

.home-section__heading > p:last-child {
    max-width: 620px;
    margin-top: 7px;
    color: var(--home-muted);
    font-size: 0.92rem;
}

.home-section__heading--center {
    display: grid;
    justify-items: center;
    text-align: center;
}

.home-section__heading--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.home-inline-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--home-green-800);
    font-weight: 900;
}

body[data-employer-home-page] .home-inline-link {
    color: var(--home-green-800);
}

.home-inline-link > span,
.home-button > span,
.home-announcement a > span,
.home-footer__seller a > span {
    transition: transform 180ms var(--home-ease);
}

.home-inline-link:hover > span,
.home-button:hover > span,
.home-announcement a:hover > span,
.home-footer__seller a:hover > span {
    transform: translateX(-4px);
}

/* Hero */

.home-hero__viewport {
    position: relative;
    isolation: isolate;
    min-height: clamp(410px, 42vw, 560px);
    overflow: hidden;
    border-radius: var(--home-radius-lg);
    background: #dfe5d9;
    box-shadow: var(--home-shadow-sm);
    touch-action: pan-y;
}

.home-hero__track,
.employer-hero-slide,
.home-hero__shade {
    position: absolute;
    inset: 0;
}

.employer-hero-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.025);
    transition:
        opacity 650ms ease,
        transform 7s linear;
}

.employer-hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.home-hero__shade {
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(11, 25, 12, 0.08) 20%,
            rgba(11, 25, 12, 0.72) 82%
        );
}

.home-hero__content {
    position: relative;
    z-index: 2;
    width: min(600px, calc(100% - 140px));
    min-height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(40px, 7vw, 92px);
    color: #fff;
}

.home-hero__content .home-eyebrow {
    color: var(--home-lime);
}

.home-hero__content h1 {
    max-width: 580px;
    margin-top: 7px;
    color: #fff;
    font-size: clamp(2rem, 4.7vw, 4rem);
    line-height: 1.32;
    text-wrap: balance;
    text-shadow: 0 3px 22px rgba(0, 0, 0, 0.28);
}

.home-hero__content h1 span {
    display: block;
    color: var(--home-lime);
}

.home-hero__lead {
    max-width: 540px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.9rem, 1.5vw, 1.08rem);
    line-height: 1.9;
}

.home-hero__actions {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 19px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-weight: 900;
    transition:
        transform 180ms var(--home-ease),
        box-shadow 180ms ease,
        background 180ms ease;
}

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

.home-button--primary {
    background: var(--home-lime);
    color: var(--home-green-950);
    box-shadow: 0 12px 28px rgba(12, 27, 11, 0.22);
}

.home-button--glass {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    backdrop-filter: blur(9px);
}

.home-button--light {
    background: #fff;
    color: var(--home-green-950);
}

.home-button--outline {
    border-color: rgba(255, 255, 255, 0.4);
    background: transparent;
    color: #fff;
}

body[data-employer-home-page] .home-button--primary,
body[data-employer-home-page] .home-button--light {
    color: var(--home-green-950);
}

body[data-employer-home-page] .home-button--glass,
body[data-employer-home-page] .home-button--outline {
    color: #fff;
}

.home-hero__facts {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.78rem;
    font-weight: 800;
}

.home-hero__facts li::before {
    content: "";
    width: 6px;
    height: 6px;
    display: inline-block;
    margin-left: 7px;
    border-radius: 50%;
    background: var(--home-lime);
}

.home-hero__control {
    position: absolute;
    z-index: 3;
    top: 50%;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--home-green-950);
    cursor: pointer;
    font-size: 1.7rem;
    line-height: 1;
    box-shadow: 0 8px 24px rgba(20, 33, 18, 0.16);
    transform: translateY(-50%);
    transition: background 160ms ease, transform 160ms ease;
}

.home-hero__control:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.05);
}

.home-hero__control--previous {
    right: 18px;
}

.home-hero__control--next {
    left: 18px;
}

.home-hero__dots {
    position: absolute;
    z-index: 4;
    right: 50%;
    bottom: 18px;
    display: flex;
    align-items: center;
    transform: translateX(50%);
}

.home-hero__dots button {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.home-hero__dots button::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    transition: width 180ms ease, background 180ms ease;
}

.home-hero__dots button.is-active::before {
    width: 25px;
    background: #fff;
}

/* Categories */

.home-category-section {
    container: home-categories / inline-size;
}

.employer-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
    gap: 14px;
}

@media (min-width: 1081px) {
    .employer-category-grid {
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }
}

.employer-category-card {
    min-width: 0;
    min-height: 154px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 10px;
    padding: 15px 10px;
    border: 1px solid var(--home-line);
    border-radius: 20px;
    background: #fff;
    color: #34432f;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 900;
    box-shadow: 0 7px 18px rgba(30, 47, 25, 0.04);
    transition:
        transform 180ms var(--home-ease),
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.employer-category-card img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    transition: transform 220ms var(--home-ease);
}

.home-category-section > .home-inline-link {
    width: fit-content;
    margin: 22px auto 0;
    display: flex;
}

@media (hover: hover) {
    .employer-category-card:hover {
        border-color: rgba(68, 120, 57, 0.3);
        box-shadow: var(--home-shadow-sm);
        transform: translateY(-4px);
    }

    .employer-category-card:hover img {
        transform: scale(1.06);
    }
}

/* Promotion */

.home-promotion {
    min-height: 300px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: center;
    overflow: hidden;
    border-radius: var(--home-radius-lg);
    background:
        radial-gradient(
            circle at 8% 18%,
            rgba(219, 232, 103, 0.5),
            transparent 18rem
        ),
        linear-gradient(110deg, var(--home-green-950), var(--home-green-700));
    color: #fff;
    box-shadow: var(--home-shadow-lg);
}

.home-promotion__content {
    z-index: 1;
    padding: clamp(32px, 5vw, 64px);
}

.home-promotion__content .home-eyebrow {
    color: var(--home-lime);
}

.home-promotion h2 {
    max-width: 640px;
    margin-top: 4px;
    font-size: clamp(1.55rem, 3.4vw, 2.75rem);
    line-height: 1.45;
    text-wrap: balance;
}

.home-promotion__content > p:not(.home-eyebrow) {
    max-width: 620px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.82);
}

.home-promotion .home-button {
    margin-top: 21px;
}

.home-promotion__visual {
    position: relative;
    align-self: stretch;
    min-height: 300px;
    display: grid;
    place-items: end center;
}

.home-promotion__visual span {
    position: absolute;
    width: 330px;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.home-promotion__visual img {
    position: relative;
    z-index: 1;
    width: min(390px, 92%);
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 22px 24px rgba(10, 22, 9, 0.22));
}

/* Product cards */

.employer-products-section {
    container: home-products / inline-size;
}

.employer-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 16px;
}

.employer-products-grid .pro {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--home-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(30, 47, 25, 0.055);
    transition:
        transform 180ms var(--home-ease),
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.employer-products-grid .pro > a {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.employer-products-grid figure {
    margin: 0;
    padding: 11px 11px 0;
}

.employer-products-grid .im-c {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    border-radius: 14px;
    background:
        linear-gradient(145deg, #f7f5f0, #efeee8);
}

.employer-products-grid .cap {
    min-height: 58px;
    margin-top: 10px;
    padding-inline: 3px;
    overflow: hidden;
    color: #2b3528;
    font-size: 0.88rem;
    font-weight: 900;
    line-height: 1.75;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.employer-products-grid .inex {
    min-height: 70px;
    margin-top: auto;
    padding: 8px 14px 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px 8px;
}

.employer-products-grid .orgd {
    min-width: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 8px;
    border-radius: 999px;
    background: #dc4545;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 900;
}

.employer-products-grid .main-ta2 {
    color: #858d82;
    font-size: 0.75rem;
    white-space: nowrap;
}

.employer-products-grid .main-ta {
    width: 100%;
    color: var(--home-green-900);
    font-size: 0.91rem;
    font-weight: 900;
    line-height: 1.7;
}

.employer-products-grid .main-ta.is-contact-price {
    color: #6b7467;
    font-size: 0.82rem;
}

@media (hover: hover) {
    .employer-products-grid .pro:hover {
        border-color: rgba(68, 120, 57, 0.28);
        box-shadow: 0 18px 42px rgba(30, 47, 25, 0.11);
        transform: translateY(-5px);
    }
}

.employer-home-state {
    grid-column: 1 / -1;
    min-height: 150px;
    display: grid;
    place-items: center;
    padding: 24px;
    border: 1px dashed rgba(68, 120, 57, 0.35);
    border-radius: 20px;
    background: #f8fbf6;
    color: #566351;
    text-align: center;
}

/* Trust */

.home-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.home-trust__card {
    position: relative;
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 21px;
    border: 1px solid var(--home-line);
    border-radius: 20px;
    background: #fff;
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms var(--home-ease);
}

.home-trust__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    border-radius: 13px;
    background: var(--home-green-100);
    color: var(--home-green-800);
    font-size: 1.25rem;
    font-weight: 900;
}

.home-trust h3 {
    color: var(--home-green-950);
    font-size: 0.97rem;
}

.home-trust__card p {
    margin-top: 5px;
    color: var(--home-muted);
    font-size: 0.8rem;
    line-height: 1.85;
}

.home-trust__card--link:hover {
    border-color: rgba(68, 120, 57, 0.35);
    box-shadow: var(--home-shadow-sm);
    transform: translateY(-3px);
}

.home-trust__arrow {
    margin-inline-start: auto;
    align-self: center;
    color: var(--home-green-700);
    font-size: 1.1rem;
    font-weight: 900;
}

/* Public information pages */

.home-information-page {
    width: min(var(--home-shell), calc(100% - 32px));
    margin: 22px auto clamp(64px, 8vw, 110px);
}

.information-hero {
    position: relative;
    min-height: 430px;
    display: grid;
    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(260px, 0.55fr);
    align-items: center;
    gap: clamp(30px, 6vw, 86px);
    overflow: hidden;
    padding: clamp(34px, 6vw, 76px);
    border-radius: var(--home-radius-lg);
    background:
        radial-gradient(
            circle at 12% 8%,
            rgba(219, 232, 103, 0.22),
            transparent 26rem
        ),
        linear-gradient(
            135deg,
            var(--home-green-950),
            var(--home-green-800)
        );
    box-shadow: var(--home-shadow-lg);
    color: #fff;
}

.information-hero::after {
    position: absolute;
    width: 260px;
    height: 260px;
    bottom: -145px;
    left: 32%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    content: "";
}

.information-hero__content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.information-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 27px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
}

.information-breadcrumb a {
    color: var(--home-lime);
    font-weight: 900;
}

.information-hero .home-eyebrow {
    color: var(--home-lime);
}

.information-hero h1 {
    max-width: 720px;
    margin-top: 7px;
    color: #fff;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.38;
}

.information-hero__content > p:not(.home-eyebrow) {
    max-width: 650px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(0.88rem, 1.5vw, 1rem);
    line-height: 2;
}

.information-hero__actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.information-hero__emblem {
    position: relative;
    z-index: 1;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.14),
            rgba(255, 255, 255, 0.04)
        );
    text-align: center;
    backdrop-filter: blur(8px);
}

.information-hero__emblem::before,
.information-hero__emblem::after {
    position: absolute;
    inset: 13px;
    border: 1px dashed rgba(219, 232, 103, 0.5);
    border-radius: inherit;
    content: "";
}

.information-hero__emblem::after {
    inset: -13px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.08);
}

.information-hero__emblem > span {
    color: var(--home-lime);
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    line-height: 1;
}

.information-hero__emblem strong {
    font-size: clamp(1rem, 2.2vw, 1.45rem);
}

.information-hero__emblem small {
    max-width: 180px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.8;
}

.information-section {
    margin-top: clamp(62px, 8vw, 104px);
}

.information-section__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 27px;
}

.information-section__heading h2 {
    margin-top: 4px;
    color: var(--home-green-950);
    font-size: clamp(1.55rem, 3.2vw, 2.35rem);
    line-height: 1.5;
}

.information-section__heading > p {
    max-width: 460px;
    color: var(--home-muted);
    font-size: 0.86rem;
    line-height: 1.95;
}

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

.honor-card {
    min-width: 0;
    min-height: 230px;
    display: flex;
    align-items: flex-start;
    gap: clamp(16px, 3vw, 28px);
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid var(--home-line);
    border-radius: var(--home-radius-md);
    background:
        linear-gradient(
            145deg,
            #fff,
            #f7faf5
        );
    box-shadow: var(--home-shadow-sm);
}

.honor-card__number {
    color: rgba(68, 120, 57, 0.2);
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1;
}

.honor-card__label {
    color: var(--home-green-700);
    font-size: 0.76rem;
    font-weight: 900;
}

.honor-card h3 {
    margin-top: 7px;
    color: var(--home-green-950);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.75;
}

.honor-card h3[dir="ltr"] {
    text-align: right;
}

.honor-card div > p:last-child {
    margin-top: 9px;
    color: var(--home-muted);
    font-size: 0.84rem;
    line-height: 1.95;
}

.information-statement {
    min-height: 250px;
    margin-top: clamp(62px, 8vw, 104px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: clamp(30px, 5vw, 58px);
    border-radius: var(--home-radius-lg);
    background:
        radial-gradient(
            circle at 10% 30%,
            rgba(219, 232, 103, 0.22),
            transparent 20rem
        ),
        var(--home-green-900);
    color: #fff;
}

.information-statement .home-eyebrow {
    color: var(--home-lime);
}

.information-statement h2 {
    margin-top: 5px;
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    line-height: 1.55;
}

.information-statement div > p:last-child {
    max-width: 700px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.88rem;
    line-height: 2;
}

.information-statement > .home-button {
    flex: none;
}

.warranty-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    counter-reset: none;
}

.warranty-steps li {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    border: 1px solid var(--home-line);
    border-radius: var(--home-radius-md);
    background: #fff;
}

.warranty-steps li > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    border-radius: 13px;
    background: var(--home-green-100);
    color: var(--home-green-800);
    font-size: 1rem;
    font-weight: 900;
}

.warranty-steps h3 {
    color: var(--home-green-950);
    font-size: 1rem;
    line-height: 1.7;
}

.warranty-steps p {
    margin-top: 7px;
    color: var(--home-muted);
    font-size: 0.8rem;
    line-height: 1.95;
}

.warranty-detail-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.warranty-detail-card {
    min-width: 0;
    padding: clamp(24px, 4vw, 36px);
    border: 1px solid var(--home-line);
    border-radius: var(--home-radius-md);
    background: var(--home-cream);
}

.warranty-detail-card__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #fff;
    color: var(--home-green-700);
    box-shadow: var(--home-shadow-sm);
    font-size: 1.3rem;
    font-weight: 900;
}

.warranty-detail-card h2 {
    margin-top: 16px;
    color: var(--home-green-950);
    font-size: 1.1rem;
}

.warranty-detail-card p {
    margin-top: 8px;
    color: var(--home-muted);
    font-size: 0.84rem;
    line-height: 2;
}

.information-statement__actions {
    display: grid;
    justify-items: center;
    gap: 12px;
    flex: none;
}

.information-phone-link {
    color: var(--home-lime);
    font-size: 1.1rem;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
}

/* Floating contact */

.employer-floating-support {
    position: fixed;
    z-index: 850;
    bottom: max(18px, env(safe-area-inset-bottom));
    left: max(16px, env(safe-area-inset-left));
    display: grid;
    gap: 9px;
}

.employer-floating-support a {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 28px rgba(21, 38, 18, 0.2);
    transition: transform 180ms var(--home-ease);
}

.employer-floating-support a:hover {
    transform: translateY(-3px);
}

.employer-floating-support img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.employer-floating-support .employer-phone-support {
    background: var(--home-green-800);
    color: #fff;
    font-size: 1.25rem;
}

/* Footer */

.home-footer {
    position: relative;
    overflow: hidden;
    padding-top: clamp(48px, 7vw, 78px);
    background:
        radial-gradient(
            circle at 12% 10%,
            rgba(219, 232, 103, 0.12),
            transparent 22rem
        ),
        var(--home-green-950);
    color: rgba(255, 255, 255, 0.8);
}

.home-footer__grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.35fr) repeat(2, minmax(150px, 0.7fr)) minmax(220px, 1fr);
    gap: clamp(28px, 4vw, 58px);
}

.home-footer__brand {
    width: 120px;
    height: 66px;
    display: grid;
    place-items: center;
    padding: 6px;
    border-radius: 16px;
    background: #fff;
}

.home-footer__brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-footer__about > p {
    max-width: 390px;
    margin-top: 18px;
    font-size: 0.84rem;
    line-height: 1.95;
}

.home-footer h2 {
    margin-bottom: 16px;
    color: #fff;
    font-size: 0.98rem;
}

.home-footer nav li + li {
    margin-top: 6px;
}

.home-footer nav a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    font-size: 0.82rem;
    transition: color 160ms ease, transform 160ms ease;
}

.home-footer nav a:hover {
    color: var(--home-lime);
    transform: translateX(-3px);
}

.home-footer__phone {
    width: fit-content;
    margin-top: 17px;
    display: grid;
    color: #fff;
}

.home-footer__phone span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.72rem;
}

.home-footer__phone strong {
    color: var(--home-lime);
    font-size: 1.15rem;
    font-variant-numeric: tabular-nums;
}

.home-footer__seller {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
}

.home-footer__seller p {
    font-size: 0.8rem;
    line-height: 1.9;
}

.home-footer__seller a {
    min-height: 42px;
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--home-lime);
    font-size: 0.81rem;
    font-weight: 900;
}

.home-footer__bottom {
    min-height: 74px;
    margin-top: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.75rem;
}

.home-footer__bottom a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-weight: 800;
}

/* Component-aware layouts */

@container home-products (max-width: 560px) {
    .employer-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .employer-products-grid figure {
        padding: 8px 8px 0;
    }

    .employer-products-grid .cap {
        min-height: 54px;
        font-size: 0.79rem;
    }

    .employer-products-grid .inex {
        padding: 7px 10px 12px;
    }

    .employer-products-grid .main-ta {
        font-size: 0.79rem;
    }
}

@container home-categories (max-width: 520px) {
    .employer-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 9px;
    }

    .employer-category-card {
        min-height: 126px;
        padding: 11px 6px;
        border-radius: 16px;
        font-size: 0.74rem;
    }

    .employer-category-card img {
        width: 67px;
        height: 67px;
    }
}

/* Responsive navigation and layout */

@media (max-width: 1080px) {
    .home-header__main {
        grid-template-columns: auto minmax(220px, 1fr) auto;
        gap: 14px;
    }

    .home-seller-entry [data-storefront-seller-label] {
        display: none;
    }

    .home-seller-entry {
        width: 46px;
        padding: 0;
    }

    .home-icon-button > span {
        max-width: 72px;
    }

    .home-navigation .home-shell {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .home-navigation .home-shell::-webkit-scrollbar {
        display: none;
    }

    .home-navigation ul {
        width: max-content;
        min-width: 100%;
    }

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

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

@media (max-width: 820px) {
    html {
        scroll-padding-top: 110px;
    }

    .home-header__main {
        min-height: 78px;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 10px;
        padding-block: 8px;
    }

    .home-brand {
        width: 100px;
        height: 56px;
    }

    .home-header__actions {
        grid-column: 2;
    }

    .home-search {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        min-height: 46px;
        margin-bottom: 3px;
    }

    .home-menu-toggle {
        display: inline-flex;
    }

    .home-navigation {
        max-height: 0;
        overflow: hidden;
        border-top: 0;
        opacity: 0;
        visibility: hidden;
        transition:
            max-height 280ms var(--home-ease),
            opacity 180ms ease,
            visibility 180ms ease;
    }

    body[data-nav-open] .home-navigation {
        max-height: min(62vh, 520px);
        overflow-y: auto;
        border-top: 1px solid var(--home-line);
        opacity: 1;
        visibility: visible;
    }

    .home-navigation .home-shell {
        overflow: visible;
    }

    .home-navigation ul {
        width: 100%;
        min-height: 0;
        display: grid;
        padding-block: 8px 14px;
    }

    .home-navigation li,
    .home-navigation a {
        width: 100%;
    }

    .home-navigation a {
        min-height: 44px;
        padding-inline: 12px;
    }

    .home-navigation__phone {
        margin-right: 0;
        border-top: 1px solid var(--home-line);
        padding-top: 5px;
    }

    .employer-home {
        margin-top: 14px;
    }

    .home-hero__viewport {
        min-height: 500px;
    }

    .home-hero__content {
        width: min(620px, calc(100% - 80px));
        padding: 56px 54px 68px;
    }

    .home-promotion {
        grid-template-columns: minmax(0, 1fr) minmax(210px, 0.65fr);
    }

    .information-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .information-hero__emblem {
        width: min(270px, 64vw);
        justify-self: center;
    }

    .information-section__heading {
        display: grid;
        align-items: start;
    }

    .honors-grid,
    .warranty-steps,
    .warranty-detail-grid {
        grid-template-columns: 1fr;
    }

    .information-statement {
        align-items: flex-start;
        flex-direction: column;
    }

    .information-statement__actions {
        justify-items: start;
    }
}

@media (max-width: 620px) {
    .home-shell,
    .employer-home,
    .home-information-page {
        width: min(100% - 20px, var(--home-shell));
    }

    .home-announcement__inner {
        min-height: 34px;
        justify-content: center;
        font-size: 0.72rem;
    }

    .home-announcement__inner p {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .home-announcement__inner a {
        display: none;
    }

    .home-brand {
        width: 82px;
        height: 50px;
    }

    .home-header__actions {
        gap: 5px;
    }

    .home-icon-button,
    .home-cart-button,
    .home-menu-toggle,
    .home-seller-entry {
        width: 43px;
        min-height: 43px;
        flex-basis: 43px;
        border-radius: 12px;
    }

    .home-icon-button {
        padding: 0;
    }

    .home-icon-button > span {
        display: none;
    }

    .home-search {
        padding-left: 4px;
    }

    .home-search button {
        min-width: 66px;
        padding-inline: 12px;
        font-size: 0.79rem;
    }

    .home-search input {
        font-size: 0.78rem;
    }

    .home-hero__viewport {
        min-height: 520px;
        border-radius: 24px;
    }

    .home-hero__shade {
        background:
            linear-gradient(
                0deg,
                rgba(11, 25, 12, 0.82) 4%,
                rgba(11, 25, 12, 0.44) 68%,
                rgba(11, 25, 12, 0.12)
            );
    }

    .home-hero__content {
        width: 100%;
        justify-content: flex-end;
        padding: 44px 24px 76px;
    }

    .home-hero__content h1 {
        font-size: clamp(2rem, 10vw, 2.75rem);
    }

    .home-hero__lead {
        font-size: 0.86rem;
    }

    .home-hero__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .home-button {
        padding-inline: 13px;
        font-size: 0.79rem;
    }

    .home-hero__facts {
        gap: 7px 13px;
        font-size: 0.69rem;
    }

    .home-hero__control {
        top: 24px;
        width: 42px;
        height: 42px;
        transform: none;
    }

    .home-hero__control:hover {
        transform: scale(1.04);
    }

    .home-hero__control--previous {
        right: 18px;
    }

    .home-hero__control--next {
        right: 68px;
        left: auto;
    }

    .home-section,
    .home-promotion,
    .home-trust {
        margin-top: 66px;
    }

    .home-section__heading--row {
        align-items: flex-start;
    }

    .home-section__heading--row .home-inline-link {
        flex: none;
        font-size: 0.75rem;
    }

    .home-promotion {
        min-height: 470px;
        grid-template-columns: 1fr;
        align-content: space-between;
        border-radius: 24px;
    }

    .home-promotion__content {
        padding: 30px 25px 0;
    }

    .home-promotion__visual {
        min-height: 215px;
    }

    .home-promotion__visual span {
        width: 230px;
    }

    .home-promotion__visual img {
        max-height: 210px;
    }

    .home-trust__grid {
        grid-template-columns: 1fr;
    }

    .information-hero {
        gap: 34px;
        padding: 27px 20px 34px;
        border-radius: 24px;
    }

    .information-breadcrumb {
        margin-bottom: 19px;
    }

    .information-hero h1 {
        font-size: clamp(1.85rem, 10vw, 2.6rem);
    }

    .information-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .information-hero__actions .home-button {
        width: 100%;
    }

    .information-hero__emblem {
        width: min(210px, 68vw);
        padding: 21px;
    }

    .information-section,
    .information-statement {
        margin-top: 62px;
    }

    .information-section__heading {
        gap: 12px;
    }

    .honor-card {
        min-height: 0;
        padding: 23px 18px;
    }

    .warranty-steps li,
    .warranty-detail-card {
        padding: 21px 18px;
    }

    .information-statement {
        min-height: 0;
        padding: 29px 21px;
        border-radius: 24px;
    }

    .information-statement > .home-button,
    .information-statement__actions,
    .information-statement__actions .home-button {
        width: 100%;
    }

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

    .home-footer__bottom {
        min-height: 96px;
        margin-top: 38px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .employer-floating-support {
        left: max(10px, env(safe-area-inset-left));
    }

    .employer-floating-support a {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 380px) {
    .home-brand {
        width: 70px;
    }

    .home-header__actions {
        gap: 3px;
    }

    .home-icon-button,
    .home-cart-button,
    .home-menu-toggle,
    .home-seller-entry {
        width: 40px;
        min-height: 40px;
        flex-basis: 40px;
    }

    .home-hero__content {
        padding-inline: 20px;
    }

    .home-hero__actions {
        grid-template-columns: 1fr;
    }

    .home-section__heading--row {
        display: grid;
    }
}

@media (pointer: coarse) {
    .home-navigation a,
    .home-footer nav a {
        min-height: 44px;
    }
}

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

    body[data-employer-home-page] *,
    body[data-employer-home-page] *::before,
    body[data-employer-home-page] *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .employer-hero-slide {
        transform: none;
    }
}

/* Home footer trust credentials */

.home-footer__credentials {
    margin-top: clamp(34px, 5vw, 58px);
    padding-top: clamp(26px, 4vw, 38px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.home-footer__credentials-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.home-footer__credentials-heading h2,
.home-footer__credentials-heading p {
    margin: 0;
}

.home-footer__credentials-heading p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.76rem;
}

.home-footer__badges {
    margin: 22px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(10px, 1.6vw, 18px);
    list-style: none;
}

.home-footer__badge {
    min-width: 0;
    min-height: 118px;
    display: grid;
    place-items: center;
    padding: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transition:
        transform 180ms var(--home-ease),
        box-shadow 180ms ease;
}

.home-footer__badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.home-footer__badge img {
    display: block;
    width: 100%;
    max-width: 112px;
    height: 82px;
    object-fit: contain;
}

.home-footer__credentials + .home-footer__bottom {
    margin-top: 28px;
}

@media (max-width: 1080px) {
    .home-footer__badges {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .home-footer__credentials-heading {
        align-items: start;
        flex-direction: column;
        gap: 7px;
    }

    .home-footer__badges {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .home-footer__badge {
        min-height: 104px;
        padding: 10px;
        border-radius: 15px;
    }

    .home-footer__badge img {
        max-width: 96px;
        height: 72px;
    }
}

/*
 * SAVISWOOD HOMEPAGE FOOTER BRAND FLOW FIX V1
 *
 * Keeps the real rendered logo height in normal document flow so the
 * description can never slide underneath the image.
 */

.home-footer__about {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
}

.home-footer__brand {
    position: static !important;
    inset: auto !important;
    display: inline-flex !important;
    flex: 0 0 auto;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    align-items: center;
    justify-content: center;
    margin: 0 0 24px !important;
    transform: none !important;
}

/* Homepage footer contract used by storefront pages. */
.home-footer[data-homepage-footer-match] {
    position: relative;
    isolation: isolate;
    width: 100%;
    margin-top: clamp(48px, 7vw, 92px);
    padding: clamp(54px, 6vw, 86px) 0 24px;
    color: #17210f;
    background: linear-gradient(
        90deg,
        #509b2a 0%,
        #86b735 42%,
        #eddd53 100%
    );
    overflow: hidden;
}

.home-footer[data-homepage-footer-match]::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 46%);
    pointer-events: none;
}

.home-footer[data-homepage-footer-match] .home-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(28px, 5vw, 76px);
    align-items: start;
}

.home-footer[data-homepage-footer-match] h2 {
    position: relative;
    margin: 0 0 24px;
    padding-bottom: 10px;
    color: #17210f;
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    font-weight: 900;
}

.home-footer[data-homepage-footer-match] h2::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 44px;
    height: 1px;
    background: currentColor;
    opacity: 0.55;
}

.home-footer[data-homepage-footer-match] ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-footer[data-homepage-footer-match] nav li + li {
    margin-top: 13px;
}

.home-footer[data-homepage-footer-match] nav a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    color: #17210f;
    font-weight: 700;
    text-decoration: none;
    transition: color 160ms ease, transform 160ms ease;
}

.home-footer[data-homepage-footer-match] nav a:hover {
    color: #fff;
    transform: translateX(-3px);
}

.home-footer[data-homepage-footer-match] nav a:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.9);
    outline-offset: 4px;
    border-radius: 4px;
}

.home-footer[data-homepage-footer-match] .home-footer__about {
    display: block;
}

.home-footer[data-homepage-footer-match] .home-footer__about > p {
    margin: 0 !important;
    color: #17210f;
    font-size: 0.98rem;
    font-weight: 650;
    line-height: 2.05;
}

.home-footer[data-homepage-footer-match] .home-footer__credentials {
    margin-top: clamp(42px, 6vw, 74px);
    padding-top: 30px;
    border-top: 1px solid rgba(23, 33, 15, 0.22);
}

.home-footer[data-homepage-footer-match] .home-footer__badges {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(12px, 2vw, 24px);
    margin: 0;
}

.home-footer[data-homepage-footer-match] .home-footer__badge {
    min-height: 108px;
    padding: 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.home-footer[data-homepage-footer-match] .home-footer__badge:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.home-footer[data-homepage-footer-match] .home-footer__badge img {
    width: 100%;
    max-width: 104px;
    height: 88px;
    object-fit: contain;
}

.home-footer[data-homepage-footer-match] .home-footer__bottom {
    display: block;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(23, 33, 15, 0.22);
    color: #17210f;
    text-align: center;
}

.home-footer[data-homepage-footer-match] .home-footer__bottom p {
    margin: 0;
    font-weight: 800;
}

@media (max-width: 900px) {
    .home-footer[data-homepage-footer-match] .home-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-footer[data-homepage-footer-match] .home-footer__badges {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .home-footer[data-homepage-footer-match] {
        padding-top: 44px;
    }

    .home-footer[data-homepage-footer-match] .home-footer__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .home-footer[data-homepage-footer-match] .home-footer__badges {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .home-footer[data-homepage-footer-match] .home-footer__badge {
        min-height: 92px;
    }

    .home-footer[data-homepage-footer-match] .home-footer__badge img {
        max-width: 88px;
        height: 72px;
    }
}

.home-footer__brand img {
    position: static !important;
    inset: auto !important;
    display: block;
    width: 132px;
    max-width: 100%;
    height: auto !important;
    margin: 0 !important;
    transform: none !important;
    object-fit: contain;
}

.home-footer__about > p {
    position: static !important;
    inset: auto !important;
    width: 100%;
    margin: 0 0 18px !important;
    transform: none !important;
}
