/* ==========================================================================
   OxusPay theme.css — header, footer, banner, theme toggle, font-resize
   ========================================================================== */

:root {
    --color-bg: #ffffff;
    --color-surface: #ffffff;
    --color-text: #1a2b3b;
    --color-heading: #1a2b3b;
    --color-muted: #596673;
    --color-border: #e6e9e8;
    --color-section-alt: #f6f9f7;
    --color-cream: #faf7f0;

    --brand-navy: #1a2b3b;
    --brand-green: #2d8a4e;
    --brand-green-dark: #256e3f;
    --brand-green-deep: #1b3d2b;

    --footer-bg: #111b18;
    --footer-text: #c9d1cd;
    --footer-text-muted: #8b9793;
    --footer-border: rgba(255, 255, 255, 0.08);

    --radius-pill: 999px;
    --radius-sm: 8px;
    --radius-md: 14px;

    --shadow-sm: 0 1px 2px rgba(16, 24, 30, 0.06);
    --shadow-md: 0 8px 24px rgba(16, 24, 30, 0.08);

    --dur-fast: 120ms;
    --dur-med: 200ms;
    --ease-standard: cubic-bezier(.2, 0, 0, 1);

    --font-scale: 1;
    --container-max: 1400px;
}

[data-theme="dark"] {
    --color-bg: #0d1310;
    --color-surface: #131a17;
    --color-section-alt: #1a2320;
    --color-cream: #1a2320;
    --color-text: #dfe6e2;
    --color-heading: #f4f7f5;
    --color-muted: #93a19c;
    --color-border: rgba(255, 255, 255, 0.1);
    --footer-bg: #070a08;
    --footer-border: rgba(255, 255, 255, 0.06);
}

* { box-sizing: border-box; }
h1, h2, h3, h4, h5, h6 { color: inherit; margin: 0; }
html {
    font-size: calc(16px * var(--font-scale));
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}
body {
    margin: 0;
    background: var(--color-bg);
    overflow-x: hidden;
    max-width: 100%;
    color: var(--color-text);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    transition: background var(--dur-med) var(--ease-standard), color var(--dur-med) var(--ease-standard);
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand-green); }
button { font: inherit; }
img { max-width: 100%; display: block; }

.ox-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2.5rem;
}

:focus-visible {
    outline: 2px solid var(--brand-green);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ---------- Header ---------- */
.ox-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: color-mix(in srgb, var(--color-bg) 92%, transparent);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border);
}
.ox-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    height: 5.25rem;
}
.ox-header__top {
    display: contents;
}
.ox-brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-weight: 700;
    font-size: 1.375rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
}
.ox-brand__mark { height: clamp(1.25rem, 3vw, 1.75rem); width: auto; flex: none; }
.ox-brand__primary { color: var(--color-heading); }
.ox-brand__secondary { color: var(--brand-green); }

.ox-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}
.ox-nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.ox-nav__list > li { position: relative; }
.ox-nav__list > li > a,
.ox-nav__link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
    padding: 0.5rem 0;
}
.ox-nav__list > li.current-menu-item > a,
.ox-nav__list > li.current_page_item > a { color: var(--brand-green); }
.ox-nav__item.has-dropdown, .ox-nav__list > li.menu-item-has-children { position: relative; }
.ox-nav__link svg { width: 14px; height: 14px; transition: transform var(--dur-fast) var(--ease-standard); }
@media (min-width: 1025px) {
    .ox-nav__list > li.menu-item-has-children > a {
        padding-right: 1.1rem;
        white-space: nowrap;
    }
    .ox-nav__list > li.menu-item-has-children > a::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        width: 7px;
        height: 7px;
        border-right: 1.5px solid currentColor;
        border-bottom: 1.5px solid currentColor;
        transform: translateY(-65%) rotate(45deg);
        transition: transform var(--dur-fast) var(--ease-standard);
    }
    .ox-nav__list > li.menu-item-has-children:hover > a::after {
        transform: translateY(-35%) rotate(225deg);
    }
}
.ox-nav__item.is-open .ox-nav__link svg { transform: rotate(225deg) translateY(2px); }
.ox-nav__dropdown,
.ox-nav__list .sub-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    min-width: 220px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    list-style: none;
    margin: 0;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity var(--dur-fast) var(--ease-standard), transform var(--dur-fast) var(--ease-standard), visibility var(--dur-fast);
}
.ox-nav__item.has-dropdown:hover .ox-nav__dropdown,
.ox-nav__list > li.menu-item-has-children:hover > .sub-menu,
.ox-nav__item.is-open .ox-nav__dropdown,
.ox-nav__list > li.menu-item-has-children.is-open > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.ox-nav__toggle { display: none; }
.ox-nav__dropdown a,
.ox-nav__list .sub-menu a {
    display: block;
    padding: 0.55rem 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--color-text);
}
.ox-nav__dropdown a:hover,
.ox-nav__list .sub-menu a:hover { background: var(--color-border); color: var(--brand-green); }

/* Forces the mobile nav layout regardless of viewport — used when font-scale
   makes the desktop header overflow even on wide screens. */
.ox-header__row.ox-force-mobile-nav .ox-nav { position: fixed; top: 100%; left: 0; right: 0; background: var(--color-surface, #fff); z-index: 40; border-top: 1px solid var(--color-border);
    flex-direction: column; align-items: stretch; justify-content: flex-start; padding: 1.5rem 2rem; gap: 0; overflow-y: auto;
    box-shadow: var(--shadow-md, 0 8px 24px rgba(0,0,0,0.08));
    max-height: calc(100vh - 5.25rem); height: auto;
    transform: translateY(-8px); opacity: 0; visibility: hidden; transition: opacity var(--dur-med) var(--ease-standard), transform var(--dur-med) var(--ease-standard), visibility var(--dur-med); }
.ox-header__row.ox-force-mobile-nav .ox-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.ox-header__row.ox-force-mobile-nav .ox-nav__list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
.ox-header__row.ox-force-mobile-nav .ox-nav__item,
.ox-header__row.ox-force-mobile-nav .ox-nav__list > li { border-bottom: 1px solid var(--color-border); display: flex; flex-wrap: wrap; align-items: center; }
.ox-header__row.ox-force-mobile-nav .ox-nav__item:last-child,
.ox-header__row.ox-force-mobile-nav .ox-nav__list > li:last-child { border-bottom: none; }
.ox-header__row.ox-force-mobile-nav .ox-nav__link,
.ox-header__row.ox-force-mobile-nav .ox-nav__list > li > a { padding: 1rem 0; justify-content: space-between; width: auto; flex: 1; }
.ox-header__row.ox-force-mobile-nav .ox-nav__item.has-dropdown,
.ox-header__row.ox-force-mobile-nav .ox-nav__list > li.menu-item-has-children { justify-content: space-between; }
.ox-header__row.ox-force-mobile-nav .ox-nav__toggle { display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; background: none; border: none; color: inherit; cursor: pointer; transition: transform var(--dur-fast) var(--ease-standard); }
.ox-header__row.ox-force-mobile-nav .ox-nav__item.is-open .ox-nav__toggle,
.ox-header__row.ox-force-mobile-nav .ox-nav__list > li.menu-item-has-children.is-open .ox-nav__toggle { transform: rotate(180deg); }
.ox-header__row.ox-force-mobile-nav .ox-nav__dropdown,
.ox-header__row.ox-force-mobile-nav .ox-nav__list .sub-menu { width: 100%; position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; display: none; padding: 0 0 0.75rem; }
.ox-header__row.ox-force-mobile-nav .ox-nav__item.is-open .ox-nav__dropdown,
.ox-header__row.ox-force-mobile-nav .ox-nav__list > li.menu-item-has-children.is-open > .sub-menu { display: block; }
.ox-header__row.ox-force-mobile-nav .ox-hamburger { display: inline-flex; }

.ox-utility {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 1.5rem;
}
.ox-select-pill {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    padding: 0.35rem 0.7rem;
    background: var(--color-surface);
    font-size: 0.8125rem;
    color: var(--color-text);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}
.ox-select-pill:hover { border-color: var(--brand-green); }

.ox-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.125rem;
    height: 2.125rem;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-text);
    cursor: pointer;
}
.ox-icon-btn:hover { border-color: var(--brand-green); color: var(--brand-green); }
.ox-icon-btn svg { width: 18px; height: 18px; }

.ox-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.ox-btn--dark { background: var(--brand-navy); color: #fff; }
.ox-btn--dark:hover { background: #000; color: #fff; }
.ox-btn--green { background: var(--brand-green); color: #fff; }
.ox-btn--green:hover { background: var(--brand-green-dark); color: #fff; }

.ox-hamburger {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.ox-hamburger svg { width: 20px; height: 20px; }

/* ---------- Hero / banner ---------- */
.ox-hero {
    padding: 5rem 0 6rem;
}
.ox-hero__grid {
    display: grid;
    grid-template-columns: minmax(320px, 460px) 1fr;
    gap: 3rem;
    align-items: center;
}
.ox-hero__eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-green);
    margin: 0 0 1rem;
}
.ox-hero__heading {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: 3rem;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-heading);
    margin: 0 0 1.5rem;
    text-wrap: pretty;
}
.ox-hero__subtext {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--color-muted);
    max-width: 30rem;
    margin: 0 0 2rem;
}
.ox-hero__stores {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1rem;
}
.ox-store-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--brand-navy);
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 0.55rem 1rem;
}
.ox-store-btn svg, .ox-store-btn img { width: 22px; height: 22px; }
.ox-store-btn__labels { display: flex; flex-direction: column; line-height: 1.2; }
.ox-store-btn__top { font-size: 0.65rem; color: #cfd6d4; }
.ox-store-btn__bottom { font-size: 0.9375rem; font-weight: 700; }

.ox-hero__portal {
    margin-bottom: 1rem;
}
.ox-hero__tariffs {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
}
.ox-hero__tariffs:hover { color: var(--brand-green); }

.ox-hero__media { position: relative; display: flex; justify-content: center; }
.ox-hero__media img { max-width: 100%; }

/* ---------- Footer ---------- */
.ox-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 4.5rem 0 2rem;
}
.ox-footer__top {
    display: grid;
    grid-template-columns: 1.3fr repeat(4, 1fr);
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--footer-border);
}
.ox-footer__brand { display: flex; align-items: center; gap: 0.5rem; color: #fff; font-weight: 700; font-size: 1.25rem; margin-bottom: 1.5rem; }
.ox-footer__brand img { width: 1.5rem; height: 1.5rem; }
.ox-footer__badge {
    display: inline-block;
    border: 1px solid var(--footer-border);
    border-radius: var(--radius-pill);
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    color: var(--footer-text-muted);
    margin-bottom: 1rem;
}
.ox-footer__pci img { height: 2rem; }

.ox-footer__col-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 1.1rem;
}
.ox-footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.85rem; }
.ox-footer__links a { font-size: 0.9rem; color: var(--footer-text); }
.ox-footer__links a:hover { color: var(--brand-green); }

.ox-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 2rem;
    font-size: 0.8125rem;
    color: var(--footer-text-muted);
}
.ox-footer__bottom-row { display: flex; flex-wrap: wrap; gap: 1rem 2rem; width: 100%; justify-content: space-between; }
.ox-footer__legal { max-width: 60rem; }

/* ---------- Shared color-block utilities (per Figma: alt sections, cream panels, deep-green CTA) ---------- */
.ox-section-alt { background: var(--color-section-alt); }
.ox-panel-cream { background: var(--color-cream); }
.ox-cta-deep-green { background: var(--brand-green-deep); color: #fff; }
.ox-cta-deep-green a, .ox-cta-deep-green .ox-btn { color: inherit; }
.ox-tag-active { background: var(--brand-green); color: #fff; }

/* ---------- Font-size dropdown menu marker ---------- */
.ox-select-pill option { color: #111; }

/* ---------- About Us page ---------- */
.ox-about__hero { padding: 4rem 0 2.5rem; }
.ox-about__h1 { font-family: "Space Grotesk", "Inter", sans-serif; font-size: 2.5rem; line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; color: var(--color-heading); margin: 0 0 1.25rem; max-width: 34rem; text-wrap: pretty; }
.ox-about__lead { font-size: 1.0625rem; line-height: 1.65; color: var(--color-muted); max-width: 34rem; margin: 0; }
.ox-about__section { padding: 3rem 0; }
.ox-about__section--centered { text-align: left; }
.ox-about__h2 { font-family: "Space Grotesk", "Inter", sans-serif; font-size: 1.625rem; font-weight: 700; letter-spacing: -0.01em; color: var(--color-heading); margin: 0 0 1.25rem; }
.ox-about__h2--center { text-align: center; }
.ox-about__text { font-size: 1rem; line-height: 1.65; color: var(--color-muted); max-width: 44rem; margin: 0 0 1.75rem; }
.ox-about__prose { font-size: 0.9375rem; line-height: 1.7; color: var(--color-muted); max-width: 44rem; }
.ox-about__prose p { margin: 0 0 1.25rem; }
.ox-about__note { font-size: 0.8125rem; color: var(--color-muted); margin: 1.25rem 0 0; }
.ox-about__note--center { text-align: center; }

.ox-goal-cards { display: grid; grid-template-columns: repeat(2, minmax(220px, 1fr)); gap: 1rem; max-width: 44rem; }
.ox-goal-card { background: var(--color-section-alt); border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 1.25rem; }
.ox-goal-card__title { font-size: 0.9375rem; font-weight: 700; color: var(--color-heading); margin: 0 0 0.5rem; }
.ox-goal-card__text { font-size: 0.875rem; line-height: 1.55; color: var(--color-muted); margin: 0; }

.ox-license-card { max-width: 34rem; margin: 0 auto; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.75rem; }
.ox-license-card__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 1.5rem; margin-bottom: 1.25rem; }
.ox-license-card__label { display: block; font-size: 0.75rem; color: var(--color-muted); margin-bottom: 0.25rem; }
.ox-license-card__value { font-size: 0.9375rem; color: var(--color-heading); }
.ox-license-card__download { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.875rem; font-weight: 600; color: var(--brand-green); }
.ox-license-card__download:hover { color: var(--brand-green-dark); }

.ox-org-chart { max-width: 34rem; margin: 0 auto 1.5rem; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.75rem; text-align: center; }
.ox-org-chart__title { font-size: 0.9375rem; font-weight: 700; color: var(--color-heading); margin: 0 0 1.25rem; }
.ox-org-chart__tier { display: block; width: fit-content; margin: 0 auto 1.25rem; padding: 0.6rem 1.5rem; border-radius: var(--radius-sm); font-size: 0.875rem; font-weight: 600; position: relative; }
.ox-org-chart__tier:not(:last-child)::after { content: ""; position: absolute; left: 50%; top: 100%; width: 1px; height: 1.25rem; background: var(--color-border); }
.ox-org-chart__tier--deep { background: var(--brand-green-deep); color: #fff; }
.ox-org-chart__tier--light { background: #dcefe0; color: var(--brand-green-deep); }
.ox-org-chart__tier--outline { background: var(--color-surface); border: 1px solid var(--color-border); color: var(--color-heading); }

.ox-data-table-card { max-width: 44rem; margin: 0 auto 1.5rem; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.5rem 1.75rem; }
.ox-data-table-card__title { font-size: 1rem; font-weight: 700; color: var(--color-heading); margin: 0 0 1rem; }
.ox-data-table { width: 100%; border-collapse: collapse; text-align: left; }
.ox-data-table th { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-muted); font-weight: 600; padding: 0 0 0.5rem; }
.ox-data-table td { font-size: 0.875rem; color: var(--color-text); padding: 0.6rem 0; border-top: 1px solid var(--color-border); vertical-align: top; }
.ox-data-table__muted { color: var(--color-muted); font-size: 0.8125rem; }
.ox-data-table-card__note { font-size: 0.8125rem; color: var(--color-muted); margin: 1rem 0 0; }

.ox-requisites-card { max-width: 44rem; margin: 0 auto; background: var(--color-surface); border-radius: var(--radius-md); padding: 0.5rem 1.75rem; }
.ox-requisites-row { display: grid; grid-template-columns: 12rem 1fr; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--color-border); align-items: baseline; }
.ox-requisites-row:last-child { border-bottom: none; }
.ox-requisites-row__label { font-size: 0.875rem; color: var(--color-muted); }
.ox-requisites-row__value { font-size: 0.9375rem; font-weight: 700; color: var(--color-heading); text-align: right; }

/* ---------- News listing & single ---------- */
.ox-news { padding: 3.5rem 0 5rem; }
.ox-news__h1 { font-family: "Space Grotesk", "Inter", sans-serif; font-size: 2.75rem; font-weight: 700; letter-spacing: -0.02em; color: var(--color-heading); margin: 0 0 2.5rem; }

.ox-tag { display: inline-block; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.04em; padding: 0.25rem 0.6rem; border-radius: var(--radius-pill); margin-bottom: 0.9rem; }
.ox-news-single__back + .ox-tag { display: block; width: fit-content; }
.ox-tag--green { background: #dcefe0; color: var(--brand-green-deep); }
.ox-tag--blue { background: #dfe8fb; color: #24448c; }
.ox-tag--teal { background: #d9f0ec; color: #146b5d; }
.ox-tag--purple { background: #ece2fb; color: #5b2a86; }
.ox-tag--orange { background: #fbe6d9; color: #8a4a12; }

.ox-news-featured { display: grid; grid-template-columns: 1.4fr 1fr; border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 1.5rem; text-decoration: none; }
.ox-news-featured__copy { padding: 2.5rem; }
.ox-news-featured__title { font-family: "Space Grotesk", "Inter", sans-serif; font-size: 1.75rem; font-weight: 700; letter-spacing: -0.01em; color: var(--color-heading); margin: 0 0 0.85rem; line-height: 1.25; }
.ox-news-featured__excerpt { font-size: 0.9375rem; color: var(--color-muted); line-height: 1.6; margin: 0 0 1.25rem; max-width: 26rem; }
.ox-news-featured__media { background: var(--brand-navy); min-height: 14rem; display: flex; align-items: center; justify-content: center; }
.ox-news-featured__media img { width: 100%; height: 100%; object-fit: cover; }

.ox-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ox-news-card { display: block; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.75rem; text-decoration: none; }
.ox-news-card__title { font-size: 1.0625rem; font-weight: 700; color: var(--color-heading); margin: 0 0 0.6rem; line-height: 1.3; }
.ox-news-card__excerpt { font-size: 0.875rem; color: var(--color-muted); line-height: 1.55; margin: 0 0 1.5rem; }
.ox-news-card__date { font-size: 0.8125rem; color: var(--color-muted); }

.ox-news-single { padding: 3.5rem 0 5rem; }
.ox-news-single__container { max-width: 44rem; }
.ox-news-single__back { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.875rem; color: var(--color-muted); margin-bottom: 1.5rem; }
.ox-news-single__back:hover { color: var(--brand-green); }
.ox-news-single__title { font-family: "Space Grotesk", "Inter", sans-serif; font-size: 2rem; font-weight: 700; letter-spacing: -0.01em; color: var(--color-heading); margin: 0.5rem 0 0.75rem; }
.ox-news-single__media { margin: 1.75rem 0; border-radius: var(--radius-md); overflow: hidden; }
.ox-news-single__media img { width: 100%; display: block; }
.ox-news-single__body { margin-top: 1.5rem; }
.ox-news-single__body a { font-weight: bold; }

/* ---------- Investors page ---------- */
.ox-investors { padding: 4rem 0 5rem; }
.ox-inv-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 2rem 0 2.5rem; }
.ox-inv-pill { border: 1px solid var(--color-border); background: var(--color-surface); color: var(--color-text); font-size: 0.875rem; font-weight: 600; padding: 0.55rem 1.1rem; border-radius: var(--radius-pill); cursor: pointer; transition: background var(--dur-fast) var(--ease-standard), border-color var(--dur-fast) var(--ease-standard), color var(--dur-fast) var(--ease-standard); }
.ox-inv-pill:hover { border-color: var(--brand-green); }
.ox-inv-pill.is-active { background: var(--brand-green); border-color: var(--brand-green); color: #fff; }

.ox-inv-panel { display: none; opacity: 0; transform: translateY(6px); transition: opacity var(--dur-med) var(--ease-standard), transform var(--dur-med) var(--ease-standard); }
.ox-inv-panel.is-active { display: block; opacity: 1; transform: translateY(0); }

.ox-inv-filters { display: flex; justify-content: flex-end; gap: 0.75rem; margin-bottom: 1rem; }
.ox-inv-filter { display: flex; flex-direction: column; gap: 0.25rem; align-items: flex-start; }
.ox-inv-filter__label { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-muted); }

.ox-inv-table { width: 100%; border-collapse: collapse; text-align: left; }
.ox-inv-table th { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-muted); font-weight: 600; padding: 0.5rem 0; border-bottom: 1px solid var(--color-border); }
.ox-inv-table td { font-size: 0.9375rem; color: var(--color-text); padding: 0.9rem 0; border-bottom: 1px solid var(--color-border); }
.ox-inv-table tr[hidden] { display: none; }
.ox-inv-table__file { display: inline-flex; align-items: center; gap: 0.3rem; font-weight: 700; color: var(--brand-green); }
.ox-inv-table__file:hover { color: var(--brand-green-dark); }
.ox-inv-table__file--pending { color: var(--color-muted); }

.ox-inv-cta { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; background: var(--footer-bg); color: #fff; border-radius: var(--radius-md); padding: 2rem 2.25rem; margin-top: 2.5rem; }
.ox-inv-cta__heading { font-family: "Space Grotesk", "Inter", sans-serif; font-size: 1.25rem; font-weight: 700; margin: 0 0 0.4rem; }
.ox-inv-cta__text { font-size: 0.9375rem; color: #c9d1cd; margin: 0; }
.ox-inv-cta__btn { background: #fff; color: var(--brand-navy); font-size: 0.875rem; font-weight: 700; padding: 0.7rem 1.4rem; border-radius: var(--radius-pill); white-space: nowrap; }
.ox-inv-cta__btn:hover { background: #f0f0f0; color: var(--brand-navy); }

/* ---------- Careers page ---------- */
.ox-careers__hero { padding: 4rem 0 2.5rem; }
.ox-careers__h1 { font-family: "Space Grotesk", "Inter", sans-serif; font-size: 2.5rem; line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; color: var(--color-heading); margin: 0 0 1.25rem; max-width: 30rem; }
.ox-jobs-list { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0 3rem; }
.ox-job-row { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.5rem; background: var(--color-surface); }
.ox-job-row__title { font-family: "Space Grotesk", "Inter", sans-serif; font-size: 1.15rem; font-weight: 700; margin: 0 0 0.5rem; }
.ox-job-row__meta { display: flex; flex-wrap: wrap; gap: 0.4rem 1rem; font-size: 0.875rem; color: var(--color-muted); }
.ox-job-row__apply { flex-shrink: 0; }

.ox-careers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2.5rem 0; }
.ox-careers-card { border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.75rem; background: var(--color-surface); }
.ox-careers-card h3 { font-family: "Space Grotesk", "Inter", sans-serif; font-size: 1.05rem; font-weight: 700; margin: 0 0 1.1rem; }
.ox-careers-card__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.ox-careers-card__list li { position: relative; padding-left: 1.4rem; font-size: 0.9375rem; color: var(--color-text); line-height: 1.5; }
.ox-careers-card__list li::before { content: "•"; position: absolute; left: 0; color: var(--color-muted); }
.ox-careers-card__list--check li::before { content: "✓"; color: var(--brand-green); font-weight: 700; }
.ox-careers-cta { margin-bottom: 3rem; }

.ox-job-modal { position: fixed; inset: 0; z-index: 1000; display: none; align-items: flex-start; justify-content: center; overflow-y: auto; padding: 4vh 1rem; }
.ox-job-modal.is-open { display: flex; }
.ox-job-modal__overlay { position: fixed; inset: 0; background: rgba(10, 15, 13, 0.55); z-index: 0; }
.ox-job-modal__panel { position: relative; z-index: 1; margin: 0; max-width: 1150px; width: 100%; max-height: 92vh; overflow-y: auto; background: var(--color-surface); border-radius: var(--radius-md); box-shadow: var(--shadow-md); padding: 2.5rem; }
.ox-job-modal__close { position: absolute; top: 1.25rem; right: 1.25rem; width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--color-section-alt); color: var(--color-text); border: none; cursor: pointer; z-index: 2; }
.ox-job-modal__close:hover { background: var(--color-border); }
.ox-job-modal__body { display: grid; grid-template-columns: 1.3fr 1fr; gap: 0.5em; align-items: start; }
.ox-job-modal__title { font-family: "Space Grotesk", "Inter", sans-serif; font-size: 1.75rem; font-weight: 700; margin: 0 0 0.5rem; padding-right: 2.5rem; grid-column: 1 / -1; }
.ox-job-modal__meta { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; font-size: 0.9375rem; color: var(--color-muted); }
.ox-job-modal__meta span:not(:last-child)::after { content: "·"; margin-left: 0.5rem; color: var(--color-border); }
.ox-job-modal__divider { grid-column: 1 / -1; border: none; border-top: 1px solid var(--color-border); margin: 1rem 0; }
.ox-job-modal__col-jd { grid-column: 1; }
.ox-job-modal__col-form { grid-column: 2; }
.ox-job-modal__jd { margin-top: 0; font-size: 0.9375rem; line-height: 1.7; color: var(--color-text); }
.ox-job-modal__jd p:first-child { margin-top: 0; }
.ox-job-modal__jd h2, .ox-job-modal__jd h3 { font-size: 1.05rem; margin: 1.25rem 0 0.5rem; }
.ox-job-modal__jd h2:first-child, .ox-job-modal__jd h3:first-child { margin-top: 0; }
.ox-job-modal__jd ul { padding-left: 1.2rem; }

.ox-job-modal__apply-card { border: 1px solid var(--color-border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: 1.75rem; position: sticky; top: 0; }
.ox-job-modal__apply-title { font-family: "Space Grotesk", "Inter", sans-serif; font-size: 1.1rem; font-weight: 700; margin: 0 0 1.25rem; }
.ox-job-modal__form form.wpcf7-form { display: flex; flex-direction: column; }
.ox-job-modal__form form p { margin: 0 0 1rem; }
.ox-job-modal__form label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--color-text); margin-bottom: 0.35rem; }
.ox-job-modal__form .wpcf7-form-control-wrap { display: block; line-height: 0; }
.ox-job-modal__form input[type="text"],
.ox-job-modal__form input[type="email"],
.ox-job-modal__form input[type="tel"] {
    width: 100%; border: 1px solid var(--color-border); border-radius: var(--radius-sm);
    padding: 0.65rem 0.85rem; font: inherit; font-size: 0.95rem; color: var(--color-text);
    background: var(--color-bg); transition: border-color var(--dur-fast) var(--ease-standard);
}
.ox-job-modal__form input[type="text"]:focus,
.ox-job-modal__form input[type="email"]:focus,
.ox-job-modal__form input[type="tel"]:focus { outline: none; border-color: var(--brand-green); }
.ox-job-modal__form .wpcf7-form-control-wrap:has(input[type="file"]) {
    display: block; border: 1.5px dashed var(--color-border); border-radius: var(--radius-sm);
    padding: 1.25rem; text-align: center; transition: border-color var(--dur-fast) var(--ease-standard);
}
.ox-job-modal__form .wpcf7-form-control-wrap:has(input[type="file"]):hover { border-color: var(--brand-green); }
.ox-job-modal__form input[type="file"] {
    width: 100%; font-size: 0.875rem; color: var(--color-muted); cursor: pointer;
}
.ox-job-modal__form input[type="file"]::file-selector-button {
    background: none; border: none; padding: 0; margin-right: 0.35rem;
    color: var(--brand-green); font-weight: 700; font-size: 0.875rem; cursor: pointer;
}
.ox-job-modal__form .ox-cf7-hint { display: block; font-size: 0.78rem; color: var(--color-muted); margin-top: 0.3rem; }
.ox-job-modal__form input[type="submit"] {
    width: 100%; margin-top: 0.5rem; background: var(--brand-green); color: #fff; border: none;
    border-radius: var(--radius-pill); padding: 0.85rem 1.5rem; font-weight: 700; font-size: 0.95rem;
    cursor: pointer; transition: background var(--dur-fast) var(--ease-standard);
}
.ox-job-modal__form input[type="submit"]:hover { background: var(--brand-green-dark); }
.ox-job-modal__form input[type="submit"]:disabled { opacity: 0.6; cursor: not-allowed; }
.ox-job-modal__form .ox-cf7-note { display: block; font-size: 0.78rem; color: var(--color-muted); margin-top: 0.75rem; text-align: center; }
.ox-job-modal__form br { display: none; }
.ox-job-modal__form .wpcf7-spinner { display: none; margin: 8px auto 0; }
.ox-job-modal__form form.submitting .wpcf7-spinner { visibility: visible; display: block; }
.ox-job-modal__form .wpcf7-not-valid-tip { color: #b3261e; font-size: 0.8125rem; margin: 10px 0 5px; }
.ox-job-modal__form .wpcf7-response-output { border-radius: var(--radius-sm); font-size: 0.875rem; margin: 0 0 10px !important; padding: 0.75rem 1rem; border: none; }
.ox-job-modal__form form.sent .wpcf7-response-output { background: var(--brand-green); color: #fff; }
.ox-job-modal__form form.invalid .wpcf7-response-output,
.ox-job-modal__form form.failed .wpcf7-response-output,
.ox-job-modal__form form.spam .wpcf7-response-output { background: #fdecea; color: #b3261e; }

body.ox-modal-open { overflow: hidden; }

.ox-toast {
    position: fixed; top: 50px; left: 50%; transform: translateX(-50%) translateY(-12px);
    z-index: 2000; background: #2d8a4e; color: #fff; font-size: 0.9375rem; font-weight: 600;
    padding: 0.9rem 1.75rem; border-radius: var(--radius-pill); box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity var(--dur-med) var(--ease-standard), transform var(--dur-med) var(--ease-standard), visibility var(--dur-med);
    max-width: calc(100% - 2rem); text-align: center;
}
.ox-toast.is-visible { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

@media (max-width: 720px) {
    .ox-careers-grid { grid-template-columns: 1fr; }
    .ox-job-row { flex-direction: column; align-items: flex-start; }
    .ox-job-row__apply { width: 100%; justify-content: center; }
    .ox-job-modal__body { grid-template-columns: 1fr; }
    .ox-job-modal__col-jd, .ox-job-modal__col-form { grid-column: 1; }
    .ox-job-modal__apply-card { position: static; margin-top: 1.75rem; }
}

/* ---------- Contacts page ---------- */
.ox-contacts { padding: 4rem 0 5rem; }
.ox-contacts__grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 1.5rem; margin-top: 2.5rem; align-items: start; }

.ox-contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.ox-contact-card { background: var(--color-section-alt); border-radius: var(--radius-md); padding: 1.5rem; }
.ox-contact-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border-radius: 50%; background: #dcefe0; color: var(--brand-green-deep); margin-bottom: 1rem; }
.ox-contact-card__title { font-size: 1rem; font-weight: 700; color: var(--color-heading); margin: 0 0 0.35rem; }
.ox-contact-card__value { font-size: 0.9375rem; color: var(--color-muted); margin: 0; }
.ox-contact-card__value a { color: var(--color-muted); }
.ox-contact-card__value a:hover { color: var(--brand-green); }

.ox-contact-panel-wrap { background: var(--color-section-alt); border-radius: var(--radius-md); padding: 0.5rem; }
.ox-contact-tabs { display: flex; background: var(--color-border); border-radius: var(--radius-pill); padding: 0.3rem; gap: 0.25rem; margin-bottom: 1.5rem; }
.ox-contact-tab { flex: 1; border: none; background: transparent; color: var(--color-muted); font-size: 0.9375rem; font-weight: 600; padding: 0.6rem 1rem; border-radius: var(--radius-pill); cursor: pointer; transition: background var(--dur-fast) var(--ease-standard), color var(--dur-fast) var(--ease-standard); }
.ox-contact-tab.is-active { background: var(--color-surface); color: var(--color-heading); box-shadow: var(--shadow-sm); }

.ox-contact-panel { display: none; padding: 0 1.25rem 0; opacity: 0; transform: translateY(6px); transition: opacity var(--dur-med) var(--ease-standard), transform var(--dur-med) var(--ease-standard); }
.ox-contact-panel.is-active { display: block; opacity: 1; transform: translateY(0); }
.ox-contact-panel__eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-muted); margin: 0 0 0.5rem; }
.ox-contact-panel__heading { font-family: "Space Grotesk", "Inter", sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--color-heading); margin: 0 0 0.5rem; }
.ox-contact-panel__description { font-size: 0.9375rem; color: var(--color-muted); margin: 0 0 1.5rem; }
.ox-contact-panel__footnote { text-align: center; font-size: 0.875rem; color: var(--color-muted); margin: 0.625rem 1.25rem 1rem; }

.ox-contact-panel__form input[type="text"],
.ox-contact-panel__form input[type="email"],
.ox-contact-panel__form input[type="tel"],
.ox-contact-panel__form textarea {
    width: 100%; border: 1px solid var(--color-border); border-radius: var(--radius-sm); background: var(--color-surface);
    color: var(--color-text); font-size: 0.9375rem; padding: 0.9rem 1rem; font-family: inherit; box-sizing: border-box;
}
.ox-contact-panel__form textarea { min-height: 6.5rem; resize: vertical; }
.ox-contact-panel__form .ox-contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ox-contact-panel__form input[type="submit"] {
    width: 100%; background: var(--brand-navy); color: #fff; border: none; border-radius: var(--radius-sm);
    font-size: 0.9375rem; font-weight: 700; padding: 0.9rem; cursor: pointer;
}
.ox-contact-panel__form input[type="submit"]:hover { background: #000; }
.ox-contact-panel__form input[type="submit"]:disabled { opacity: 0.6; cursor: not-allowed; }
.ox-contact-panel__form .wpcf7-not-valid-tip { color: #b3261e; font-size: 0.8125rem; margin: 10px 0 5px; }
.ox-contact-panel__form .wpcf7-response-output { border-radius: var(--radius-sm); font-size: 0.875rem; margin: 0 0 10px !important; padding: 0.75rem 1rem; border: none; }
.ox-contact-panel__form form.sent .wpcf7-response-output { background: var(--brand-green); color: #fff; }
.ox-contact-panel__form form.invalid .wpcf7-response-output,
.ox-contact-panel__form form.failed .wpcf7-response-output,
.ox-contact-panel__form form.spam .wpcf7-response-output { background: #fdecea; color: #b3261e; }

.ox-contact-panel__form form.wpcf7-form { display: flex; flex-direction: column; gap: 0.85rem; }
.ox-contact-panel__form .ox-cf7-field { margin: 0; }
.ox-contact-panel__form form p { margin: 0; }
.ox-contact-panel__form .ox-cf7-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ox-contact-panel__form .wpcf7-form-control-wrap { display: block; line-height: 0; }
.ox-contact-panel__form input[type="text"],
.ox-contact-panel__form input[type="email"],
.ox-contact-panel__form input[type="tel"] { line-height: 1.2; height: auto; }
.ox-contact-panel__form br { display: none; }
.ox-contact-panel__form .wpcf7-spinner { display: none; margin: 8px auto 0; }
.ox-contact-panel__form form.submitting .wpcf7-spinner { visibility: visible; display: block; }
.ox-contact-panel__form .ox-cf7-button { text-align: center; }

/* ---------- Tariffs page ---------- */
.ox-tariffs { padding: 4rem 0 5rem; }
.ox-tariff-table { width: 100%; border-collapse: collapse; text-align: left; margin: 2.5rem 0 2rem; }
.ox-tariff-table th { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-muted); font-weight: 600; padding: 0 0 0.75rem; border-bottom: 1px solid var(--color-border); }
.ox-tariff-table td { font-size: 0.9375rem; color: var(--color-text); padding: 1.1rem 0; border-bottom: 1px solid var(--color-border); vertical-align: top; }
.ox-tariff-table__no { width: 3rem; color: var(--color-muted); }
.ox-tariff-table__commission { text-align: right; font-weight: 700; color: var(--color-heading); white-space: nowrap; }
.ox-tariff-table__note { display: block; font-size: 0.8125rem; font-weight: 400; color: var(--color-muted); margin-top: 0.2rem; }

.ox-tariffs__notice { font-size: 0.875rem; color: var(--color-muted); max-width: 44rem; margin: 0 0 1.5rem; line-height: 1.6; }
.ox-tariffs__notice-link { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--brand-green); font-weight: 600; margin-top: 0.3rem; }
.ox-tariffs__notice-link:hover { color: var(--brand-green-dark); }
.ox-tariffs__disclaimer { font-size: 0.8125rem; color: var(--color-muted); max-width: 44rem; line-height: 1.6; margin: 0; }

/* ---------- Procurement page ---------- */
.ox-procurement { padding: 4rem 0 0; }
.ox-procurement__section { padding: 2.5rem 0 4rem; }
.ox-procurement__services { padding: 3.5rem 0; }

.ox-tender-table { width: 100%; border-collapse: collapse; text-align: left; margin: 2rem 0 1.5rem; }
.ox-tender-table th { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-muted); font-weight: 600; padding: 0 0 0.75rem; border-bottom: 1px solid var(--color-border); }
.ox-tender-table td { font-size: 0.9375rem; color: var(--color-text); padding: 1.1rem 0; border-bottom: 1px solid var(--color-border); vertical-align: middle; }

.ox-status-pill { display: inline-block; font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.7rem; border-radius: var(--radius-pill); }
.ox-status-pill--open { background: #dcefe0; color: var(--brand-green-deep); }
.ox-status-pill--closed { background: var(--color-border); color: var(--color-muted); }

.ox-service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.ox-service-card { background: var(--color-surface); border-radius: var(--radius-md); padding: 1.5rem; }
.ox-service-card__title { font-size: 1rem; font-weight: 700; color: var(--color-heading); margin: 0 0 0.5rem; }
.ox-service-card__text { font-size: 0.875rem; line-height: 1.55; color: var(--color-muted); margin: 0; }

/* ---------- Bank Integration page ---------- */
.ox-bank-integration { padding: 4rem 0 0; }
.ox-req-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2.5rem; padding-bottom: 4rem; }
.ox-req-card { background: var(--color-section-alt); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.75rem; }
.ox-req-card__eyebrow { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; color: var(--color-muted); margin-bottom: 0.6rem; }
.ox-req-card__title { font-size: 1.125rem; font-weight: 700; color: var(--color-heading); margin: 0 0 0.5rem; }
.ox-req-card__text { font-size: 0.9375rem; line-height: 1.55; color: var(--color-muted); margin: 0; }

.ox-bank-integration__partners { padding: 3.5rem 0; text-align: center; }
.ox-partners__label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; color: var(--color-muted); margin: 0 0 1.5rem; }
.ox-partners__logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 2rem; }
.ox-partner-logo { background: transparent; border: none; border-radius: 0; padding: 0; display: flex; align-items: center; justify-content: center; min-width: 10rem; }
.ox-partner-logo img { max-height: 3.5rem; width: auto; }
.ox-partner-logo span { font-size: 0.9375rem; font-weight: 700; color: var(--color-heading); }
.ox-partners__cta { display: inline-flex; }
.ox-portal-btn { flex: none; }

/* ---------- Language switcher ---------- */
.ox-lang-switcher { position: relative; }
.ox-lang-switcher__trigger {
    display: flex; align-items: center; gap: 0.4rem; background: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: var(--radius-pill); padding: 0.5rem 0.9rem; font-size: 0.875rem; font-weight: 500; color: var(--color-text); cursor: pointer;
}
.ox-lang-switcher__trigger svg:last-child { transition: transform var(--dur-fast) var(--ease-standard); }
.ox-lang-switcher:hover .ox-lang-switcher__trigger svg:last-child,
.ox-lang-switcher.is-open .ox-lang-switcher__trigger svg:last-child { transform: rotate(180deg); }
.ox-lang-switcher__menu {
    position: absolute; top: calc(100% + 0.5rem); left: 0; min-width: 140px; background: var(--color-surface);
    border: 1px solid var(--color-border); border-radius: var(--radius-sm); box-shadow: var(--shadow-md);
    list-style: none; margin: 0; padding: 0.4rem; opacity: 0; visibility: hidden; transform: translateY(-4px);
    transition: opacity var(--dur-fast) var(--ease-standard), transform var(--dur-fast) var(--ease-standard), visibility var(--dur-fast);
    z-index: 20;
}
.ox-lang-switcher:hover .ox-lang-switcher__menu,
.ox-lang-switcher.is-open .ox-lang-switcher__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.ox-lang-switcher__menu a { display: block; padding: 0.5rem 0.7rem; border-radius: 6px; font-size: 0.875rem; color: var(--color-text); }
.ox-lang-switcher__menu a:hover { background: var(--color-border); color: var(--brand-green); }
.ox-lang-switcher__menu a.is-active { color: var(--brand-green); font-weight: 600; }
.ox-lang-switcher__menu { width: max-content; white-space: nowrap; }
[data-font-switcher] .ox-lang-switcher__menu { min-width: 0; }
[data-font-switcher] .ox-lang-switcher__trigger { padding: 0.5rem 0.85rem; gap: 0.35rem; }
[data-font-switcher] .ox-lang-switcher__menu { padding: 0.35rem; }
[data-font-switcher] .ox-lang-switcher__menu a { padding: 0.45rem 0.65rem; }

/* ---------- 404 page ---------- */
.ox-404 { padding: 6rem 0 8rem; text-align: center; }
.ox-404__inner { max-width: 32rem; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.ox-404__code { font-family: "Space Grotesk", "Inter", sans-serif; font-size: 4rem; font-weight: 700; color: var(--brand-green); line-height: 1; }
.ox-404__title { font-size: 2rem; font-weight: 700; color: var(--color-heading); margin: 0; }
.ox-404__text { font-size: 1rem; color: var(--color-muted); margin: 0 0 0.5rem; }
