* {
    box-sizing: border-box;
}

:root {
    --sb-ink: #0f1b16;
    --sb-ink-2: #3b4a42;
    --sb-muted: #5b6b63;
    --sb-subtle: #7c8a83;
    --sb-soft: #9aa8a1;
    --sb-bg: #f5f8f6;
    --sb-surface: #ffffff;
    --sb-primary: #0fa968;
    --sb-primary-dark: #0a7a4e;
    --sb-primary-bright: #13b877;
    --sb-primary-cta: #0a7a4e;
    --sb-tint: #e3f5ec;
    --sb-tint-soft: #f1f7f4;
    --sb-action: #f59e0b;
    --sb-action-bright: #fbbf24;
    --sb-success: #16a34a;
    --sb-warning: #e8602c;
    --sb-danger: #dc2626;
    --sb-border: rgba(15, 27, 22, .07);
    --sb-border-strong: rgba(15, 27, 22, .16);
    --sb-container: 1240px;
    --sb-radius-sm: 8px;
    --sb-radius-md: 10px;
    --sb-radius-lg: 12px;
    --sb-radius-xl: 14px;
    --sb-radius-hero: 16px;
    --sb-shadow-card: 0 8px 24px -16px rgba(15, 27, 22, .3);
    --sb-shadow-hero: 0 30px 70px -28px rgba(0, 0, 0, .4);
    --sb-font-text: "Onest", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --sb-font-display: "Geologica", var(--sb-font-text);
}

html {
    color-scheme: light;
    font-family: var(--sb-font-text);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--sb-bg);
    color: var(--sb-ink);
    font-family: var(--sb-font-text);
}

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

img,
svg {
    max-width: 100%;
}

button,
input,
textarea {
    box-sizing: border-box;
    max-width: 100%;
    font: inherit;
}

button {
    cursor: pointer;
}

[hidden] {
    display: none !important;
}

input,
textarea {
    border: 1px solid var(--sb-border-strong);
    border-radius: 12px;
    color: var(--sb-ink);
    outline: none;
    padding: 13px 15px;
}

textarea {
    min-height: 150px;
}

input[type="range"] {
    appearance: none;
    background: transparent;
    color: var(--sb-primary);
    cursor: pointer;
    height: 22px;
    padding: 0;
    width: 100%;
}

input[type="range"]::-webkit-slider-runnable-track {
    background: color-mix(in srgb, currentColor 24%, transparent);
    border-radius: 999px;
    height: 7px;
}

input[type="range"]::-moz-range-track {
    background: color-mix(in srgb, currentColor 24%, transparent);
    border-radius: 999px;
    height: 7px;
}

input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    background: currentColor;
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 9px rgba(0, 0, 0, .28);
    height: 21px;
    margin-top: -7px;
    width: 21px;
}

input[type="range"]::-moz-range-thumb {
    background: currentColor;
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 9px rgba(0, 0, 0, .28);
    height: 21px;
    width: 21px;
}

.sb-container {
    margin: 0 auto;
    max-width: var(--sb-container);
    padding-left: 30px;
    padding-right: 30px;
}

.sb-header {
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid var(--sb-border);
    position: sticky;
    top: 0;
    z-index: 5;
}

.sb-header-inner {
    align-items: center;
    display: flex;
    gap: 20px;
    margin: 0 auto;
    max-width: var(--sb-container);
    padding: 16px 30px;
    width: 100%;
}

.sb-brand {
    align-items: center;
    display: flex;
    gap: 10px;
}

.sb-brand-logo {
    display: block;
    height: 54px;
    object-fit: contain;
    width: 205px;
}

.sb-brand-mark {
    align-items: center;
    background: var(--sb-primary);
    border-radius: 10px;
    color: #fff;
    display: flex;
    font-family: var(--sb-font-display);
    font-size: 18px;
    font-weight: 700;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.sb-brand-name {
    font-family: var(--sb-font-display);
    font-size: 16px;
    font-weight: 600;
    position: absolute;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
    width: 1px;
}

.sb-nav {
    align-items: center;
    color: var(--sb-ink-2);
    display: flex;
    flex-wrap: wrap;
    font-size: 13.5px;
    font-weight: 500;
    gap: 10px 14px;
    margin-left: 8px;
}

.sb-nav a[aria-current="page"],
.sb-nav .is-active,
.sb-nav summary.is-active {
    color: var(--sb-ink);
    font-weight: 600;
}

.sb-nav-group {
    position: relative;
}

.sb-nav-summary {
    align-items: center;
    color: var(--sb-ink-2);
    cursor: pointer;
    display: inline-flex;
    gap: 6px;
    list-style: none;
    outline: none;
    white-space: nowrap;
}

.sb-nav-summary::-webkit-details-marker {
    display: none;
}

.sb-nav-summary::after {
    border-bottom: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    content: "";
    height: 5px;
    margin-top: -3px;
    transform: rotate(45deg);
    width: 5px;
}

.sb-nav-group[open] .sb-nav-summary::after,
.sb-nav-group:focus-within .sb-nav-summary::after,
.sb-nav-group:hover .sb-nav-summary::after {
    margin-top: 2px;
    transform: rotate(225deg);
}

.sb-nav-menu {
    background: #fff;
    border: 1px solid var(--sb-border);
    border-radius: 12px;
    box-shadow: 0 18px 45px -28px rgba(15, 27, 22, .45);
    display: none;
    gap: 2px;
    left: -14px;
    min-width: 230px;
    opacity: 0;
    padding: 10px;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 14px);
    transform: translateY(-4px);
    transition: opacity .16s ease, transform .16s ease;
    z-index: 20;
}

.sb-nav-menu-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 360px;
}

.sb-nav-group[open] .sb-nav-menu,
.sb-nav-group:focus-within .sb-nav-menu,
.sb-nav-group:hover .sb-nav-menu {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.sb-nav-menu a {
    border-radius: 8px;
    color: var(--sb-ink-2);
    line-height: 1.25;
    padding: 9px 10px;
    white-space: nowrap;
}

.sb-nav-menu a:hover,
.sb-nav-menu a:focus {
    background: var(--sb-tint-soft);
    color: var(--sb-ink);
}

.sb-design-link,
.sb-design-link[aria-current="page"] {
    color: var(--sb-primary);
    font-weight: 600;
}

.sb-header-side {
    align-items: center;
    display: flex;
    gap: 14px;
    margin-left: auto;
}

.sb-location {
    align-items: center;
    background: #fff;
    border: 1px solid var(--sb-border-strong);
    border-radius: 999px;
    color: var(--sb-ink-2);
    display: inline-flex;
    font-size: 13px;
    font-weight: 600;
    gap: 6px;
    line-height: 1.2;
    min-height: 36px;
    max-width: 156px;
    padding: 8px 28px 8px 29px;
    position: relative;
    white-space: nowrap;
}

.sb-location::before {
    background: var(--sb-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(15, 169, 104, .14);
    content: "";
    height: 7px;
    left: 13px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
}

.sb-location::after {
    border-bottom: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    content: "";
    height: 6px;
    opacity: .72;
    position: absolute;
    right: 13px;
    top: 47%;
    transform: rotate(45deg) translateY(-50%);
    width: 6px;
}

.sb-location:hover,
.sb-location:focus {
    border-color: rgba(10, 122, 78, .35);
    color: var(--sb-ink);
}

.sb-location:focus-visible,
.sb-city-close:focus-visible,
.sb-city-option:focus-visible,
.sb-city-search input:focus {
    box-shadow: 0 0 0 4px rgba(15, 169, 104, .16);
}

.sb-location span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.is-city-modal-open {
    overflow: hidden;
}

.sb-city-modal {
    align-items: flex-start;
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 92px 20px 24px;
    position: fixed;
    z-index: 40;
}

.sb-city-backdrop {
    background: rgba(15, 27, 22, .34);
    backdrop-filter: blur(7px);
    inset: 0;
    position: absolute;
}

.sb-city-dialog {
    background: var(--sb-surface);
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 16px;
    box-shadow: 0 28px 80px -36px rgba(15, 27, 22, .55);
    max-height: calc(100dvh - 124px);
    overflow: auto;
    padding: 28px;
    position: relative;
    width: min(620px, 100%);
}

.sb-city-close {
    align-items: center;
    background: var(--sb-tint-soft);
    border: 1px solid var(--sb-border);
    border-radius: 50%;
    color: var(--sb-ink-2);
    display: inline-flex;
    font-size: 24px;
    height: 38px;
    justify-content: center;
    line-height: 1;
    padding: 0 0 3px;
    position: absolute;
    right: 18px;
    top: 18px;
    width: 38px;
}

.sb-city-kicker {
    color: var(--sb-primary-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.sb-city-dialog h2 {
    font-family: var(--sb-font-display);
    font-size: 30px;
    line-height: 1.12;
    margin: 0 46px 18px 0;
}

.sb-city-search {
    display: grid;
    gap: 7px;
    margin-bottom: 18px;
}

.sb-city-search span {
    color: var(--sb-muted);
    font-size: 13px;
    font-weight: 600;
}

.sb-city-search input {
    background: var(--sb-tint-soft);
    border-color: rgba(15, 27, 22, .1);
    min-height: 48px;
}

.sb-city-search input:focus {
    background: #fff;
    border-color: rgba(10, 122, 78, .4);
}

.sb-city-list {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sb-city-option {
    background: #fff;
    border: 1px solid var(--sb-border);
    border-radius: 10px;
    color: var(--sb-ink-2);
    font-weight: 600;
    min-height: 44px;
    padding: 10px 12px;
    text-align: left;
}

.sb-city-option:hover,
.sb-city-option:focus {
    border-color: rgba(10, 122, 78, .35);
    color: var(--sb-ink);
}

.sb-city-option.is-active {
    background: var(--sb-primary-dark);
    border-color: var(--sb-primary-dark);
    color: #fff;
}

.sb-city-option.is-hidden {
    display: none;
}

.sb-city-empty {
    background: var(--sb-tint-soft);
    border-radius: 10px;
    color: var(--sb-muted);
    font-size: 14px;
    margin: 14px 0 0;
    padding: 12px 14px;
}

.sb-btn {
    align-items: center;
    border: 0;
    border-radius: var(--sb-radius-md);
    display: inline-flex;
    font-family: var(--sb-font-text);
    font-size: 15px;
    font-weight: 600;
    justify-content: center;
    line-height: 1.2;
    min-height: 44px;
    padding: 13px 22px;
    text-align: center;
}

.sb-btn-primary {
    background: var(--sb-primary-cta);
    box-shadow: 0 12px 24px -12px rgba(10, 122, 78, .62);
    color: #fff;
}

.sb-hero .sb-btn-primary {
    background: var(--sb-action-bright);
    box-shadow: 0 14px 28px -14px rgba(251, 191, 36, .68);
    color: #241500;
}

.sb-btn:focus-visible,
.sb-chip:focus-visible,
.sb-nav a:focus-visible,
.sb-nav-summary:focus-visible {
    outline: 3px solid rgba(251, 191, 36, .7);
    outline-offset: 3px;
}

.sb-btn-action {
    background: var(--sb-action);
    box-shadow: 0 12px 24px -12px rgba(245, 158, 11, .55);
    color: #241500;
}

.sb-btn-outline {
    background: #fff;
    border: 1px solid var(--sb-border-strong);
    color: var(--sb-ink);
    font-size: 13px;
    font-weight: 500;
    padding: 9px 16px;
}

.sb-btn-ghost {
    background: transparent;
    color: var(--sb-primary-dark);
}

.sb-hero {
    background: linear-gradient(135deg, #0a7a4e 0%, #0fa968 55%, #13b877 100%);
    color: #fff;
    overflow: hidden;
    padding: 54px 30px;
    position: relative;
}

.sb-hero::before,
.sb-hero::after {
    border-radius: 50%;
    content: "";
    position: absolute;
}

.sb-hero::before {
    background: rgba(255, 255, 255, .08);
    height: 300px;
    right: -60px;
    top: -70px;
    width: 300px;
}

.sb-hero::after {
    background: rgba(251, 191, 36, .16);
    bottom: -110px;
    height: 230px;
    right: 150px;
    width: 230px;
}

.sb-hero-grid {
    align-items: center;
    display: grid;
    gap: 44px;
    grid-template-columns: 1.05fr .95fr;
    margin: 0 auto;
    max-width: var(--sb-container);
    position: relative;
    z-index: 1;
}

.sb-hero-badge {
    align-items: center;
    background: var(--sb-action-bright);
    border-radius: 999px;
    color: #3a2a00;
    display: inline-flex;
    font-size: 13px;
    font-weight: 600;
    gap: 7px;
    margin-bottom: 20px;
    padding: 7px 14px;
}

.sb-hero h1 {
    font-family: var(--sb-font-display);
    font-size: 46px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.04;
    margin: 0 0 16px;
}

.sb-hero h1 span {
    color: var(--sb-action-bright);
}

.sb-hero p,
.sb-hero-lead {
    color: #dcf5e8;
    font-size: 16.5px;
    line-height: 1.55;
    margin: 0 0 28px;
    max-width: 440px;
}

.sb-hero-lead span {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(251, 191, 36, .78);
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.sb-hero-stats {
    display: flex;
    gap: 30px;
}

.sb-hero-stat + .sb-hero-stat {
    border-left: 1px solid rgba(255, 255, 255, .25);
    padding-left: 30px;
}

.sb-hero-stat strong {
    display: block;
    font-family: var(--sb-font-display);
    font-size: 24px;
    font-weight: 600;
}

.sb-hero-stat span {
    color: #bfe9d4;
    font-size: 12.5px;
}

.sb-home-decision {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .52);
    border-radius: var(--sb-radius-hero);
    box-shadow: var(--sb-shadow-hero);
    color: var(--sb-ink);
    padding: 24px;
}

.sb-home-decision h2 {
    font-family: var(--sb-font-display);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.18;
    margin: 0 0 7px;
}

.sb-home-decision p {
    color: var(--sb-muted);
    font-size: 13.5px;
    line-height: 1.5;
    margin: 0 0 16px;
    max-width: none;
}

.sb-decision-list {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sb-decision-item {
    background: var(--sb-tint-soft);
    border: 1px solid rgba(15, 27, 22, .08);
    border-radius: var(--sb-radius-md);
    color: inherit;
    display: grid;
    gap: 5px;
    min-height: 106px;
    padding: 13px 14px;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.sb-decision-item:hover,
.sb-decision-item:focus {
    background: #fff;
    border-color: rgba(10, 122, 78, .34);
    transform: translateY(-1px);
}

.sb-decision-item span {
    color: var(--sb-primary-dark);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.sb-decision-item strong {
    color: var(--sb-ink);
    font-family: var(--sb-font-display);
    font-size: 16px;
    font-weight: 600;
}

.sb-decision-item small {
    color: var(--sb-muted);
    font-size: 12.5px;
    line-height: 1.45;
}

.sb-decision-item-primary {
    background: #fff8e1;
    border-color: rgba(251, 191, 36, .42);
}

.sb-home-decision-note {
    border-top: 1px solid var(--sb-border);
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 16px;
    padding-top: 14px;
}

.sb-home-decision-note span,
.sb-home-decision-note a {
    font-size: 12.5px;
    font-weight: 600;
}

.sb-home-decision-note span {
    color: var(--sb-muted);
}

.sb-home-decision-note a {
    color: var(--sb-primary-dark);
}

.sb-calculator {
    background: #fff;
    border-radius: var(--sb-radius-hero);
    box-shadow: var(--sb-shadow-hero);
    color: var(--sb-ink);
    padding: 26px;
}

.sb-calculator-title {
    display: block;
    font-family: var(--sb-font-display);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 20px;
}

.sb-calculator-title-accent {
    -webkit-box-decoration-break: clone;
    background: linear-gradient(to top, rgba(251, 191, 36, .3) 0 34%, transparent 34%);
    box-decoration-break: clone;
    color: var(--sb-primary-dark);
    font-weight: 700;
}

.sb-range-head {
    align-items: baseline;
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.sb-range-head > span:first-child {
    color: var(--sb-muted);
    font-size: 13px;
}

.sb-range-head strong {
    font-family: var(--sb-font-display);
    font-size: 20px;
    font-weight: 600;
}

.sb-value {
    align-items: baseline;
    display: inline-flex;
    gap: .16em;
    white-space: nowrap;
}

.sb-value-number {
    color: inherit;
    display: inline;
    font-size: 1em;
    font-weight: 700;
    line-height: 1;
}

.sb-value-unit {
    color: currentColor;
    display: inline;
    font-size: .62em;
    font-weight: 500;
    line-height: 1;
    opacity: .72;
}

.sb-range-head .sb-value {
    justify-content: flex-end;
}

.sb-range-head .sb-value-number {
    font-size: 1.08em;
}

.sb-range-head .sb-value-unit {
    color: var(--sb-muted);
}

.sb-range-scale {
    color: var(--sb-soft);
    display: flex;
    font-size: 11px;
    justify-content: space-between;
    margin: 2px 0 16px;
}

.sb-scale-number {
    font-weight: 500;
}

.sb-scale-unit {
    font-size: .86em;
    margin-left: 2px;
    opacity: .78;
}

.sb-calc-result {
    align-items: center;
    background: var(--sb-tint-soft);
    border-radius: var(--sb-radius-md);
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 14px 16px;
}

.sb-calc-result span {
    color: var(--sb-muted);
    display: block;
    font-size: 12px;
}

.sb-calc-result strong {
    color: var(--sb-primary-dark);
    display: block;
    font-family: var(--sb-font-display);
    font-size: 18px;
    font-weight: 600;
}

.sb-calc-result strong span {
    color: inherit;
    display: inline;
    font-size: inherit;
}

.sb-calc-result strong.sb-value {
    display: inline-flex;
}

.sb-calc-result strong .sb-value-number {
    color: inherit;
    font-size: inherit;
}

.sb-calc-result strong .sb-value-unit {
    color: currentColor;
    font-size: .6em;
    opacity: .74;
}

.sb-native-calculator {
    border: 1px solid var(--sb-border);
    box-shadow: var(--sb-shadow-card);
    margin: 18px 0 24px;
}

.sb-calc-result-grid {
    align-items: stretch;
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
}

.sb-calc-result-grid > div {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    min-width: 0;
}

.sb-calc-result-grid strong {
    text-align: right;
    white-space: nowrap;
}

.sb-tool-page {
    margin: 0 auto;
    max-width: var(--sb-container);
    padding: 34px 30px 72px;
}

.sb-tool-hero {
    align-items: center;
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    padding: 18px 0 34px;
}

.sb-tool-hero h1 {
    font-family: var(--sb-font-display);
    font-size: 44px;
    line-height: 1.06;
    margin: 16px 0 16px;
}

.sb-tool-hero p,
.sb-tool-content p {
    color: var(--sb-muted);
    font-size: 17px;
    line-height: 1.65;
    margin: 0 0 14px;
}

.sb-tool-content {
    background: var(--sb-surface);
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius-lg);
    box-shadow: var(--sb-shadow-card);
    padding: 28px;
}

.sb-tool-content h2 {
    font-family: var(--sb-font-display);
    font-size: 26px;
    margin: 0 0 14px;
}

.sb-safe-page {
    margin: 0 auto;
    max-width: var(--sb-container);
    padding: 34px 30px 76px;
}

.sb-safe-hero {
    align-items: start;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 450px);
    padding: 16px 0 28px;
}

.sb-safe-flow {
    align-content: start;
    display: grid;
    gap: 18px;
}

.sb-safe-left-flow,
.sb-safe-right-flow {
    min-width: 0;
}

.sb-safe-flow .sb-safe-note {
    margin-top: 0;
}

.sb-safe-hero-copy {
    align-content: start;
    display: grid;
}

.sb-safe-hero h1 {
    font-family: var(--sb-font-display);
    font-size: 46px;
    line-height: 1.05;
    margin: 16px 0;
    max-width: 760px;
}

.sb-safe-hero p,
.sb-safe-card p,
.sb-safe-note p,
.sb-safe-law-note {
    color: var(--sb-muted);
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 16px;
}

.sb-safe-kpis {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 10px;
    max-width: 760px;
}

.sb-safe-kpis div {
    background: #fff;
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius-md);
    padding: 14px;
}

.sb-safe-kpis strong {
    color: var(--sb-primary-dark);
    display: block;
    font-family: var(--sb-font-display);
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 6px;
}

.sb-safe-kpis span {
    color: var(--sb-muted);
    display: block;
    font-size: 12.5px;
    line-height: 1.4;
}

.sb-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.sb-safe-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
}

.sb-safe-card,
.sb-safe-note {
    background: #fff;
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius-lg);
    box-shadow: var(--sb-shadow-card);
    padding: 26px;
}

.sb-safe-card-accent {
    background: color-mix(in srgb, var(--sb-tint) 42%, #fff);
}

.sb-safe-card h2,
.sb-safe-note h2 {
    font-family: var(--sb-font-display);
    font-size: 25px;
    line-height: 1.2;
    margin: 0 0 14px;
}

.sb-safe-check-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sb-safe-check {
    border: 1px solid rgba(15, 169, 104, .22);
    border-radius: var(--sb-radius-md);
    padding: 15px;
}

.sb-safe-check strong {
    color: var(--sb-ink);
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 7px;
}

.sb-safe-check span,
.sb-safe-list,
.sb-safe-steps {
    color: var(--sb-muted);
    font-size: 14.5px;
    line-height: 1.6;
}

.sb-safe-tool {
    border: 1px solid var(--sb-border);
    box-shadow: var(--sb-shadow-card);
}

.sb-safe-toggles {
    display: grid;
    gap: 8px;
    margin: 14px 0;
}

.sb-safe-toggle {
    background: var(--sb-tint-soft);
    border: 1px solid rgba(15, 169, 104, .18);
    border-radius: 12px;
    margin: 0;
    padding: 10px 12px;
}

.sb-safe-law-note {
    font-size: 13px;
    margin: 12px 0 0;
}

.sb-safe-actions {
    color: var(--sb-ink);
    font-size: 13.5px;
    line-height: 1.55;
    margin: 12px 0 0;
    padding-left: 20px;
}

.sb-safe-plan {
    background: var(--sb-tint-soft);
    border-radius: 12px;
    color: var(--sb-primary-dark);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
    margin-top: 14px;
    padding: 13px 14px;
}

.sb-safe-list,
.sb-safe-steps {
    margin: 0 0 18px;
    padding-left: 22px;
}

.sb-safe-list li,
.sb-safe-steps li {
    margin-bottom: 8px;
}

.sb-safe-note {
    margin-top: 18px;
}

.sb-calc-result div:last-child {
    text-align: right;
}

.sb-calc-result div:last-child strong {
    color: var(--sb-ink);
}

.sb-chips-block {
    background: var(--sb-bg);
}

.sb-chips-inner {
    margin: 0 auto;
    max-width: var(--sb-container);
    padding: 16px 30px 8px;
}

.sb-chips-kicker {
    color: var(--sb-muted);
    font-size: 12.5px;
    font-weight: 500;
    margin-bottom: 9px;
}

.sb-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.sb-chip {
    background: #fff;
    border: 1px solid rgba(15, 27, 22, .12);
    border-radius: 999px;
    color: var(--sb-ink-2);
    font-size: 13px;
    padding: 8px 15px;
}

.sb-chip-active {
    background: var(--sb-ink);
    border-color: var(--sb-ink);
    color: #fff;
    font-weight: 600;
}

.sb-section {
    margin: 0 auto;
    max-width: var(--sb-container);
    padding: 22px 30px 8px;
}

.sb-section-head {
    align-items: baseline;
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.sb-section h2,
.sb-section-title {
    font-family: var(--sb-font-display);
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.sb-sort-label {
    color: var(--sb-primary);
    font-size: 13px;
    font-weight: 500;
}

.sb-offer-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sb-home-loans {
    padding-top: 28px;
}

.sb-home-loan-tools {
    align-items: stretch;
    background: var(--sb-tint-soft);
    border: 1px solid rgba(15, 169, 104, .14);
    border-radius: var(--sb-radius-lg);
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
    margin-bottom: 18px;
    padding: 18px;
}

.sb-home-loan-tools > div:first-child {
    align-content: center;
    display: grid;
    gap: 7px;
}

.sb-home-loan-tools > div:first-child strong {
    color: var(--sb-ink);
    font-family: var(--sb-font-display);
    font-size: 20px;
    font-weight: 600;
}

.sb-home-loan-tools > div:first-child span {
    color: var(--sb-muted);
    font-size: 13.5px;
    line-height: 1.55;
}

.sb-home-loan-tools .sb-calculator {
    box-shadow: none;
    display: grid;
    gap: 12px 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 18px;
}

.sb-home-loan-tools .sb-calculator-title,
.sb-home-loan-tools .sb-calc-result,
.sb-home-loan-tools .sb-calculator .sb-btn {
    grid-column: 1 / -1;
}

.sb-home-loan-tools .sb-calculator-title {
    margin-bottom: 0;
}

.sb-home-loan-tools .sb-range-scale {
    margin-bottom: 0;
}

.sb-home-loan-tools .sb-calc-result {
    margin-top: 0;
}

.sb-portal-directions {
    margin: 0 auto;
    max-width: var(--sb-container);
    padding: 22px 30px 8px;
}

.sb-direction-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sb-direction-card {
    background: #fff;
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius-md);
    box-shadow: var(--sb-shadow-card);
    color: inherit;
    display: grid;
    gap: 8px;
    min-height: 138px;
    padding: 18px;
    text-decoration: none;
    transition: border-color .2s ease, transform .2s ease;
}

.sb-direction-card:hover,
.sb-direction-card:focus {
    border-color: rgba(15, 169, 104, .34);
    transform: translateY(-2px);
}

.sb-direction-card strong {
    color: var(--sb-ink);
    font-family: var(--sb-font-display);
    font-size: 16px;
    font-weight: 600;
}

.sb-direction-card span {
    color: var(--sb-muted);
    font-size: 13.5px;
    line-height: 1.55;
}

.sb-credit-rail {
    padding-top: 18px;
}

.sb-credit-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sb-credit-card {
    background: #fff;
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius-md);
    color: inherit;
    display: grid;
    gap: 6px;
    min-height: 128px;
    padding: 17px;
    text-decoration: none;
    transition: border-color .2s ease, transform .2s ease;
}

.sb-credit-card:hover,
.sb-credit-card:focus {
    border-color: rgba(10, 122, 78, .28);
    transform: translateY(-2px);
}

.sb-credit-card span {
    color: var(--sb-primary-dark);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.sb-credit-card strong {
    color: var(--sb-ink);
    font-family: var(--sb-font-display);
    font-size: 16px;
    font-weight: 600;
}

.sb-credit-card small {
    color: var(--sb-muted);
    font-size: 12.5px;
    line-height: 1.5;
}

.sb-offer-card,
.sb-offer-row,
.sb-panel,
.sb-article-card {
    background: #fff;
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius-lg);
    box-shadow: var(--sb-shadow-card);
}

.sb-offer-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 0;
    padding: 22px;
}

.sb-offer-top {
    align-items: center;
    display: flex;
    gap: 12px;
    min-width: 0;
}

.sb-offer-logo,
.sb-rating-logo {
    align-items: center;
    color: #fff;
    display: flex;
    flex: 0 0 auto;
    font-family: var(--sb-font-display);
    font-weight: 700;
    justify-content: center;
}

.sb-offer-logo {
    border-radius: 12px;
    font-size: 16px;
    height: 46px;
    width: 46px;
}

img.sb-offer-logo {
    background: #fff;
    border: 1px solid var(--sb-border-strong);
    object-fit: contain;
    padding: 6px;
}

.sb-offer-heading {
    min-width: 0;
}

.sb-offer-name {
    font-family: var(--sb-font-display);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.12;
}

.sb-offer-tag {
    color: var(--sb-primary-dark);
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.25;
    margin-top: 3px;
}

.sb-offer-score {
    background: var(--sb-tint);
    border-radius: 999px;
    color: var(--sb-primary-dark);
    font-size: 12px;
    font-weight: 600;
    margin-left: auto;
    padding: 5px 8px;
    white-space: nowrap;
}

.sb-offer-main-value {
    background: linear-gradient(135deg, rgba(15, 169, 104, .1), rgba(233, 195, 62, .13));
    border: 1px solid rgba(15, 169, 104, .16);
    border-radius: var(--sb-radius-md);
    padding: 14px 16px;
}

.sb-offer-main-value span {
    color: var(--sb-muted);
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 5px;
}

.sb-offer-main-value strong {
    align-items: baseline;
    color: var(--sb-ink);
    display: inline-flex;
    font-family: var(--sb-font-display);
    font-size: 30px;
    font-weight: 700;
    gap: .16em;
    letter-spacing: 0;
    line-height: 1;
}

.sb-offer-main-value strong span {
    color: inherit;
    display: inline;
    font-size: inherit;
    margin: 0;
}

.sb-offer-main-value small {
    color: var(--sb-muted);
    font-size: .54em;
    font-weight: 500;
}

.sb-offer-terms {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sb-offer-term {
    background: var(--sb-bg);
    border-radius: var(--sb-radius-md);
    min-width: 0;
    padding: 11px 12px;
}

.sb-offer-term span {
    color: var(--sb-subtle);
    display: block;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
}

.sb-offer-term strong {
    color: var(--sb-ink);
    display: block;
    font-family: var(--sb-font-display);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.08;
    margin-top: 5px;
}

.sb-offer-term em {
    color: var(--sb-soft);
    display: block;
    font-size: 10.5px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 5px;
}

.sb-offer-term .is-green,
.sb-offer-term-rate strong {
    color: var(--sb-primary-dark);
}

.sb-offer-meta {
    color: var(--sb-muted);
    font-size: 12px;
}

.sb-offer-proof {
    border-top: 1px solid var(--sb-border);
    color: var(--sb-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 12.5px;
    font-weight: 500;
    gap: 8px 12px;
    line-height: 1.35;
    padding-top: 13px;
}

.sb-offer-proof span {
    align-items: center;
    display: inline-flex;
    gap: 6px;
}

.sb-offer-proof span::before {
    background: var(--sb-primary);
    border-radius: 50%;
    content: "";
    height: 6px;
    width: 6px;
}

.sb-offer-actions {
    display: grid;
    gap: 10px;
    margin-top: auto;
}

.sb-offer-actions .sb-row-more {
    justify-content: center;
    text-align: center;
}

.sb-trust-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    margin: 0 auto;
    max-width: var(--sb-container);
    padding: 30px;
}

.sb-trust-panel {
    background: var(--sb-ink);
    border-radius: var(--sb-radius-xl);
    color: #fff;
    padding: 28px;
}

.sb-trust-panel h2 {
    font-family: var(--sb-font-display);
    font-size: 20px;
    margin: 0 0 6px;
}

.sb-trust-panel p {
    color: #aebbb3;
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0 0 22px;
    max-width: 420px;
}

.sb-trust-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
}

.sb-trust-stats strong {
    color: #3ddc9a;
    display: block;
    font-family: var(--sb-font-display);
    font-size: 26px;
    font-weight: 600;
}

.sb-trust-stats span {
    color: #aebbb3;
    font-size: 12px;
}

.sb-rating-panel {
    background: #fff;
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius-xl);
    padding: 22px;
}

.sb-rating-panel h2 {
    font-family: var(--sb-font-display);
    font-size: 16px;
    margin: 0 0 14px;
}

.sb-rating-row {
    align-items: center;
    display: flex;
    gap: 10px;
    padding: 9px 0;
}

.sb-rating-pos {
    color: var(--sb-soft);
    font-family: var(--sb-font-display);
    font-weight: 600;
    width: 14px;
}

.sb-rating-logo {
    border-radius: 8px;
    font-size: 12px;
    height: 30px;
    width: 30px;
}

.sb-rating-row strong {
    color: var(--sb-primary-dark);
    font-weight: 600;
}

.sb-blog-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.sb-article-card {
    color: inherit;
    display: block;
    overflow: hidden;
    text-decoration: none;
    transition: border-color .2s ease, transform .2s ease;
}

.sb-article-card:hover,
.sb-article-card:focus {
    border-color: rgba(15, 169, 104, .34);
    transform: translateY(-2px);
}

.sb-article-cover {
    display: flex;
    overflow: hidden;
}

.sb-article-cover img {
    aspect-ratio: 1200 / 630;
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.sb-article-body {
    display: grid;
    gap: 7px;
    padding: 15px;
}

.sb-article-cat {
    color: var(--sb-primary);
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.sb-article-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.sb-article-excerpt {
    color: var(--sb-muted);
    display: block;
    font-size: 12.5px;
    line-height: 1.45;
}

.sb-blog-page {
    margin: 0 auto;
    max-width: var(--sb-container);
    padding: 28px 30px 68px;
}

.sb-blog-intro {
    margin-bottom: 22px;
    max-width: 760px;
}

.sb-blog-intro h2 {
    font-family: var(--sb-font-display);
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 10px;
}

.sb-blog-intro p {
    color: var(--sb-muted);
    font-size: 16px;
    line-height: 1.62;
    margin: 0;
}

.sb-blog-grid-large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sb-category-head {
    background: #fff;
    border-bottom: 1px solid var(--sb-border);
    padding: 26px 30px;
}

.sb-breadcrumbs {
    color: var(--sb-subtle);
    font-size: 12.5px;
    margin-bottom: 12px;
}

.sb-breadcrumbs a {
    color: var(--sb-primary);
}

.sb-category-head h1,
.sb-page-title {
    font-family: var(--sb-font-display);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.15;
    margin: 0 0 10px;
}

.sb-category-head p {
    color: var(--sb-muted);
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
    max-width: 680px;
}

.sb-category-layout {
    align-items: start;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
    margin: 0 auto;
    max-width: var(--sb-container);
    padding: 26px 30px 40px;
}

.sb-filter-card {
    background: #fff;
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius-lg);
    padding: 22px;
    position: sticky;
    top: 88px;
}

.sb-filter-title {
    font-family: var(--sb-font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
}

.sb-divider {
    background: var(--sb-border);
    height: 1px;
    margin: 20px 0;
}

.sb-check {
    align-items: center;
    color: var(--sb-ink-2);
    display: flex;
    font-size: 13.5px;
    gap: 10px;
    margin-bottom: 11px;
}

.sb-check input {
    accent-color: var(--sb-primary);
    height: 17px;
    width: 17px;
}

.sb-list-head {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 16px;
}

.sb-list-head > span {
    color: var(--sb-muted);
    font-size: 13.5px;
}

.sb-sort-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sb-sort-chip {
    background: #fff;
    border: 1px solid rgba(15, 27, 22, .12);
    border-radius: 9px;
    color: var(--sb-ink-2);
    font-size: 12.5px;
    padding: 7px 13px;
}

.sb-sort-chip-active {
    background: var(--sb-ink);
    border-color: var(--sb-ink);
    color: #fff;
    font-weight: 600;
}

.sb-offer-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sb-offer-row {
    align-items: center;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(160px, .9fr) minmax(260px, 1.6fr) minmax(150px, auto);
    padding: 18px;
}

.sb-offer-row .sb-offer-logo {
    border-radius: 13px;
    font-size: 19px;
    height: 50px;
    width: 50px;
}

.sb-offer-row-main {
    align-items: center;
    display: flex;
    gap: 13px;
}

.sb-offer-row-terms {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.sb-offer-row-terms span {
    color: var(--sb-subtle);
    display: block;
    font-size: 11.5px;
}

.sb-offer-row-terms strong {
    display: block;
    font-family: var(--sb-font-display);
    font-size: 17px;
}

.sb-row-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 160px;
}

.sb-row-more {
    color: var(--sb-muted);
    font-size: 12.5px;
    font-weight: 600;
    text-align: center;
}

.sb-offer-list.is-collapsed [data-offer-extra] {
    display: none;
}

.sb-offer-more {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.sb-offer-show-all {
    min-width: 190px;
}

.sb-seo-text {
    background: #fff;
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius-lg);
    margin-top: 24px;
    padding: 26px;
}

.sb-seo-text h2 {
    font-family: var(--sb-font-display);
    font-size: 20px;
    margin: 0 0 12px;
}

.sb-seo-text p {
    color: #46554d;
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0 0 12px;
}

.sb-offer-page {
    margin: 0 auto;
    max-width: 1100px;
    padding: 22px 30px 40px;
}

.sb-offer-layout {
    align-items: start;
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
}

.sb-offer-main {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
}

.sb-offer-header {
    background: #fff;
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius-xl);
    box-shadow: 0 10px 30px -20px rgba(15, 27, 22, .3);
    padding: 26px;
}

.sb-offer-brand {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.sb-offer-brand .sb-offer-logo {
    border-radius: 18px;
    font-size: 30px;
    height: 72px;
    width: 72px;
}

.sb-offer-brand img.sb-offer-logo {
    padding: 8px;
}

.sb-offer-header h1 {
    font-family: var(--sb-font-display);
    font-size: 28px;
    margin: 0;
}

.sb-badge {
    background: var(--sb-tint);
    border-radius: 999px;
    color: var(--sb-primary-dark);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 11px;
}

.sb-offer-submeta {
    color: var(--sb-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    gap: 14px;
    margin-top: 7px;
}

.sb-offer-submeta strong {
    color: var(--sb-primary-dark);
    font-weight: 500;
}

.sb-offer-note {
    color: var(--sb-soft);
    display: inline-block;
    font-size: 12.5px;
    margin-left: 12px;
}

.sb-offer-facts {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    margin: 22px 0;
}

.sb-fact-box {
    background: var(--sb-bg);
    border-radius: var(--sb-radius-md);
    padding: 14px 16px;
}

.sb-fact-box span {
    color: var(--sb-subtle);
    display: block;
    font-size: 12px;
}

.sb-fact-box strong {
    display: block;
    font-family: var(--sb-font-display);
    font-size: 20px;
    font-weight: 600;
}

.sb-panel {
    border-radius: var(--sb-radius-xl);
    box-shadow: none;
    padding: 26px;
}

.sb-panel h2 {
    font-family: var(--sb-font-display);
    font-size: 20px;
    margin: 0 0 16px;
}

.sb-condition-row {
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    gap: 20px;
    padding: 11px 0;
}

.sb-condition-row + .sb-condition-row {
    border-top: 1px solid rgba(15, 27, 22, .06);
}

.sb-condition-row span {
    color: var(--sb-muted);
}

.sb-step-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.sb-step-number {
    align-items: center;
    background: var(--sb-tint);
    border-radius: 10px;
    color: var(--sb-primary-dark);
    display: flex;
    font-family: var(--sb-font-display);
    font-weight: 600;
    height: 36px;
    justify-content: center;
    margin-bottom: 10px;
    width: 36px;
}

.sb-step-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.sb-step-text {
    color: var(--sb-muted);
    font-size: 13px;
    line-height: 1.5;
}

.sb-review-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sb-review {
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius-md);
    padding: 16px;
}

.sb-review-head {
    align-items: center;
    display: flex;
    gap: 11px;
    margin-bottom: 9px;
}

.sb-avatar {
    align-items: center;
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-family: var(--sb-font-display);
    font-weight: 600;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.sb-review-name {
    font-size: 14px;
    font-weight: 500;
}

.sb-review-date {
    color: var(--sb-soft);
    font-size: 11.5px;
}

.sb-review-stars {
    color: var(--sb-primary-dark);
    font-size: 13px;
    font-weight: 600;
    margin-left: auto;
}

.sb-review-text {
    color: #46554d;
    font-size: 13.5px;
    line-height: 1.55;
}

.sb-review-comments {
    border-top: 1px solid var(--sb-border);
    margin-top: 18px;
    padding-top: 18px;
}

.sb-review-comments h3 {
    font-family: var(--sb-font-display);
    font-size: 18px;
    margin: 0 0 12px;
}

.sb-review-note {
    color: var(--sb-muted);
    font-size: 14px;
    margin: 0 0 14px;
}

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

.sb-comment-form label {
    color: var(--sb-ink-2);
    display: grid;
    font-size: 13.5px;
    font-weight: 500;
    gap: 7px;
}

.sb-comment-form label:nth-of-type(3),
.sb-comment-form label:nth-of-type(4) {
    grid-column: 1 / -1;
}

.sb-comment-form label:has(input[type="checkbox"]) {
    align-items: flex-start;
    color: var(--sb-muted);
    display: flex;
    font-size: 13px;
    font-weight: 400;
    gap: 9px;
    line-height: 1.45;
}

.sb-comment-form label:has(input[type="checkbox"]) input {
    flex: 0 0 auto;
    margin-top: 3px;
}

.sb-comment-form button {
    justify-self: start;
}

.sb-sticky-apply {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 88px;
}

.sb-apply-card {
    background: var(--sb-ink);
    border-radius: var(--sb-radius-xl);
    color: #fff;
    padding: 24px;
}

.sb-apply-card h2 {
    font-family: var(--sb-font-display);
    font-size: 18px;
    margin: 0 0 4px;
}

.sb-apply-card p {
    color: #aebbb3;
    font-size: 13px;
    margin: 0 0 18px;
}

.sb-apply-sum {
    align-items: baseline;
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.sb-apply-sum > span {
    color: #aebbb3;
    font-size: 13px;
}

.sb-apply-sum strong {
    color: #3ddc9a;
    font-family: var(--sb-font-display);
    font-size: 24px;
}

.sb-apply-sum strong.sb-value {
    display: inline-flex;
}

.sb-apply-sum strong .sb-value-number {
    color: inherit;
    font-size: inherit;
}

.sb-apply-sum strong .sb-value-unit {
    color: currentColor;
    font-size: .58em;
    opacity: .72;
}

.sb-license-note {
    color: #7d8c84;
    font-size: 11.5px;
    margin-top: 11px;
    text-align: center;
}

.sb-doc-card {
    background: #fff;
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius-xl);
    padding: 20px;
}

.sb-doc-card h2 {
    font-size: 14px;
    margin: 0 0 12px;
}

.sb-doc-line {
    align-items: center;
    color: var(--sb-ink-2);
    display: flex;
    font-size: 13.5px;
    gap: 9px;
    margin-bottom: 9px;
}

.sb-doc-line span {
    color: var(--sb-primary-dark);
}

.sb-content-page {
    background: var(--sb-bg);
}

.sb-content-hero {
    background: #fff;
    border-bottom: 1px solid var(--sb-border);
    padding: 30px 0 28px;
}

.sb-content-hero h1 {
    font-family: var(--sb-font-display);
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.16;
    margin: 0 0 12px;
    max-width: 820px;
}

.sb-content-hero p {
    color: var(--sb-muted);
    font-size: 15.5px;
    line-height: 1.6;
    margin: 0;
    max-width: 760px;
}

.sb-content-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.sb-content-meta span {
    background: var(--sb-tint-soft);
    border: 1px solid var(--sb-border);
    border-radius: 999px;
    color: var(--sb-ink-2);
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.2;
    padding: 8px 12px;
}

.sb-content-layout {
    align-items: start;
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(0, 1fr) 280px;
    margin: 0 auto;
    max-width: var(--sb-container);
    padding: 26px 30px 58px;
}

.sb-content-card {
    background: #fff;
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius-xl);
    box-shadow: var(--sb-shadow-card);
    min-width: 0;
    overflow: hidden;
    padding: 26px;
}

.sb-content-cover {
    margin: 0 0 24px;
}

.sb-content-cover img {
    aspect-ratio: 1200 / 630;
    border-radius: var(--sb-radius-lg);
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.sb-content-cover figcaption {
    color: var(--sb-subtle);
    font-size: 12px;
    line-height: 1.4;
    margin-top: 8px;
}

.sb-content-notice {
    background: #fff7ed;
    border: 1px solid rgba(232, 96, 44, .22);
    border-radius: var(--sb-radius-md);
    color: var(--sb-ink-2);
    display: grid;
    gap: 5px;
    margin-bottom: 22px;
    padding: 15px 16px;
}

.sb-content-notice strong {
    color: var(--sb-ink);
    font-size: 14px;
    font-weight: 600;
}

.sb-content-notice span {
    font-size: 13.5px;
    line-height: 1.55;
}

.sb-content-summary {
    border-bottom: 1px solid var(--sb-border);
    border-top: 1px solid var(--sb-border);
    display: grid;
    gap: 6px;
    margin-bottom: 22px;
    padding: 18px 0;
}

.sb-content-summary strong {
    font-family: var(--sb-font-display);
    font-size: 17px;
    font-weight: 600;
}

.sb-content-summary span {
    color: var(--sb-muted);
    font-size: 14.5px;
    line-height: 1.6;
    max-width: 760px;
}

.sb-content-body {
    color: #34453c;
    font-size: 16px;
    line-height: 1.72;
    min-width: 0;
    overflow-x: visible;
    overflow-wrap: anywhere;
}

.sb-content-body p {
    margin: 0 0 17px;
    max-width: 820px;
}

.sb-content-body p:last-child {
    margin-bottom: 0;
}

.sb-content-body strong {
    font-weight: 600;
}

.sb-content-body a {
    color: var(--sb-primary-dark);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: color-mix(in srgb, var(--sb-primary) 35%, transparent);
    text-underline-offset: 3px;
}

.sb-content-body h2,
.sb-content-body h3,
.sb-content-body h4 {
    font-family: var(--sb-font-display);
    letter-spacing: 0;
    line-height: 1.25;
    margin: 26px 0 12px;
}

.sb-content-body h2 {
    font-size: 24px;
}

.sb-content-body h3 {
    font-size: 20px;
}

.sb-content-body ul,
.sb-content-body ol {
    margin: 0 0 17px;
    padding-left: 22px;
}

.sb-content-body li {
    margin-bottom: 8px;
}

.sb-content-body .related-links {
    border-top: 1px solid rgba(22, 101, 52, 0.14);
    display: grid;
    gap: 10px 18px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    list-style: none;
    margin: 4px 0 22px;
    padding: 16px 0 0;
}

.sb-content-body .related-links li {
    margin: 0;
}

.sb-content-body .related-links a {
    align-items: flex-start;
    color: var(--sb-ink);
    display: inline-flex;
    font-size: 15px;
    font-weight: 500;
    gap: 8px;
    line-height: 1.45;
    text-decoration: none;
}

.sb-content-body .related-links a::before {
    background: var(--sb-primary);
    border-radius: 999px;
    content: "";
    flex: 0 0 6px;
    height: 6px;
    margin-top: 8px;
    width: 6px;
}

.sb-content-body .related-links a:hover,
.sb-content-body .related-links a:focus {
    color: var(--sb-primary-dark);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.sb-table-scroll {
    max-width: 100%;
    margin: 22px 0;
    overflow-x: auto;
    width: 100%;
}

.sb-content-body table {
    border-collapse: collapse;
    margin: 0;
    min-width: 680px;
    white-space: normal;
    width: 100%;
}

.sb-content-body > table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
}

.sb-content-body th,
.sb-content-body td {
    border: 1px solid var(--sb-border-strong);
    font-size: 14px;
    line-height: 1.45;
    overflow-wrap: break-word;
    padding: 10px 12px;
    text-align: left;
    vertical-align: top;
    white-space: normal;
}

.sb-content-body th {
    background: var(--sb-tint-soft);
    color: var(--sb-ink);
    font-weight: 600;
}

.sb-content-sidebar {
    display: grid;
    gap: 16px;
    position: sticky;
    top: 88px;
}

.sb-head-card {
    background: var(--sb-tint-soft);
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius-sm);
    display: grid;
    gap: 6px;
    max-width: 360px;
    padding: 14px 16px;
}

.sb-head-card strong {
    font-size: 14px;
    font-weight: 700;
}

.sb-head-card span {
    color: var(--sb-muted);
    font-size: 13px;
    line-height: 1.45;
}

.sb-bank-tools {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 22px auto 0;
    max-width: var(--sb-container);
    padding: 0 30px;
}

.sb-bank-tools a,
.sb-bank-card,
.sb-product-card,
.sb-bank-hero,
.sb-bank-tabs,
.sb-bank-profile-layout > .sb-panel,
.sb-bank-profile-layout > .sb-filter-panel {
    background: #fff;
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius-sm);
    box-shadow: var(--sb-shadow-card);
}

.sb-bank-tools a {
    display: grid;
    gap: 5px;
    min-height: 78px;
    padding: 14px;
}

.sb-bank-tools strong {
    font-size: 14px;
    font-weight: 700;
}

.sb-bank-tools span {
    color: var(--sb-muted);
    font-size: 12.5px;
    line-height: 1.35;
}

.sb-product-filter {
    background: #fff;
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius-sm);
    box-shadow: var(--sb-shadow-card);
    display: grid;
    gap: 14px;
    margin: 20px auto 0;
    max-width: var(--sb-container);
    padding: 16px;
}

.sb-product-filter-head {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    justify-content: space-between;
}

.sb-product-filter-head strong {
    font-family: var(--sb-font-display);
    font-size: 17px;
    font-weight: 700;
}

.sb-product-filter-head span,
.sb-product-filter-empty {
    color: var(--sb-muted);
    font-size: 13px;
}

.sb-product-filter-controls {
    align-items: end;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(180px, 1.2fr) repeat(2, minmax(150px, .8fr)) minmax(140px, .55fr) auto;
}

.sb-product-filter-controls label {
    color: var(--sb-ink-2);
    display: grid;
    font-size: 12.5px;
    font-weight: 600;
    gap: 6px;
    min-width: 0;
}

.sb-product-filter-controls input:not([type="checkbox"]) {
    min-height: 42px;
    min-width: 0;
    width: 100%;
}

.sb-product-filter-check {
    align-items: center;
    display: flex !important;
    flex-direction: row;
    gap: 8px !important;
    min-height: 42px;
}

.sb-product-filter-check input {
    accent-color: var(--sb-primary);
    height: 17px;
    width: 17px;
}

.sb-product-filter-empty {
    margin: 0;
}

.sb-bank-directory {
    display: grid;
    gap: 12px;
    margin: 20px auto 0;
    max-width: var(--sb-container);
    padding: 0 30px;
}

.sb-product-grid {
    display: grid;
    gap: 14px;
    margin: 20px auto 0;
    max-width: var(--sb-container);
    padding: 0 30px;
}

.sb-bank-card {
    align-items: center;
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(240px, 1fr) minmax(280px, 1.2fr);
    padding: 14px;
}

.sb-bank-card-main {
    align-items: center;
    display: flex;
    gap: 12px;
    min-width: 0;
}

.sb-bank-logo {
    align-items: center;
    background: #173f35;
    border-radius: var(--sb-radius-sm);
    color: #fff;
    display: inline-flex;
    flex: 0 0 44px;
    font-family: var(--sb-font-display);
    font-size: 19px;
    font-weight: 800;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.sb-bank-logo img {
    display: block;
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.sb-bank-card-main strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.sb-bank-card-main small {
    color: var(--sb-muted);
    display: block;
    font-size: 12.5px;
    line-height: 1.35;
    margin-top: 3px;
}

.sb-bank-card-meta {
    color: var(--sb-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 12.5px;
    gap: 8px;
}

.sb-bank-card-meta span {
    background: var(--sb-tint-soft);
    border-radius: 999px;
    padding: 5px 9px;
}

.sb-product-card {
    align-items: center;
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(230px, 1.1fr) minmax(300px, 1.25fr) minmax(220px, .8fr);
    padding: 14px;
}

.sb-product-card[hidden] {
    display: none;
}

.sb-product-card-main {
    align-items: center;
    display: flex;
    gap: 12px;
    min-width: 0;
}

.sb-product-card-main strong {
    display: block;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.25;
}

.sb-product-card-main small {
    color: var(--sb-muted);
    display: block;
    font-size: 12.5px;
    line-height: 1.35;
    margin-top: 3px;
}

.sb-product-terms {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sb-product-terms span {
    background: var(--sb-tint-soft);
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius-sm);
    display: grid;
    gap: 3px;
    min-height: 58px;
    padding: 9px 10px;
}

.sb-product-terms b {
    font-size: 13.5px;
    line-height: 1.2;
}

.sb-product-terms small,
.sb-product-meta {
    color: var(--sb-muted);
    font-size: 12px;
    line-height: 1.35;
}

.sb-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    grid-column: 1 / 3;
}

.sb-product-meta span,
.sb-product-meta a {
    background: var(--sb-tint-soft);
    border-radius: 999px;
    padding: 5px 9px;
}

.sb-product-actions {
    display: grid;
    gap: 8px;
}

.sb-bank-page {
    margin: 0 auto;
    max-width: var(--sb-container);
    padding: 26px 30px 56px;
}

.sb-bank-hero {
    align-items: center;
    display: flex;
    gap: 16px;
    padding: 20px;
}

.sb-bank-hero h1 {
    font-family: var(--sb-font-display);
    font-size: 30px;
    letter-spacing: 0;
    line-height: 1.15;
    margin: 0 0 6px;
}

.sb-bank-hero p {
    color: var(--sb-muted);
    font-size: 14px;
    line-height: 1.45;
    margin: 0;
}

.sb-bank-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0;
    padding: 10px;
}

.sb-bank-tabs a {
    background: var(--sb-tint-soft);
    border-radius: 999px;
    color: var(--sb-ink-2);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 11px;
}

.sb-bank-profile-layout {
    align-items: start;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
}

.sb-bank-profile-layout > .sb-panel,
.sb-bank-profile-layout > .sb-filter-panel {
    padding: 18px;
}

.sb-trust-line {
    border-bottom: 1px solid var(--sb-border);
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 10px 0;
}

.sb-trust-line strong {
    font-size: 13px;
}

.sb-trust-line span {
    color: var(--sb-muted);
    font-size: 13px;
    text-align: right;
}

.sb-empty-state {
    background: #fff;
    border: 1px dashed var(--sb-border-strong);
    border-radius: var(--sb-radius-sm);
    display: grid;
    gap: 6px;
    padding: 18px;
}

.sb-empty-state strong {
    font-size: 15px;
}

.sb-empty-state span {
    color: var(--sb-muted);
    font-size: 13px;
    line-height: 1.45;
}

@media (max-width: 1080px) {
    .sb-content-layout {
        grid-template-columns: 1fr;
    }

    .sb-content-sidebar {
        position: static;
    }

    .sb-bank-tools {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sb-product-filter-controls {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sb-bank-profile-layout,
    .sb-bank-card,
    .sb-product-card {
        grid-template-columns: 1fr;
    }

    .sb-product-meta {
        grid-column: auto;
    }
}

.sb-content-panel {
    background: #fff;
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius-lg);
    box-shadow: var(--sb-shadow-card);
    padding: 20px;
}

.sb-content-panel-primary {
    background: var(--sb-tint-soft);
}

.sb-content-panel h2 {
    font-family: var(--sb-font-display);
    font-size: 16px;
    line-height: 1.3;
    margin: 0 0 9px;
}

.sb-content-panel p {
    color: var(--sb-muted);
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0 0 15px;
}

.sb-content-panel ul {
    color: var(--sb-ink-2);
    display: grid;
    font-size: 13.5px;
    gap: 10px;
    line-height: 1.45;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sb-content-panel li {
    padding-left: 20px;
    position: relative;
}

.sb-content-panel li::before {
    background: var(--sb-primary);
    border-radius: 50%;
    content: "";
    height: 6px;
    left: 2px;
    position: absolute;
    top: .55em;
    width: 6px;
}

.sb-currency-page {
    background: var(--sb-bg);
}

.sb-currency-hero {
    background: #fff;
    border-bottom: 1px solid var(--sb-border);
    padding: 30px 0 28px;
}

.sb-currency-hero h1 {
    font-family: var(--sb-font-display);
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.16;
    margin: 0 0 12px;
}

.sb-currency-hero p {
    color: var(--sb-muted);
    font-size: 15.5px;
    line-height: 1.6;
    margin: 0;
    max-width: 760px;
}

.sb-currency-layout {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) 360px;
    margin: 0 auto;
    max-width: var(--sb-container);
    padding: 26px 30px 58px;
}

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

.sb-currency-card,
.sb-currency-note,
.sb-currency-empty {
    background: #fff;
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius-lg);
    box-shadow: var(--sb-shadow-card);
}

.sb-currency-card {
    display: grid;
    gap: 8px;
    min-height: 150px;
    padding: 22px;
}

.sb-currency-card span {
    color: var(--sb-primary-dark);
    font-family: var(--sb-font-display);
    font-size: 15px;
    font-weight: 600;
}

.sb-currency-card strong {
    font-family: var(--sb-font-display);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.05;
}

.sb-currency-card small {
    color: var(--sb-muted);
    font-size: 13px;
    line-height: 1.35;
}

.sb-currency-note {
    align-self: start;
    padding: 22px;
}

.sb-currency-note h2 {
    font-family: var(--sb-font-display);
    font-size: 18px;
    line-height: 1.3;
    margin: 0 0 10px;
}

.sb-currency-note p {
    color: var(--sb-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px;
}

.sb-currency-empty {
    color: var(--sb-muted);
    font-size: 14px;
    grid-column: 1 / -1;
    line-height: 1.5;
    padding: 22px;
}

.sb-page {
    margin: 0 auto;
    max-width: 960px;
    padding: 34px 30px 58px;
}

.sb-page-card {
    background: #fff;
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius-xl);
    padding: 32px;
}

.sb-page-card h1 {
    font-family: var(--sb-font-display);
    font-size: 32px;
    line-height: 1.15;
    margin: 0 0 18px;
}

.sb-page-card p {
    color: #46554d;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 16px;
}

.sb-not-found-page {
    background: var(--sb-bg);
}

.sb-not-found-hero {
    align-items: stretch;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    margin: 0 auto;
    max-width: var(--sb-container);
    padding: 42px 30px 22px;
}

.sb-not-found-copy {
    background: linear-gradient(135deg, #0a7a4e 0%, #0fa968 64%, #13b877 100%);
    border-radius: var(--sb-radius-hero);
    box-shadow: var(--sb-shadow-hero);
    color: #fff;
    display: grid;
    min-height: 420px;
    overflow: hidden;
    padding: 44px;
    position: relative;
}

.sb-not-found-copy::before {
    background-image:
        linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 42px 42px;
    content: "";
    inset: 0;
    mask-image: linear-gradient(115deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
    opacity: .45;
    position: absolute;
}

.sb-not-found-copy > * {
    position: relative;
    z-index: 1;
}

.sb-not-found-code {
    color: var(--sb-action-bright);
    font-family: var(--sb-font-display);
    font-size: 112px;
    font-weight: 800;
    line-height: .9;
    margin-bottom: 18px;
}

.sb-not-found-copy h1 {
    font-family: var(--sb-font-display);
    font-size: 44px;
    line-height: 1.08;
    margin: 0 0 16px;
    max-width: 680px;
}

.sb-not-found-copy p {
    color: #dcf5e8;
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
    max-width: 620px;
}

.sb-not-found-path {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--sb-radius-md);
    color: #dcf5e8;
    margin-top: 18px !important;
    overflow-wrap: anywhere;
    padding: 11px 13px;
}

.sb-not-found-path span {
    color: #fff;
    font-weight: 600;
}

.sb-not-found-actions {
    align-items: center;
    align-self: end;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.sb-not-found-actions .sb-btn-primary {
    background: var(--sb-action-bright);
    box-shadow: 0 14px 28px -14px rgba(251, 191, 36, .68);
    color: #241500;
}

.sb-not-found-actions .sb-btn-outline {
    background: rgba(255, 255, 255, .96);
}

.sb-not-found-panel {
    align-self: stretch;
    background: #fff;
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius-xl);
    box-shadow: var(--sb-shadow-card);
    padding: 28px;
}

.sb-not-found-panel h2 {
    font-family: var(--sb-font-display);
    font-size: 24px;
    line-height: 1.18;
    margin: 0 0 10px;
}

.sb-not-found-panel p {
    color: var(--sb-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 18px;
}

.sb-not-found-links {
    display: grid;
    gap: 10px;
}

.sb-not-found-links a {
    background: var(--sb-tint-soft);
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius-md);
    display: grid;
    gap: 4px;
    padding: 14px;
}

.sb-not-found-links a:hover,
.sb-not-found-links a:focus {
    border-color: rgba(10, 122, 78, .35);
    box-shadow: 0 12px 28px -22px rgba(15, 27, 22, .45);
}

.sb-not-found-links strong {
    color: var(--sb-ink);
    font-size: 14px;
}

.sb-not-found-links span {
    color: var(--sb-muted);
    font-size: 12.5px;
    line-height: 1.4;
}

.sb-not-found-popular {
    margin: 0 auto;
    max-width: var(--sb-container);
    padding: 14px 30px 72px;
}

.sb-not-found-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.sb-not-found-card {
    background: #fff;
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius-lg);
    box-shadow: var(--sb-shadow-card);
    display: grid;
    gap: 8px;
    min-height: 150px;
    padding: 18px;
}

.sb-not-found-card:hover,
.sb-not-found-card:focus {
    border-color: rgba(10, 122, 78, .35);
    box-shadow: 0 18px 40px -28px rgba(15, 27, 22, .48);
}

.sb-not-found-card span {
    color: var(--sb-primary-dark);
    font-family: var(--sb-font-display);
    font-size: 13px;
    font-weight: 700;
}

.sb-not-found-card strong {
    font-family: var(--sb-font-display);
    font-size: 17px;
    line-height: 1.2;
}

.sb-not-found-card small {
    color: var(--sb-muted);
    font-size: 13px;
    line-height: 1.45;
}

.sb-form {
    display: grid;
    gap: 16px;
    max-width: 640px;
}

.sb-form label {
    color: var(--sb-ink-2);
    display: grid;
    font-size: 14px;
    gap: 7px;
}

.sb-admin-shell {
    margin: 0 auto;
    max-width: 1080px;
    padding: 34px 30px 60px;
}

.sb-admin-analytics {
    background: #f6f8f7;
    max-width: 1180px;
}

.sb-admin-hero {
    align-items: start;
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    margin-bottom: 22px;
}

.sb-admin-hero h1 {
    font-family: var(--sb-font-display);
    font-size: clamp(30px, 4vw, 48px);
    letter-spacing: 0;
    line-height: 1.05;
    margin: 8px 0 10px;
}

.sb-admin-hero p,
.sb-admin-hero span,
.sb-admin-section-head span,
.sb-admin-rank span,
.sb-admin-rank small {
    color: var(--sb-muted);
}

.sb-admin-filter {
    background: #fff;
    border: 1px solid rgba(21, 48, 35, 0.1);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(15, 49, 32, 0.08);
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 16px;
}

.sb-admin-filter label {
    color: var(--sb-ink-2);
    display: grid;
    font-size: 13px;
    gap: 6px;
}

.sb-admin-filter input,
.sb-admin-filter select {
    border: 1px solid #d9e2dc;
    border-radius: 8px;
    font: inherit;
    min-width: 0;
    padding: 10px 11px;
}

.sb-admin-filter button {
    background: var(--sb-primary);
    border: 0;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    grid-column: 1 / -1;
    padding: 12px 14px;
}

.sb-admin-kpis,
.sb-admin-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 16px;
}

.sb-admin-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.sb-admin-kpi,
.sb-admin-panel {
    background: #fff;
    border: 1px solid rgba(21, 48, 35, 0.1);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(15, 49, 32, 0.07);
}

.sb-admin-kpi {
    display: grid;
    gap: 5px;
    padding: 18px;
}

.sb-admin-kpi span {
    color: var(--sb-muted);
    font-size: 13px;
}

.sb-admin-kpi strong {
    color: var(--sb-ink);
    font-family: var(--sb-font-display);
    font-size: 34px;
    line-height: 1;
}

.sb-admin-kpi small {
    color: var(--sb-muted);
}

.sb-admin-panel {
    margin-bottom: 16px;
    padding: 20px;
}

.sb-admin-section-head {
    align-items: start;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    margin-bottom: 14px;
}

.sb-admin-section-head h2,
.sb-admin-panel h2 {
    font-family: var(--sb-font-display);
    font-size: 22px;
    letter-spacing: 0;
    margin: 0 0 6px;
}

.sb-admin-section-head strong {
    background: #ecf7ef;
    border-radius: 999px;
    color: var(--sb-primary-dark);
    padding: 8px 12px;
    white-space: nowrap;
}

.sb-admin-chart {
    background: linear-gradient(180deg, #f9fbfa 0%, #fff 100%);
    border-radius: 8px;
    display: block;
    min-height: 210px;
    overflow: visible;
    width: 100%;
}

.sb-admin-chart rect {
    fill: var(--sb-primary);
}

.sb-admin-chart line {
    stroke: #dfe7e2;
    stroke-width: 2;
}

.sb-admin-chart text {
    fill: var(--sb-muted);
    font-size: 12px;
}

.sb-admin-rank {
    display: grid;
    gap: 7px 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    margin-top: 14px;
    position: relative;
}

.sb-admin-rank strong,
.sb-admin-rank span,
.sb-admin-rank small {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
}

.sb-admin-rank b {
    color: var(--sb-ink);
    font-family: var(--sb-font-display);
}

.sb-admin-rank em {
    background: linear-gradient(90deg, var(--sb-primary), #7bc99a);
    border-radius: 999px;
    display: block;
    grid-column: 1 / -1;
    height: 8px;
}

.sb-admin-rank small {
    font-size: 12px;
    grid-column: 1 / -1;
}

.sb-admin-rank-compact {
    grid-template-columns: minmax(0, 1fr) auto;
}

.sb-admin-table-wrap {
    overflow-x: auto;
}

.sb-admin-table {
    border-collapse: collapse;
    min-width: 820px;
    width: 100%;
}

.sb-admin-table th,
.sb-admin-table td {
    border-bottom: 1px solid #e6ece8;
    padding: 11px 9px;
    text-align: left;
    vertical-align: top;
}

.sb-admin-table th {
    color: var(--sb-muted);
    font-size: 12px;
    text-transform: uppercase;
}

.sb-admin-pill {
    background: #eef7f1;
    border-radius: 999px;
    color: var(--sb-primary-dark);
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
}

.sb-admin-empty {
    color: var(--sb-muted);
    margin: 8px 0 0;
}

.admin-review {
    border-top: 1px solid #dfe4ea;
    padding: 20px 0;
}

.admin-review form {
    display: inline-grid;
    margin-right: 8px;
}

.sb-footer {
    background: var(--sb-ink);
    color: #aebbb3;
    font-size: 12.5px;
    padding: 28px 30px;
}

.sb-footer-inner {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(200px, 230px) minmax(0, 1fr);
    margin: 0 auto;
    max-width: var(--sb-container);
}

.sb-footer-brand {
    line-height: 1.55;
    max-width: 230px;
}

.sb-footer-brand strong,
.sb-footer-col strong {
    color: #fff;
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.sb-footer-brand strong {
    font-family: var(--sb-font-display);
    font-size: 15px;
}

.sb-footer-brand span {
    color: #7d8c84;
    display: block;
    margin-top: 12px;
}

.sb-footer-links {
    display: grid;
    gap: 22px 18px;
    grid-template-columns: repeat(auto-fit, minmax(108px, 1fr));
}

.sb-footer-col {
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 0;
}

.sb-footer-col a {
    color: #aebbb3;
    line-height: 1.35;
    text-decoration: none;
}

.sb-footer-col a:hover,
.sb-footer-col a:focus {
    color: #fff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.sb-ds-shell {
    align-items: flex-start;
    display: flex;
    min-height: 100vh;
}

.sb-ds-sidebar {
    background: var(--sb-ink);
    color: #cdd8d2;
    display: flex;
    flex: 0 0 268px;
    flex-direction: column;
    gap: 6px;
    height: 100vh;
    overflow-y: auto;
    padding: 26px 22px;
    position: sticky;
    top: 0;
    width: 268px;
}

.sb-ds-brand {
    align-items: center;
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.sb-ds-brand strong,
.sb-ds-brand small {
    display: block;
}

.sb-ds-brand strong {
    color: #fff;
    font-family: var(--sb-font-display);
    font-size: 15px;
}

.sb-ds-brand small {
    color: #5fcf9c;
    font-size: 10.5px;
    font-weight: 500;
}

.sb-ds-sidebar a {
    border-radius: 9px;
    color: #cdd8d2;
    font-size: 13.5px;
    padding: 8px 12px;
}

.sb-ds-sidebar a:hover {
    background: rgba(255, 255, 255, .07);
}

.sb-ds-main {
    flex: 1;
    max-width: 1080px;
    min-width: 0;
    padding: 40px 48px 80px;
}

.sb-ds-section {
    scroll-margin-top: 24px;
    margin-bottom: 56px;
}

.sb-ds-kicker {
    color: var(--sb-primary);
    font-size: 12.5px;
    font-weight: 500;
    margin-bottom: 10px;
}

.sb-ds-section h1,
.sb-ds-section h2,
.sb-ds-section h3 {
    font-family: var(--sb-font-display);
    letter-spacing: 0;
}

.sb-ds-section h1 {
    font-size: 40px;
    line-height: 1.05;
    margin: 0 0 16px;
    max-width: 680px;
}

.sb-ds-section h2 {
    font-size: 26px;
    line-height: 1.15;
    margin: 0 0 6px;
}

.sb-ds-section h3 {
    font-size: 17px;
    margin: 0 0 6px;
}

.sb-ds-section p {
    color: #46554d;
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 0 22px;
    max-width: 640px;
}

.sb-ds-principles,
.sb-ds-swatches,
.sb-ds-type-grid,
.sb-ds-layout-grid,
.sb-ds-field-grid {
    display: grid;
    gap: 14px;
}

.sb-ds-principles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sb-ds-principles div,
.sb-ds-card,
.sb-ds-type-grid div,
.sb-ds-type-list,
.sb-ds-demo-row,
.sb-ds-field-grid,
.sb-ds-picker-preview {
    background: #fff;
    border: 1px solid rgba(15, 27, 22, .08);
    border-radius: 16px;
    padding: 22px;
}

.sb-ds-principles p,
.sb-ds-card p {
    font-size: 13.5px;
    margin: 0;
}

.sb-ds-swatches {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sb-ds-swatch {
    background: #fff;
    border: 1px solid rgba(15, 27, 22, .08);
    border-radius: 14px;
    overflow: hidden;
}

.sb-ds-swatch i {
    display: block;
    height: 74px;
}

.sb-ds-swatch strong,
.sb-ds-swatch span {
    display: block;
    padding: 0 13px;
}

.sb-ds-swatch strong {
    font-size: 13px;
    padding-top: 11px;
}

.sb-ds-swatch span {
    color: var(--sb-subtle);
    font-size: 12px;
    padding-bottom: 11px;
}

.sb-ds-type-grid,
.sb-ds-layout-grid,
.sb-ds-field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sb-ds-type-grid strong {
    display: block;
    font-size: 46px;
    line-height: 1;
}

.sb-ds-type-grid span,
.sb-ds-type-list small {
    color: var(--sb-subtle);
    font-size: 12px;
}

.sb-ds-font-display {
    font-family: var(--sb-font-display);
}

.sb-ds-font-text {
    font-family: var(--sb-font-text);
}

.sb-ds-type-list {
    margin-top: 14px;
    padding-bottom: 8px;
    padding-top: 8px;
}

.sb-ds-type-list div {
    align-items: baseline;
    border-bottom: 1px solid rgba(15, 27, 22, .06);
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
}

.sb-ds-type-list div:last-child {
    border-bottom: 0;
}

.sb-ds-display {
    font-family: var(--sb-font-display);
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}

.sb-ds-heading {
    font-family: var(--sb-font-display);
    font-size: 26px;
    font-weight: 600;
}

.sb-ds-subhead {
    font-family: var(--sb-font-display);
    font-size: 18px;
    font-weight: 500;
}

.sb-ds-spacing,
.sb-ds-radius {
    align-items: flex-end;
    display: flex;
    gap: 10px;
    min-height: 62px;
}

.sb-ds-spacing i {
    background: var(--sb-primary);
    border-radius: 4px;
    display: block;
    height: var(--s);
    width: var(--s);
}

.sb-ds-radius i {
    background: var(--sb-tint-soft);
    border: 1px solid rgba(15, 27, 22, .08);
    display: block;
    height: 48px;
    width: 54px;
}

.sb-ds-radius i:nth-child(1) {
    border-radius: 10px;
}

.sb-ds-radius i:nth-child(2) {
    border-radius: 14px;
}

.sb-ds-radius i:nth-child(3) {
    border-radius: 18px;
    box-shadow: var(--sb-shadow-card);
}

.sb-ds-radius i:nth-child(4) {
    border-radius: 22px;
    box-shadow: 0 22px 50px -24px rgba(15, 80, 55, .5);
}

.sb-ds-demo-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.sb-ds-field-grid label {
    color: var(--sb-muted);
    display: block;
    font-size: 13px;
    margin: 0 0 7px;
}

.sb-ds-field-grid input:not([type="range"]),
.sb-select-mock {
    border: 1px solid var(--sb-border-strong);
    border-radius: 12px;
    font-size: 15px;
    margin-bottom: 18px;
    padding: 13px 15px;
    width: 100%;
}

.sb-select-mock {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.sb-select-mock span {
    color: var(--sb-soft);
}

.sb-ds-offer-preview {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 920px;
}

.sb-ds-picker-preview {
    max-width: 380px;
    padding: 0;
}

@media (max-width: 920px) {
    .sb-header-inner {
        align-items: center;
        display: grid;
        gap: 10px 14px;
        grid-template-columns: minmax(0, 1fr) auto;
        padding: 12px 18px 10px;
    }

    .sb-nav {
        flex-wrap: wrap;
        gap: 10px 14px;
        grid-column: 1 / -1;
        margin-left: 0;
        overflow: visible;
        padding-bottom: 2px;
        scrollbar-width: none;
        width: 100%;
    }

    .sb-nav::-webkit-scrollbar {
        display: none;
    }

    .sb-nav a {
        flex: 0 0 auto;
    }

    .sb-nav-group {
        flex: 0 0 auto;
    }

    .sb-nav-menu {
        left: 18px;
        max-width: none;
        min-width: 0;
        position: fixed;
        right: 18px;
        top: 148px;
    }

    .sb-nav-menu-wide {
        grid-template-columns: 1fr;
        min-width: 0;
    }

    .sb-header-side {
        gap: 10px;
        justify-self: end;
        margin-left: 0;
    }

    .sb-hero-grid,
    .sb-home-loan-tools,
    .sb-trust-grid,
    .sb-category-layout,
    .sb-offer-layout,
    .sb-content-layout,
    .sb-currency-layout,
    .sb-safe-hero,
    .sb-safe-grid,
    .sb-not-found-hero {
        grid-template-columns: 1fr;
    }

    .sb-not-found-copy {
        min-height: 360px;
    }

    .sb-not-found-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sb-safe-left-flow,
    .sb-safe-right-flow {
        display: contents;
    }

    .sb-safe-hero-copy {
        order: 1;
    }

    .sb-safe-right-flow [data-safe-loan-checker] {
        order: 2;
    }

    .sb-safe-check-card {
        order: 3;
    }

    .sb-safe-debt-card {
        order: 4;
    }

    .sb-safe-why-card {
        order: 5;
    }

    .sb-safe-refund-card {
        order: 6;
    }

    .sb-safe-note {
        order: 7;
    }

    .sb-offer-grid,
    .sb-credit-grid,
    .sb-direction-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sb-filter-card,
    .sb-sticky-apply,
    .sb-content-sidebar {
        position: static;
    }

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

    .sb-ds-shell {
        display: block;
    }

    .sb-ds-sidebar {
        flex-direction: row;
        height: auto;
        overflow-x: auto;
        padding: 14px 18px;
        position: sticky;
        width: 100%;
        z-index: 6;
    }

    .sb-ds-brand {
        flex: 0 0 auto;
        margin-bottom: 0;
    }

    .sb-ds-sidebar a {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .sb-ds-main {
        padding: 30px 24px 64px;
    }

    .sb-home-loan-tools .sb-calculator {
        grid-template-columns: 1fr;
    }

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

    .sb-ds-principles,
    .sb-ds-swatches,
    .sb-ds-type-grid,
    .sb-ds-layout-grid,
    .sb-ds-field-grid,
    .sb-ds-offer-preview {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .sb-container,
    .sb-section,
    .sb-chips-inner,
    .sb-category-head,
    .sb-category-layout,
    .sb-bank-directory,
    .sb-bank-page,
    .sb-bank-tools,
    .sb-product-grid,
    .sb-offer-page,
    .sb-page,
    .sb-content-layout,
    .sb-admin-shell,
    .sb-not-found-hero,
    .sb-not-found-popular {
        padding-left: 18px;
        padding-right: 18px;
    }

	    .sb-currency-layout {
	        padding-left: 18px;
	        padding-right: 18px;
	    }

    .sb-tool-page {
        padding-left: 18px;
        padding-right: 18px;
    }

    .sb-product-filter {
        margin-left: 18px;
        margin-right: 18px;
    }

    .sb-product-filter-controls {
        grid-template-columns: minmax(0, 1fr);
    }

    .sb-safe-page {
        padding-left: 18px;
        padding-right: 18px;
    }

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

    .sb-product-terms {
        grid-template-columns: 1fr;
    }

    .sb-admin-hero,
    .sb-admin-filter,
    .sb-admin-kpis,
    .sb-admin-grid {
        grid-template-columns: 1fr;
    }

    .sb-admin-filter {
        padding: 14px;
    }

    .sb-admin-panel {
        padding: 16px;
    }

    .sb-admin-section-head {
        display: grid;
    }

    .sb-header-inner {
        gap: 8px 12px;
        grid-template-columns: auto minmax(0, 1fr) auto;
        padding: 10px 18px 8px;
    }

    .sb-brand {
        min-width: 0;
    }

    .sb-brand-logo {
        height: 43px;
        width: 164px;
    }

    .sb-header-side {
        gap: 8px;
        grid-column: 3;
        grid-row: 1;
    }

    .sb-location {
        display: inline-flex;
        font-size: 12.5px;
        max-width: 112px;
        min-height: 34px;
        padding: 7px 24px 7px 25px;
    }

    .sb-location::before {
        box-shadow: 0 0 0 3px rgba(15, 169, 104, .14);
        height: 6px;
        left: 10px;
        width: 6px;
    }

    .sb-location::after {
        height: 5px;
        right: 10px;
        width: 5px;
    }

    .sb-header-side .sb-btn {
        min-height: 34px;
        padding: 8px 13px;
    }

    .sb-nav {
        flex-wrap: nowrap;
        gap: 12px;
        grid-column: 1 / -1;
        overflow-x: auto;
        padding: 0 0 3px;
        scroll-padding-inline: 18px;
    }

    .sb-nav-summary,
    .sb-nav > a {
        font-size: 13px;
    }

    .sb-nav > a {
        display: none;
    }

    .sb-nav-menu {
        top: 98px;
    }

    .sb-city-modal {
        align-items: flex-end;
        padding: 0;
    }

    .sb-city-dialog {
        border-radius: 16px 16px 0 0;
        max-height: 86dvh;
        padding: 24px 18px calc(24px + env(safe-area-inset-bottom));
        width: 100%;
    }

    .sb-city-dialog h2 {
        font-size: 26px;
    }

    .sb-city-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sb-tool-hero {
        grid-template-columns: 1fr;
    }

    .sb-tool-hero h1,
    .sb-safe-hero h1 {
        font-size: 32px;
    }

    .sb-safe-kpis,
    .sb-safe-check-grid {
        grid-template-columns: 1fr;
    }

    .sb-safe-card,
    .sb-safe-note {
        padding: 20px;
    }

    .sb-hero {
        padding: 26px 18px 32px;
    }

    .sb-hero-grid {
        gap: 26px;
    }

    .sb-hero h1 {
        font-size: 32px;
    }

    .sb-hero-stats {
        display: grid;
        gap: 12px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sb-hero-stat + .sb-hero-stat {
        border-left: 0;
        padding-left: 0;
    }

    .sb-calculator,
    .sb-page-card,
    .sb-content-card,
    .sb-panel,
    .sb-offer-header,
    .sb-not-found-copy,
    .sb-not-found-panel {
        padding: 20px;
    }

    .sb-not-found-hero {
        gap: 18px;
        padding-bottom: 16px;
        padding-top: 26px;
    }

    .sb-not-found-code {
        font-size: 64px;
    }

    .sb-not-found-copy {
        min-height: 0;
        overflow: visible;
    }

    .sb-not-found-copy h1 {
        font-size: 28px;
    }

    .sb-not-found-copy p {
        font-size: 15px;
    }

    .sb-not-found-path {
        display: none;
    }

    .sb-not-found-actions {
        align-items: stretch;
        flex-direction: column;
        margin-top: 26px;
    }

    .sb-not-found-actions .sb-btn {
        width: 100%;
    }

    .sb-not-found-grid {
        grid-template-columns: 1fr;
    }

    .sb-content-hero {
        padding: 22px 0 20px;
    }

    .sb-content-hero h1 {
        font-size: 28px;
    }

    .sb-content-body {
        font-size: 15px;
    }

    .sb-currency-hero {
        padding: 22px 0 20px;
    }

    .sb-currency-hero h1 {
        font-size: 28px;
    }

    .sb-currency-grid {
        grid-template-columns: 1fr;
    }

    .sb-currency-card strong {
        font-size: 26px;
    }

    .sb-offer-card {
        gap: 10px;
        padding: 16px;
    }

    .sb-offer-grid,
    .sb-credit-grid,
    .sb-direction-grid {
        grid-template-columns: 1fr;
    }

    .sb-blog-grid-large {
        grid-template-columns: 1fr;
    }

    .sb-blog-page {
        padding: 22px 18px 52px;
    }

    .sb-offer-main-value strong {
        font-size: 28px;
    }

    .sb-offer-card .sb-offer-terms {
        display: grid;
        gap: 6px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sb-offer-card .sb-offer-term {
        min-width: 0;
        padding: 8px;
    }

    .sb-offer-card .sb-offer-term strong {
        font-size: 16px;
        line-height: 1.2;
    }

    .sb-offer-row {
        gap: 14px;
        padding: 16px;
    }

    .sb-offer-row-terms {
        display: grid;
        gap: 8px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sb-row-actions {
        min-width: 0;
    }

    .sb-offer-note {
        display: block;
        line-height: 1.4;
        margin: 10px 0 0;
    }

    .sb-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .sb-ds-main {
        padding-left: 18px;
        padding-right: 18px;
    }

    .sb-footer {
        padding: 26px 18px;
    }

    .sb-footer-inner {
        grid-template-columns: 1fr;
    }

    .sb-footer-brand {
        max-width: none;
    }

    .sb-footer-links {
        gap: 22px 18px;
        grid-template-columns: repeat(auto-fit, minmax(136px, 1fr));
    }

    .sb-ds-section h1 {
        font-size: 32px;
    }

    .sb-ds-display,
    .sb-ds-type-grid strong {
        font-size: 34px;
    }
}

@media (max-width: 420px) {
    .sb-brand-logo {
        width: 150px;
    }

    .sb-header-side .sb-btn {
        display: none;
    }

    .sb-location {
        max-width: 128px;
    }
}
@font-face {
    font-family: 'Onest';
    src: url('/assets/onest-cyrillic.woff2') format('woff2');
    font-style: normal;
    font-weight: 400 800;
    font-display: optional;
}

:root {
    --sb-ink: #102019;
    --sb-ink-soft: #3b4a42;
    --sb-muted: #526159;
    --sb-surface: #ffffff;
    --sb-page: #f3f7f5;
    --sb-green: #0fa968;
    --sb-green-dark: #08794c;
    --sb-green-deep: #063e2b;
    --sb-line-soft: rgba(16, 32, 25, 0.1);
    --sb-focus: #f4c938;
    --sb-container: 1180px;
    --sb-space-page: clamp(12px, 3vw, 32px);
    --sb-radius-control: 12px;
    --sb-target: 44px;
    --sb-shadow-card: 0 14px 34px -26px rgba(7, 48, 32, 0.42);
    --sb-ink-2: #3b4a42;
    --sb-subtle: #526159;
    --sb-soft: #526159;
    --sb-bg: #f3f7f5;
    --sb-primary: #08794c;
    --sb-primary-dark: #065f3d;
    --sb-primary-cta: #08794c;
}
html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    min-width: 320px;
    margin: 0;
    font-family: 'Onest', Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--sb-ink);
    background: var(--sb-page);
    overflow-wrap: anywhere;
}

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

:focus-visible {
    outline: 3px solid var(--sb-focus);
    outline-offset: 3px;
}

.sb-skip-link {
    position: fixed;
    z-index: 1000;
    top: 8px;
    left: 8px;
    min-height: var(--sb-target);
    padding: 11px 16px;
    border-radius: var(--sb-radius-control);
    background: #fff;
    box-shadow: var(--sb-shadow-card);
    color: var(--sb-green-deep);
    font-weight: 750;
    transform: translateY(calc(-100% - 16px));
}

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

main:focus {
    outline: none;
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

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

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

@media (max-width: 640px) {
    .sb-page-container {
        width: min(100% - 24px, var(--sb-container));
    }
}
.sb-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid var(--sb-line-soft);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
}

.sb-header .sb-header-inner {
    display: flex;
    width: min(100% - 48px, var(--sb-container));
    padding: 0;
    min-height: 64px;
    margin: 0 auto;
    align-items: center;
    gap: 20px;
}

.sb-header .sb-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
}

.sb-header .sb-brand-logo {
    display: block;
    width: 150px;
    height: auto;
}

.sb-header .sb-nav {
    display: flex;
    min-width: 0;
    flex: 1;
    align-items: center;
    gap: 17px;
    font-size: 13px;
    font-weight: 650;
}

.sb-header .sb-nav > a,
.sb-header .sb-nav-summary {
    color: var(--sb-ink-soft);
    white-space: nowrap;
}

.sb-header .sb-nav > a:hover,
.sb-header .sb-nav > a[aria-current="page"],
.sb-header .sb-nav-summary:hover {
    color: var(--sb-green-dark);
}

.sb-header .sb-header-tools {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
}

.sb-site-search {
    display: flex;
    width: 148px;
    min-height: 44px;
    border: 1px solid rgba(16, 32, 25, 0.16);
    border-radius: 12px;
    background: #fff;
    align-items: center;
}

.sb-site-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 8px 4px 8px 11px;
    font-size: 13px;
}

.sb-site-search button {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--sb-green-dark);
    cursor: pointer;
}

.sb-site-search button svg {
    display: block;
    margin: auto;
}

.sb-header .sb-location {
    min-height: 44px;
    border: 1px solid rgba(16, 32, 25, 0.16);
    border-radius: 999px;
    background: #fff;
    padding: 8px 28px;
    color: var(--sb-ink-soft);
    font-size: 12px;
}

.sb-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    min-width: 44px;
    flex: 0 0 44px;
    border: 1px solid rgba(16, 32, 25, 0.16);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
}

.sb-menu-toggle > span[aria-hidden] {
    position: relative;
    display: block;
    width: 19px;
    height: 2px;
    margin: auto;
    background: currentColor;
    box-shadow: 0 -6px currentColor, 0 6px currentColor;
}

body.is-menu-open {
    overflow: hidden;
}

.sb-footer {
    margin-top: 56px;
    background: var(--sb-green-deep);
    color: rgba(255, 255, 255, 0.74);
}

.sb-footer .sb-footer-inner {
    display: grid;
    width: min(100% - 40px, var(--sb-container));
    margin: 0 auto;
    padding: 48px 0;
    grid-template-columns: minmax(240px, 0.85fr) minmax(0, 2fr);
    gap: 56px;
}

.sb-footer .sb-footer-brand strong {
    display: block;
    margin-bottom: 14px;
    color: #fff;
    font-size: 21px;
}

.sb-footer .sb-footer-brand p {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.55;
}

.sb-footer .sb-footer-brand span {
    display: block;
    margin-top: 20px;
    color: #c0d0c7;
    font-size: 12px;
}

.sb-footer .sb-footer-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.sb-footer .sb-footer-col strong,
.sb-footer .sb-footer-col a {
    display: block;
}

.sb-footer .sb-footer-col strong {
    margin-bottom: 13px;
    color: #fff;
    font-size: 13px;
}

.sb-footer .sb-footer-col a {
    margin: 8px 0;
    font-size: 12px;
    line-height: 1.4;
}

.sb-footer .sb-footer-col a:hover {
    color: #fff;
}

@media (max-width: 1080px) {
    .sb-header .sb-header-inner {
        min-height: 60px;
    }

    .sb-menu-toggle {
        display: block;
        order: 3;
    }

    .sb-header .sb-header-tools {
        margin-left: auto;
    }

    .sb-header .sb-nav {
        position: absolute;
        top: 100%;
        right: 16px;
        left: 16px;
        display: none;
        max-height: calc(100vh - 84px);
        padding: 14px;
        overflow: auto;
        border: 1px solid var(--sb-line-soft);
        border-radius: 0 0 16px 16px;
        background: #fff;
        box-shadow: 0 24px 48px -28px rgba(7, 48, 32, 0.38);
        flex-direction: column;
        align-items: stretch;
        width: auto;
        margin-left: 0;
        grid-column: auto;
    }

    .sb-header .sb-nav.is-open {
        display: flex;
    }

    .sb-header .sb-nav > a,
    .sb-header .sb-nav-summary {
        display: flex;
        min-height: 44px;
        padding: 10px 8px;
        align-items: center;
    }
}

@media (max-width: 700px) {
    .sb-header .sb-header-inner {
        width: min(100% - 24px, var(--sb-container));
        gap: 8px;
    }

    .sb-header .sb-brand-logo {
        width: 132px;
    }

    .sb-site-search {
        width: 42px;
        border: 0;
    }

    .sb-site-search input {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        clip: rect(0, 0, 0, 0);
    }

    .sb-header .sb-location {
        padding-inline: 9px;
    }

    .sb-header .sb-location::before,
    .sb-header .sb-location::after {
        display: none;
    }

    .sb-footer .sb-footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 38px 0;
    }

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

    .sb-footer .sb-footer-col a {
        display: flex;
        min-height: 44px;
        margin-block: 0;
        align-items: center;
    }
}

@media (max-width: 420px) {
    .sb-header .sb-header-inner {
        width: min(100% - 16px, var(--sb-container));
    }

    .sb-header .sb-brand-logo {
        width: 120px;
    }

    .sb-header .sb-location {
        max-width: 92px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .sb-footer .sb-footer-links {
        grid-template-columns: 1fr;
    }
}
.sb-search-page {
    min-height: 55vh;
    padding: 48px 0;
}

.sb-search-page .sb-container {
    width: min(100% - 32px, 840px);
    margin: 0 auto;
}

.sb-search-page-form > div {
    display: flex;
    gap: 10px;
    margin: 7px 0 30px;
}

.sb-search-page-form input {
    min-width: 0;
    flex: 1;
    border: 1px solid rgba(16, 32, 25, 0.18);
    border-radius: 12px;
    background: #fff;
    padding: 12px 14px;
}

.sb-search-result {
    padding: 20px 0;
    border-top: 1px solid var(--sb-line-soft);
}

.sb-search-result h2 {
    margin: 0 0 7px;
    font-size: 20px;
}

.sb-search-result p,
.sb-search-empty {
    color: var(--sb-muted);
}

.sb-offer-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.sb-offer-related {
    padding-right: 0;
    padding-left: 0;
}

.sb-offer-logo {
    background: color-mix(in srgb, var(--offer-color, var(--sb-green-dark)), #000 18%);
}

.sb-range-head .sb-value-unit,
.sb-range-scale,
.sb-scale-unit {
    color: var(--sb-muted);
    opacity: 1;
}

.sb-faq-list summary {
    display: flex;
    min-height: 44px;
    padding: 10px 0;
    align-items: center;
    cursor: pointer;
}
/* Shared shell for database-backed financial directories. */
.sb-directory-page .sb-category-head {
    padding: 0;
}

.sb-directory-page .sb-category-head-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    align-items: start;
    gap: clamp(28px, 6vw, 72px);
    padding-block: 30px;
}

.sb-directory-page .sb-head-card {
    max-width: none;
}

.sb-directory-page > .sb-bank-tools,
.sb-directory-page > .sb-bank-directory,
.sb-directory-page > .sb-bank-tabs,
.sb-directory-page > .sb-product-filter,
.sb-directory-page > .sb-product-grid,
.sb-directory-page > .sb-seo-text {
    width: min(100% - 48px, var(--sb-container));
    margin-inline: auto;
}

.sb-directory-page > .sb-bank-tools,
.sb-directory-page > .sb-bank-directory,
.sb-directory-page > .sb-product-grid {
    padding-inline: 0;
}

.sb-directory-page .sb-product-filter-controls {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.sb-directory-page .sb-product-filter-controls .sb-btn {
    justify-self: end;
    min-width: 112px;
}

@media (max-width: 768px) {
    .sb-directory-page .sb-category-head-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
        padding-block: 24px;
    }
}

@media (max-width: 640px) {
    .sb-directory-page > .sb-bank-tools,
    .sb-directory-page > .sb-bank-directory,
    .sb-directory-page > .sb-bank-tabs,
    .sb-directory-page > .sb-product-filter,
    .sb-directory-page > .sb-product-grid,
    .sb-directory-page > .sb-seo-text {
        width: min(100% - 24px, var(--sb-container));
        margin-inline: auto;
    }
}

@media (max-width: 640px) {
    .sb-offer-related .sb-offer-card .sb-offer-terms {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sb-offer-related .sb-offer-card .sb-offer-term:nth-child(3) {
        grid-column: 1 / -1;
    }

    .sb-offer-related .sb-offer-card .sb-offer-term strong {
        overflow-wrap: normal;
        word-break: normal;
    }
}
.sb-home-v3 {
    overflow: clip;
    background: var(--sb-page);
}

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

.sb-home-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0b8a58 0%, #12b875 58%, #0ca065 100%);
    color: #fff;
}

.sb-home-hero::before,
.sb-home-hero::after {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    content: '';
    pointer-events: none;
}

.sb-home-hero::before {
    top: -180px;
    right: -100px;
    width: 360px;
    height: 360px;
}

.sb-home-hero::after {
    right: 14%;
    bottom: -125px;
    width: 210px;
    height: 210px;
}

.sb-home-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    padding-block: 58px 62px;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.sb-home-eyebrow {
    display: inline-flex;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 13px;
    font-weight: 700;
}

.sb-home-hero-copy h1 {
    max-width: 660px;
    margin: 18px 0 16px;
    color: #fff;
    font-size: clamp(38px, 4vw, 52px);
    line-height: 1.06;
    letter-spacing: -0.035em;
}

.sb-home-hero-copy > p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.55;
}

.sb-home-hero-copy ul {
    display: flex;
    margin: 27px 0 0;
    padding: 0;
    gap: 14px 22px;
    flex-wrap: wrap;
    list-style: none;
    font-size: 13px;
    font-weight: 650;
}

.sb-home-hero-copy li::before {
    display: inline-grid;
    width: 19px;
    height: 19px;
    margin-right: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    content: '✓';
    font-size: 11px;
    place-items: center;
}

.sb-home-selector {
    padding: 23px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 30px 75px -30px rgba(0, 45, 28, 0.56);
    color: var(--sb-ink);
}

.sb-home-tabs {
    display: grid;
    padding: 4px;
    border-radius: 12px;
    background: #edf4f0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    text-align: center;
}

.sb-home-tabs > * {
    display: grid;
    min-height: 40px;
    padding: 7px;
    border-radius: 9px;
    color: var(--sb-muted);
    font-size: 12px;
    font-weight: 750;
    place-items: center;
}

.sb-home-tabs [aria-current="page"] {
    background: #fff;
    box-shadow: 0 5px 16px -12px rgba(0, 0, 0, 0.45);
    color: var(--sb-ink);
}

.sb-home-selector h2 {
    margin: 19px 0 3px;
    font-size: 21px;
    letter-spacing: -0.02em;
}

.sb-home-selector > p,
.sb-home-selector > small {
    display: block;
    color: var(--sb-muted);
    font-size: 11px;
}

.sb-home-selector > small {
    margin-top: 9px;
    text-align: center;
}

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

.sb-home-fields label {
    display: block;
    padding: 10px 12px 8px;
    border: 1px solid rgba(16, 32, 25, 0.16);
    border-radius: 13px;
    color: var(--sb-muted);
    font-size: 11px;
}

.sb-home-fields input[type="number"] {
    display: block;
    width: 100%;
    margin: 1px 0 4px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--sb-ink);
    font-size: 17px;
    font-weight: 800;
}

.sb-home-fields input[type="range"] {
    width: 100%;
    margin: 5px 0 0;
    accent-color: var(--sb-green);
}

.sb-home-selector-results {
    display: grid;
    margin: 12px 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.sb-home-selector-results span {
    padding: 9px 10px;
    border-radius: 10px;
    background: #f2faf6;
    color: var(--sb-muted);
    font-size: 10px;
}

.sb-home-selector-results strong {
    display: block;
    margin-top: 2px;
    color: var(--sb-ink);
    font-size: 14px;
}

.sb-home-selector > .sb-btn {
    width: 100%;
    min-height: 45px;
}

.sb-home-quick {
    border-bottom: 1px solid var(--sb-line-soft);
    background: #fff;
}

.sb-home-quick > div {
    display: flex;
    padding-block: 13px;
    overflow-x: auto;
    align-items: center;
    gap: 8px;
    scrollbar-width: none;
}

.sb-home-quick span,
.sb-home-quick a {
    flex: 0 0 auto;
    font-size: 11px;
}

.sb-home-quick span {
    color: var(--sb-muted);
}

.sb-home-quick a {
    display: inline-grid;
    min-height: 44px;
    padding: 7px 10px;
    border: 1px solid var(--sb-line-soft);
    border-radius: 999px;
    background: #f8fbf9;
    font-weight: 650;
    place-items: center;
}

.sb-home-quick a:first-of-type {
    border-color: var(--sb-ink);
    background: var(--sb-ink);
    color: #fff;
}

.sb-home-section {
    padding-block: 54px;
}

.sb-home-section-head {
    display: flex;
    margin-bottom: 20px;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.sb-home-section-head h2,
.sb-home-trust h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.14;
    letter-spacing: -0.025em;
}

.sb-home-section-head p {
    max-width: 670px;
    margin: 6px 0 0;
    color: var(--sb-muted);
    font-size: 13px;
}

.sb-home-section-head > a,
.sb-home-method > a,
.sb-home-cost a,
.sb-home-trust a {
    color: var(--sb-green-dark);
    font-size: 12px;
    font-weight: 750;
    white-space: nowrap;
}

.sb-home-offers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.sb-home-offer {
    display: flex;
    min-width: 0;
    padding: 16px;
    border: 1px solid var(--sb-line-soft);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 16px 42px -32px rgba(7, 48, 32, 0.4);
    flex-direction: column;
}

.sb-home-offer-head {
    display: flex;
    min-height: 42px;
    align-items: center;
    gap: 10px;
}

.sb-home-offer-logo {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    overflow: hidden;
    border-radius: 11px;
    background: color-mix(in srgb, var(--offer-color), #000 18%);
    color: #fff;
    font-weight: 850;
    place-items: center;
}

.sb-home-offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sb-home-offer-head > span:nth-child(2) {
    min-width: 0;
}

.sb-home-offer-head strong,
.sb-home-offer-head small {
    display: block;
}

.sb-home-offer-head strong {
    font-size: 14px;
}

.sb-home-offer-head small {
    overflow: hidden;
    color: var(--sb-muted);
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sb-home-ad-label {
    margin-left: auto;
    padding: 3px 5px;
    border: 1px solid var(--sb-line-soft);
    border-radius: 5px;
    color: var(--sb-muted);
    font-size: 8px;
}

.sb-home-return {
    margin: 13px 0 10px;
    padding: 12px;
    border: 1px solid #efe5af;
    border-radius: 12px;
    background: linear-gradient(135deg, #fffdf1, #fff9d9);
}

.sb-home-return > span,
.sb-home-return > small,
.sb-home-return > strong {
    display: block;
}

.sb-home-return > span,
.sb-home-return > small {
    color: var(--sb-muted);
    font-size: 9px;
}

.sb-home-return > strong {
    margin: 3px 0 1px;
    font-size: 25px;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.sb-home-offer-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
}

.sb-home-offer-metrics > span {
    min-width: 0;
    padding: 8px 7px;
    border-radius: 8px;
    background: #f4f7f5;
}

.sb-home-offer-metrics small,
.sb-home-offer-metrics strong {
    display: block;
}

.sb-home-offer-metrics small {
    color: var(--sb-muted);
    font-size: 8px;
}

.sb-home-offer-metrics strong {
    margin-top: 2px;
    overflow-wrap: anywhere;
    font-size: 10px;
}

.sb-home-offer-condition {
    min-height: 43px;
    margin: 9px 0 12px;
    padding: 8px 9px;
    border-radius: 8px;
    background: #e7f7ef;
    color: var(--sb-ink-soft);
    font-size: 9px;
    line-height: 1.45;
}

.sb-home-offer-actions {
    margin-top: auto;
}

.sb-home-offer-actions .sb-btn {
    display: grid;
    width: 100%;
    min-height: 44px;
    place-items: center;
}

.sb-home-offer-detail {
    display: grid;
    min-height: 44px;
    margin-top: 8px;
    color: var(--sb-green-dark);
    font-size: 10px;
    font-weight: 700;
    place-items: center;
    text-align: center;
}

.sb-home-method {
    display: flex;
    margin-top: 12px;
    padding: 13px 15px;
    border: 1px solid rgba(15, 169, 104, 0.13);
    border-radius: 12px;
    background: #eaf7f1;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.sb-home-section-head > a,
.sb-home-method > a,
.sb-home-cost a,
.sb-home-trust a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
}

.sb-home-method strong,
.sb-home-method span {
    display: block;
}

.sb-home-method strong {
    font-size: 11px;
}

.sb-home-method span {
    margin-top: 2px;
    color: var(--sb-muted);
    font-size: 9px;
}

.sb-home-cost {
    padding-block: 48px;
    background: var(--sb-green-deep);
    color: #fff;
}

.sb-home-cost > div {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
    gap: 52px;
    align-items: center;
}

.sb-home-cost h2 {
    max-width: 580px;
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(29px, 3.4vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.sb-home-cost p {
    max-width: 600px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.sb-home-cost a {
    color: #fff;
}

.sb-home-cost dl {
    margin: 0;
    padding: 11px 18px;
    border-radius: 16px;
    background: #fff;
    color: var(--sb-ink);
}

.sb-home-cost dl > div {
    display: flex;
    padding: 11px 0;
    border-bottom: 1px solid var(--sb-line-soft);
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sb-home-cost dl > div:last-child {
    border: 0;
}

.sb-home-cost dt {
    color: var(--sb-muted);
    font-size: 11px;
}

.sb-home-cost dd {
    margin: 0;
    font-size: 13px;
    font-weight: 750;
}

.sb-home-cost .is-total {
    margin: 5px -8px 0;
    padding: 13px 8px;
    border-radius: 9px;
    background: #e5f6ee;
}

.sb-home-cost .is-total dd {
    font-size: 21px;
}

.sb-home-directions,
.sb-home-trust > div > div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.sb-home-directions a,
.sb-home-trust article {
    padding: 19px;
    border: 1px solid var(--sb-line-soft);
    border-radius: 15px;
    background: #fff;
}

.sb-home-directions strong,
.sb-home-directions span {
    display: block;
}

.sb-home-directions strong {
    margin-bottom: 5px;
    font-size: 15px;
}

.sb-home-directions span {
    color: var(--sb-muted);
    font-size: 11px;
}

.sb-home-trust {
    padding-block: 48px;
    background: #e8f5ef;
    content-visibility: auto;
    contain-intrinsic-size: auto 390px;
}

.sb-home-trust h2 {
    margin-bottom: 20px;
}

.sb-home-trust article strong {
    font-size: 15px;
}

.sb-home-trust article p {
    min-height: 48px;
    color: var(--sb-muted);
    font-size: 11px;
}

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

.sb-home-article {
    overflow: hidden;
    border: 1px solid var(--sb-line-soft);
    border-radius: 16px;
    background: #fff;
}

.sb-home-article img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1200 / 630;
    object-fit: cover;
}

.sb-home-article > span {
    display: block;
    padding: 16px;
}

.sb-home-article small,
.sb-home-article strong {
    display: block;
}

.sb-home-article small {
    margin-bottom: 6px;
    color: var(--sb-green-dark);
    font-size: 10px;
    font-weight: 750;
}

.sb-home-article strong {
    font-size: 15px;
    line-height: 1.3;
}

.sb-home-article p {
    margin: 8px 0 0;
    color: var(--sb-muted);
    font-size: 11px;
    line-height: 1.5;
}

.sb-home-faq {
    content-visibility: auto;
    contain-intrinsic-size: auto 430px;
}

.sb-home-faq details {
    border-top: 1px solid var(--sb-line-soft);
    background: transparent;
}

.sb-home-faq summary {
    padding: 17px 0;
    cursor: pointer;
    font-weight: 700;
}

.sb-home-faq details p {
    margin: -6px 0 17px;
    color: var(--sb-muted);
    font-size: 13px;
}

.sb-sticky-cta {
    position: fixed;
    z-index: 45;
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 9px;
    border: 1px solid var(--sb-line-soft);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 16px 50px -22px rgba(7, 48, 32, 0.58);
    backdrop-filter: blur(10px);
}

.sb-sticky-cta .sb-btn {
    width: 100%;
}

@media (max-width: 920px) {
    .sb-home-hero-grid {
        grid-template-columns: 1fr;
    }

    .sb-home-selector {
        max-width: 620px;
    }

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

    .sb-home-cost > div {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .sb-home-directions,
    .sb-home-trust > div > div {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .sb-home-directions,
    .sb-home-trust > div > div {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .sb-home-container {
        width: min(100% - 24px, var(--sb-container));
    }

    .sb-home-hero-grid {
        padding-block: 38px 42px;
        gap: 28px;
    }

    .sb-home-hero-copy h1 {
        font-size: 35px;
    }

    .sb-home-hero-copy > p {
        font-size: 15px;
    }

    .sb-home-hero-copy ul {
        display: grid;
        margin-top: 22px;
        gap: 9px;
    }

    .sb-home-selector {
        margin-inline: -1px;
        padding: 16px;
        border-radius: 18px;
    }

    .sb-home-selector h2 {
        font-size: 18px;
    }

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

    .sb-home-quick > div {
        padding-block: 11px;
    }

    .sb-home-section {
        padding-block: 38px;
    }

    .sb-home-section-head {
        align-items: start;
        flex-direction: column;
    }

    .sb-home-section-head h2,
    .sb-home-trust h2 {
        font-size: 27px;
    }

    .sb-home-offers,
    .sb-home-articles,
    .sb-home-directions,
    .sb-home-trust > div > div {
        grid-template-columns: 1fr;
    }

    .sb-home-offer {
        padding: 14px;
    }

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

    .sb-home-offer-metrics > span:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .sb-home-method {
        align-items: start;
        flex-direction: column;
    }

    .sb-home-cost {
        padding-block: 39px;
    }

    .sb-home-cost h2 {
        font-size: 31px;
    }

    .sb-home-trust {
        padding-block: 39px;
    }

    .sb-home-trust article p {
        min-height: 0;
    }

    .sb-sticky-cta {
        right: 8px;
        bottom: max(8px, env(safe-area-inset-bottom));
        left: 8px;
        padding-bottom: max(9px, env(safe-area-inset-bottom));
    }
}

@media (max-width: 420px) {
    .sb-home-hero-copy h1 {
        font-size: 31px;
    }

    .sb-home-tabs > * {
        padding-inline: 4px;
        font-size: 11px;
    }
}
