/* ==========================================================================
   SMART TECH — layout alignment with the page references in
   "Website Design/". Colours stay on the existing tokens; this file only
   changes frame width, rhythm, hero/panel/callout/footer composition and
   component proportions. Loaded after smarttech.css and smarttech-pages.css.
   ========================================================================== */

:root {
    --st-frame: 1320px;
    --st-panel-line: #dbe6ef;
    --st-sky: #f2f8fd;
    --st-sky-2: #e8f2fa;
    --st-mint-line: #cfe6d8;
}

.st-container { width: min(var(--st-frame), calc(100% - var(--st-gutter))); }

/* ---------- Buttons ---------- */
.st-btn--deep { padding: 12px 20px; font-size: 13.5px; border-radius: 8px; }
.st-btn--navy { border-radius: 8px; }
.st-btn--white { background: #fff; color: var(--st-blue-dark); border-radius: 8px; }
.st-btn--white:hover, .st-btn--white:focus { background: #eef6fc; color: var(--st-blue-dark); }
.st-btn--outline-green { background: #fff; border: 1.5px solid var(--st-green-dark); color: var(--st-green-dark); border-radius: 8px; }
.st-btn--outline-green:hover, .st-btn--outline-green:focus { background: var(--st-green-soft-2); color: var(--st-green-dark); }
.st-btn--hero { padding: 13px 22px; font-size: 14px; }

/* ---------- Navigation spread (home.png) ---------- */
@media (min-width: 1200px) {
    .st-nav__menu { justify-content: space-between; padding: 0 clamp(8px, 2.4vw, 44px) 0 10px; }
}

/* ---------- Page hero ---------- */
.st-page-hero { background: #fff; border-bottom: 0; overflow: visible; }
.st-page-hero.has-image::after { display: none; }
.st-page-hero__crumbs { padding: 14px 0 10px; }
.st-page-hero .breadcrumb { display: flex; flex-wrap: wrap; gap: 4px 6px; margin: 0; padding: 0; list-style: none; font-size: 13px; background: none; }
.st-page-hero .breadcrumb li:last-child span { font-weight: 600; color: var(--st-ink-2); }

.st-page-hero__card {
    position: relative; overflow: hidden; min-height: 252px; display: flex; align-items: center;
    border: 1px solid #d9e8f3; border-radius: 14px;
    background: linear-gradient(100deg, #f3f9fd 0%, #eaf4fb 60%, #e4f0f9 100%);
}
.st-page-hero__card .st-page-hero__media { position: absolute; top: 0; right: 0; bottom: 0; left: auto; width: 58%; opacity: 1; }
.st-page-hero__card .st-page-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.st-page-hero__card .st-page-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #eef6fc 0%, rgba(238, 246, 252, .82) 16%, rgba(238, 246, 252, .2) 40%, rgba(238, 246, 252, 0) 58%); }
.st-page-hero__card .st-page-hero__inner { position: relative; z-index: 2; width: 100%; max-width: 640px; padding: clamp(24px, 3vw, 38px) clamp(22px, 3vw, 38px); }
.st-page-hero h1 { font-size: clamp(30px, 3.9vw, 54px); line-height: 1.04; letter-spacing: -.035em; color: var(--st-navy); margin: 0; max-width: 620px; }
.st-page-hero .st-kicker { color: var(--st-navy-2); font-size: 12px; letter-spacing: .18em; margin: 0 0 10px; }
.st-page-hero p { margin: 12px 0 0; font-size: clamp(15px, 1.3vw, 18px); line-height: 1.45; color: var(--st-ink-2); max-width: 520px; }
.st-page-hero .st-hero__actions { margin-top: 22px; gap: 12px; }
.st-page-hero:not(.has-image) .st-page-hero__card .st-page-hero__inner { max-width: 820px; }
.st-page-hero:not(.has-image) h1, .st-page-hero:not(.has-image) p { max-width: 760px; }

/* Full-width band (product-area landings) */
.st-page-hero--band { overflow: hidden; border-bottom: 1px solid #e3ebf2; }
.st-page-hero--band .st-page-hero__crumbs { position: relative; z-index: 3; padding-bottom: 0; }
.st-page-hero--band .st-page-hero__card { border: 0; border-radius: 0; background: transparent; overflow: visible; min-height: 230px; }
.st-page-hero--band .st-page-hero__card .st-page-hero__media { top: -38px; right: calc(50% - 50vw); width: calc(50vw - 50% + 56%); }
.st-page-hero--band .st-page-hero__card .st-page-hero__media::after { background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .85) 14%, rgba(255, 255, 255, .15) 38%, rgba(255, 255, 255, 0) 52%); }
.st-page-hero--band .st-page-hero__card .st-page-hero__inner { padding: 8px 0 30px; }

/* Plain title (utility pages) and the older hero markups */
.st-page-hero--plain .st-page-hero__card { border: 0; background: none; min-height: 0; border-radius: 0; }
.st-page-hero--plain .st-page-hero__card .st-page-hero__inner { padding: 0 0 14px; }
.st-page-hero--compact, .st-page-hero--listing, .st-page-hero--light, .st-page-hero:not([class*="--"]) { background: #fff; border-bottom: 0; }
.st-page-hero > .st-container.st-page-hero__inner { padding: 14px 0 16px; }
.st-page-hero > .st-container.st-page-hero__inner h1 { margin-top: 6px; }

/* Legacy dark style now renders as the light card */
.st-page-hero--dark { background: #fff; }
.st-page-hero--dark .st-page-hero__media { opacity: 1; }
.st-page-hero--dark h1 { color: var(--st-navy); }
.st-page-hero--dark p { color: var(--st-ink-2); }
.st-page-hero--dark .st-kicker { color: var(--st-navy-2); }
.st-page-hero--dark .st-page-hero__inner { color: inherit; }

/* ---------- Section rhythm and panels ---------- */
.st-block { padding: 9px 0; }
.st-page-hero + .st-block, .st-anchor-tabs + .st-block { padding-top: 14px; }
.st-main > .ck-content > .st-block:last-child, .st-main .st-block:last-of-type { padding-bottom: 26px; }
.st-block__head { margin-bottom: 14px; }
.st-block__head h2, .st-block__title { font-size: clamp(21px, 2vw, 28px); color: var(--st-navy); letter-spacing: -.025em; }
.st-block__title { margin-bottom: 12px; }
.st-block__head p { margin-top: 3px; font-size: 14.5px; color: var(--st-ink-2); }

.st-block--cards:has(.st-cards--priorities, .st-cards--values, .st-cards--steps, .st-cards--topics) > .st-container,
.st-block--tiles:has(.st-tiles--equipment) > .st-container,
.st-block--split > .st-container,
.st-block--image-cards:has(.st-imgcards--solution) > .st-container {
    border: 1px solid var(--st-panel-line); border-radius: 12px; background: #fff; padding: 16px 18px 18px;
}
.st-block--tiles:has(.st-tiles--equipment) > .st-container,
.st-block--image-cards:has(.st-imgcards--solution) > .st-container { background: linear-gradient(180deg, var(--st-sky) 0%, #fff 100%); }

/* Large circular icons */
.st-infocard__icon { width: 64px; height: 64px; flex: 0 0 64px; border-radius: 50%; background: #eef7f2; color: var(--st-green-dark); }
.st-infocard__icon svg { width: 30px; height: 30px; }
.st-cards--topics .st-infocard__icon { width: 56px; height: 56px; flex-basis: 56px; border-radius: 50%; }
.st-cards--priorities, .st-cards--topics { gap: 12px; }
.st-cards--priorities .st-infocard, .st-cards--topics .st-infocard { padding: 14px 16px; align-items: center; border-color: #e1eaf1; }
.st-cards--priorities .st-infocard b, .st-cards--topics .st-infocard b { font-size: 16px; color: var(--st-navy); }
.st-cards--priorities .st-infocard__text > span { font-size: 13px; }

/* ---------- Callout bands ---------- */
.st-banner { flex-wrap: nowrap; gap: 22px; padding: 12px 22px; min-height: 76px; border: 1px solid var(--st-mint-line); border-radius: 10px; background: linear-gradient(90deg, #ecf7f1 0%, #eaf5f1 100%); }
.st-banner__mark { display: flex; align-items: center; gap: 22px; flex: 0 0 auto; }
.st-banner__mark::after { content: ""; width: 2px; height: 42px; border-radius: 2px; background: #8fc6a5; }
.st-banner__icon { width: 54px; height: 54px; flex: 0 0 54px; border: 2px solid var(--st-green-dark); border-radius: 50%; background: #fff; color: var(--st-green-dark); display: grid; place-items: center; }
.st-banner__text { flex: 1 1 auto; }
.st-banner__text b { font-size: clamp(17px, 1.6vw, 21px); color: var(--st-navy); letter-spacing: -.015em; margin-bottom: 2px; font-family: var(--st-font-head); }
.st-banner__text span { font-size: 14px; color: var(--st-ink-2); }
.st-banner__actions { display: flex; gap: 12px; flex: 0 0 auto; margin-left: auto; }
.st-banner .st-btn { padding: 12px 22px; font-size: 14px; }
.st-banner--band { background: linear-gradient(90deg, #eaf6ef 0%, #eaf4fa 100%); padding: 14px 24px; }
.st-banner--band .st-banner__text b { font-size: clamp(18px, 1.7vw, 22px); }
.st-banner--band .st-banner__text span { font-size: 14px; }
.st-banner--blue { background: var(--st-navy-2); border-color: var(--st-navy-2); }
.st-banner--blue .st-banner__text b { color: #fff; }
.st-banner--blue .st-banner__text span { color: #c6dbe8; }
.st-banner--blue .st-banner__icon { background: transparent; border-color: #6fd79c; color: #6fd79c; }
.st-banner--blue .st-btn--navy { background: var(--st-green-dark); }

/* ---------- Pre-footer band ---------- */
.st-prefooter { background: none; color: inherit; padding: 10px 0 22px; }
.st-prefooter__band { display: flex; align-items: center; gap: 22px; padding: 14px 28px; min-height: 84px; border-radius: 10px; border: 1px solid var(--st-mint-line); background: linear-gradient(90deg, #eaf6ef 0%, #eaf4fa 100%); }
.st-prefooter__mark { display: flex; align-items: center; gap: 22px; flex: 0 0 auto; }
.st-prefooter__mark::after { content: ""; width: 2px; height: 44px; border-radius: 2px; background: #8fc6a5; }
.st-prefooter__text { flex: 1 1 auto; min-width: 0; }
.st-prefooter h2 { margin: 0 0 3px; font-size: clamp(19px, 1.8vw, 25px); color: var(--st-navy); letter-spacing: -.02em; }
.st-prefooter p { margin: 0; font-size: 14.5px; color: var(--st-ink-2); }
.st-prefooter__actions { display: flex; gap: 12px; flex-wrap: wrap; flex: 0 0 auto; }
.st-prefooter .st-btn { padding: 13px 24px; font-size: 14px; }
.st-prefooter--vivid .st-prefooter__band { border: 0; background: linear-gradient(90deg, #13a04b 0%, #11967a 42%, #0b78c5 100%); }
.st-prefooter--vivid h2, .st-prefooter--vivid p { color: #fff; }
.st-prefooter--vivid .st-prefooter__mark::after { background: rgba(255, 255, 255, .55); }
.st-prefooter--vivid .st-leaf path:first-of-type { fill: #fff; }
.st-prefooter--vivid .st-leaf path:last-of-type { stroke: #13a04b; }

/* ---------- Footer ---------- */
.st-footer { padding: 26px 0 14px; }
.st-footer__grid { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr); gap: 20px 36px; align-items: start; }
.st-footer__brand p { margin: 12px 0 0; font-size: 12.5px; line-height: 1.6; }
.st-footer__col h4, .st-footer .widget-title { margin-bottom: 8px; font-size: 14px; }
.st-footer__links a { margin: 4px 0; font-size: 12.5px; color: #c2d0dc; }
.st-footer__tagline { margin: 0 0 12px; font-size: 13px; color: #c2d0dc; }
.st-footer__social { gap: 12px; margin-bottom: 12px; }
.st-footer__social a { width: 38px; height: 38px; border: 0; border-radius: 50%; background: #fff; color: var(--st-navy-2); }
.st-footer__contact { margin: 5px 0; font-size: 12.5px; }
.st-footer__bottom { margin-top: 18px; padding-top: 12px; align-items: center; }

/* ---------- Anchor tabs ---------- */
.st-anchor-tabs { border-bottom: 0; background: #fff; }
.st-anchor-tabs__inner { display: grid; grid-template-columns: repeat(var(--tabs, 4), minmax(max-content, 1fr)); gap: 0; border-bottom: 1px solid #e3ebf2; }
.st-anchor-tabs a { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 14px 10px 12px; font-size: 14.5px; font-weight: 600; color: var(--st-navy-2); border-bottom: 3px solid transparent; position: relative; }
.st-anchor-tabs a + a::before { content: ""; position: absolute; left: 0; top: 14px; bottom: 14px; width: 1px; background: #e3ebf2; }
.st-anchor-tabs a svg { color: var(--st-navy-2); }
.st-anchor-tabs a.is-active, .st-anchor-tabs a:hover { color: var(--st-navy); border-bottom-color: var(--st-navy-2); }

/* ---------- Priority / topic cards ---------- */
.st-cards--priorities { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.st-cards--priorities .st-infocard { min-height: 96px; }

/* ---------- Split (image + checklist) ---------- */
.st-block--split > .st-container { padding: 0; overflow: hidden; }
.st-split { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 0; align-items: stretch; }
.st-split__media { height: auto; min-height: 230px; border-radius: 0; }
.st-split__body { padding: 16px 18px 16px 22px; display: flex; flex-direction: column; justify-content: center; }
.st-split h2 { font-size: clamp(20px, 1.9vw, 26px); color: var(--st-navy); letter-spacing: -.02em; margin-bottom: 4px; }
.st-split__body > p { margin-bottom: 14px; font-size: 14.5px; color: var(--st-ink-2); }
.st-split__chips { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.st-split__chip { padding: 12px 8px; border-color: #e1eaf1; }
.st-split__chip > span { width: 62px; height: 62px; margin-bottom: 8px; background: #eef7f2; color: var(--st-green-dark); }
.st-split__chip b { font-size: 12.5px; font-weight: 600; color: var(--st-navy-2); }
.st-split__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.st-split__list li { display: flex; gap: 14px; align-items: center; border: 1px solid #e1eaf1; border-radius: 8px; padding: 7px 12px; }
.st-split__list-icon { width: 46px; height: 46px; flex: 0 0 46px; border-radius: 50%; background: #eef7f2; color: var(--st-green-dark); display: grid; place-items: center; }
.st-split__list b { display: block; font-size: 14.5px; color: var(--st-blue-dark); font-weight: 700; }
.st-split__list small { display: block; font-size: 12.5px; color: var(--st-ink-2); line-height: 1.45; }
.st-split .st-split__note { margin-top: 12px; color: var(--st-muted); }
.st-split--cta { background: linear-gradient(90deg, #fff 0%, var(--st-sky) 50%); }
.st-split--cta .st-split__body { padding: 22px 30px; }
.st-split--cta h2 { font-size: clamp(22px, 2.2vw, 30px); line-height: 1.15; }
.st-split--cta .st-hero__actions { margin-top: 4px; }
.st-block--split-cta > .st-container { border-color: #d9e8f3; }
.st-block--split-cta .st-split__media img { object-fit: cover; }

/* ---------- Image cards ---------- */
.st-block--image-cards-option > .st-container, .st-block--image-cards-application > .st-container { border: 1px solid var(--st-panel-line); border-radius: 12px; padding: 16px 18px 18px; background: #fff; }
.st-imgcards--option, .st-imgcards--goal { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.st-imgcards--option .st-imgcard, .st-imgcards--goal .st-imgcard { border-radius: 6px; border-color: #e1eaf1; }
.st-imgcards--goal .st-imgcard { border: 0; background: transparent; border-radius: 0; }
.st-imgcards--goal .st-imgcard:hover { box-shadow: none; }
.st-imgcards--option .st-imgcard__media, .st-imgcards--goal .st-imgcard__media { height: auto; aspect-ratio: 2.3 / 1; }
.st-imgcards--goal .st-imgcard__media { border-radius: 6px; overflow: hidden; }
.st-imgcards--option .st-imgcard__body { padding: 10px 12px 12px; }
.st-imgcards--goal .st-imgcard__body { padding: 10px 0 0; }
.st-imgcards--option .st-imgcard h3, .st-imgcards--goal .st-imgcard h3 { font-size: 16px; margin-bottom: 4px; }
.st-imgcards--option .st-imgcard h3 a, .st-imgcards--goal .st-imgcard h3 a { color: var(--st-blue-dark); }
.st-imgcards--option .st-imgcard p, .st-imgcards--goal .st-imgcard p { font-size: 13.5px; color: var(--st-ink-2); line-height: 1.45; margin-bottom: 10px; }
.st-imgcards--option .st-link-arrow { color: var(--st-blue-dark); font-size: 14px; }
.st-imgcards--goal .st-link-arrow { font-size: 14px; }
.st-imgcards--application { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.st-imgcards--application .st-imgcard { flex-direction: row; border-radius: 4px; border: 0; }
.st-imgcards--application .st-imgcard__media { width: 54%; height: auto; min-height: 146px; flex: 0 0 54%; }
.st-imgcards--application .st-imgcard__body { padding: 16px; justify-content: center; }
.st-imgcards--application .st-imgcard h3 { font-size: 16px; margin-bottom: 6px; }
.st-imgcards--application .st-imgcard h3 a { color: var(--st-navy); }
.st-imgcards--application .st-imgcard p { font-size: 13.5px; color: var(--st-ink-2); line-height: 1.5; margin-bottom: 12px; }
.st-imgcards--application .st-link-arrow { color: var(--st-blue-dark); }
.st-block--image-cards-application > .st-container { background: var(--st-sky); }

/* ---------- Equipment / category tiles ---------- */
.st-tiles--equipment { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.st-tiles--equipment .st-tile { padding: 12px 14px 14px; border-color: #e1eaf1; border-radius: 6px; }
.st-tiles--equipment .st-tile__icon { height: 116px; width: 100%; margin-bottom: 8px; }
.st-tiles--equipment .st-tile__icon img { height: 116px; width: 100%; object-fit: contain; mix-blend-mode: multiply; }
.st-tiles--equipment .st-tile b { font-size: 15px; margin-bottom: 2px; color: var(--st-navy); font-weight: 700; }
.st-tiles--equipment .st-tile__body { font-size: 13px; color: var(--st-ink-2); line-height: 1.4; margin-bottom: 8px; max-width: 220px; }
.st-tiles--equipment .st-link-arrow { color: var(--st-blue-dark); font-size: 14px; }

.st-tiles--category { gap: 12px; }
.st-tiles--category .st-tile { position: relative; align-items: stretch; min-height: 126px; padding: 14px 14px 12px 16px; border-color: #d9e8f3; border-radius: 6px; overflow: hidden; }
.st-tiles--category .st-tile__text { display: flex; flex-direction: column; z-index: 1; }
.st-tiles--category .st-tile b { font-size: 16px; color: var(--st-navy); font-weight: 700; margin-bottom: 2px; line-height: 1.2; }
.st-tiles--category .st-tile__body { font-size: 12.5px; color: var(--st-ink-2); line-height: 1.35; }
.st-tiles--category .st-link-arrow { margin-top: auto; padding-top: 10px; font-size: 13px; }
.st-tiles--category .st-tile__icon { width: 46%; height: auto; flex: 0 0 46%; margin: -4px -6px -4px 0; }
.st-tiles--category .st-tile__icon img { width: 100%; height: 100%; max-height: 112px; object-fit: contain; mix-blend-mode: multiply; }
.st-tiles--category.st-tiles--n8 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.st-tiles--category.st-tiles--n8 .st-tile { flex-direction: column; min-height: 150px; }
.st-tiles--category.st-tiles--n8 .st-tile__icon { width: 100%; flex: 1 1 auto; margin: 4px 0 0; order: 1; height: 82px; }
.st-tiles--category.st-tiles--n8 .st-tile__text { display: contents; }
.st-tiles--category.st-tiles--n8 .st-link-arrow { order: 2; padding-top: 6px; }

.st-tiles--brand { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 12px; }
.st-tiles--brand .st-tile { min-height: 34px; padding: 6px 10px; border-color: #d9e8f3; border-radius: 4px; }
.st-tiles--brand .st-tile b { font-family: var(--st-font); font-size: 13.5px; font-weight: 600; color: var(--st-navy-2); }

/* ---------- Callout: "note" style keeps the band look ---------- */
.st-banner--note .st-btn--navy { background: var(--st-navy-2); }

/* ---------- Prep + steps ---------- */
.st-prep { gap: 12px; }
.st-prep--pair { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.st-prep--pair.st-prep--wide { grid-template-columns: minmax(0, 1.16fr) minmax(0, 1fr); }
.st-prep__col { border: 1px solid var(--st-panel-line); border-radius: 12px; padding: 14px 16px 16px; background: #fff; min-width: 0; }
.st-prep .st-block__head { margin-bottom: 10px; }
.st-prep .st-block__head h2 { font-size: clamp(19px, 1.7vw, 23px); }
.st-prep .st-block__head p { font-size: 13.5px; }
.st-cards--prep { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.st-prep--wide .st-cards--prep { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.st-cards--prep .st-infocard { flex-direction: row; align-items: flex-start; gap: 10px; padding: 12px; border-color: #e1eaf1; border-radius: 6px; }
.st-cards--prep .st-infocard__icon--sm { width: 38px; height: 38px; flex: 0 0 38px; margin: 0; background: transparent; color: var(--st-green-dark); border-radius: 0; }
.st-cards--prep .st-infocard__icon--sm svg { width: 30px; height: 30px; }
.st-cards--prep .st-infocard b { font-size: 13.5px; color: var(--st-blue-dark); margin-bottom: 2px; }
.st-cards--prep .st-infocard__text > span { font-size: 12px; color: var(--st-ink-2); line-height: 1.4; }
.st-steplist { gap: 8px; }
.st-steplist a { padding: 8px 14px 8px 10px; border-color: #e1eaf1; border-radius: 6px; }
.st-steplist__num { width: 50px; height: 50px; flex-basis: 50px; font-size: 19px; background: #eef7f2; color: var(--st-green-dark); }
.st-steplist li:nth-child(2) .st-steplist__num { background: #e8f2fb; color: var(--st-blue-dark); }
.st-steplist__text b { font-size: 14px; color: var(--st-blue-dark); }
.st-steplist__text span { font-size: 12.5px; color: var(--st-ink-2); }
.st-steplist a > svg { color: var(--st-blue-dark); }

/* ---------- FAQ rows ---------- */
.st-block--faq .st-block__head { margin-bottom: 8px; }
.st-faq--rows, .st-faq--list { gap: 0; border: 1px solid #e1eaf1; border-radius: 6px; overflow: hidden; }
.st-faq--rows .st-faq__item, .st-faq--list .st-faq__item { border: 0; border-radius: 0; }
.st-faq--rows .st-faq__item + .st-faq__item, .st-faq--list .st-faq__item + .st-faq__item { border-top: 1px solid #e1eaf1; }
.st-faq--rows summary, .st-faq--list summary { padding: 8px 14px; font-size: 14px; font-weight: 500; color: var(--st-navy-2); }
.st-faq--grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 10px; }
.st-faq--grid .st-faq__item { border-radius: 6px; border-color: #e1eaf1; }
.st-faq--grid summary { padding: 9px 14px; font-size: 14px; font-weight: 500; color: var(--st-navy-2); }
.st-faq__chev { flex: 0 0 16px; color: var(--st-navy-2); transition: transform .15s; }
.st-faq__item[open] .st-faq__chev { transform: rotate(180deg); }
.st-faq--list .st-faq__item[open] .st-faq__chev { transform: rotate(90deg); }
.st-faq__item[open] { border-color: #e1eaf1; }
.st-faq--rows .st-faq__answer, .st-faq--list .st-faq__answer, .st-faq--grid .st-faq__answer { padding: 0 14px 12px; font-size: 13.5px; }

/* ---------- Related ---------- */
.st-related__head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.st-related__head h2 { font-size: clamp(18px, 1.6vw, 21px); color: var(--st-navy); letter-spacing: -.02em; }
.st-related__head span { font-size: 12.5px; color: var(--st-muted-2); }
.st-related { gap: 14px; }
.st-related__card { border-color: #e1eaf1; border-radius: 4px; align-items: stretch; gap: 14px; }
.st-related__media { width: 46%; height: auto; min-height: 92px; flex: 0 0 46%; }
.st-related__body { padding: 10px 12px 10px 0; display: flex; flex-direction: column; justify-content: center; }
.st-related__body b { font-size: 15px; color: var(--st-blue-dark); margin-bottom: 3px; }
.st-related__body > span:not(.st-link-arrow) { font-size: 13px; color: var(--st-ink-2); margin-bottom: 6px; line-height: 1.4; }
.st-related__card .st-link-arrow { color: var(--st-blue-dark); font-size: 13.5px; }
.st-block--related-guides .st-related__media { width: 36%; flex-basis: 36%; margin: 4px 0 4px 4px; }
.st-block--related-guides .st-related__body b { color: var(--st-navy); }
.st-block--related-guides .st-related__card .st-link-arrow { color: var(--st-green-dark); }

/* ---------- Card variants: goals, explore, pillars, focus, help, steps ---------- */
.st-block--cards:has(.st-cards--goals, .st-cards--explore, .st-cards--focus) > .st-container { border: 1px solid var(--st-panel-line); border-radius: 12px; background: #fff; padding: 16px 18px 18px; }
.st-block--cards:has(.st-cards--focus) > .st-container { background: var(--st-sky); border-color: #d9e8f3; }
.st-block--cards:has(.st-cards--help) > .st-container { background: var(--st-sky); border: 1px solid #d9e8f3; border-radius: 12px; padding: 16px 18px; }
.st-block--cards:has(.st-cards--values) > .st-container, .st-block--cards:has(.st-cards--stats, .st-cards--panels) > .st-container { border: 0; padding: 0; background: none; }

.st-cards--goals { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.st-cards--goals .st-infocard { flex-direction: row; align-items: center; gap: 16px; padding: 10px 14px; border-color: #e1eaf1; border-radius: 6px; }
.st-cards--goals .st-infocard b { font-size: 15.5px; color: var(--st-navy); margin: 0; max-width: 150px; }
.st-cards--goals .st-infocard__text > span:empty { display: none; }

.st-cards--explore { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; }
.st-cards--explore .st-infocard { align-items: center; text-align: center; padding: 12px 10px 14px; border-color: #e1eaf1; border-radius: 6px; gap: 8px; }
.st-cards--explore .st-infocard__icon { width: 58px; height: 58px; flex-basis: 58px; }
.st-cards--explore .st-infocard b { font-size: 15px; color: var(--st-navy); margin-bottom: 4px; }
.st-cards--explore .st-infocard__text > span { font-size: 13px; color: var(--st-ink-2); line-height: 1.4; }

.st-cards--pillars { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.st-cards--pillars .st-infocard { flex-direction: row; align-items: center; gap: 18px; padding: 16px 18px; background: #eef7f2; border-color: var(--st-mint-line); border-radius: 6px; }
.st-cards--pillars .st-infocard__icon { width: 76px; height: 76px; flex-basis: 76px; background: #fff; }
.st-cards--pillars .st-infocard__icon svg { width: 40px; height: 40px; }
.st-cards--pillars .st-infocard b { font-size: 17px; color: var(--st-navy); margin-bottom: 4px; }
.st-cards--pillars .st-infocard__text > span { font-size: 13.5px; color: var(--st-ink-2); line-height: 1.45; }

.st-cards--focus { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.st-cards--focus .st-infocard { flex-direction: row; align-items: center; gap: 18px; padding: 14px 16px; border-color: #e1eaf1; border-radius: 4px; }
.st-cards--focus .st-infocard__icon { width: 68px; height: 68px; flex-basis: 68px; background: #fff; border: 1px solid #e1eaf1; color: var(--st-navy-2); }
.st-cards--focus .st-infocard b { font-size: 15px; color: var(--st-navy); margin-bottom: 4px; }
.st-cards--focus .st-infocard__text > span { font-size: 13px; color: var(--st-ink-2); line-height: 1.45; }

.st-cards--help { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; }
.st-cards--help .st-infocard { flex-direction: row; align-items: center; gap: 18px; padding: 4px 22px; border: 0; border-radius: 0; background: none; }
.st-cards--help .st-infocard + .st-infocard { border-left: 1px solid #cfdfec; }
.st-cards--help .st-infocard:first-child { padding-left: 0; }
.st-cards--help .st-infocard__icon { width: 64px; height: 64px; flex-basis: 64px; background: #fff; color: var(--st-navy-2); }
.st-cards--help .st-infocard b { font-size: 15px; color: var(--st-navy); margin-bottom: 3px; }
.st-cards--help .st-infocard__text > span { font-size: 13px; color: var(--st-ink-2); line-height: 1.45; }

.st-cards--steps { display: flex; gap: 0; align-items: stretch; }
.st-cards--steps .st-infocard { flex: 1 1 0; flex-direction: row; align-items: center; gap: 16px; padding: 12px 16px; border-color: #e1eaf1; border-radius: 6px; }
.st-cards--steps .st-infocard + .st-infocard { margin-left: 44px; position: relative; }
.st-cards--steps .st-infocard + .st-infocard::before { content: ""; position: absolute; left: -31px; top: 50%; width: 18px; height: 2px; background: var(--st-navy-2); }
.st-cards--steps .st-infocard + .st-infocard::after { content: ""; position: absolute; left: -19px; top: calc(50% - 4px); width: 8px; height: 8px; border-top: 2px solid var(--st-navy-2); border-right: 2px solid var(--st-navy-2); transform: rotate(45deg); }
.st-cards--steps .st-infocard__num { width: 54px; height: 54px; flex: 0 0 54px; margin: 0; border-radius: 50%; background: #eef7f2; display: grid; place-items: center; font-size: 22px; color: var(--st-green-dark); }
.st-cards--steps .st-infocard:nth-child(2) .st-infocard__num { background: #e8f2fb; color: var(--st-blue-dark); }
.st-cards--steps .st-infocard b { font-size: 15px; color: var(--st-navy); margin-bottom: 3px; }
.st-cards--steps .st-infocard__text > span { font-size: 13px; color: var(--st-ink-2); line-height: 1.45; }

.st-cards--topics { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.st-cards--topics .st-infocard { padding: 16px 18px; border-color: #e1eaf1; border-radius: 6px; }
.st-cards--topics .st-infocard__icon { width: 62px; height: 62px; flex-basis: 62px; }
.st-cards--topics .st-infocard__arrow { color: var(--st-navy-2); }
.st-cards--topics .st-infocard--active { background: #eef7f2; border-color: #9fd3b3; }
.st-cards--topics .st-infocard--active .st-infocard__icon { background: #fff; }
.st-block--cards:has(.st-cards--topics) > .st-container { border: 0; padding: 0; background: none; }

/* ---------- Image cards: spaces ---------- */
.st-block--image-cards-space > .st-container { border: 1px solid var(--st-panel-line); border-radius: 12px; padding: 16px 18px 18px; }
.st-imgcards--space { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.st-imgcards--space .st-imgcard { border-radius: 4px; border-color: #e1eaf1; }
.st-imgcards--space .st-imgcard__media { height: auto; aspect-ratio: 3.2 / 1; }
.st-imgcards--space .st-imgcard__body { padding: 8px 12px; }
.st-imgcards--space .st-imgcard h3 { font-size: 15px; margin: 0; }
.st-imgcards--space .st-imgcard h3 a { color: var(--st-navy); }
.st-imgcard p:empty { display: none; }
.st-imgcards--option.st-imgcards--n2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.st-block--image-cards-option:not(:has(.st-block__head)) > .st-container { border: 0; padding: 0; }

/* ---------- Split: text with media on the right ---------- */
.st-split--media-right .st-split__media { order: 2; }
.st-split--text .st-split__body { padding: 20px 26px; }
.st-split--text .st-split__body > p { font-size: 15px; line-height: 1.55; margin-bottom: 12px; }
.st-split--text h2 { margin-bottom: 10px; }

/* ---------- Callout badge ---------- */
.st-banner__badge { margin-left: auto; padding-left: 28px; border-left: 2px solid rgba(255, 255, 255, .35); font-family: var(--st-font-head); font-size: clamp(22px, 2.4vw, 32px); font-weight: 800; letter-spacing: .02em; color: var(--st-blue); }

/* ---------- Contact ---------- */
.st-contact { display: grid; grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr); gap: 16px; align-items: start; }
.st-contact__form { padding: 18px 20px 20px; border-color: var(--st-panel-line); border-radius: 8px; box-shadow: none; }
.st-contact__form h2, .st-contact__form .st-panel__lede { margin-bottom: 2px; }
.st-contact__form h2 { font-size: 24px; color: var(--st-navy); }
.st-contact__form .st-panel__lede { font-size: 14px; margin-bottom: 10px; }
.st-form__stack { display: flex; flex-direction: column; gap: 10px; }
.st-form__stack .st-field > span:first-child { font-weight: 600; font-size: 13.5px; margin-bottom: 4px; }
.st-form__stack .st-field input:not([type=checkbox]), .st-form__stack .st-field select, .st-form__stack .st-field textarea { border-radius: 4px; padding: 8px 10px; font-size: 13.5px; border-color: #cfdbe4; }
.st-form__stack .st-affix { border-radius: 4px; }
.st-form__stack .st-affix em { font-weight: 600; min-width: 96px; background: #fff; position: relative; }
.st-contact__form .st-form__submit { border-radius: 4px; }
.st-contact__side { display: flex; flex-direction: column; gap: 14px; }
.st-sidecard { border-radius: 6px; border-color: var(--st-panel-line); }
.st-sidecard--row-top { display: grid; grid-template-columns: 66px minmax(0, 1fr); gap: 4px 14px; align-items: start; }
.st-sidecard--row-top > .st-btn, .st-sidecard--row-top > a.st-btn { grid-column: 1 / -1; margin-top: 10px; }
.st-sidecard--row-top h3 { font-size: 17px; color: var(--st-navy); margin-bottom: 4px; }
.st-sidecard--row-top p { margin: 0; color: var(--st-ink-2); font-size: 13.5px; }
.st-sidecard__icon--ring { width: 64px; height: 64px; margin: 0; background: #fff !important; border: 1px solid #d9e8f3; color: var(--st-navy-2); }
.st-sidecard__icon--plain { width: 56px; height: 56px; margin: 0; background: transparent !important; color: var(--st-navy-2); }
.st-sidecard--green { background: #eaf6ef; border-color: var(--st-mint-line); }
.st-sidecard--sky { background: var(--st-sky); border-color: #d9e8f3; }
.st-sidecard--sky h3 { font-size: 17px; color: var(--st-navy); }
.st-sidecard--sky hr { border: 0; border-top: 1px solid #cfdfec; margin: 14px 0; }
.st-sidecard--sky p { color: var(--st-ink-2); margin-bottom: 8px; }
.st-sidecard__titled { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.st-sidecard__titled h3 { margin: 0; font-size: 19px; }
.st-checklist { list-style: none; margin: 0; padding: 0 0 0 18px; display: flex; flex-direction: column; gap: 10px; }
.st-checklist li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--st-ink-2); }
.st-checklist svg { color: var(--st-navy-2); flex: 0 0 20px; }
.st-link-arrow--blue { color: var(--st-blue-dark); }
.st-contact__direct { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; padding-top: 12px; border-top: 1px solid #cfdfec; font-size: 13px; }
.st-contact__direct a, .st-contact__direct span { display: inline-flex; gap: 8px; align-items: center; color: var(--st-ink-2); }
.st-contact__direct svg { color: var(--st-green-dark); }

/* ---------- Support hero + FAQ ---------- */
.st-block--support-search .st-crumbs { display: none; }
.st-support-hero { position: relative; overflow: hidden; border-radius: 10px; border: 1px solid #d9e8f3; background: linear-gradient(100deg, #eaf4fb 0%, #f3f9fd 55%, #eef6fc 100%); padding: clamp(22px, 2.6vw, 34px) 20px clamp(20px, 2.4vw, 30px); }
.st-support-hero h1 { font-size: clamp(30px, 3.4vw, 46px); color: var(--st-navy); margin-bottom: 6px; position: relative; z-index: 1; }
.st-support-hero > p { font-size: 17px; color: var(--st-ink-2); margin-bottom: 18px; position: relative; z-index: 1; }
.st-support-hero__search { max-width: 490px; height: 46px; border-radius: 4px; border-color: #cfdbe4; position: relative; z-index: 1; }
.st-support-hero__search button { background: #fff; color: var(--st-blue-dark); width: 48px; }
.st-support-hero__search button:hover { background: #fff; color: var(--st-navy); }
.st-support-hero__art { position: absolute; right: 0; bottom: 0; top: 0; width: 26%; }
.st-support-hero__art img { width: 100%; height: 100%; object-fit: cover; object-position: right bottom; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 40%); mask-image: linear-gradient(90deg, transparent 0%, #000 40%); }
.st-support-hero__leaf { position: absolute; left: -30px; top: -20px; width: 190px; height: 190px; border-radius: 0 100% 0 100%; background: linear-gradient(135deg, rgba(19, 160, 75, .12), rgba(11, 120, 197, .1)); transform: rotate(-12deg); }
.st-block--support-search + .st-block { padding-top: 14px; }

.st-block--faq .st-with-aside { gap: 16px; flex-wrap: nowrap; }
.st-block--faq .st-with-aside__side { flex: 0 0 300px; max-width: 300px; gap: 14px; }
.st-faq__topics { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 12px; }
.st-faq__topics button { border: 1px solid #cfdbe4; background: #fff; color: var(--st-navy-2); border-radius: 999px; padding: 6px 20px; font-size: 13.5px; font-weight: 500; cursor: pointer; }
.st-faq__topics button.is-active { background: var(--st-navy-2); border-color: var(--st-navy-2); color: #fff; }
.st-block--faq:has(.st-with-aside) .st-faq--list { border: 0; gap: 8px; overflow: visible; }
.st-block--faq:has(.st-with-aside) .st-faq--list .st-faq__item { border: 1px solid #e1eaf1; border-radius: 4px; }
.st-block--faq:has(.st-with-aside) .st-faq--list summary { padding: 10px 16px; font-size: 15px; font-weight: 600; color: var(--st-navy); }
.st-sidecard__list a { color: var(--st-blue-dark); font-weight: 500; font-size: 14px; }
.st-sidecard__title-icon { font-size: 18px !important; color: var(--st-navy); }
.st-infobox { margin-top: 14px; border-radius: 8px; border-color: #d9e8f3; background: var(--st-sky); padding: 16px 20px; }
.st-infobox h3 { font-size: 21px; color: var(--st-navy); }
.st-infobox > p { font-size: 14px; color: var(--st-ink-2); }
.st-infobox__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; }
.st-infobox__grid > div { align-items: center; gap: 16px; padding: 0 20px; }
.st-infobox__grid > div + div { border-left: 1px solid #cfdfec; }
.st-infobox__grid > div:first-child { padding-left: 0; }
.st-infobox__grid > div > span:first-child { width: 58px; height: 58px; flex-basis: 58px; border-radius: 50%; background: #fff; color: var(--st-navy-2); }
.st-infobox__grid b { font-size: 15px; color: var(--st-navy); }
.st-infobox__grid small { font-size: 13px; color: var(--st-ink-2); }

/* ---------- Forms: finder and quotation ---------- */
.st-btn--back { background: #fff; border: 1.5px solid var(--st-blue); color: var(--st-blue-dark); border-radius: 6px; min-width: 128px; }
.st-btn--back:hover { background: #f2f8fd; color: var(--st-blue-dark); }
.st-btn--outline-white { background: transparent; border: 1.5px solid #fff; color: #fff; border-radius: 6px; }
.st-btn--outline-white:hover, .st-btn--outline-white:focus { background: rgba(255, 255, 255, .1); color: #fff; }

.st-block--finder, .st-block--quote { padding-top: 0; }
.st-block--finder .st-with-aside, .st-block--quote .st-with-aside { flex-wrap: nowrap; gap: 20px; padding-top: 6px; }
.st-block--finder .st-with-aside__side, .st-block--quote .st-with-aside__side { flex: 0 0 312px; max-width: 312px; gap: 14px; }
.st-block--finder .st-panel--form, .st-block--quote .st-panel--form { border-radius: 6px; border-color: var(--st-panel-line); padding: 18px 18px 20px; }
.st-block--finder .st-panel h2, .st-block--quote .st-panel h2 { font-size: 24px; color: var(--st-navy); margin-bottom: 2px; }
.st-block--finder .st-panel__lede, .st-block--quote .st-panel__lede { font-size: 15px; color: var(--st-ink-2); margin-bottom: 14px; }
.st-block--finder .st-form__section, .st-block--quote .st-form__section { margin-top: 22px !important; }
.st-form__subsection { font-size: 20px; color: var(--st-navy); margin: 18px 0 10px; }
.st-block--quote .st-form__section { padding-top: 20px; border-top: 1px solid #e3ebf2; }
.st-block--finder .st-field > span:first-child, .st-block--quote .st-field > span:first-child, .st-block--quote .st-field > label > span { font-weight: 600; font-size: 14px; color: var(--st-navy-2); }
.st-block--finder .st-field input:not([type=checkbox]):not([type=radio]), .st-block--finder .st-field select, .st-block--finder .st-field textarea,
.st-block--quote .st-field input:not([type=checkbox]):not([type=radio]), .st-block--quote .st-field select, .st-block--quote .st-field textarea { border-radius: 4px; border-color: #cfdbe4; padding: 10px 12px; }
.st-block--finder .st-affix, .st-block--quote .st-affix { border-radius: 4px; border-color: #cfdbe4; }
.st-block--finder .st-affix em, .st-block--quote .st-affix em { background: #eef5fb; font-weight: 600; color: var(--st-navy-2); }

.st-finder-steps { padding: 4px 0 14px; }
.st-finder-steps span { width: 38px; height: 38px; flex-basis: 38px; font-size: 17px; background: #e8eef3; color: var(--st-navy-2); }
.st-finder-steps b { font-weight: 600; font-size: 14.5px; color: var(--st-navy-2); }
.st-finder-steps li.is-active b, .st-finder-steps li.is-done b { color: var(--st-green-dark); }
.st-finder-steps li + li::before { width: clamp(24px, 9vw, 116px); background: #d3dde6; }
.st-page-hero--band + .st-block--finder .st-finder-steps { margin-top: -6px; }

.st-choices { gap: 12px; }
.st-choice { border-radius: 6px; border: 1.5px solid #dfe8ef; padding: 14px; }
.st-choice:has(input:checked) { background: #eaf6ef; border-color: var(--st-green); }
.st-choice__mark { right: 10px; top: 10px; width: 22px; height: 22px; border-width: 1.5px; }
.st-choice input:checked + .st-choice__mark { background: var(--st-green-dark); border-color: var(--st-green-dark); }
.st-choice__icon { display: flex; color: var(--st-navy-2); flex: 0 0 auto; }
.st-choice--tile.has-icon { flex-direction: column; align-items: center; text-align: center; padding: 16px 12px 14px; gap: 8px; }
.st-choice--tile.has-icon .st-choice__text { padding-right: 0; }
.st-choice--tile.has-icon .st-choice__text b { font-size: 16px; font-weight: 700; color: var(--st-navy); }
.st-choice--tile.has-icon .st-choice__text small { font-size: 13px; color: var(--st-ink-2); line-height: 1.35; }
.st-choice--tile.has-icon:has(input:checked) .st-choice__icon { color: var(--st-green-dark); }
.st-choice--row { align-items: center; gap: 14px; padding: 12px 14px 12px 12px; }
.st-choice--row .st-choice__mark { position: static; order: -2; flex: 0 0 20px; width: 20px; height: 20px; border-radius: 4px; }
.st-choice--row .st-choice__icon { order: -1; }
.st-choice--row .st-choice__text { padding-right: 0; }
.st-choice--row .st-choice__text b { font-size: 14.5px; font-weight: 600; color: var(--st-navy); margin: 0 0 2px; }
.st-choice--row .st-choice__text small { font-size: 12.5px; color: var(--st-ink-2); }
.st-choice--row:has(input[type=radio]) .st-choice__mark { order: 3; margin-left: auto; border-radius: 50%; }
.st-choice--chip { gap: 10px; padding: 12px 14px; }
.st-choice--chip .st-choice__text b { font-size: 14px; font-weight: 600; color: var(--st-navy); }
.st-block--finder .st-choices--2 .st-choice--row:last-child:nth-child(odd) { grid-column: 1 / -1; }
.st-finder__hint { display: inline-flex; align-items: center; gap: 10px; margin-top: 14px; font-size: 14px; color: var(--st-blue-dark); }
.st-finder__nav { align-items: flex-start; }
.st-finder__next { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.st-finder__next small { font-size: 12.5px; color: var(--st-muted); }
.st-finder__nav .st-btn--green { border-radius: 6px; min-width: 176px; }
.st-link-arrow--back { font-size: 15px; font-weight: 600; padding-top: 12px; }

.st-sidecard--summary { border-radius: 6px; }
.st-sidecard__bar { background: var(--st-navy-2); font-size: 21px; font-weight: 700; padding: 16px 18px; font-family: var(--st-font-head); }
.st-summary-list > div { grid-template-columns: 64px 1fr; column-gap: 14px; align-items: center; }
.st-summary-list > div > span { width: 64px; height: 64px; background: #eef5fb; color: var(--st-navy-2); }
.st-summary-list dt { font-size: 14px; color: var(--st-ink-2); }
.st-summary-list dd { font-size: 17px; color: var(--st-navy); }
.st-sidecard--row { align-items: flex-start; }
.st-sidecard--row .st-sidecard__icon--ring { width: 60px; height: 60px; flex-basis: 60px; background: #fff; }
.st-sidecard--row b { font-size: 17px; color: var(--st-navy); }
.st-sidecard--row small { font-size: 13.5px; color: var(--st-ink-2); }
.st-block--finder .st-sidecard:not(.st-sidecard--green):not(.st-sidecard--summary) h3 { font-size: 19px; color: var(--st-navy); margin-top: 12px; }

.st-howto { margin-top: 18px; border-radius: 6px; padding: 16px 20px; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; }
.st-howto > div { align-items: center; gap: 14px; padding: 0 18px; }
.st-howto > div + div { border-left: 1px solid #cfdfec; }
.st-howto > div:first-child { padding-left: 0; }
.st-howto > div > span:first-child { width: 38px; height: 38px; flex-basis: 38px; background: var(--st-blue); font-size: 17px; }
.st-howto > div > i { width: 52px; height: 52px; flex: 0 0 52px; border-radius: 50%; background: #fff; color: var(--st-navy-2); display: grid; place-items: center; }
.st-howto b { font-size: 15.5px; color: var(--st-navy); }
.st-howto small { font-size: 13px; color: var(--st-ink-2); }

.st-sidecard--prepare h3 { font-size: 22px; color: var(--st-navy); }
.st-sidecard--prepare > p { color: var(--st-ink-2); font-size: 14px; }
.st-sidecard__points li { align-items: center; gap: 14px; }
.st-sidecard__points li > span:first-child { width: 58px; height: 58px; flex: 0 0 58px; border-radius: 50%; background: #fff; color: var(--st-navy-2); }
.st-sidecard__points b { font-size: 14.5px; color: var(--st-blue-dark); }
.st-sidecard__points small { font-size: 12.5px; color: var(--st-ink-2); }
.st-sidecard--navy { border-radius: 6px; padding: 18px; }
.st-sidecard--navy h3 { font-size: 21px; margin-bottom: 12px; }
.st-sidecard__inline { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 12px; }
.st-sidecard__inline p { margin: 0 0 6px; font-size: 13.5px; }
.st-sidecard__icon--outline { width: 56px; height: 56px; flex: 0 0 56px; margin: 0; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, .8); background: transparent !important; color: #fff; }
.st-block--quote .st-sidecard:not(.st-sidecard--green):not(.st-sidecard--navy) h3 { font-size: 21px; color: var(--st-navy); margin-bottom: 10px; }
.st-block--quote .st-form__submit { border-radius: 4px; }

.st-quote-steps { margin-top: 18px; background: var(--st-sky); border-top: 1px solid #e3ebf2; border-bottom: 1px solid #e3ebf2; }
.st-quote-steps__inner { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 16px 0; }
.st-quote-steps__inner > div { display: flex; align-items: center; gap: 18px; padding: 0 28px; }
.st-quote-steps__inner > div + div { border-left: 1px solid #cfdfec; }
.st-quote-steps__inner > div:first-child { padding-left: 0; }
.st-quote-steps__inner > div > span:first-child { width: 62px; height: 62px; flex: 0 0 62px; border-radius: 50%; background: #e3f3ea; color: var(--st-green-dark); display: grid; place-items: center; font-family: var(--st-font-head); font-size: 24px; font-weight: 800; }
.st-quote-steps__inner b { display: block; font-size: 17px; color: var(--st-blue-dark); margin-bottom: 3px; }
.st-quote-steps__inner small { font-size: 13.5px; color: var(--st-ink-2); line-height: 1.45; }
.st-block--quote + .st-block, .st-main .st-block--quote:last-of-type { padding-bottom: 0; }

/* ---------- Shared: search line, popular categories, link cards ---------- */
.st-btn--outline-navy { background: #fff; border: 1.5px solid var(--st-navy-2); color: var(--st-navy-2); border-radius: 6px; }
.st-btn--outline-navy:hover, .st-btn--outline-navy:focus { background: #f2f8fd; color: var(--st-navy); }
.st-searchline { display: flex; gap: 14px; justify-content: center; max-width: 660px; margin: 0 auto; }
.st-searchline__field { position: relative; flex: 1 1 auto; margin: 0; }
.st-searchline__field input { width: 100%; height: 52px; border: 1.5px solid #b9d2e6; border-radius: 6px; padding: 0 48px 0 16px; font-size: 15px; outline: none; }
.st-searchline__field input:focus { border-color: var(--st-blue); box-shadow: 0 0 0 3px rgba(11, 120, 197, .12); }
.st-searchline__field svg { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: var(--st-blue-dark); pointer-events: none; }
.st-searchline .st-btn { border-radius: 6px; min-width: 136px; }

.st-popcats { padding: 22px 0 8px; }
.st-popcats h2 { font-size: clamp(22px, 2.2vw, 30px); color: var(--st-navy); margin-bottom: 14px; }
.st-popcats__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.st-popcats__card { display: flex; flex-direction: column; border: 1px solid #dfe8ef; border-radius: 6px; padding: 12px 18px 18px; color: var(--st-navy); background: #fff; }
.st-popcats__card:hover { border-color: var(--st-green); color: var(--st-navy); box-shadow: var(--st-shadow-hover); }
.st-popcats__img { height: 150px; display: grid; place-items: center; margin-bottom: 10px; }
.st-popcats__img img { max-height: 150px; max-width: 100%; object-fit: contain; mix-blend-mode: multiply; }
.st-popcats__card b { font-size: 17px; margin-bottom: 8px; }

.st-linkcards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; padding: 14px 0; }
.st-linkcards__card { display: flex; gap: 16px; align-items: flex-start; border: 1px solid #dfe8ef; border-radius: 6px; padding: 16px 18px; color: var(--st-ink); background: #fff; }
.st-linkcards__card:hover { border-color: var(--st-green); color: var(--st-ink); }
.st-linkcards__icon { width: 58px; height: 58px; flex: 0 0 58px; border-radius: 50%; background: #eef5fb; color: var(--st-navy-2); display: grid; place-items: center; }
.st-linkcards__body b { display: block; font-size: 17px; color: var(--st-navy); margin-bottom: 4px; }
.st-linkcards__body small { display: block; font-size: 13.5px; color: var(--st-ink-2); line-height: 1.45; margin-bottom: 10px; }

/* ---------- 404 ---------- */
.st-404 { padding: 0 0 30px; text-align: left; max-width: none; }
.st-404__hero { text-align: center; padding: 20px 0 30px; border-bottom: 1px solid #e3ebf2; }
.st-404__art { width: min(600px, 100%); height: auto; mix-blend-mode: multiply; }
.st-404 h1 { font-size: clamp(30px, 3.6vw, 46px); color: var(--st-navy); margin: 14px 0 10px; }
.st-404__hero > p { font-size: 18px; color: var(--st-ink-2); line-height: 1.5; margin: 0 0 22px; }
.st-404__actions { display: flex; gap: 16px; justify-content: center; margin-bottom: 26px; flex-wrap: wrap; }
.st-404__actions .st-btn { min-width: 200px; border-radius: 6px; }
.st-404__band { margin-top: 6px; }

/* ---------- Track order ---------- */
.st-tracking { padding: 0 0 30px; }
.st-tracking__hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 440px); align-items: center; gap: 20px; padding: 6px 0 14px; }
.st-tracking__hero h1 { font-size: clamp(34px, 4.6vw, 62px); color: var(--st-navy); letter-spacing: -.04em; margin-bottom: 8px; }
.st-tracking__hero p { font-size: 18px; color: var(--st-ink-2); margin: 0; }
.st-tracking__hero img { width: 100%; height: auto; mix-blend-mode: multiply; }
.st-tracking__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; align-items: stretch; }
.st-tracking__form { border: 1px solid var(--st-panel-line); border-radius: 6px; padding: 22px 30px; background: #fff; max-width: none; margin: 0; }
.st-tracking__form h2 { font-size: 30px; color: var(--st-navy); margin-bottom: 14px; }
.st-tracking__form label, .st-tracking__form .form-label { font-weight: 600; font-size: 15px; color: var(--st-navy-2); }
.st-tracking__form input.form-control { height: 48px; border-radius: 4px; border: 1px solid #cfdbe4; font-size: 15px; }
.st-tracking__form .st-btn, .st-tracking__form button[type=submit] { border-radius: 4px; background: var(--st-green-dark); }
.st-tracking__signed { text-align: center; border-top: 1px solid #e3ebf2; margin: 18px 0 0; padding-top: 14px; font-size: 15px; color: var(--st-navy-2); }
.st-tracking__side { display: flex; flex-direction: column; gap: 16px; }
.st-tracking__side .st-sidecard { flex: 1; padding: 20px; }
.st-tracking__side h3 { font-size: 21px !important; }
.st-tracking__side p { margin-bottom: 10px !important; font-size: 14.5px !important; }
.st-tracking__after { border: 1px solid var(--st-panel-line); border-radius: 6px; padding: 18px 26px; margin: 16px 0; }
.st-tracking__after h2 { font-size: 26px; color: var(--st-navy); }
.st-tracking__after > p { color: var(--st-ink-2); margin: 2px 0 14px; }
.st-tracking .st-track-card, .st-tracking .st-track-grid, .st-tracking .st-tracking__empty { margin-top: 16px; }

/* ---------- Product listing ---------- */
.st-listing-hero { background: #fff; }
.st-listing-hero__inner { display: grid; grid-template-columns: minmax(0, 1fr); gap: 24px; align-items: center; padding-bottom: 16px; }
.st-listing-hero.has-art .st-listing-hero__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 500px); }
.st-listing-hero h1 { font-size: clamp(30px, 3.6vw, 48px); color: var(--st-navy); letter-spacing: -.035em; margin: 2px 0 6px; }
.st-listing-hero__text > p, .st-listing-hero__desc { font-size: 17px; color: var(--st-ink-2); margin: 0; max-width: 620px; }
.st-listing-hero__desc p { margin: 0; }
.st-listing-hero__art { align-self: stretch; border-radius: 8px; overflow: hidden; min-height: 126px; max-height: 128px; background: var(--st-sky); }
.st-listing-hero__art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.st-listing-hero__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.st-listing-hero__chips a { display: inline-flex; align-items: center; gap: 8px; border: 1px solid #cfdbe4; border-radius: 4px; padding: 8px 16px; font-size: 13.5px; font-weight: 600; color: var(--st-navy-2); background: #fff; }
.st-listing-hero__chips a:hover { border-color: var(--st-green); color: var(--st-green-dark); }
.st-listing-hero__chips a.is-active { background: var(--st-green-dark); border-color: var(--st-green-dark); color: #fff; }
.st-result-tabs { display: flex; gap: 6px; margin-top: 18px; border-bottom: 1px solid #dfe8ef; }
.st-result-tabs a { padding: 8px 22px 10px; font-size: 14.5px; color: var(--st-ink-2); border-bottom: 3px solid transparent; margin-bottom: -1px; }
.st-result-tabs a.is-active { color: var(--st-blue-dark); border-bottom-color: var(--st-blue-dark); font-weight: 600; }

.st-listing { padding: 8px 0 20px; gap: 14px; }
.st-filters { flex: 0 0 238px; min-width: 0; background: #f6f9fc; border-color: #e1eaf1; border-radius: 6px; padding: 14px; max-height: none; position: static; }
.st-filters__head h3 { font-size: 19px; color: var(--st-navy); font-weight: 700; font-family: var(--st-font-head); }
.st-filter { padding: 12px 0; border-top-color: #dfe8ef; }
.st-filter h4 { text-transform: none; letter-spacing: 0; font-size: 15px; font-weight: 700; color: var(--st-navy); font-family: var(--st-font-head); }
.st-filters__help { display: flex; gap: 12px; margin: 10px -14px -14px; padding: 14px; background: #eaf6ef; border-top: 1px solid var(--st-mint-line); border-radius: 0 0 6px 6px; }
.st-filters__help > span { color: var(--st-green-dark); flex: 0 0 auto; }
.st-filters__help b { display: block; font-size: 14px; color: var(--st-navy); }
.st-filters__help small { display: block; font-size: 12.5px; color: var(--st-ink-2); line-height: 1.4; margin: 2px 0 6px; }
.st-filters__help .st-link-arrow { font-size: 13px; text-decoration: underline; }
.st-listing__toolbar { margin-bottom: 10px; padding: 6px 0; }
.st-listing__count b { font-size: 16px; color: var(--st-navy); font-weight: 700; margin-right: 10px; }
.st-listing__count small { font-size: 12.5px; color: var(--st-muted); }
.st-listing .st-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.st-listing .st-card { border-radius: 6px; }
.st-pagination { display: flex; justify-content: center; }

.st-listing-foot { padding-bottom: 26px; }
.st-listing-foot > .st-banner { margin: 6px 0 16px; }
.st-banner--wide { border-radius: 0; margin-left: calc(50% - 50vw) !important; margin-right: calc(50% - 50vw) !important; padding-left: max(16px, calc(50vw - 50% + 0px)); padding-right: max(16px, calc(50vw - 50%)); border-left: 0; border-right: 0; }
.st-listing-guides .st-related__head { justify-content: space-between; }
.st-related--n3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.st-listing-guides .st-related__body b { color: var(--st-navy); }
.st-listing-guides .st-related__card .st-link-arrow { color: var(--st-blue-dark); }
.st-listing-guides .st-related__media { width: 34%; flex-basis: 34%; margin: 8px 0 8px 8px; border-radius: 4px; overflow: hidden; min-height: 84px; }

.st-searchtips { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; border: 1px solid #d9e8f3; border-radius: 6px; background: var(--st-sky); padding: 14px 22px; margin: 4px 0 16px; }
.st-searchtips__icon { width: 62px; height: 62px; border-radius: 50%; background: #e3effa; color: var(--st-blue-dark); display: grid; place-items: center; }
.st-searchtips__text b { display: block; font-size: 21px; color: var(--st-navy); font-family: var(--st-font-head); }
.st-searchtips__text small { font-size: 14px; color: var(--st-ink-2); }
.st-searchtips__chips { margin-left: auto; display: flex; gap: 10px; flex-wrap: wrap; }
.st-searchtips__chips span { border: 1px solid #b9d2e6; background: #fff; border-radius: 999px; padding: 8px 18px; font-size: 13.5px; color: var(--st-navy-2); }

.st-noresults { border: 1px solid var(--st-panel-line); border-radius: 6px; padding: 26px 26px 20px; text-align: center; }
.st-noresults__art { width: 180px; height: auto; mix-blend-mode: multiply; }
.st-noresults h2 { font-size: clamp(24px, 2.6vw, 34px); color: var(--st-navy); margin: 10px 0 8px; }
.st-noresults > p { font-size: 16px; color: var(--st-ink-2); margin: 0 0 18px; line-height: 1.5; }
.st-noresults__actions { display: flex; justify-content: center; gap: 14px; margin: 18px 0 20px; flex-wrap: wrap; }
.st-noresults__actions .st-btn { min-width: 176px; border-radius: 4px; }
.st-noresults__tips { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid #e3ebf2; padding-top: 18px; text-align: left; }
.st-noresults__tips > div { display: flex; gap: 14px; padding: 0 16px; align-items: flex-start; }
.st-noresults__tips > div + div { border-left: 1px solid #e3ebf2; }
.st-noresults__tips > div > span:first-child { width: 52px; height: 52px; flex: 0 0 52px; border-radius: 50%; background: #eef5fb; color: var(--st-navy-2); display: grid; place-items: center; }
.st-noresults__tips b { display: block; font-size: 16px; color: var(--st-navy); }
.st-noresults__tips small { font-size: 13px; color: var(--st-ink-2); }

/* ---------- All categories ---------- */
.st-catdir__search { position: relative; display: block; margin: 0 0 16px; }
.st-catdir__search svg { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--st-navy-2); }
.st-catdir__search input { width: 100%; height: 50px; border: 1.5px solid #b9d2e6; border-radius: 6px; padding: 0 16px 0 54px; font-size: 15px; outline: none; }
.st-catdir__search input:focus { border-color: var(--st-blue); }
.st-catdir { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.st-catdir__card { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 8px; border: 1px solid #d9e8f3; border-radius: 6px; padding: 8px; min-height: 196px; background: #fff; }
.st-catdir__card[hidden] { display: none; }
.st-catdir__body { display: flex; flex-direction: column; padding: 10px 12px; }
.st-catdir__body h2 { font-size: 23px; margin-bottom: 8px; }
.st-catdir__body h2 a { color: var(--st-navy); }
.st-catdir__body ul { list-style: none; margin: 0 0 12px; padding: 0; display: flex; flex-direction: column; gap: 3px; }
.st-catdir__body li a { font-size: 14.5px; color: var(--st-blue-dark); }
.st-catdir__body li a:hover { color: var(--st-green-dark); }
.st-catdir__body p { color: var(--st-ink-2); }
.st-catdir__view { margin-top: auto; font-size: 15px; font-weight: 600; color: var(--st-green-dark); }
.st-catdir__art { display: grid; place-items: center; border-radius: 4px; background: linear-gradient(135deg, #f3f6f9, #e9eef3); overflow: hidden; }
.st-catdir__art img { width: 100%; height: 100%; max-height: 190px; object-fit: contain; mix-blend-mode: multiply; }
.st-catdir__band { margin: 18px 0 14px; }
.st-catdir__links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.st-catdir__links a { display: flex; align-items: center; gap: 18px; padding: 8px 24px; color: var(--st-navy-2); border-left: 1px solid #d9e8f3; }
.st-catdir__links a:last-child { border-right: 1px solid #d9e8f3; }
.st-catdir__links a > span { flex: 1; }
.st-catdir__links b { display: block; font-size: 16px; color: var(--st-navy); }
.st-catdir__links small { font-size: 13.5px; color: var(--st-ink-2); }

/* ---------- Product detail ---------- */
.st-crumbs { padding: 14px 0 0; }
.st-crumbs .breadcrumb { font-size: 13px; }
.st-pdp { padding-top: 12px; gap: 22px; }
.st-pdp__stage { border-radius: 6px; border-color: #e1eaf1; background: linear-gradient(135deg, #f3f6f9, #e8eef3); }
.st-pdp__thumb { border-radius: 4px; }
.st-pdp__title { font-size: clamp(26px, 2.8vw, 36px); color: var(--st-navy); }
.st-pdp__tile { border-radius: 4px; }
.st-buybox { border-radius: 6px; border-color: #e1eaf1; box-shadow: 0 10px 30px rgba(8, 35, 61, .07); }
.st-buybox .st-btn { border-radius: 4px; }
.st-pdp-help { margin-top: 18px; }
.st-pdp-tabs { padding-top: 14px; }
.st-pdp-tabs__nav { gap: 0; }
.st-pdp-tabs__btn { padding: 12px 28px; font-weight: 600; font-size: 14.5px; color: var(--st-navy-2); }
.st-pdp-tabs__btn.is-active { color: var(--st-blue-dark); border-bottom-color: var(--st-blue-dark); }
.st-pdp-tabs__panel { padding-top: 18px; }
.st-pdp-overview:not([hidden]) { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 22px; }
.st-pdp-overview .st-prose h2 { color: var(--st-navy); }
.st-clamp { position: relative; }
.st-clamp.is-clamped { max-height: 760px; overflow: hidden; }
.st-clamp.is-clamped::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 140px; background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 78%); pointer-events: none; }
.st-clamp__toggle { position: absolute; left: 0; bottom: 6px; z-index: 2; display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid var(--st-navy-2); background: #fff; color: var(--st-navy-2); border-radius: 4px; padding: 9px 18px; font-size: 14px; font-weight: 600; cursor: pointer; }
.st-clamp:not(.is-clamped) .st-clamp__toggle { display: none; }
.st-pdp-overview__aside { display: flex; flex-direction: column; gap: 14px; }
.st-pdp-overview__art { border-radius: 4px; overflow: hidden; aspect-ratio: 2.8 / 1; }
.st-pdp-overview__art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.st-summary-card { border-radius: 6px; }

.st-pdp-extra { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 14px; padding-top: 18px; }
.st-pdp-specs { border: 1px solid #dfe8ef; border-radius: 4px; padding: 14px 16px; }
.st-pdp-specs h2 { font-size: 21px; color: var(--st-navy); margin-bottom: 8px; }
.st-pdp-specs dl { margin: 0 0 10px; }
.st-pdp-specs dl > div { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 12px; padding: 7px 4px; border-top: 1px solid #e8eef3; }
.st-pdp-specs dt { font-size: 14px; font-weight: 600; color: var(--st-navy); }
.st-pdp-specs dd { margin: 0; font-size: 13.5px; color: var(--st-ink-2); }
.st-pdp-specs button { border: 0; background: none; padding: 0; cursor: pointer; }
.st-pdp-solution { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 14px; border-radius: 4px; background: var(--st-navy-2); color: #fff; padding: 16px 18px; }
.st-pdp-solution .st-kicker { color: #6fd79c; font-size: 11.5px; margin-bottom: 6px; }
.st-pdp-solution h2 { color: #fff; font-size: 23px; margin-bottom: 8px; }
.st-pdp-solution p { font-size: 14px; color: #d5e2ec; line-height: 1.5; margin: 0 0 12px; }
.st-pdp-solution ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.st-pdp-solution li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #e8f0f6; }
.st-pdp-solution li svg { color: #3fc46f; }
.st-pdp-solution__side { display: flex; flex-direction: column; justify-content: space-between; align-items: stretch; gap: 14px; }
.st-pdp-solution__side img { width: 100%; height: auto; border-radius: 4px; }
.st-pdp-solution__side .st-btn { border-radius: 4px; }

.st-pdp-accessories { padding-top: 18px; }
.st-pdp-accessories .st-related__head { justify-content: space-between; }
.st-pdp-accessories .st-related__head span { display: inline-flex; align-items: center; gap: 6px; }
.st-related__media--product { background: linear-gradient(135deg, #f3f6f9, #e9eef3); margin: 8px 0 8px 8px; border-radius: 4px; overflow: hidden; width: 38% !important; flex-basis: 38% !important; }
.st-related__media--product img { object-fit: contain !important; mix-blend-mode: multiply; }
.st-pdp-related { padding-top: 22px; padding-bottom: 20px; }
.st-pdp-related h2 { color: var(--st-navy); }
.st-pdp-related .st-product-grid { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 10px; }
.st-catdir__body ul { list-style: none !important; padding-left: 0 !important; }
.st-catdir__body li { list-style: none; }

/* ---------- Forgot / reset password ---------- */
.st-authx { padding-bottom: 36px; }
.st-authx__card { max-width: 610px; margin: 12px auto 0; border: 1px solid #dfe8ef; border-radius: 6px; padding: 26px 34px 22px; text-align: center; background: #fff; }
.st-authx__art { width: 230px; height: auto; margin: 0 auto 6px; display: block; mix-blend-mode: multiply; }
.st-authx__card h1 { font-size: clamp(28px, 3vw, 38px); color: var(--st-navy); margin-bottom: 8px; }
.st-authx__lede { font-size: 16px; color: var(--st-ink-2); margin: 0 auto 18px; max-width: 440px; }
.st-authx__form { text-align: left; }
.st-authx__form .auth-card__header, .st-authx .auth-card__header { display: none !important; }
.st-authx .container, .st-authx .row, .st-authx .row > [class*="col"] { width: 100%; max-width: none; padding: 0; margin: 0; }
.st-authx .row { display: block; }
.st-authx .auth-card, .st-authx .card { border: 0; box-shadow: none; background: none; padding: 0; }
.st-authx .auth-card__body, .st-authx .card-body { padding: 0; }
.st-authx .auth-input-icon { display: none; }
.st-authx input.form-control { height: 48px; border-radius: 4px; border: 1px solid #b9d2e6; padding-left: 14px !important; font-size: 15px; }
.st-authx .form-label { font-weight: 600; color: var(--st-navy-2); font-size: 15px; }
.st-authx .st-btn { border-radius: 4px; height: 50px; font-size: 16px; }
.st-authx__back { margin: 18px 0 0; }
.st-authx__help { max-width: 610px; margin: 14px auto 0; }
.st-authx__help .st-banner { flex-wrap: wrap; }
.st-authx__other { max-width: 610px; margin: 22px auto 0; text-align: center; }
.st-authx__other h2 { font-family: var(--st-font); font-size: 15px; font-weight: 500; color: var(--st-ink-2); display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.st-authx__other h2::before, .st-authx__other h2::after { content: ""; flex: 1; height: 1px; background: #dfe8ef; }
.st-authx__other > div { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; text-align: left; }
.st-authx__other a { display: flex; gap: 14px; align-items: center; color: var(--st-navy-2); }
.st-authx__other b { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; color: var(--st-blue-dark); }
.st-authx__other small { display: block; font-size: 13.5px; color: var(--st-ink-2); }

/* ---------- Homepage (home.png) ---------- */
@media (min-width: 1200px) {
    .st-need-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
    .st-cat-grid { grid-template-columns: repeat(10, minmax(0, 1fr)); gap: 8px; }
    .st-product-grid--home { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; }
    .st-solution-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
    .st-why-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
    .st-article-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
    .st-brand-strip { grid-template-columns: repeat(10, minmax(0, 1fr)); }
}
.st-section-head h2, .st-section-title { color: var(--st-navy); font-size: clamp(22px, 2.3vw, 32px); }
.st-section { padding: clamp(18px, 2.4vw, 26px) 0; }
.st-section--need { padding-top: clamp(20px, 2.6vw, 30px); padding-bottom: 6px; }
.st-need { border-radius: 6px; border-color: #dfe8ef; box-shadow: none; }
.st-need__img { height: 118px; }
.st-need__body { padding: 12px 12px 10px; gap: 10px; align-items: flex-start; }
.st-need__icon { width: 40px; height: 44px; flex: 0 0 40px; background: none; color: var(--st-green-dark); border-radius: 0; }
.st-need__text b { font-size: 16px; color: var(--st-navy); font-family: var(--st-font-head); }
.st-need__text span { font-size: 12.5px; color: var(--st-ink-2); }
.st-cat { border-radius: 4px; border-color: #dfe8ef; background: #f7fafc; padding: 10px 6px 10px; }
.st-cat__img { height: 82px; }
.st-cat__img.is-photo img { mix-blend-mode: multiply; }
.st-cat__img--all { display: grid; place-items: center; color: var(--st-navy-2); }
.st-cat b { font-size: 13.5px; font-weight: 600; color: var(--st-navy); }
.st-card--home { border-radius: 4px; }
.st-card--home .st-card__media { height: 150px; background: #fff; }
.st-card--home .st-card__title { font-size: 15px; font-weight: 600; color: var(--st-navy); }
.st-card--home .st-card__price { font-size: 19px; }
.st-flow { background: #eef6f1; border: 0; padding: clamp(20px, 2.4vw, 28px) 0; }
.st-flow__intro h2 { font-size: clamp(24px, 2.4vw, 34px); color: var(--st-navy); }
.st-flow__intro p { font-size: 16px; color: var(--st-ink-2); }
.st-flow__art { height: 86px; display: grid; place-items: center; margin-bottom: 8px; }
.st-flow__art img { max-height: 86px; width: auto; mix-blend-mode: multiply; }
.st-flow__node b { font-size: 15px; color: var(--st-navy); }
.st-flow__node span { font-size: 14px; color: var(--st-ink-2); }
.st-flow__arrow { margin-top: 30px; flex-basis: 30px; }
.st-solution { height: 196px; border-radius: 4px; }
.st-solution__text h3 { font-size: 20px; }
.st-solution__text p { font-size: 14px; }
.st-solution__shade { background: linear-gradient(180deg, rgba(3, 18, 31, .7) 0%, rgba(3, 18, 31, .1) 42%, rgba(3, 18, 31, .45) 100%); }
.st-solution__btn { background: rgba(7, 26, 47, .75); border: 1px solid rgba(255, 255, 255, .5); border-radius: 4px; padding: 9px 18px; font-size: 14px; }
.st-brand-strip { border-radius: 4px; border-color: #dfe8ef; }
.st-brand-strip__item { min-height: 64px; }
.st-brand-strip__name { font-size: 19px; }
.st-why { align-items: center; }
.st-why__icon { width: 46px; height: 46px; flex-basis: 46px; background: #fff; border: 2px solid #b3eccb; }
.st-why b { font-size: 14.5px; color: var(--st-navy); }
.st-why div span { font-size: 13px; color: var(--st-ink-2); }
.st-article { border-radius: 4px; }
.st-article__img { height: 150px; }
.st-article__body h3 { color: var(--st-navy); }

/* ---------- Compare ---------- */
.st-cmp { padding-bottom: 10px; }
.st-cmp__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin: 6px 0 14px; }
.st-cmp__head h1 { font-size: clamp(28px, 3vw, 40px); color: var(--st-navy); }
.st-cmp__head p { font-size: 18px; color: var(--st-ink-2); margin: 2px 0 0; }
.st-cmp__note { font-size: 13px; color: var(--st-muted-2); padding-top: 14px; }
.st-cmp__bar { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; border: 1px solid #dfe8ef; border-radius: 6px; padding: 12px 16px; margin-bottom: 12px; }
.st-cmp__bar b { font-size: 15px; color: var(--st-navy); }
.st-cmp__cat { border: 1px solid #cfdbe4; border-radius: 4px; padding: 7px 14px; font-size: 13.5px; color: var(--st-navy-2); }
.st-switch { display: inline-flex; align-items: center; gap: 12px; margin: 0; padding-left: 20px; border-left: 1px solid #dfe8ef; font-size: 14px; font-weight: 500; color: var(--st-navy-2); cursor: pointer; }
.st-switch input { position: absolute; opacity: 0; }
.st-switch__track { width: 40px; height: 22px; border-radius: 999px; background: #6b7d8d; position: relative; transition: background .15s; }
.st-switch__track::after { content: ""; position: absolute; left: 3px; top: 3px; width: 16px; height: 16px; border-radius: 50%; background: #fff; transition: transform .15s; }
.st-switch input:checked + .st-switch__track { background: var(--st-green); }
.st-switch input:checked + .st-switch__track::after { transform: translateX(18px); }
.st-switch input:focus-visible + .st-switch__track { box-shadow: 0 0 0 3px rgba(19, 160, 75, .25); }
.st-cmp__clear { margin-left: auto; border: 0; background: none; color: var(--st-blue-dark); font-size: 14px; cursor: pointer; }
.st-cmp__scroll { overflow-x: auto; border: 1px solid #dfe8ef; border-radius: 6px; }
.st-cmp__table { width: 100%; min-width: calc(220px + var(--cols) * 220px); border-collapse: collapse; table-layout: fixed; font-size: 14px; }
.st-cmp__table th, .st-cmp__table td { border-bottom: 1px solid #e8eef3; border-left: 1px solid #e8eef3; padding: 8px 14px; text-align: center; vertical-align: middle; }
.st-cmp__table tr > :first-child { border-left: 0; text-align: left; width: 220px; font-weight: 600; color: var(--st-navy); }
.st-cmp__table td { color: var(--st-ink-2); }
.st-cmp__intro b { display: block; font-size: 20px; color: var(--st-navy); font-family: var(--st-font-head); }
.st-cmp__intro span { font-size: 14px; font-weight: 400; color: var(--st-ink-2); }
.st-cmp__product { position: relative; padding: 14px !important; }
.st-cmp__remove { position: absolute; right: 8px; top: 8px; border: 0; background: none; color: var(--st-navy-2); cursor: pointer; padding: 4px; }
.st-cmp__img { display: grid; place-items: center; height: 130px; margin-bottom: 8px; }
.st-cmp__img img { max-height: 130px; max-width: 100%; object-fit: contain; }
.st-cmp__name { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: 15px; font-weight: 700; color: var(--st-navy); line-height: 1.3; }
.st-cmp__meta { display: block; font-size: 13px; font-weight: 400; color: var(--st-ink-2); margin: 2px 0; }
.st-cmp__price { display: block; font-size: 16px; font-weight: 700; color: var(--st-green-dark); margin-bottom: 10px; }
.st-cmp__price.is-best::after { content: " • lowest"; font-size: 12px; font-weight: 600; }
.st-cmp__product .st-btn { border-radius: 4px; }
.st-cmp__group th { background: #eaf3fa; text-align: left !important; font-size: 17px; font-family: var(--st-font-head); color: var(--st-navy) !important; padding: 9px 14px !important; }
.st-cmp__table tr.is-different { background: #eef7f2; }
.st-cmp__table tr.is-different > th { box-shadow: inset 4px 0 0 var(--st-green-dark); }
.st-cmp__table.is-diff-only tr[data-st-cmp-row]:not(.is-different) { display: none; }
.st-cmp__actions-row td { padding: 12px 14px 14px !important; }
.st-cmp__actions-row .st-btn { border-radius: 4px; }
.st-cmp__ask { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; font-size: 13.5px; color: var(--st-blue-dark); }
.st-cmp__fine { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--st-ink-2); margin: 10px 0 16px; }
.st-cmp__guides { padding: 16px 0 8px; }
.st-cmp__guides h2 { font-size: 22px; color: var(--st-navy); margin-bottom: 10px; }
.st-related--n2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.st-cmp__guides .st-related__media--product { background: none; }
.st-cmp__guides .st-related__body b { color: var(--st-navy); font-size: 17px; }
.st-cmp__guides .st-related__card .st-link-arrow { color: var(--st-blue-dark); }

/* ---------- Listing layout switch ---------- */
.st-viewswitch { display: inline-flex; border: 1px solid #cfdbe4; border-radius: 4px; overflow: hidden; margin-left: auto; }
.st-viewswitch button { width: 38px; height: 36px; border: 0; background: #fff; color: var(--st-navy-2); display: grid; place-items: center; cursor: pointer; }
.st-viewswitch button + button { border-left: 1px solid #cfdbe4; }
.st-viewswitch button:hover { color: var(--st-green-dark); }
.st-listing__items:not([data-view]) [data-st-view="grid"], .st-listing__items[data-view="grid"] [data-st-view="grid"],
.st-listing__items[data-view="dense"] [data-st-view="dense"], .st-listing__items[data-view="list"] [data-st-view="list"] { background: var(--st-green-dark); color: #fff; }
.st-listing__toolbar .st-listing__sort { margin-left: 0; }
.st-card__specs { display: none; }
.st-listing__items[data-view="dense"] .st-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.st-listing__items[data-view="dense"] .st-card { padding: 10px; }
.st-listing__items[data-view="dense"] .st-card__media { height: 130px; }
.st-listing__items[data-view="dense"] .st-card__title { font-size: 13px; }
.st-listing__items[data-view="dense"] .st-card__row { flex-direction: column; align-items: flex-start; gap: 3px; }
.st-listing__items[data-view="dense"] .st-card__cart svg { display: none; }
.st-listing__items[data-view="list"] .st-product-grid { grid-template-columns: 1fr; gap: 10px; }
.st-listing__items[data-view="list"] .st-card { display: grid; grid-template-columns: 190px minmax(0, 1fr) 230px; grid-template-rows: auto auto 1fr; column-gap: 20px; align-items: start; padding: 12px; }
.st-listing__items[data-view="list"] .st-card__media { grid-column: 1; grid-row: 1 / 4; height: 160px; }
.st-listing__items[data-view="list"] .st-card__meta { grid-column: 2; grid-row: 1; margin-top: 4px; }
.st-listing__items[data-view="list"] .st-card__title { grid-column: 2; grid-row: 2; font-size: 17px; min-height: 0; margin-bottom: 8px; }
.st-listing__items[data-view="list"] .st-card__specs { grid-column: 2; grid-row: 3; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.st-listing__items[data-view="list"] .st-card__specs li { border: 1px solid #e1eaf1; border-radius: 4px; padding: 6px 10px; background: #f7fafc; min-width: 96px; }
.st-listing__items[data-view="list"] .st-card__specs span { display: block; font-size: 11px; color: var(--st-muted); }
.st-listing__items[data-view="list"] .st-card__specs b { font-size: 14px; color: var(--st-navy); }
.st-listing__items[data-view="list"] .st-card__row { grid-column: 3; grid-row: 1 / 3; flex-direction: column; align-items: flex-start; gap: 6px; margin: 4px 0 10px; }
.st-listing__items[data-view="list"] .st-card__price { font-size: 22px; }
.st-listing__items[data-view="list"] .st-card__actions { grid-column: 3; grid-row: 3; align-self: end; }
@media (max-width: 1023px) {
    .st-listing__items[data-view="dense"] .st-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .st-listing__items[data-view="list"] .st-card { grid-template-columns: 150px minmax(0, 1fr); }
    .st-listing__items[data-view="list"] .st-card__row, .st-listing__items[data-view="list"] .st-card__actions { grid-column: 2; grid-row: auto; }
    .st-listing__items[data-view="list"] .st-card__media { grid-row: 1 / 6; height: 140px; }
}
@media (max-width: 575px) {
    .st-listing__items[data-view="dense"] .st-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .st-listing__items[data-view="list"] .st-card { grid-template-columns: 104px minmax(0, 1fr); column-gap: 12px; }
    .st-listing__items[data-view="list"] .st-card__media { height: 104px; }
    .st-listing__items[data-view="list"] .st-card__title { font-size: 14px; }
    .st-listing__items[data-view="list"] .st-card__specs li:nth-child(n+3) { display: none; }
    .st-listing__items[data-view="list"] .st-card__actions { grid-column: 1 / -1; }
    .st-viewswitch { order: 2; }
}

/* ---------- Find My Solution estimate ---------- */
.st-est-inputs { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr); gap: 12px; }
.st-est-inputs__bill .st-affix em { font-size: 18px; }
.st-est-inputs__bill input { font-size: 18px !important; font-weight: 700; }
.st-est-inputs__backup { margin-top: 12px; max-width: 420px; }
.st-est-pair { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 0 20px; }
.st-est-pair .st-choices--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.st-est-pair .st-choice--chip { padding: 10px 10px; }
.st-block--finder .st-choices--4 .st-choice--row { flex-direction: column; align-items: flex-start; gap: 6px; padding: 12px; }
.st-block--finder .st-choices--4 .st-choice--row .st-choice__mark { position: absolute; order: 0; right: 10px; top: 10px; margin: 0; }
.st-finder-layout.is-result { flex-wrap: wrap; }
.st-finder-layout.is-result .st-with-aside__side { display: none; }
.st-finder__step--result .st-finder__nav { margin-top: 14px; }
.st-est-loading { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 70px 20px; text-align: center; }
.st-est-loading__spinner { width: 46px; height: 46px; border-radius: 50%; border: 4px solid #d7eedf; border-top-color: var(--st-green); animation: st-rotate .8s linear infinite; margin-bottom: 8px; }
.st-est-loading b { font-size: 20px; color: var(--st-navy); font-family: var(--st-font-head); }
.st-est-loading small { font-size: 14px; color: var(--st-ink-2); }
.st-est-request { display: flex; gap: 14px; align-items: center; background: #eaf6ef; border: 1px solid var(--st-mint-line); border-radius: 6px; padding: 12px 16px; margin-bottom: 16px; }
.st-est-request > span { width: 52px; height: 52px; flex: 0 0 52px; border-radius: 50%; background: #fff; color: var(--st-green-dark); display: grid; place-items: center; }
.st-est-request b { display: block; font-size: 18px; color: var(--st-navy); font-family: var(--st-font-head); }
.st-est-request small { font-size: 13.5px; color: var(--st-ink-2); }

.st-est { display: flex; flex-direction: column; gap: 16px; }
.st-est__hero { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 22px; border-radius: 10px; padding: 24px; color: #fff; background: radial-gradient(120% 140% at 0% 0%, #0f5a3a 0%, var(--st-navy-2) 55%, var(--st-navy) 100%); box-shadow: 0 20px 50px rgba(7, 26, 47, .18); }
.st-est__kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #7fe0a4; }
.st-est__hero h2 { color: #fff; font-size: clamp(24px, 2.6vw, 34px); margin: 8px 0 12px; line-height: 1.12; }
.st-est__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.st-est__chips span { display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px; border-radius: 999px; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .18); font-size: 13px; font-weight: 600; }
.st-est__chips svg { color: #7fe0a4; }
.st-est__price { margin-top: 18px; padding: 16px 18px; border-radius: 8px; background: #fff; color: var(--st-navy); }
.st-est__price-label { display: block; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--st-green-dark); }
.st-est__price b { display: block; font-family: var(--st-font-head); font-size: clamp(28px, 3.3vw, 42px); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; margin: 4px 0 6px; color: var(--st-navy); }
.st-est__price b em { font-style: normal; color: var(--st-muted); font-weight: 600; }
.st-est__price small { display: block; font-size: 12.5px; color: var(--st-ink-2); line-height: 1.45; }
.st-est__ref { margin-top: 10px; font-size: 12.5px; color: #b9cfdd; }
.st-est__ref b { color: #fff; letter-spacing: .04em; }
.st-est__stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 0; align-content: start; }
.st-est__stats > div { border-radius: 8px; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14); padding: 12px 14px; }
.st-est__stats dt { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: #b9cfdd; margin-bottom: 4px; }
.st-est__stats dt svg { color: #7fe0a4; }
.st-est__stats dd { margin: 0; font-family: var(--st-font-head); font-size: 24px; font-weight: 800; color: #fff; }
.st-est__stats dd small { font-family: var(--st-font); font-size: 13px; font-weight: 500; color: #d5e2ec; }

.st-est__block { border: 1px solid var(--st-panel-line); border-radius: 8px; background: #fff; padding: 16px 18px; }
.st-est__block h3 { font-size: 20px; color: var(--st-navy); margin-bottom: 10px; }
.st-est__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.st-est__head span { font-size: 13px; color: var(--st-muted); }
.st-est__products { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.st-est__product { display: flex; gap: 12px; border: 1px solid #e1eaf1; border-radius: 6px; padding: 10px; color: var(--st-ink); transition: border-color .15s, box-shadow .15s; }
.st-est__product:hover { border-color: var(--st-green); box-shadow: var(--st-shadow-hover); color: var(--st-ink); }
.st-est__product-img { position: relative; width: 92px; height: 92px; flex: 0 0 92px; border-radius: 4px; background: #f3f6f9; display: grid; place-items: center; }
.st-est__product-img img { max-width: 84%; max-height: 84%; object-fit: contain; }
.st-est__product-img em { position: absolute; right: -6px; top: -6px; font-style: normal; font-size: 12px; font-weight: 800; color: #fff; background: var(--st-green-dark); border-radius: 999px; padding: 3px 8px; }
.st-est__product-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.st-est__product-body small { font-size: 11.5px; font-weight: 700; color: var(--st-green-dark); text-transform: uppercase; letter-spacing: .04em; }
.st-est__product-body b { font-size: 13.5px; line-height: 1.3; color: var(--st-navy); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.st-est__product-price { font-family: var(--st-font-head); font-size: 16px; font-weight: 800; color: var(--st-ink); }
.st-est__product-price i { font-family: var(--st-font); font-style: normal; font-size: 12px; font-weight: 500; color: var(--st-muted); }
.st-est__accessories { margin-top: 12px; padding-top: 12px; border-top: 1px solid #e8eef3; }
.st-est__accessories b { font-size: 14px; color: var(--st-navy); }
.st-est__accessories ul { list-style: none; margin: 8px 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 6px 18px; }
.st-est__accessories li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--st-ink-2); }
.st-est__accessories li svg { color: var(--st-green); flex: 0 0 14px; }
.st-est__accessories li span { margin-left: auto; color: var(--st-muted); white-space: nowrap; }
.st-est__split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 16px; }
.st-est__why ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.st-est__why li { display: flex; gap: 10px; font-size: 14px; color: var(--st-ink-2); line-height: 1.5; }
.st-est__why li svg { color: var(--st-green); flex: 0 0 18px; margin-top: 2px; }
.st-est__notes { margin-top: 12px; background: var(--st-sky); border: 1px solid #d9e8f3; border-radius: 6px; padding: 10px 12px; }
.st-est__notes p { display: flex; gap: 8px; margin: 0; font-size: 13px; color: var(--st-ink-2); line-height: 1.45; }
.st-est__notes p + p { margin-top: 6px; }
.st-est__notes svg { color: var(--st-blue-dark); flex: 0 0 16px; margin-top: 2px; }
.st-est__breakdown dl { margin: 0; }
.st-est__breakdown dl > div { display: flex; justify-content: space-between; gap: 14px; padding: 7px 0; border-top: 1px solid #eef2f6; font-size: 14px; }
.st-est__breakdown dt { font-weight: 500; color: var(--st-ink-2); }
.st-est__breakdown dd { margin: 0; font-weight: 700; color: var(--st-navy); white-space: nowrap; }
.st-est__breakdown .is-total { border-top: 2px solid var(--st-navy-2); margin-top: 4px; padding-top: 10px; }
.st-est__breakdown .is-total dt, .st-est__breakdown .is-total dd { font-size: 16px; font-weight: 800; color: var(--st-navy); }
.st-est__breakdown .is-range { background: #eaf6ef; border: 0; border-radius: 6px; padding: 10px 12px; margin-top: 8px; }
.st-est__breakdown .is-range dt { color: var(--st-green-dark); font-weight: 700; }
.st-est__breakdown .is-range dd { color: var(--st-green-dark); font-size: 16px; }
.st-est__bom { border: 1px solid var(--st-panel-line); border-radius: 8px; background: #fff; overflow: hidden; }
.st-est__bom summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; }
.st-est__bom summary::-webkit-details-marker { display: none; }
.st-est__bom summary > span { display: flex; align-items: center; gap: 10px; color: var(--st-navy); }
.st-est__bom summary b { font-size: 18px; font-family: var(--st-font-head); }
.st-est__bom summary small { font-size: 13px; color: var(--st-muted); }
.st-est__bom-chev { color: var(--st-navy-2); transition: transform .15s; }
.st-est__bom[open] .st-est__bom-chev { transform: rotate(180deg); }
.st-est__bom-scroll { overflow-x: auto; border-top: 1px solid #e8eef3; }
.st-est__bom table { width: 100%; min-width: 620px; border-collapse: collapse; font-size: 13.5px; }
.st-est__bom th, .st-est__bom td { padding: 8px 14px; border-bottom: 1px solid #eef2f6; text-align: right; }
.st-est__bom th:first-child, .st-est__bom td:first-child { text-align: left; }
.st-est__bom thead th { background: #f6f9fc; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--st-muted); }
.st-est__bom td { color: var(--st-ink-2); }
.st-est__bom td a { color: var(--st-navy); font-weight: 600; }
.st-est__bom-group th { background: #eaf3fa; text-align: left !important; font-size: 13.5px; color: var(--st-navy); font-family: var(--st-font-head); }
.st-est__bom tfoot th { font-size: 16px; color: var(--st-navy); background: #f6f9fc; }
.st-est__flag { font-style: normal; font-size: 11px; font-weight: 700; color: #b07706; background: #fdf4e0; border-radius: 999px; padding: 2px 7px; margin-left: 6px; }
.st-est__disclaimer { display: flex; gap: 8px; align-items: flex-start; margin: 0; font-size: 13.5px; color: var(--st-ink-2); }
.st-est__disclaimer svg { color: var(--st-blue-dark); flex: 0 0 16px; margin-top: 2px; }
.st-est__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.st-est__actions .st-btn { border-radius: 6px; padding: 12px 18px; }
.st-est__cart-status { margin: 0; font-size: 14px; color: var(--st-green-dark); font-weight: 600; }
.st-est__cart-status.is-partial { color: #9a6a05; }
.st-est-page { padding-bottom: 26px; }
.st-est-page__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; margin: 4px 0 16px; flex-wrap: wrap; }
.st-est-page__head h1 { font-size: clamp(28px, 3vw, 40px); color: var(--st-navy); }
.st-est-page__head p { font-size: 16px; color: var(--st-ink-2); margin: 4px 0 0; }
@media (max-width: 1023px) {
    .st-est__hero, .st-est__split, .st-est-pair { grid-template-columns: 1fr; }
    .st-est-inputs { grid-template-columns: 1fr 1fr; }
    .st-est-inputs__bill { grid-column: 1 / -1; }
}
@media (max-width: 575px) {
    .st-est__hero { padding: 16px; }
    .st-est__stats dd { font-size: 20px; }
    .st-est-inputs { grid-template-columns: 1fr; }
    .st-est__actions .st-btn { flex: 1 1 100%; }
    .st-block--finder .st-choices--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---------- Homepage — Version 4 ---------- */
.st-main--home .st-hero__media img { object-position: 70% 55%; }
.st-main--home .st-trust__icon { width: 44px; height: 44px; flex-basis: 44px; border: 0; background: transparent; color: var(--st-green); }
.st-main--home div:has(> .st-hero) + div > .st-trust .st-trust__icon { width: 46px; height: 46px; flex-basis: 46px; background: rgba(255, 255, 255, .92); border-radius: 50%; }
.st-main--home .st-trust__item b { font-size: 14px; }
.st-main--home .st-trust__item span > span { font-size: 12.5px; }
.st-main--home .st-need__icon { color: var(--st-green); }
.st-main--home .st-why__icon { width: 52px; height: 52px; flex-basis: 52px; border: 2px solid #7fcf9d; color: var(--st-green-dark); background: #fff; }

/* Complete solutions banner */
.st-process { position: relative; overflow: hidden; background: var(--st-navy); color: #fff; margin: 14px 0 0; }
.st-process__bg { position: absolute; inset: 0; }
.st-process__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 40%; }
.st-process__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 32, 30, .96) 0%, rgba(6, 38, 34, .86) 32%, rgba(7, 26, 47, .35) 62%, rgba(7, 26, 47, .15) 100%); }
.st-process__inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 20px; padding: clamp(28px, 3.4vw, 44px) 0 0; min-height: 330px; }
.st-process__text { padding-bottom: 36px; }
.st-process__text h2 { color: #fff; font-size: clamp(26px, 2.8vw, 38px); line-height: 1.1; margin-bottom: 12px; }
.st-process__text h2 span { display: block; color: #3fcf6c; }
.st-process__text p { font-size: 15.5px; line-height: 1.55; color: #dfe9ef; max-width: 520px; margin: 0 0 22px; }
.st-process__text .st-btn { border-radius: 6px; }
.st-process__tagline { justify-self: end; align-self: start; transform: rotate(-12deg); margin-top: 10px; font-family: 'Caveat Brush', cursive; font-size: clamp(24px, 2.4vw, 36px); line-height: 1.05; color: #fff; text-shadow: 0 2px 10px rgba(0, 0, 0, .35); text-align: right; }
.st-process__tagline span { display: block; }
.st-process__tagline svg { display: block; width: 110%; height: .4em; margin-left: -10%; color: #2bb94c; }
.st-process__steps { position: absolute; right: 0; bottom: 0; width: min(58%, 760px); display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); list-style: none; margin: 0; padding: 14px 16px; background: rgba(7, 26, 47, .88); border: 1px solid rgba(255, 255, 255, .12); border-radius: 12px 12px 0 0; }
.st-process__steps li { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.st-process__steps li span { width: 58px; height: 58px; border-radius: 50%; border: 2px solid #3fcf6c; color: #fff; display: grid; place-items: center; background: rgba(19, 160, 75, .12); }
.st-process__steps b { font-size: 14px; font-weight: 600; color: #fff; }

/* Promo pair */
.st-section--promos { padding-top: 8px; }
.st-promos { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; }
.st-promo { position: relative; overflow: hidden; border-radius: 8px; min-height: 230px; display: flex; align-items: center; }
.st-promo__text { position: relative; z-index: 2; padding: 26px 30px; max-width: 58%; }
.st-promo h2 { font-size: clamp(24px, 2.4vw, 34px); line-height: 1.1; margin-bottom: 10px; }
.st-promo p { font-size: 15px; line-height: 1.5; margin: 0 0 18px; }
.st-promo .st-btn { border-radius: 6px; }
.st-promo--light { background: linear-gradient(100deg, #eaf4fb 0%, #dcebf6 100%); }
.st-promo--light h2 { color: var(--st-navy); }
.st-promo--light p { color: var(--st-ink-2); }
.st-promo__art { position: absolute; right: 0; top: 0; bottom: 0; width: 46%; display: flex; align-items: flex-end; justify-content: flex-end; }
.st-promo__art img { height: 100%; width: auto; max-width: 100%; object-fit: contain; object-position: right bottom; mix-blend-mode: multiply; }
.st-promo--dark { background: var(--st-navy-2); color: #fff; }
.st-promo__bg { position: absolute; inset: 0; }
.st-promo__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 80% 30%; }
.st-promo--dark::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(12, 41, 71, .97) 0%, rgba(12, 41, 71, .85) 45%, rgba(12, 41, 71, .1) 80%); }
.st-promo--dark h2 { color: #fff; }
.st-promo--dark p { color: #d5e2ec; }
.st-promo--dark .st-promo__text { max-width: 70%; }
.st-promo__actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* News cards */
.st-section--knowledge { background: #fff; }
.st-article-grid--news .st-article { border-radius: 6px; padding: 8px; }
.st-article-grid--news .st-article__img { height: 168px; border-radius: 4px; overflow: hidden; }
.st-article-grid--news .st-article__body { padding: 12px 6px 6px; }
.st-article-grid--news .st-article__kicker { display: none; }
.st-article-grid--news .st-article__body h3 { font-size: 17px; line-height: 1.3; color: var(--st-navy); margin-bottom: 10px; }
.st-article__meta { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--st-muted); }
.st-article__meta i { width: 4px; height: 4px; border-radius: 50%; background: var(--st-muted); }

/* Newsletter + impact band */
.st-impact--with-news { background: #062a22; }
.st-impact--with-news .st-impact__shade { background: linear-gradient(180deg, rgba(4, 30, 25, .9), rgba(6, 34, 30, .86)); }
.st-impact--with-news .st-impact__bg { opacity: .55; }
.st-news { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr) auto; gap: 24px; align-items: center; padding: 30px 0 26px; border-bottom: 1px solid rgba(255, 255, 255, .14); }
.st-news h2 { color: #fff; font-size: clamp(22px, 2.2vw, 30px); line-height: 1.15; margin-bottom: 8px; }
.st-news p { color: #cfe0d8; font-size: 14px; margin: 0; }
.st-news__form { position: relative; display: flex; background: #fff; border-radius: 6px; padding: 4px; }
.st-news__form input { flex: 1; min-width: 0; border: 0; outline: none; padding: 0 14px; font-size: 15px; background: transparent; }
.st-news__form .st-btn { border-radius: 4px; padding: 13px 20px; }
.st-news__status { position: absolute; left: 0; top: calc(100% + 8px); margin: 0; font-size: 13.5px; color: #8ff0b3 !important; }
.st-news__status.is-error { color: #ffb4a8 !important; }
.st-news__perks { list-style: none; margin: 0; padding: 0; display: flex; gap: 22px; }
.st-news__perks li { display: flex; align-items: center; gap: 10px; color: #fff; }
.st-news__perks svg { color: #fff; flex: 0 0 26px; }
.st-news__perks span { font-size: 12.5px; color: #cfe0d8; line-height: 1.35; }
.st-news__perks b { display: block; font-size: 14px; color: #fff; }
.st-impact--with-news .st-impact__inner { padding-top: 26px; }
.st-impact--with-news .st-impact__stat { background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .16); display: grid; grid-template-columns: 44px minmax(0, 1fr); column-gap: 12px; align-items: center; }
.st-impact--with-news .st-impact__icon { grid-row: 1 / 4; color: #3fcf6c; margin: 0; }
.st-btn--outline-light { background: transparent; border: 1.5px solid rgba(255, 255, 255, .7); color: #fff; border-radius: 6px; }
.st-btn--outline-light:hover, .st-btn--outline-light:focus { background: rgba(255, 255, 255, .1); color: #fff; }

/* Full footer (homepage) */
.st-footer--full { position: relative; padding-top: 36px; background: #0d2338; }
.st-footer__grid--full { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.3fr); gap: 24px 40px; }
.st-footer--full .st-footer__logo { background: transparent; padding: 0; }
.st-footer--full .st-footer__logo img { height: 46px !important; background: #fff; border-radius: 8px; padding: 6px 10px; }
.st-footer__slogan { margin: 12px 0 8px !important; font-size: 13px !important; font-weight: 700; letter-spacing: .02em; color: #3fcf6c !important; text-transform: uppercase; }
.st-footer--full h4 { font-size: 18px !important; margin-bottom: 14px !important; }
.st-footer--full .st-footer__links a { font-size: 14px; margin: 8px 0; }
.st-footer__social--color { gap: 12px; margin-top: 16px; }
.st-footer__social--color a { width: 40px; height: 40px; border-radius: 50%; border: 0; color: #fff; }
.st-footer__social--color a.is-facebook { background: #1877f2; }
.st-footer__social--color a.is-youtube { background: #ff0000; }
.st-footer__social--color a.is-linkedin { background: #0a66c2; }
.st-footer__social--color a.is-instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.st-footer__social--color a.is-whatsapp { background: #25d366; }
.st-footer__social--color a:hover { filter: brightness(1.1); color: #fff; }
.st-footer__contactcol .st-footer__contact { font-size: 14px; gap: 12px; margin: 10px 0; color: #c2d0dc; }
.st-footer__contactcol .st-footer__contact svg { flex: 0 0 20px; color: #fff; }
.st-footer__whatsapp svg { color: #25d366 !important; }
.st-footer__made i { font-style: normal; color: #ff3b3b; }
.st-backtotop { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 50px; height: 50px; border-radius: 50%; background: var(--st-green); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px rgba(19, 160, 75, .35); opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .2s, transform .2s; }
.st-backtotop.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.st-backtotop:hover { background: var(--st-green-dark); color: #fff; }

@media (max-width: 1199px) {
    .st-news { grid-template-columns: 1fr 1fr; }
    .st-news__perks { grid-column: 1 / -1; }
}
@media (max-width: 1023px) {
    .st-process__inner, .st-promos { grid-template-columns: 1fr; }
    .st-process__tagline { display: none; }
    .st-process__steps { position: static; width: 100%; margin-top: 0; }
    .st-footer__grid--full { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
    .st-process__steps { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 14px; border-radius: 12px; margin-bottom: 20px; }
    .st-promo__text, .st-promo--dark .st-promo__text { max-width: 100%; padding: 22px; }
    .st-promo--light .st-promo__art { position: relative; width: 40%; height: 160px; margin-left: auto; }
    .st-promo--light { flex-direction: column; align-items: stretch; }
    .st-news { grid-template-columns: 1fr; }
    .st-news__perks { flex-wrap: wrap; }
    .st-footer__grid--full { grid-template-columns: 1fr; }
    .st-backtotop { right: 14px; bottom: 14px; width: 44px; height: 44px; }
}

/* ---------- Guide-style FAQ (Buying Guide design) ---------- */
.st-page-hero--article .st-page-hero__crumbs { padding-bottom: 14px; }
.st-article-top .st-kicker { color: var(--st-green-dark); font-size: 12px; letter-spacing: .08em; margin: 0 0 8px; }
.st-article-top h1 { font-size: clamp(30px, 3.6vw, 50px); line-height: 1.08; color: var(--st-navy); letter-spacing: -.03em; margin: 0; max-width: none; }
.st-article-top > p { font-size: clamp(16px, 1.5vw, 20px); color: var(--st-blue-dark); margin: 8px 0 18px; max-width: none; }
.st-article-top__image { border-radius: 4px; overflow: hidden; aspect-ratio: 4.25 / 1; background: #eef2f5; }
.st-article-top__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.st-block--guide { padding-top: 22px; }
.st-guide { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 36px; align-items: start; }
.st-guide__main { padding-right: 24px; border-right: 1px solid #e3ebf2; }
.st-guide__step { display: grid; grid-template-columns: 50px minmax(0, 1fr); gap: 18px; padding-bottom: 22px; scroll-margin-top: 110px; }
.st-guide__num { width: 50px; height: 44px; border-radius: 4px; background: #e6f4ec; color: var(--st-navy); font-family: var(--st-font-head); font-size: 22px; font-weight: 800; display: grid; place-items: center; }
.st-guide__body h2 { font-size: clamp(19px, 1.7vw, 23px); color: var(--st-navy); margin: 0 0 4px; }
.st-guide__body > p { font-size: 15px; color: var(--st-ink-2); margin: 0 0 12px; max-width: 560px; line-height: 1.5; }
.st-guide__chips { display: flex; flex-wrap: wrap; gap: 12px; margin: 4px 0 14px; }
.st-guide__chips a { display: inline-flex; align-items: center; gap: 10px; border: 1px solid #cfdbe4; border-radius: 4px; padding: 9px 16px; font-size: 14.5px; font-weight: 500; color: var(--st-navy); background: #fff; }
.st-guide__chips a svg { color: var(--st-green-dark); }
.st-guide__chips a:hover { border-color: var(--st-green); color: var(--st-green-dark); }
.st-guide__questions { display: flex; flex-direction: column; gap: 6px; }
.st-guide__q { border: 1px solid #cfdbe4 !important; border-radius: 4px !important; }
.st-guide__q summary { padding: 7px 14px; font-size: 14.5px; font-weight: 500; color: var(--st-navy); }
.st-guide__chev { flex: 0 0 16px; color: var(--st-navy-2); transition: transform .15s; }
.st-guide__q[open] { border-color: #9fd3b3 !important; }
.st-guide__q[open] .st-guide__chev { transform: rotate(90deg); }
.st-guide__q .st-faq__answer { padding: 0 14px 12px; font-size: 14px; }
.st-guide__checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.st-guide__checklist .st-check { margin: 0; font-size: 14px; color: var(--st-ink-2); }
.st-guide__share { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; border-top: 1px solid #e3ebf2; padding: 14px 0 4px; }
.st-guide__share b { font-size: 15px; color: var(--st-navy); font-weight: 600; }
.st-guide__share a, .st-guide__share button { display: inline-flex; align-items: center; gap: 8px; border: 0; background: none; padding: 0; font-size: 14px; color: var(--st-navy-2); cursor: pointer; }
.st-guide__share a svg, .st-guide__share button svg { color: var(--st-blue-dark); }
.st-guide__share button + a { padding-left: 28px; border-left: 1px solid #d3dde6; }

.st-guide__side { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 16px; }
.st-guide__toc { border: 1px solid #dfe8ef; border-radius: 4px; background: #fff; }
.st-guide__toc h3 { font-size: 20px; color: var(--st-navy); padding: 12px 12px 10px; margin: 0; border-bottom: 1px solid #e3ebf2; }
.st-guide__toc ol { list-style: none; margin: 0; padding: 10px 12px 12px; display: flex; flex-direction: column; gap: 6px; }
.st-guide__toc a { display: flex; gap: 14px; font-size: 14px; color: var(--st-blue-dark); line-height: 1.35; }
.st-guide__toc a em { font-style: normal; font-weight: 700; color: var(--st-navy); min-width: 20px; }
.st-guide__toc a:hover, .st-guide__toc a.is-active { color: var(--st-green-dark); }
.st-guide__help { border: 1px solid var(--st-mint-line); border-radius: 4px; background: #e6f4ec; padding: 16px 14px 14px; }
.st-guide__help > div { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
.st-guide__help > div svg { color: var(--st-green-dark); flex: 0 0 auto; }
.st-guide__help b { display: block; font-size: 17px; color: var(--st-navy); font-family: var(--st-font-head); }
.st-guide__help span { font-size: 14px; color: var(--st-ink-2); line-height: 1.4; }
.st-guide__help .st-btn { border-radius: 4px; }
.st-guide__explore { display: block; border: 1px solid #dfe8ef; border-radius: 4px; overflow: hidden; color: var(--st-ink); background: #fff; }
.st-guide__explore:hover { border-color: var(--st-green); color: var(--st-ink); }
.st-guide__explore img { width: 100%; aspect-ratio: 1.85 / 1; object-fit: cover; display: block; }
.st-guide__explore > span { display: block; padding: 12px 14px 14px; }
.st-guide__explore b { display: block; font-size: 18px; color: var(--st-navy); font-family: var(--st-font-head); margin-bottom: 4px; }
.st-guide__explore small { display: block; font-size: 13.5px; color: var(--st-ink-2); margin-bottom: 8px; }

.st-guide__band { margin: 16px 0 14px; }
.st-guide__related { padding-bottom: 26px; }
.st-guide__related .st-related__head { justify-content: space-between; }
.st-guide__cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.st-guide__card { display: flex; flex-direction: column; gap: 6px; border: 1px solid #dfe8ef; border-radius: 4px; padding: 4px 4px 10px; color: var(--st-navy); background: #fff; }
.st-guide__card:hover { border-color: var(--st-green); color: var(--st-navy); }
.st-guide__card-img { display: block; aspect-ratio: 3.9 / 1; overflow: hidden; border-radius: 2px; background: #eef2f5; }
.st-guide__card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.st-guide__card b { font-size: 15px; padding: 2px 6px 0; }
.st-guide__card .st-link-arrow { padding: 0 6px; font-size: 14px; }
@media (max-width: 1023px) {
    .st-guide { grid-template-columns: 1fr; }
    .st-guide__main { padding-right: 0; border-right: 0; }
    .st-guide__side { position: static; }
    .st-guide__cards { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
    .st-guide__step { grid-template-columns: 40px minmax(0, 1fr); gap: 12px; }
    .st-guide__num { width: 40px; height: 38px; font-size: 18px; }
    .st-article-top__image { aspect-ratio: 2.2 / 1; }
    .st-guide__share { gap: 14px; }
    .st-guide__share button + a { padding-left: 0; border-left: 0; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1023px) {
    .st-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .st-banner, .st-prefooter__band { flex-wrap: wrap; }
    .st-banner__actions, .st-prefooter__actions { margin-left: 0; }
    .st-page-hero__card .st-page-hero__media { width: 50%; }
}
@media (max-width: 1023px) {
    .st-prep--pair, .st-prep--pair.st-prep--wide { grid-template-columns: 1fr; }
    .st-cards--goals, .st-cards--explore { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .st-cards--explore { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .st-cards--pillars, .st-cards--focus, .st-cards--topics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .st-cards--help, .st-infobox__grid { grid-template-columns: 1fr; gap: 12px; }
    .st-cards--help .st-infocard, .st-infobox__grid > div { padding: 0; border-left: 0 !important; }
    .st-contact { grid-template-columns: 1fr; }
    .st-block--faq .st-with-aside { flex-wrap: wrap; }
    .st-block--faq .st-with-aside__side { flex: 1 1 100%; max-width: none; }
    .st-support-hero__art { display: none; }
    .st-popcats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .st-catdir, .st-catdir__links { grid-template-columns: 1fr; }
    .st-pdp-extra, .st-pdp-overview:not([hidden]), .st-pdp-solution { grid-template-columns: 1fr; }
    .st-catdir__links a { border: 0 !important; padding: 10px 0; }
    .st-linkcards, .st-tracking__grid, .st-noresults__tips, .st-related--n3 { grid-template-columns: 1fr; }
    .st-noresults__tips { gap: 12px; }
    .st-noresults__tips > div { padding: 0; border-left: 0 !important; }
    .st-tracking__hero, .st-listing-hero.has-art .st-listing-hero__inner { grid-template-columns: 1fr; }
    .st-listing-hero__art { display: none; }
    .st-listing .st-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .st-filters { position: fixed; max-height: none; background: #fff; }
    .st-block--finder .st-with-aside, .st-block--quote .st-with-aside { flex-wrap: wrap; }
    .st-block--finder .st-with-aside__side, .st-block--quote .st-with-aside__side { flex: 1 1 100%; max-width: none; }
    .st-howto, .st-quote-steps__inner { grid-template-columns: 1fr; gap: 12px; }
    .st-howto > div, .st-quote-steps__inner > div { padding: 0; border-left: 0 !important; }
    .st-imgcards--option, .st-imgcards--goal { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
    .st-tiles--category.st-tiles--n8 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .st-anchor-tabs__inner { grid-template-columns: repeat(var(--tabs, 4), max-content); overflow-x: auto; }
    .st-split__chips { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
    .st-page-hero__card { flex-direction: column; align-items: stretch; min-height: 0; }
    .st-page-hero__card .st-page-hero__media { position: relative; width: 100%; height: 190px; order: -1; }
    .st-page-hero__card .st-page-hero__media::after { background: linear-gradient(0deg, #eef6fc 0%, rgba(238, 246, 252, 0) 45%); }
    .st-page-hero--band .st-page-hero__card .st-page-hero__media { top: 0; right: auto; width: auto; margin: 0 calc(var(--st-gutter) / -2); }
    .st-page-hero--band .st-page-hero__card .st-page-hero__media::after { background: linear-gradient(0deg, #fff 0%, rgba(255, 255, 255, 0) 45%); }
    .st-page-hero__card .st-page-hero__inner { padding: 18px; }
    .st-page-hero--band .st-page-hero__card .st-page-hero__inner { padding: 14px 0 22px; }
    .st-banner, .st-prefooter__band { padding: 16px; gap: 14px; }
    .st-banner__mark::after, .st-prefooter__mark::after { display: none; }
    .st-banner__actions, .st-prefooter__actions { width: 100%; }
    .st-banner__actions .st-btn, .st-prefooter__actions .st-btn { flex: 1 1 auto; }
    .st-footer__grid { grid-template-columns: 1fr 1fr; gap: 18px; }
    .st-footer__brand, .st-footer__connect { grid-column: 1 / -1; }
    .st-split { grid-template-columns: 1fr; }
    .st-split__media { min-height: 190px; }
    .st-cards--prep, .st-prep--wide .st-cards--prep, .st-faq--grid, .st-imgcards--application { grid-template-columns: 1fr; }
    .st-imgcards--application .st-imgcard { flex-direction: column; }
    .st-imgcards--application .st-imgcard__media { width: 100%; flex-basis: auto; min-height: 170px; }
    .st-anchor-tabs a { padding: 12px 14px; font-size: 13.5px; }
    .st-anchor-tabs a svg { display: none; }
    .st-cards--goals, .st-cards--explore, .st-cards--pillars, .st-cards--focus, .st-cards--topics, .st-imgcards--space, .st-imgcards--option.st-imgcards--n2 { grid-template-columns: 1fr; }
    .st-cards--steps { flex-direction: column; gap: 22px; }
    .st-cards--steps .st-infocard + .st-infocard { margin-left: 0; }
    .st-cards--steps .st-infocard + .st-infocard::before { left: 50%; top: -14px; width: 2px; height: 10px; }
    .st-cards--steps .st-infocard + .st-infocard::after { left: calc(50% - 4px); top: -12px; transform: rotate(135deg); }
    .st-banner__badge { margin-left: 0; padding-left: 0; border: 0; }
    .st-searchline { flex-direction: column; }
    .st-cmp__head { flex-direction: column; gap: 4px; }
    .st-cmp__note { padding-top: 0; }
    .st-switch { padding-left: 0; border-left: 0; }
    .st-related--n2 { grid-template-columns: 1fr; }
    .st-authx__card { padding: 20px 16px; }
    .st-authx__other > div { grid-template-columns: 1fr; }
    .st-searchtips__chips { margin-left: 0; }
    .st-block--cards > .st-container, .st-block--tiles > .st-container, .st-block--split > .st-container, .st-block--image-cards > .st-container { padding: 14px; }
}

/* Detail cards without a steps column (landing pages) */
.st-prep:not(.st-prep--pair) .st-prep__col { border: 0; padding: 0; background: none; }
.st-prep:not(.st-prep--pair) .st-cards--prep { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.st-prep:not(.st-prep--pair) .st-block__head p:empty, .st-prep .st-block__head p:not(:has(*)):only-child { display: none; }
@media (max-width: 1023px) { .st-prep:not(.st-prep--pair) .st-cards--prep { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 575px) { .st-prep:not(.st-prep--pair) .st-cards--prep { grid-template-columns: 1fr; } }

/* Breadcrumbs outside the page hero (support, listings) */
.st-page-hero__crumbs .breadcrumb, .st-crumbs .breadcrumb { display: flex; flex-wrap: wrap; gap: 4px 6px; margin: 0; padding: 0; list-style: none; font-size: 13px; background: none; }
.st-page-hero__crumbs .breadcrumb li { display: inline-flex; align-items: center; gap: 6px; }
.st-page-hero__crumbs .breadcrumb li + li::before { content: '/'; color: var(--st-muted); padding: 0 2px; }
.st-page-hero__crumbs .breadcrumb a { color: var(--st-muted); }
.st-page-hero__crumbs .breadcrumb li:last-child span { font-weight: 600; color: var(--st-ink-2); }
.st-page-hero__crumbs .breadcrumb .extra-breadcrumb-name { display: none; }
.st-imgcards--option .st-imgcard__media { aspect-ratio: 2.9 / 1; }
.st-imgcards--option.st-imgcards--n2 .st-imgcard__media { aspect-ratio: 4.2 / 1; }
.st-page-hero__card .st-page-hero__media img[src*="d-ct-hero"] { object-fit: contain; object-position: right center; }

.st-block--quote .st-form__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 18px; }
.st-block--quote .st-field--full { grid-column: 1 / -1; }
.st-block--finder .st-choices--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.st-page-hero--band .st-page-hero__card .st-page-hero__inner { max-width: 720px; }
@media (max-width: 767px) {
    .st-block--quote .st-form__grid, .st-block--finder .st-choices--2 { grid-template-columns: 1fr; }
    .st-block--finder .st-choices--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .st-block--finder .st-choices--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Track order: flatten Botble's auth-card form into the design card */
.st-tracking__form .container, .st-tracking__form .row, .st-tracking__form .row > [class*="col"] { width: 100%; max-width: none; padding: 0; margin: 0; }
.st-tracking__form .row { display: block; }
.st-tracking__form .auth-card { border: 0; box-shadow: none; background: none; padding: 0; }
.st-tracking__form .auth-card__header, .st-tracking__form .auth-card__footer { display: none; }
.st-tracking__form .auth-card__body, .st-tracking__form .card-body { padding: 0; }
.st-tracking__form .mb-3, .st-tracking__form .form-group { margin-bottom: 14px; }
.st-tracking__form .row .row > [class*="col"] { margin-bottom: 14px; }
.st-tracking__form button[type=submit], .st-tracking__form .btn { width: 100%; height: 50px; font-size: 16px; font-weight: 700; border: 0; }
.st-404__hero > p { max-width: none; margin-left: auto; margin-right: auto; text-align: center; }
.st-404 { text-align: initial; }
.st-tracking__form form { display: block !important; }
.st-tracking__form .auth-input-icon { display: none; }
.st-tracking__form input.form-control.ps-5 { padding-left: 14px !important; }
.st-tracking__form .d-grid { display: block !important; margin-top: 18px; }
.st-authx .st-auth__form, .st-authx .auth-card, .st-authx .auth-card__body { background: none !important; box-shadow: none !important; border: 0 !important; padding: 0 !important; }
.st-authx form > .mt-3.text-center { display: none; }
.st-authx .row.py-5 { padding: 0 !important; }
.st-authx .d-grid { display: block !important; margin-top: 16px; }
.st-authx__help .st-banner__actions { margin-left: auto; }

/* Homepage fine-tuning against home.png */
.st-article__img img { width: 100% !important; height: 100% !important; max-width: none; object-fit: cover; }
.st-article__body p { -webkit-line-clamp: 3; }
.st-hero__title { font-size: clamp(36px, 5.6vw, 80px); }
.st-hero__subtitle { font-size: clamp(16px, 1.75vw, 25px); color: var(--st-ink); }
.st-hero .st-btn--lg { padding: 16px 26px; font-size: 16px; }
@media (max-width: 767px) {
    .st-listing-hero__chips { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; margin-right: calc(var(--st-gutter) / -2); padding-right: 16px; }
    .st-listing-hero__chips::-webkit-scrollbar { display: none; }
    .st-listing-hero__chips a { white-space: nowrap; }
    .st-result-tabs { overflow-x: auto; }
    .st-result-tabs a { white-space: nowrap; padding: 8px 14px 10px; }
}
.st-block--finder .st-panel .st-est__hero h2, .st-est__hero h2 { color: #fff; }
.st-est-pair .st-choice--chip .st-choice__icon { display: none; }
.st-est-pair .st-choice--chip .st-choice__text b { font-size: 13.5px; }
.st-block--finder .st-est__block h3 { margin-top: 0; }
.st-main--home .st-hero__content { width: min(760px, 94%); }
.st-main--home .st-hero__subtitle { max-width: 720px; }
.st-page-hero .st-article-top h1, .st-page-hero .st-article-top > p { max-width: none; }
.st-page-hero .st-article-top > p { color: var(--st-blue-dark); }
.ck-content .st-guide ol, .ck-content .st-guide ul { list-style: none !important; padding-left: 0 !important; margin-left: 0; }
.ck-content .st-guide li { list-style: none !important; }
.ck-content .st-guide li::marker { content: ""; }
