body.theme-homepage-ubj {
    --ubj-navy: #071b33;
    --ubj-navy-2: #0c2747;
    --ubj-gold: #c8a24a;
    --ubj-gold-2: #e7c66d;
    --ubj-ink: #0a1523;
    --ubj-muted: #647386;
    --ubj-line: #dce4ee;
    --ubj-bg: #f6f8fb;
    --ubj-white: #ffffff;
    background: var(--ubj-bg);
    color: var(--ubj-ink);
    font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
}

body.theme-homepage-ubj #navbar,
body.theme-homepage-ubj .cursor,
body.theme-homepage-ubj .cursor-ring {
    display: none !important;
}

.ubj-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px clamp(18px, 4vw, 56px);
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid rgba(7, 27, 51, .08);
    backdrop-filter: blur(16px);
}

.ubj-brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ubj-navy);
    font-size: 1.35rem;
    font-weight: 800;
}

.ubj-brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.ubj-brand span {
    color: var(--ubj-gold);
}

.ubj-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--ubj-navy);
    font-size: .84rem;
    font-weight: 700;
    text-transform: uppercase;
}

.ubj-menu-cta,
.ubj-btn,
.ubj-catalog-tools a,
.ubj-product-actions a:last-child,
.ubj-contact-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 8px;
    padding: 0 18px;
    font-weight: 800;
}

.ubj-menu-cta,
.ubj-btn-primary,
.ubj-contact-form button,
.ubj-product-actions a:last-child {
    background: var(--ubj-gold);
    color: var(--ubj-navy);
}

.ubj-btn-secondary {
    background: rgba(255, 255, 255, .12);
    color: var(--ubj-white);
    border: 1px solid rgba(255, 255, 255, .3);
}

.ubj-page {
    overflow: hidden;
}

.ubj-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
    min-height: 700px;
    background: var(--ubj-navy);
    color: var(--ubj-white);
}

.ubj-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(70px, 8vw, 118px) clamp(22px, 6vw, 76px);
}

.ubj-kicker {
    margin: 0 0 14px;
    color: var(--ubj-gold-2);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ubj-hero h1,
.ubj-intro h2,
.ubj-section-head h2,
.ubj-distribution h2,
.ubj-why h2,
.ubj-final-cta h2,
.ubj-contact h2 {
    margin: 0;
    letter-spacing: 0;
    line-height: 1.05;
    font-weight: 800;
}

.ubj-hero h1 {
    max-width: 760px;
    font-size: clamp(2.7rem, 6vw, 5.7rem);
}

.ubj-hero-copy > p:not(.ubj-kicker) {
    max-width: 630px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.75;
}

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

.ubj-quick-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.ubj-quick-facts span {
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    padding: 9px 13px;
    color: rgba(255, 255, 255, .78);
    font-size: .8rem;
    font-weight: 700;
}

.ubj-hero-visual {
    position: relative;
    min-height: 420px;
}

.ubj-hero-visual img,
.ubj-distribution-image img,
.ubj-product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ubj-hero-visual:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 27, 51, .04), rgba(7, 27, 51, .38));
}

.ubj-hero-panel {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 1;
    max-width: 420px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    padding: 20px;
    background: rgba(7, 27, 51, .72);
    backdrop-filter: blur(12px);
}

.ubj-hero-panel span,
.ubj-product-card span,
.ubj-product-actions small {
    display: inline-flex;
    color: var(--ubj-gold-2);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ubj-hero-panel strong {
    display: block;
    margin-top: 8px;
    font-size: 1.45rem;
    line-height: 1.25;
}

.ubj-trust,
.ubj-category-grid,
.ubj-product-grid,
.ubj-solution-grid,
.ubj-article-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.ubj-trust {
    padding: 28px clamp(18px, 4vw, 56px);
    background: var(--ubj-white);
    border-bottom: 1px solid var(--ubj-line);
}

.ubj-trust article,
.ubj-solution-grid article,
.ubj-article-grid article,
.ubj-product-card,
.ubj-contact-form {
    border: 1px solid var(--ubj-line);
    border-radius: 8px;
    background: var(--ubj-white);
}

.ubj-trust article {
    display: flex;
    min-height: 300px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 34px 28px;
    background: #075553;
    color: #fff;
    text-align: center;
}

.ubj-trust article svg {
    width: 54px;
    height: 54px;
    margin-bottom: 28px;
    color: #fff;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ubj-trust h2,
.ubj-category-card h3,
.ubj-product-card h3,
.ubj-solution-grid h3,
.ubj-article-grid h3 {
    margin: 0 0 9px;
    color: var(--ubj-navy);
    font-size: 1rem;
}

.ubj-trust h2 {
    color: #fff;
    margin-bottom: 18px;
    font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.ubj-trust p {
    max-width: 260px;
    color: rgba(255, 255, 255, .88);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.8;
}

.ubj-trust p,
.ubj-category-card p,
.ubj-product-card p,
.ubj-solution-grid p,
.ubj-article-grid p,
.ubj-intro p,
.ubj-contact p {
    margin: 0;
    color: var(--ubj-muted);
    line-height: 1.7;
}

.ubj-intro,
.ubj-distribution,
.ubj-contact,
.ubj-why {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 74px);
    align-items: center;
    padding: clamp(68px, 9vw, 112px) clamp(18px, 4vw, 56px);
}

.ubj-intro {
    min-height: 620px;
    background: #f4f6f8;
}

.ubj-intro-visual {
    position: relative;
    min-height: 420px;
}

.ubj-intro-visual img {
    position: relative;
    z-index: 2;
    width: min(70%, 470px);
    min-height: 420px;
    margin: 0 auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 24px 60px rgba(7, 27, 51, .12);
}

.ubj-intro-visual:before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 9%;
    bottom: 38px;
    width: min(48%, 300px);
    height: 270px;
    border-radius: 8px;
    background: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=900&q=78") center/cover;
    box-shadow: 0 18px 48px rgba(7, 27, 51, .14);
}

.ubj-intro-shape {
    position: absolute;
    display: block;
    z-index: 0;
    pointer-events: none;
}

.ubj-intro-shape-a {
    left: 22%;
    top: 92px;
    width: 66px;
    height: 66px;
    border-radius: 66px 66px 6px 66px;
    background: rgba(14, 92, 109, .13);
}

.ubj-intro-shape-b {
    right: 11%;
    bottom: 2px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(200, 162, 74, .14);
}

.ubj-intro-copy {
    max-width: 650px;
}

.ubj-intro h2,
.ubj-section-head h2,
.ubj-distribution h2,
.ubj-why h2,
.ubj-contact h2 {
    color: var(--ubj-navy);
    font-size: clamp(2rem, 4vw, 3.45rem);
}

.ubj-intro-copy h2 {
    color: #0b5759;
    font-size: clamp(2.6rem, 5vw, 4.25rem);
    line-height: 1.05;
}

.ubj-intro-copy p {
    margin-top: 22px;
    color: #004850;
    font-size: clamp(1rem, 1.45vw, 1.25rem);
    line-height: 1.9;
}

.ubj-intro a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-top: 34px;
    padding: 0 38px;
    border-radius: 5px;
    background: #168449;
    color: #fff;
    font-weight: 800;
    border-bottom: 0;
}

.ubj-categories,
.ubj-solutions,
.ubj-articles {
    padding: clamp(68px, 9vw, 112px) clamp(18px, 4vw, 56px);
}

.ubj-articles {
    background: var(--ubj-white);
}

.ubj-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    max-width: 980px;
    margin-bottom: 28px;
}

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

.ubj-category-card {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    border-radius: 8px;
    padding: 24px;
    color: var(--ubj-white);
    background: var(--ubj-navy);
}

.ubj-category-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(180deg, rgba(7, 27, 51, .2), rgba(7, 27, 51, .86)), var(--ubj-cat-img);
    background-size: cover;
    background-position: center;
    transition: transform .35s ease;
}

.ubj-category-card:hover:before {
    transform: scale(1.04);
}

.ubj-category-card h3,
.ubj-category-card p,
.ubj-category-card a {
    position: relative;
    z-index: 1;
}

.ubj-category-card h3 {
    color: var(--ubj-white);
    font-size: 1.45rem;
}

.ubj-category-card p {
    max-width: 360px;
    color: rgba(255, 255, 255, .78);
}

.ubj-category-card a {
    display: inline-flex;
    margin-top: 20px;
    color: var(--ubj-gold-2);
    font-weight: 800;
}

.ubj-catalog-tools {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(180px, 260px) auto;
    gap: 12px;
    margin-bottom: 22px;
}

.ubj-catalog-tools input,
.ubj-catalog-tools select,
.ubj-contact-form input,
.ubj-contact-form textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--ubj-line);
    border-radius: 8px;
    padding: 0 14px;
    background: var(--ubj-white);
    color: var(--ubj-ink);
    font: inherit;
}

.ubj-catalog-tools a {
    border: 1px solid var(--ubj-navy);
    color: var(--ubj-navy);
}

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

.ubj-product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.ubj-product-card img {
    aspect-ratio: 4 / 3;
    height: auto;
}

.ubj-product-card > div {
    padding: 18px;
}

.ubj-product-card h3 {
    margin-top: 8px;
    font-size: 1.18rem;
}

.ubj-product-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: auto;
    border-top: 1px solid var(--ubj-line);
}

.ubj-product-actions a {
    min-height: 42px;
    border-radius: 7px;
    text-align: center;
    font-weight: 800;
}

.ubj-product-actions a:first-of-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ubj-line);
    color: var(--ubj-navy);
}

.ubj-product-actions .is-ready {
    color: #0e7a45;
}

.ubj-product-actions .is-empty {
    color: #b54708;
}

.ubj-solutions {
    background: #eef3f8;
}

.ubj-solution-grid,
.ubj-article-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ubj-solution-grid article,
.ubj-article-grid article {
    padding: 22px;
}

.ubj-why {
    display: block;
    background: #f7f7f7;
    color: var(--ubj-navy);
    text-align: center;
}

.ubj-why-head {
    max-width: 860px;
    margin: 0 auto 64px;
}

.ubj-why-head h2 {
    color: #6b2230;
    font-size: clamp(2rem, 3vw, 2.9rem);
    line-height: 1.15;
}

.ubj-why-head p {
    margin: 20px 0 0;
    color: #141414;
    font-size: clamp(1rem, 1.35vw, 1.15rem);
    line-height: 1.75;
}

.ubj-why-orbit {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(280px, 420px) minmax(260px, 1fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.ubj-why-list {
    display: grid;
    gap: 50px;
}

.ubj-why-list article {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 74px;
    border: 1px solid #d9dde4;
    border-radius: 12px;
    padding: 14px 18px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(7, 27, 51, .12);
}

.ubj-why-list-left article:nth-child(2) {
    margin-right: 58px;
}

.ubj-why-list-right article:nth-child(2) {
    margin-left: 58px;
}

.ubj-why-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    background: #e78a00;
    color: #fff;
    font-size: .78rem;
    font-weight: 900;
}

.ubj-why-list strong {
    color: #6b2230;
    font-size: clamp(1.05rem, 1.55vw, 1.35rem);
    line-height: 1.25;
}

.ubj-why-photo {
    overflow: hidden;
    width: min(100%, 420px);
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 22px 54px rgba(7, 27, 51, .12);
}

.ubj-why-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ubj-distribution {
    background: var(--ubj-white);
}

.ubj-distribution-image {
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 5 / 4;
}

.ubj-flow {
    display: grid;
    gap: 10px;
    margin-top: 26px;
}

.ubj-flow span {
    border-left: 4px solid var(--ubj-gold);
    border-radius: 8px;
    padding: 16px 18px;
    background: var(--ubj-bg);
    color: var(--ubj-navy);
    font-weight: 800;
}

.ubj-numbers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--ubj-line);
}

.ubj-numbers div {
    padding: 40px 24px;
    background: var(--ubj-navy);
    color: var(--ubj-white);
    text-align: center;
}

.ubj-numbers strong {
    display: block;
    color: var(--ubj-gold-2);
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 1;
}

.ubj-numbers span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .72);
    font-weight: 700;
}

.ubj-partners {
    padding: 42px clamp(18px, 4vw, 56px);
    background: var(--ubj-white);
}

.ubj-partners div {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ubj-partners span {
    border: 1px solid var(--ubj-line);
    border-radius: 8px;
    padding: 14px 18px;
    color: var(--ubj-navy);
    font-weight: 800;
}

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

.ubj-article-grid a {
    display: inline-flex;
    margin-top: 16px;
    color: var(--ubj-navy);
    font-weight: 800;
}

.ubj-final-cta {
    padding: clamp(70px, 10vw, 128px) clamp(18px, 4vw, 56px);
    background: linear-gradient(135deg, var(--ubj-navy), var(--ubj-navy-2));
    color: var(--ubj-white);
    text-align: center;
}

.ubj-final-cta h2 {
    max-width: 860px;
    margin: 0 auto;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
}

.ubj-final-cta p {
    margin: 18px auto 28px;
    max-width: 560px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.7;
}

.ubj-final-cta div {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ubj-contact {
    align-items: start;
    background: var(--ubj-bg);
}

.ubj-contact-form {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.ubj-contact-form textarea {
    padding-top: 13px;
    resize: vertical;
}

.ubj-footer {
    padding: 58px clamp(18px, 4vw, 56px) 22px;
    background: var(--ubj-navy);
    color: rgba(255, 255, 255, .7);
}

.ubj-footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(160px, 1fr));
    gap: clamp(28px, 4vw, 60px);
    max-width: 1280px;
    margin: 0 auto;
}

.ubj-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.ubj-footer-logo img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.ubj-footer-logo strong {
    font-size: 1.35rem;
    font-weight: 900;
}

.ubj-footer-brand p,
.ubj-footer-contact p {
    margin: 18px 0 0;
    max-width: 420px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.75;
}

.ubj-footer-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 24px;
    border-radius: 8px;
    padding: 0 18px;
    background: var(--ubj-gold);
    color: var(--ubj-navy);
    font-weight: 900;
}

.ubj-footer-col {
    display: grid;
    align-content: start;
    gap: 11px;
}

.ubj-footer-col h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
}

.ubj-footer-col a {
    color: rgba(255, 255, 255, .72);
    font-weight: 700;
}

.ubj-footer-col a:hover {
    color: var(--ubj-gold-2);
}

.ubj-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    max-width: 1280px;
    margin: 46px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .58);
    font-size: .9rem;
}

.ubj-footer-bottom p {
    margin: 0;
}

.ubj-footer-bottom span {
    color: var(--ubj-gold-2);
    font-weight: 800;
}

.ubj-floating-wa {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #15b86a;
    color: white;
    box-shadow: 0 18px 34px rgba(6, 20, 37, .22);
    font-weight: 900;
}

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

.ubj-nav {
    min-height: 78px;
    padding: 0 clamp(18px, 4vw, 56px);
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(7, 27, 51, .08);
    box-shadow: 0 10px 26px rgba(7, 27, 51, .05);
}

.ubj-brand,
.ubj-menu {
    color: var(--ubj-navy);
}

.ubj-brand strong {
    color: var(--ubj-navy);
}

.ubj-brand img {
    width: 50px;
    height: 50px;
}

.ubj-menu {
    flex: 1;
    justify-content: center;
    gap: clamp(18px, 2.7vw, 38px);
    font-size: .92rem;
    text-transform: none;
}

.ubj-menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 78px;
    color: var(--ubj-navy);
    font-weight: 800;
}

.ubj-menu a.is-active:after,
.ubj-menu a:hover:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--ubj-gold);
}

.ubj-nav-search {
    flex: 0 0 min(20vw, 300px);
}

.ubj-nav-search input {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(7, 27, 51, .12);
    border-radius: 999px;
    padding: 0 18px 0 44px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23071b33' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-3.5-3.5'/%3E%3C/svg%3E") 16px 50% / 18px no-repeat;
    color: var(--ubj-navy);
    font: inherit;
    font-size: .88rem;
    font-weight: 700;
}

.ubj-hero {
    position: relative;
    display: block;
    min-height: 520px;
    background: url("https://images.unsplash.com/photo-1558030006-450675393462?auto=format&fit=crop&w=1800&q=84") center / cover;
}

.ubj-hero-copy {
    min-height: 520px;
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(76px, 8vw, 118px) clamp(24px, 5vw, 80px);
}

.ubj-hero h1 {
    max-width: 560px;
    padding: 18px 22px 0;
    color: var(--ubj-navy);
    font-size: clamp(1.95rem, 3.2vw, 3.05rem);
    line-height: 1.12;
    text-shadow: none;
    background: rgba(255, 255, 255, .92);
    border-radius: 8px 8px 0 0;
}

.ubj-hero-copy > p:not(.ubj-kicker) {
    max-width: 560px;
    margin-top: 0;
    padding: 14px 22px 20px;
    color: var(--ubj-navy);
    background: rgba(255, 255, 255, .92);
    border-radius: 0 0 8px 8px;
    font-size: clamp(.95rem, 1.2vw, 1.08rem);
    font-weight: 600;
    line-height: 1.65;
}

.ubj-hero-actions {
    gap: 14px;
    margin-top: 22px;
}

.ubj-hero .ubj-btn {
    min-width: 190px;
    min-height: 46px;
    border-radius: 8px;
    font-size: .9rem;
}

.ubj-hero .ubj-btn-secondary {
    background: #fff;
    color: #07833f;
    border: 0;
}

.ubj-trust {
    gap: 28px;
    padding-top: 42px;
    padding-bottom: 42px;
    background: #f8fbfb;
}

.ubj-trust article {
    min-height: 245px;
    border: 1px solid #d8eeee;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(7, 27, 51, .06);
}

.ubj-trust h2 {
    color: #075553;
    font-size: clamp(1.28rem, 1.7vw, 1.55rem);
}

.ubj-trust p {
    color: #365f67;
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.72;
}

.ubj-trust article svg {
    width: 46px;
    height: 46px;
    margin-bottom: 22px;
    padding: 9px;
    border-radius: 50%;
    color: #075553;
    background: #edf8f7;
    stroke-width: 1.8;
}

.ubj-categories {
    background: #fff;
}

.ubj-categories .ubj-section-head {
    display: block;
    max-width: none;
    text-align: center;
}

.ubj-categories .ubj-kicker {
    color: var(--ubj-gold);
}

.ubj-categories .ubj-section-head h2 {
    color: #075553;
}

.ubj-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 5vw, 70px) clamp(24px, 5vw, 86px);
    max-width: 1280px;
    margin: 28px auto 0;
}

.ubj-category-card {
    min-height: 0;
    padding: 0;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    color: #075553;
    text-align: center;
}

.ubj-category-card:before {
    content: none;
}

.ubj-category-card img {
    width: 100%;
    height: 235px;
    object-fit: contain;
    object-position: center;
    mix-blend-mode: multiply;
}

.ubj-category-card h3 {
    margin: 18px 0 0;
    color: #075553;
    font-size: 1.25rem;
    font-weight: 500;
}

[hidden] {
    display: none !important;
}

/* UBJFood typography standard: calm B2B scale based on the Business Solutions section. */
body.theme-homepage-ubj[data-site-id="24"] {
    font-size: 16px;
    line-height: 1.62;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
    --ubj-type-section: clamp(2rem, 3.15vw, 3.2rem);
    --ubj-type-subsection: clamp(1.55rem, 2.25vw, 2.25rem);
    --ubj-type-card-title: clamp(.98rem, 1vw, 1.08rem);
    --ubj-type-body: clamp(.94rem, .95vw, 1rem);
    --ubj-type-small: .78rem;
}

body.theme-homepage-ubj[data-site-id="24"] .ubj-nav,
body.theme-homepage-ubj[data-site-id="24"] .ubj-page,
body.theme-homepage-ubj[data-site-id="24"] .ubj-footer {
    font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
}

body.theme-homepage-ubj[data-site-id="24"] .ubj-menu,
body.theme-homepage-ubj[data-site-id="24"] .ubj-nav-search input,
body.theme-homepage-ubj[data-site-id="24"] .ubj-btn,
body.theme-homepage-ubj[data-site-id="24"] .ubj-contact-form button {
    font-size: .88rem;
    line-height: 1.2;
}

body.theme-homepage-ubj[data-site-id="24"] .ubj-kicker {
    margin-bottom: 12px;
    font-size: .72rem;
    line-height: 1.25;
    letter-spacing: .12em;
}

body.theme-homepage-ubj[data-site-id="24"] .ubj-hero h1 {
    max-width: 520px;
    font-size: clamp(1.75rem, 2.75vw, 2.55rem);
    line-height: 1.16;
    font-weight: 850;
}

body.theme-homepage-ubj[data-site-id="24"] .ubj-hero-copy > p:not(.ubj-kicker) {
    max-width: 520px;
    font-size: var(--ubj-type-body);
    line-height: 1.68;
    font-weight: 600;
}

body.theme-homepage-ubj[data-site-id="24"] .ubj-intro h2,
body.theme-homepage-ubj[data-site-id="24"] .ubj-section-head h2,
body.theme-homepage-ubj[data-site-id="24"] .ubj-distribution h2,
body.theme-homepage-ubj[data-site-id="24"] .ubj-final-cta h2,
body.theme-homepage-ubj[data-site-id="24"] .ubj-contact h2 {
    font-size: var(--ubj-type-section);
    line-height: 1.14;
    font-weight: 850;
}

body.theme-homepage-ubj[data-site-id="24"] .ubj-intro-copy h2,
body.theme-homepage-ubj[data-site-id="24"] .ubj-why-head h2 {
    font-size: clamp(1.9rem, 2.9vw, 2.75rem);
    line-height: 1.16;
    font-weight: 850;
}

body.theme-homepage-ubj[data-site-id="24"] .ubj-trust h2,
body.theme-homepage-ubj[data-site-id="24"] .ubj-category-card h3,
body.theme-homepage-ubj[data-site-id="24"] .ubj-solution-grid h3,
body.theme-homepage-ubj[data-site-id="24"] .ubj-article-grid h3,
body.theme-homepage-ubj[data-site-id="24"] .ubj-product-card h3,
body.theme-homepage-ubj[data-site-id="24"] .ubj-footer h3 {
    font-size: var(--ubj-type-card-title);
    line-height: 1.35;
    font-weight: 800;
}

body.theme-homepage-ubj[data-site-id="24"] .ubj-intro p,
body.theme-homepage-ubj[data-site-id="24"] .ubj-section-head p,
body.theme-homepage-ubj[data-site-id="24"] .ubj-trust p,
body.theme-homepage-ubj[data-site-id="24"] .ubj-category-card p,
body.theme-homepage-ubj[data-site-id="24"] .ubj-solution-grid p,
body.theme-homepage-ubj[data-site-id="24"] .ubj-article-grid p,
body.theme-homepage-ubj[data-site-id="24"] .ubj-product-card p,
body.theme-homepage-ubj[data-site-id="24"] .ubj-why-head p,
body.theme-homepage-ubj[data-site-id="24"] .ubj-contact p,
body.theme-homepage-ubj[data-site-id="24"] .ubj-footer p,
body.theme-homepage-ubj[data-site-id="24"] .ubj-footer a {
    font-size: var(--ubj-type-body);
    line-height: 1.68;
}

body.theme-homepage-ubj[data-site-id="24"] .ubj-why-list strong {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.3;
}

body.theme-homepage-ubj[data-site-id="24"] .ubj-why-list span,
body.theme-homepage-ubj[data-site-id="24"] .ubj-product-card span,
body.theme-homepage-ubj[data-site-id="24"] .ubj-product-actions small,
body.theme-homepage-ubj[data-site-id="24"] .ubj-footer-bottom {
    font-size: var(--ubj-type-small);
    line-height: 1.45;
}

@media (max-width: 980px) {
    .ubj-nav {
        flex-wrap: wrap;
        min-height: auto;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .ubj-menu {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .ubj-menu a {
        min-height: 40px;
        white-space: nowrap;
    }

    .ubj-nav-search {
        flex: 0 0 min(44vw, 300px);
    }

    .ubj-hero,
    .ubj-intro,
    .ubj-distribution,
    .ubj-contact,
    .ubj-why {
        grid-template-columns: 1fr;
    }

    .ubj-trust,
    .ubj-category-grid,
    .ubj-product-grid,
    .ubj-solution-grid,
    .ubj-article-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ubj-why-orbit {
        grid-template-columns: 1fr;
        max-width: 720px;
    }

    .ubj-why-photo {
        order: -1;
    }

    .ubj-why-list {
        gap: 16px;
    }

    .ubj-why-list-left article:nth-child(2),
    .ubj-why-list-right article:nth-child(2) {
        margin: 0;
    }

    .ubj-catalog-tools {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .ubj-nav {
        align-items: flex-start;
        flex-direction: column;
        padding: 14px 16px;
    }

    .ubj-menu {
        width: 100%;
        font-size: .74rem;
    }

    .ubj-nav-search {
        width: 100%;
        flex-basis: auto;
    }

    .ubj-hero {
        min-height: 540px;
        background-position: center;
    }

    .ubj-hero-copy {
        min-height: 540px;
        padding: 76px 18px 58px;
    }

    .ubj-hero .ubj-btn {
        width: 100%;
        min-width: 0;
    }

    .ubj-why-head {
        margin-bottom: 36px;
    }

    .ubj-why-photo {
        width: min(82vw, 330px);
    }

    .ubj-why-list article {
        min-height: 66px;
        padding: 12px 14px;
    }

    .ubj-hero-visual {
        min-height: 320px;
    }

    .ubj-trust,
    .ubj-category-grid,
    .ubj-product-grid,
    .ubj-solution-grid,
    .ubj-article-grid,
    .ubj-numbers,
    .ubj-why ul {
        grid-template-columns: 1fr;
    }

    .ubj-section-head {
        display: block;
    }

    .ubj-category-card {
        min-height: 0;
    }

    .ubj-category-card img {
        height: 210px;
    }

    .ubj-intro {
        min-height: auto;
    }

    .ubj-intro-visual {
        min-height: 360px;
    }

    .ubj-intro-visual img {
        width: 76%;
        min-height: 360px;
    }

    .ubj-intro-visual:before {
        left: 0;
        width: 45%;
        height: 220px;
    }

    .ubj-footer {
        padding-top: 44px;
    }

    .ubj-footer-main {
        grid-template-columns: 1fr;
    }

    .ubj-footer-bottom {
        display: block;
    }

    .ubj-footer-bottom span {
        display: block;
        margin-top: 8px;
    }
}
