/*
 * Solve Employment - main.css
 *
 * Rebuilt to match the Figma "V2" design 1:1 (file FJcav2uByNShXhvV7owmH4).
 * Brand tokens, fonts, and section layouts are taken from the Figma variables
 * and section screenshots. See docs/figma-v2-spec.md for the verbatim copy.
 */

/* ---------- Fonts (bundled, self-hosted) ---------- */
@font-face {
    font-family: "Plus Jakarta Sans";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/PlusJakartaSans-Regular.woff2") format("woff2");
}
@font-face {
    font-family: "Plus Jakarta Sans";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/PlusJakartaSans-SemiBold.woff2") format("woff2");
}
@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/OpenSans-Regular.woff2") format("woff2");
}
@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/OpenSans-SemiBold.woff2") format("woff2");
}
@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/OpenSans-Bold.woff2") format("woff2");
}

/* ---------- Tokens ---------- */
:root {
    --c-yellow: #ffcb1d;
    --c-pink: #ec1a64;
    --c-blue: #2397cb;
    --c-purple: #8e279b;
    --c-gold: #c79400;            /* darker yellow for text/icons on light bg */

    --c-ink: #212121;             /* neutral-900 */
    --c-ink-grey: #424242;        /* neutral-800 */
    --c-body: #616161;            /* neutral-700 */
    --c-muted: #757575;           /* neutral-600 */
    --c-faint: #9e9e9e;           /* neutral-500 */
    --c-50: #fefefe;
    --c-100: #f5f5f5;
    --c-white: #ffffff;

    --font-display: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-body: "Open Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

    --radius: 16px;
    --radius-lg: 20px;
    --shadow-soft: 0 6px 24px rgba(0, 0, 0, 0.06);
    --max-width: 1184px;
    --section-pad: clamp(56px, 7vw, 64px);
}

* { box-sizing: border-box; }
/* Guard against any stray horizontal scroll on small screens. `clip` (not
   `hidden`) avoids creating a scroll container, so the sticky header and the
   CTA portrait's vertical bleed keep working. */
html, body { margin: 0; padding: 0; overflow-x: clip; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--c-ink);
    background: var(--c-50);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-ink); text-decoration: none; }
a:hover { color: var(--c-pink); }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.screen-reader-text {
    position: absolute;
    width: 1px; height: 1px;
    margin: -1px; padding: 0; border: 0;
    overflow: hidden; clip: rect(0 0 0 0);
}

/* ---------- Utilities ---------- */
.text-yellow { color: var(--c-yellow); }
.text-pink { color: var(--c-pink); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 9999px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.05s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, opacity 0.15s ease;
    text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.btn__icon { flex: 0 0 auto; }
.btn--lg { padding: 16px 34px; font-size: 17px; }
.btn--yellow { background: var(--c-yellow); color: var(--c-ink); }
.btn--yellow:hover { background: #ffd84f; color: var(--c-ink); }
.btn--blue { background: var(--c-blue); color: var(--c-white); }
.btn--blue:hover { background: #1f86b6; color: var(--c-white); }
.btn--white { background: var(--c-white); color: var(--c-ink); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06); }
.btn--white:hover { background: #fff; color: var(--c-ink); }
.btn--pink { background: var(--c-pink); color: var(--c-white); }
.btn--pink:hover { background: #d4145a; color: var(--c-white); }
/* Keep disabled placeholder buttons fully opaque so the blue does not turn
   green when composited over the yellow footer; non-interactivity is conveyed
   by the cursor and the disabled form fields. */
.btn[disabled] { cursor: not-allowed; }
.btn[disabled]:hover { transform: none; box-shadow: none; }

/* ---------- Eyebrow pill ---------- */
.eyebrow {
    display: inline-block;
    background: var(--c-yellow);
    color: #424242;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 9999px;
    margin-bottom: 22px;
}
.eyebrow--blue { background: var(--c-blue); color: var(--c-white); }

/* ---------- Section base ---------- */
.section { padding: var(--section-pad) 0; }
.section__head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section__head--addons { margin-top: clamp(56px, 7vw, 88px); }
.section__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(30px, 4.4vw, 45px);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 20px;
    color: var(--c-ink);
}
.section__title--sm { font-size: clamp(26px, 3.2vw, 34px); }
.section__lede {
    color: var(--c-muted);
    font-size: 18px;
    line-height: 1.5;
    max-width: 680px;
    margin: 0 auto;
}

/* ---------- Header ---------- */
.site-header {
    background: var(--c-white);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #eee;
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.site-header__brand { display: inline-flex; align-items: center; }
.site-header__brand:hover { color: inherit; }
.site-header__logo { display: block; height: 48px; width: auto; }
.site-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 32px;
}
.site-nav__list a {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: #9e9e9e;
    padding-bottom: 6px;
}
.site-nav__list a:hover { color: #424242; }
.site-nav__list a.is-current {
    color: #424242;
    font-weight: 700;
    border-bottom: 2.5px solid var(--c-yellow);
}
.site-header__cta { display: flex; gap: 10px; }
.site-header__cta .btn {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.15px;
    padding: 9px 24px;
}

/* Hamburger toggle — hidden on desktop, shown at the mobile breakpoint */
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--c-ink);
    cursor: pointer;
}
.nav-toggle__bars { position: relative; display: block; width: 24px; height: 16px; }
.nav-toggle__bars span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 7px; }
.nav-toggle__bars span:nth-child(3) { top: 14px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

/* ---------- Brand wordmark (placeholder for the real logo asset) ---------- */
.brand-logo { display: inline-flex; }
.brand-logo__mark { display: inline-flex; flex-direction: column; line-height: 1; }
.brand-logo__word {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: -0.02em;
    display: inline-flex;
}
.brand-logo__letter { display: inline-block; }
.brand-logo__letter--s { color: var(--c-yellow); }
.brand-logo__letter--o { color: var(--c-pink); }
.brand-logo__letter--l { color: var(--c-blue); }
.brand-logo__letter--v { color: var(--c-purple); }
.brand-logo__letter--e { color: var(--c-blue); }
.brand-logo__sub {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.7rem;
    color: #424242;
    margin-top: 3px;
}

/* ---------- Hero ---------- */
.section--hero {
    background: var(--c-yellow);
    padding: clamp(48px, 6vw, 80px) 0 0;
    overflow: hidden;
}
.hero { text-align: center; }
.hero__content { max-width: 760px; margin: 0 auto; }
.hero__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(46px, 7vw, 74px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin: 0 0 22px;
}
.hero__title-dark { color: var(--c-ink); display: block; }
.hero__title-pink { color: var(--c-pink); display: block; }
.hero__lede {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(17px, 2vw, 20px);
    color: var(--c-ink-grey);
    max-width: 620px;
    margin: 0 auto 8px;
    
}
.hero__subline {
    font-size: 15px;
    color: #4a4a4a;
    max-width: 640px;
    margin: 0 auto 30px;
}
.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
/* V2 node 28:15 — Request a Quote = white + arrow, View Services = blue (no icon) */
.hero__actions .btn { font-family: var(--font-display); font-weight: 700; }
.hero__actions .btn--white { box-shadow: 0 2px 1px rgba(0, 0, 0, 0.25); }
.hero__actions .btn--blue { box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25); }
.hero__photo {
    margin-top: clamp(40px, 5vw, 64px);
    line-height: 0;
}
.hero__photo img { width: 100%; height: auto; object-fit: cover; }

/* ---------- Trusted ---------- */
.section--trusted {
    background: var(--c-white);
    padding: clamp(40px, 5vw, 64px) 0;
}
.trusted__title {
    text-align: center;
    color: var(--c-ink);
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.4;
    margin: 0 0 32px;
}
.trusted__logos {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px 34px;
}
.trusted__logo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.trusted__logo img {
    height: auto;
    display: block;
}

/* ---------- The Problem ---------- */
.section--problem { background: var(--c-100); }
.problem__grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}
.pcard {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    display: flex;
    flex-direction: column;
}
.pcard__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--box);
    color: var(--accent);
    margin-bottom: 18px;
}
.pcard h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
    margin: 0 0 10px;
    color: var(--c-ink);
}
.pcard p { margin: 0; color: var(--c-body); font-size: 14px; line-height: 20px; }
.pcard__rule {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 22px 0 16px;
    margin-top: 28px;
}
/* Higher specificity so these win over the generic `.pcard p` rule. */
.pcard p.pcard__stat {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: var(--accent);
    margin: 0 0 4px;
}
.pcard p.pcard__sub { margin: 0; color: #777; font-size: 12px; line-height: 16px; }
.pcard--pink   { --accent: var(--c-pink);   --soft: rgba(236, 26, 100, 0.06); --line: rgba(236, 26, 100, 0.22); --box: rgba(236, 26, 100, 0.12); }
.pcard--purple { --accent: var(--c-purple); --soft: rgba(142, 39, 155, 0.06); --line: rgba(142, 39, 155, 0.22); --box: rgba(142, 39, 155, 0.12); }
.pcard--blue   { --accent: var(--c-blue);   --soft: rgba(35, 151, 203, 0.06); --line: rgba(35, 151, 203, 0.22); --box: rgba(35, 151, 203, 0.12); }

/* ---------- Core services ---------- */
.section--core { background: var(--c-50); padding: clamp(64px, 9.4vw, 120px) 0; }
.core__grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
}
.scard {
    position: relative;
    background: var(--c-white);
    border: 1px solid var(--line);
    border-top: 6px solid var(--accent);
    border-radius: var(--radius);
    padding: 26px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
}
.scard__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}
.scard__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--box);
    color: var(--accent);
    flex: 0 0 auto;
}
.scard__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent);
    color: var(--c-white);
    font-size: 13px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 9999px;
    white-space: nowrap;
}
.scard__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.25;
    margin: 0 0 12px;
    color: var(--c-ink);
}
.scard__desc { color: #666; font-size: 14px; line-height: 1.65; margin: 0 0 22px; }
.scard__list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.scard__list li {
    color: #555;
    font-size: 14px;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.scard__list li::before {
    content: "\2192";
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}
.scard__pricebox {
    margin-top: auto;
    background: var(--pricebox);
    border-radius: 14px;
    padding: 18px 20px;
}
.scard__price-main {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--accent);
    margin: 0;
}
.scard__price-unit { color: var(--c-muted); font-size: 14px; margin: 2px 0 0; }
.scard__price-rule { border: 0; border-top: 1px dashed var(--line); margin: 12px 0; }
.scard__price-market { color: var(--c-faint); font-size: 13px; margin: 0; }
.scard--pink   { --accent: var(--c-pink);   --box: rgba(236, 26, 100, 0.10); --line: rgba(236, 26, 100, 0.20); --pricebox: rgba(236, 26, 100, 0.07); }
.scard--purple { --accent: var(--c-purple); --box: rgba(142, 39, 155, 0.10); --line: rgba(142, 39, 155, 0.20); --pricebox: rgba(142, 39, 155, 0.07); }
.scard--blue   { --accent: var(--c-blue);   --box: rgba(35, 151, 203, 0.10); --line: rgba(35, 151, 203, 0.20); --pricebox: rgba(35, 151, 203, 0.07); }

/* ---------- Add-on services ---------- */
.addon-divider {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: clamp(56px, 7vw, 88px) 0 48px;
}
.addon-divider::before,
.addon-divider::after {
    content: "";
    flex: 1;
    height: 2px;
    background: var(--c-yellow);
}
.addon-divider .eyebrow { margin-bottom: 0; font-size: 20px; font-weight: 700; padding: 10px 22px; }

.addon__grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
}
.acard {
    background: var(--soft);
    border: 1px solid var(--line);
    border-top: 6px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
}
.acard__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--box);
    color: var(--accent);
    margin-bottom: 16px;
}
.acard__tag {
    align-self: flex-start;
    background: var(--tag);
    color: var(--tagtext);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 9999px;
    margin-bottom: 14px;
}
.acard__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0 0 10px;
    color: var(--c-ink);
}
.acard__desc { color: var(--c-body); font-size: 14px; margin: 0 0 18px; }
.acard__list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.acard__list li {
    color: #555;
    font-size: 14px;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.acard__list li::before {
    content: "\2192";
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}
.acard__list li.is-strong { font-weight: 700; color: var(--c-ink); }
.acard__pricebox {
    margin-top: auto;
    background: var(--pricebox);
    border-radius: 14px;
    padding: 18px 20px;
}
.acard__price-main { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--accent); margin: 0; }
.acard__price-main--sm { font-size: 1.1rem; line-height: 1.25; }
.acard__price-unit { color: var(--c-muted); font-size: 13px; margin: 2px 0 0; }
.acard__price-rule { border: 0; border-top: 1px dashed var(--line); margin: 10px 0; }
.acard__price-market { color: var(--c-faint); font-size: 12px; margin: 0; }
.acard__pricebox--dual { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; background: transparent; padding: 0; }
.acard__pricecol { background: var(--pricebox); border-radius: 14px; padding: 14px 16px; }
.acard__price-label { text-transform: uppercase; letter-spacing: 0.04em; font-size: 12px; font-weight: 700; color: var(--accent); margin: 0 0 6px; }
.acard--yellow { --accent: var(--c-gold);   --soft: rgba(247, 203, 25, 0.10); --line: rgba(247, 203, 25, 0.45); --box: rgba(247, 203, 25, 0.22); --tag: rgba(247, 203, 25, 0.30); --tagtext: #8a6d00; --pricebox: rgba(247, 203, 25, 0.18); }
.acard--pink   { --accent: var(--c-pink);   --soft: rgba(236, 26, 100, 0.05); --line: rgba(236, 26, 100, 0.22); --box: rgba(236, 26, 100, 0.12); --tag: rgba(236, 26, 100, 0.12); --tagtext: var(--c-pink);   --pricebox: rgba(236, 26, 100, 0.07); }
.acard--purple { --accent: var(--c-purple); --soft: rgba(142, 39, 155, 0.05); --line: rgba(142, 39, 155, 0.22); --box: rgba(142, 39, 155, 0.12); --tag: rgba(142, 39, 155, 0.12); --tagtext: var(--c-purple); --pricebox: rgba(142, 39, 155, 0.07); }

/* ---------- CTA (V2 node 235:8213 — pink band, white text, yellow button,
   portrait bleeds above the band on the right). Class name kept for continuity. ---------- */
.section--cta-yellow {
    background: var(--c-pink);
    padding: clamp(40px, 5vw, 52px) 0;
    /* Top gap so the portrait (which bleeds above the band) clears the
       "Partner with us" cards in the section above. */
    margin-top: clamp(96px, 11vw, 150px);
    overflow: visible;
    position: relative;
}
.cta-yellow { position: relative; min-height: 150px; }
.cta-yellow__content { max-width: 620px; }
.cta-yellow h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
    color: #fefefe;
    margin: 0 0 8px;
}
.cta-yellow p {
    color: #fefefe;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    max-width: 600px;
    margin: 0 0 24px;
}
.cta-yellow .btn { font-family: var(--font-display); font-weight: 700; }
.cta-yellow__media {
    position: absolute;
    right: 0;
    bottom: calc(-1 * clamp(40px, 5vw, 52px));
    width: clamp(220px, 25%, 280px);
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    pointer-events: none;
}
.cta-yellow__portrait { width: 100%; height: auto; max-height: 460px; object-fit: contain; object-position: bottom; }

/* ---------- How it works (homepage) ---------- */
.section--how { background: var(--c-50); }
.how__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* No column gap so each step's colored border-top touches the next,
       forming one continuous multicolour line across all four steps (V2 54:3685).
       Horizontal breathing room comes from the content's padding-right instead. */
    column-gap: 0;
    row-gap: 32px;
}
.how__step { display: flex; flex-direction: column; align-items: flex-start; }
.how__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    border: 3px solid #fff;
    box-shadow: 0 4px 3px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}
.how__label {
    display: block;
    width: 100%;
    border-top: 3px solid var(--accent);
    padding-top: 12px;
    margin-bottom: 12px;
    color: var(--accent-text, var(--accent));
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.25px;
}
.how__step h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
    margin: 0 0 8px;
    padding-right: 32px;
    color: #1a1a1a;
}
.how__step p { margin: 0; color: #666; font-size: 14px; line-height: 20px; padding-right: 32px; }
.how__step--yellow { --accent: var(--c-yellow); --accent-text: #1a1a1a; }
.how__step--pink   { --accent: var(--c-pink); }
.how__step--blue   { --accent: var(--c-blue); }
.how__step--purple { --accent: var(--c-purple); }

/* how__step-num is used by the PINTAR partner page (kept for compatibility) */
.how__step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--c-yellow);
    color: var(--c-ink);
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 12px;
}

/* ---------- Why us / Partner with us ---------- */
.section--why { background: var(--c-50); }
.why__grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr 1fr;
}
.wcard {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
}
.wcard__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--box);
    color: var(--accent);
    margin-bottom: 18px;
}
.wcard h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0 0 10px;
    color: var(--c-ink);
}
.wcard p { margin: 0 0 20px; color: var(--c-body); font-size: 15px; }
.wcard__bar { display: block; width: 32px; height: 3px; border-radius: 2px; background: var(--accent); }
.wcard--pink   { --accent: var(--c-pink);   --soft: rgba(236, 26, 100, 0.06); --line: rgba(236, 26, 100, 0.20); --box: rgba(236, 26, 100, 0.12); }
.wcard--yellow { --accent: var(--c-gold);   --soft: rgba(247, 203, 25, 0.12); --line: rgba(247, 203, 25, 0.40); --box: rgba(247, 203, 25, 0.22); }
.wcard--blue   { --accent: var(--c-blue);   --soft: rgba(35, 151, 203, 0.06); --line: rgba(35, 151, 203, 0.20); --box: rgba(35, 151, 203, 0.12); }
.wcard--purple { --accent: var(--c-purple); --soft: rgba(142, 39, 155, 0.06); --line: rgba(142, 39, 155, 0.20); --box: rgba(142, 39, 155, 0.12); }

/* ---------- Partner CTA (bottom band) ---------- */
.section--partner-cta { background: var(--c-100); text-align: center; }
.partner-cta { max-width: 760px; margin: 0 auto; }
.partner-cta h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(28px, 3.6vw, 42px);
    line-height: 1.15;
    margin: 0 0 28px;
    color: var(--c-ink);
}

/* ---------- Footer (V2 node 251:9500) ---------- */
.site-footer {
    background: var(--c-yellow);
    color: #424242;
    padding: clamp(40px, 5vw, 50px) 0 24px;
}
.site-footer__inner {
    display: flex;
    align-items: stretch;
    gap: 40px;
}
.site-footer__offices {
    flex: 0 0 264px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}
.office__label { font-family: var(--font-body); font-weight: 700; color: #424242; margin: 0 0 4px; font-size: 16px; line-height: 1.4; }
.office__address { margin: 0; color: #424242; font-size: 16px; line-height: 1.4; max-width: 264px; }

/* Request-a-quote card (lighter-yellow surface, #fff59d) */
.footer-quote {
    flex: 1 1 auto;
    background: #fff59d;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-quote__title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
    color: #424242;
    margin: 0;
}
.footer-quote__notice { margin: 0; padding: 10px 14px; border-radius: 10px; font-family: var(--font-body); font-size: 14px; }
.footer-quote__notice--ok { background: rgba(35, 151, 203, 0.14); color: #155a78; }
.footer-quote__notice--err { background: rgba(236, 26, 100, 0.14); color: #a01049; }
.footer-quote__form { display: flex; flex-direction: column; gap: 12px; }
.footer-quote__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.footer-quote__field { display: flex; flex-direction: column; gap: 12px; }
.footer-quote__field label { font-family: var(--font-body); font-size: 14px; line-height: 1.4; color: #424242; }
.footer-quote__req { font-weight: 700; }
.footer-quote input {
    height: 48px;
    padding: 0 16px;
    border-radius: 12px;
    border: none;
    background: #fefefe;
    color: #424242;
    font-family: var(--font-body);
    font-size: 14px;
}
.footer-quote input::placeholder { color: #bdbdbd; }
.footer-quote input:disabled { background: #fefefe; opacity: 1; -webkit-text-fill-color: #424242; }
.footer-quote__actions { display: flex; justify-content: flex-end; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-quote__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 24px;
    border-radius: 25px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14.4px;
    line-height: 1.5;
    color: var(--c-ink);
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
}
.footer-quote__btn--outline { background: transparent; border-color: var(--c-ink); }
.footer-quote__btn--outline:hover { background: rgba(0, 0, 0, 0.06); color: var(--c-ink); text-decoration: none; }
.footer-quote__btn--solid { background: var(--c-yellow); box-shadow: 0 2px 1px rgba(0, 0, 0, 0.25); }
.footer-quote__btn--solid[disabled] { opacity: 1; cursor: default; }

/* Divider + bottom row (logo left, copyright centre, social right) */
.site-footer__divider { border: none; border-top: 1px solid rgba(33, 33, 33, 0.35); margin: 32px 0; }
.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.site-footer__logo { display: block; height: 62px; width: auto; }
.site-footer__copyright { flex: 1 1 auto; text-align: center; color: var(--c-ink); font-size: 16px; }
.site-footer__social { list-style: none; display: flex; gap: 20px; padding: 0; margin: 0; }
.site-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--c-ink);
    color: #fff;
}
.site-footer__social a:hover { background: #000; color: #fff; }

/* ---------- Secondary pages (Jobs, Partner PINTAR, blog/index) ---------- */
.section--page-header { background: var(--c-yellow); text-align: center; }
.section--page-header .section__title { margin-top: 8px; }
.section--partner-hero { background: var(--c-100); }
.section--partner-overview p,
.section--partner-jobs p { color: var(--c-body); max-width: 760px; }
.how__steps--inline { grid-template-columns: repeat(4, 1fr); }
.how__steps--inline .how__step { text-align: center; }

.jobs-placeholder {
    background: var(--c-100);
    border: 1px dashed #d8d8d8;
    border-radius: var(--radius);
    padding: 24px;
}
.jobs-placeholder__list { margin: 12px 0 0; padding-left: 20px; color: var(--c-body); }
.note { color: var(--c-muted); font-size: 14px; }

.post-list { display: grid; gap: 24px; }
.post-list__item {
    background: var(--c-white);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid #ececec;
}
.post-list__title { margin: 0 0 8px; font-size: 1.25rem; }
.empty-state { color: var(--c-muted); }
.pagination { margin-top: 32px; }

/* ---------- Browse Jobs page (V2 node 228:5384) ---------- */
/* Hero: team photo behind a yellow gradient (solid at top, fading to reveal the photo at the bottom) */
.section--jobs-hero {
    position: relative;
    overflow: hidden;
    padding: 0;
    /* Exact Figma background (228:5397): yellow gradient layered over the team photo. */
    background:
        linear-gradient(0deg, rgba(255, 203, 29, 0.10) -35.45%, var(--c-yellow) 70.64%),
        url("../images/jobs-hero.jpg") lightgray -67.111px 39.57px / 106.406% 129.529% no-repeat;
}
.jobs-hero {
    min-height: clamp(500px, 55vw, 700px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: clamp(40px, 5vw, 50px);
    padding-bottom: clamp(56px, 7vw, 80px);
}
.jobs-hero__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(44px, 6.6vw, 75px);
    line-height: 1.2;
    letter-spacing: -0.25px;
    margin: 0 0 clamp(36px, 5vw, 68px);
}
.jobs-hero__title-dark { color: #212121; }
.jobs-hero__title-pink { color: var(--c-pink); }
.jobs-hero__body { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.jobs-hero__lede {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.4;
    color: #424242;
    max-width: 680px;
    margin: 0;
}
.jobs-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.jobs-hero__actions .btn { font-family: var(--font-display); font-weight: 700; min-width: 280px; }

/* All Jobs listing */
.section--jobs-list { background: var(--c-white); }
.jobs { max-width: 1136px; }
.jobs__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(28px, 3.4vw, 34px);
    color: var(--c-ink);
    text-align: center;
    margin: 0 0 32px;
}
.jobs-toolbar { display: flex; gap: 10px; margin-bottom: 32px; }
.jobs-sort {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 45px;
    padding: 0 24px;
    border: 0.5px solid #616161;
    border-radius: 999px;
    background: var(--c-white);
    color: #757575;
    font-family: var(--font-body);
    font-size: 18px;
    cursor: pointer;
    white-space: nowrap;
}
.jobs-search {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 auto;
    min-width: 0;
    height: 45px;
    padding: 0 24px;
    border: 0.5px solid #424242;
    border-radius: 999px;
    background: var(--c-white);
    color: #757575;
}
.jobs-search svg { flex: 0 0 auto; }
.jobs-search input {
    border: 0;
    outline: 0;
    background: transparent;
    width: 100%;
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--c-ink);
}
.jobs-search input::placeholder { color: #757575; }

.jobs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.jobcard {
    background: var(--c-white);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: box-shadow 0.15s ease, transform 0.05s ease;
}
.jobcard:hover { box-shadow: var(--shadow-soft); transform: translateY(-1px); }
.jobcard__head { display: flex; align-items: flex-start; gap: 16px; }
.jobcard__avatar {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.4px;
}
.jobcard__avatar.is-dark { color: #212121; }
.jobcard__meta { min-width: 0; }
.jobcard__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0 0 2px;
}
.jobcard__org { font-family: var(--font-body); font-size: 14px; color: #888; margin: 0; }
.jobcard__facts { display: flex; flex-direction: column; gap: 8px; }
.jobcard__fact { display: flex; align-items: center; gap: 8px; margin: 0; font-family: var(--font-body); font-size: 14px; color: #666; }
.jobcard__fact svg { flex: 0 0 auto; color: #999; }
.jobcard__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.jobcard__tag {
    background: #f3f4f6;
    color: #555;
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1;
    padding: 6px 12px;
    border-radius: 999px;
}

/* Pagination + open-application line */
.jobs-pagination { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 44px; }
.jobs-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: var(--c-white);
    color: #424242;
    font-family: var(--font-body);
    font-size: 14px;
    text-decoration: none;
}
.jobs-page:hover { border-color: #bdbdbd; color: var(--c-ink); text-decoration: none; }
.jobs-page.is-current { background: var(--c-yellow); border-color: var(--c-yellow); color: #212121; font-weight: 700; }
.jobs-page--dots { border: 0; background: transparent; }
.jobs-page--arrow { color: #757575; }
.jobs-openapp { text-align: center; font-family: var(--font-body); font-size: 14px; color: #999; margin: 24px 0 0; }
.jobs-openapp a { color: #666; text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .problem__grid,
    .core__grid,
    .addon__grid { grid-template-columns: 1fr; }
    .how__steps,
    .how__steps--inline { grid-template-columns: 1fr 1fr; column-gap: 24px; }
    .why__grid { grid-template-columns: 1fr; }
    .jobs-grid { grid-template-columns: 1fr; }
    .section--cta-yellow { overflow: hidden; margin-top: clamp(32px, 8vw, 56px); }
    .cta-yellow__content { max-width: none; }
    .cta-yellow__media {
        position: static;
        width: auto;
        max-width: none;
        bottom: auto;
        justify-content: center;
        margin-top: 28px;
    }
    .cta-yellow__portrait { max-height: 320px; }
    .site-footer__inner { flex-direction: column; gap: 32px; }
    .site-footer__offices { flex-basis: auto; }
}

@media (max-width: 720px) {
    .site-header { padding: 12px 0; }

    /* Mobile nav: hamburger reveals a dropdown panel anchored under the header */
    .nav-toggle { display: inline-flex; }
    .site-header__inner { gap: 12px; }
    .site-header__brand { margin-right: auto; }
    .site-header__cta .btn { padding: 9px 16px; }
    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        background: var(--c-white);
        border-top: 1px solid #eee;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }
    .site-nav.is-open { display: block; }
    .site-nav__list { flex-direction: column; gap: 0; padding: 6px 0; }
    .site-nav__list li { width: 100%; }
    .site-nav__list a {
        display: block;
        padding: 13px 24px;
        font-size: 16px;
        color: #424242;
        border-bottom: 1px solid #f4f4f4;
    }
    .site-nav__list li:last-child a { border-bottom: 0; }
    .site-nav__list a.is-current {
        border-bottom: 1px solid #f4f4f4;
        border-left: 3px solid var(--c-yellow);
        padding-left: 21px;
        color: #212121;
        font-weight: 700;
    }

    .how__steps,
    .how__steps--inline { grid-template-columns: 1fr; column-gap: 24px; }
    .footer-quote__row { grid-template-columns: 1fr; }
    .acard__pricebox--dual { grid-template-columns: 1fr; }
    .site-footer__bottom { justify-content: center; text-align: center; }
    .site-footer__copyright { flex-basis: 100%; order: 3; }
    .jobs-toolbar { flex-direction: column; }
    .jobs-sort { width: 100%; justify-content: center; }
    .jobs-hero__actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; }
    .jobs-hero__actions .btn { min-width: 0; }
}

@media (max-width: 560px) {
    .container { padding: 0 16px; }

    /* Hero CTAs (Services): stack full-width instead of crowding side-by-side */
    .hero__actions { flex-direction: column; align-items: center; }
    .hero__actions .btn { width: 100%; max-width: 320px; }
    .hero__title { font-size: clamp(34px, 9vw, 44px); }

    /* Footer "Request a Quote" actions: stack full-width and allow text wrapping
       (the long "questions" button was overflowing the viewport, which widened the
       whole document and clipped the sticky header + hero on every page). */
    .footer-quote__actions { flex-direction: column; align-items: stretch; }
    .footer-quote__btn {
        width: 100%;
        white-space: normal;
        height: auto;
        min-height: 48px;
        padding: 12px 16px;
        line-height: 1.3;
    }

    /* Jobs: smaller hero title, tighter pagination */
    .jobs-hero__title { font-size: clamp(40px, 10vw, 60px); }
    .jobs-pagination { gap: 8px; }

    /* Keep the header CTA from crowding the logo on very small screens */
    .site-header__cta .btn { padding: 9px 16px; }
}

/* =============================================================================
 * Jobs (CPT) — list filters, card overlay link, single-job detail page.
 * Pilot phase: list comes from `job` CPT; Apply CTA redirects to a per-job
 * Google Form URL (no inline form). See single-job.php + page-jobs.php.
 * ========================================================================== */

/* ---------- New button variants used by jobs ---------- */
.btn--dark { background: var(--c-ink); color: var(--c-white); }
.btn--dark:hover { background: #000; color: var(--c-white); }
.btn--sm { padding: 10px 18px; font-size: 14px; }

/* ---------- Updated toolbar (filters + search + submit) ---------- */
.jobs-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
    align-items: stretch;
}
.jobs-toolbar__filters { display: flex; flex-wrap: wrap; gap: 10px; flex: 0 1 auto; }
.jobs-filter { display: inline-flex; align-items: stretch; }
.jobs-filter select {
    height: 45px;
    padding: 0 36px 0 18px;
    border: 0.5px solid #616161;
    border-radius: 999px;
    background: var(--c-white) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23616161' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") no-repeat right 14px center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: var(--c-ink);
    font-family: var(--font-body);
    font-size: 15px;
    cursor: pointer;
    min-width: 160px;
}
.jobs-toolbar .jobs-search { flex: 1 1 240px; }
.jobs-toolbar .btn { flex: 0 0 auto; align-self: center; }

/* ---------- Card overlay link + priority badge + image avatar ---------- */
.jobcard { position: relative; }
.jobcard__link {
    position: absolute;
    inset: 0;
    z-index: 1;
    text-indent: -9999px;
    overflow: hidden;
}
.jobcard__priority {
    margin-left: auto;
    align-self: flex-start;
    background: var(--c-pink);
    color: var(--c-white);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 4px 10px;
    border-radius: 999px;
}
.jobcard__avatar--image {
    background: var(--c-100);
    overflow: hidden;
}
.jobcard__avatar--image img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Empty state ---------- */
.jobs-empty {
    text-align: center;
    padding: 56px 24px;
    background: var(--c-100);
    border-radius: var(--radius);
    color: var(--c-body);
    font-family: var(--font-body);
}
.jobs-empty p { margin: 0 0 16px; font-size: 16px; }

/* ---------- Single job: hero ---------- */
.section--job-hero {
    background: linear-gradient(180deg, #fff8d4 0%, #fff 100%);
    padding-top: clamp(40px, 6vw, 64px);
    padding-bottom: clamp(28px, 4vw, 40px);
}
.job-hero { display: flex; flex-direction: column; gap: 16px; }
.job-hero__back {
    margin: 0;
    font-family: var(--font-body);
    font-size: 14px;
}
.job-hero__back a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--c-body);
    text-decoration: none;
}
.job-hero__back a:hover { color: var(--c-pink); }
.job-hero__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.15;
    color: var(--c-ink);
    margin: 0;
}
.job-hero__priority {
    align-self: flex-start;
    background: var(--c-pink);
    color: var(--c-white);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 6px 14px;
    border-radius: 999px;
}
.job-hero__meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.job-hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--c-white);
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--c-ink-grey);
}
.job-hero__chip svg { color: var(--c-pink); }

/* ---------- Single job: body two-column ---------- */
.section--job-body { padding-top: 32px; padding-bottom: clamp(56px, 7vw, 96px); }
.job-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
    align-items: start;
}
.job-body__main { min-width: 0; }
.job-body__intro {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--c-ink-grey);
    margin-bottom: 32px;
}
.job-body__intro p { margin: 0 0 1em; }
.job-body__intro p:last-child { margin-bottom: 0; }

.job-section { margin-bottom: 40px; }
.job-section:last-child { margin-bottom: 0; }
.job-section__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    line-height: 1.3;
    color: var(--c-ink);
    margin: 0 0 16px;
}
.job-section__list {
    list-style: disc;
    padding-left: 22px;
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--c-ink-grey);
}
.job-section__list li { margin-bottom: 12px; }
.job-section__list li:last-child { margin-bottom: 0; }
.job-section__list strong { color: var(--c-ink); font-weight: 700; margin-right: 4px; }

.job-section--apply {
    margin-top: 48px;
    padding: 28px;
    background: var(--c-100);
    border-radius: var(--radius);
}
.job-section--apply p {
    font-family: var(--font-body);
    color: var(--c-body);
    margin: 0 0 18px;
}

/* ---------- Single job: sidebar meta card ---------- */
.job-body__aside { position: sticky; top: 96px; }
.job-meta {
    background: var(--c-white);
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    padding: 24px;
}
.job-meta__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--c-ink);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.job-meta__list { margin: 0 0 20px; }
.job-meta__row {
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}
.job-meta__row:last-child { border-bottom: 0; }
.job-meta__row dt {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 4px;
}
.job-meta__row dd {
    margin: 0;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--c-ink);
}
.job-meta__cta { width: 100%; }

/* ---------- Sticky apply bar (mobile-friendly) ---------- */
.job-sticky-apply {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--c-white);
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
    padding: 12px 0;
    display: none; /* shown on mobile only */
}
.job-sticky-apply__inner {
    display: flex;
    align-items: center;
    gap: 16px;
}
.job-sticky-apply__title {
    flex: 1 1 auto;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    color: var(--c-ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.job-sticky-apply .btn { flex: 0 0 auto; }

/* ---------- Single job: responsive ---------- */
@media (max-width: 960px) {
    .job-body { grid-template-columns: 1fr; gap: 32px; }
    .job-body__aside { position: static; }
    .job-meta__cta { display: none; } /* sticky bar takes over */
    .job-sticky-apply { display: block; }
    .section--job-body { padding-bottom: 112px; } /* space for sticky bar */
}

@media (max-width: 560px) {
    .jobs-toolbar__filters { width: 100%; }
    .jobs-filter { flex: 1 1 calc(50% - 5px); }
    .jobs-filter select { width: 100%; min-width: 0; }
    .jobs-toolbar .jobs-search { width: 100%; }
    .jobs-toolbar > .btn { width: 100%; }
    .job-hero__title { font-size: clamp(28px, 8vw, 38px); }
    .job-section { margin-bottom: 32px; }
    .job-section--apply { padding: 20px; }
}

/* =============================================================================
 * Page loader + scroll-to-top button (UX polish).
 * Hidden via <noscript> fallback if JS doesn't run.
 * ========================================================================== */
/* Loader is invisible by default — the "delayed-show" JS adds `.is-loading`
   only if the page takes >150ms to parse. Fast pages never see it. */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-white);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}
.page-loader.is-loading {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.15s ease, visibility 0s;
}
.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.page-loader__spinner {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #f3f4f6;
    border-top-color: var(--c-pink);
    animation: sei-spin 0.8s linear infinite;
}
@keyframes sei-spin {
    to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
    .page-loader { transition: opacity 0.001s; }
    .page-loader__spinner { animation: none; border-top-color: var(--c-faint); }
}

.scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 60;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    background: var(--c-ink);
    color: var(--c-white);
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.15s ease;
}
.scroll-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.scroll-top:hover { background: var(--c-pink); }
.scroll-top:focus-visible {
    outline: 2px solid var(--c-pink);
    outline-offset: 3px;
}
/* On the single-job page (mobile), the sticky apply bar sits at bottom-0.
   Lift the scroll-top button above it so they don't overlap. */
@media (max-width: 960px) {
    .single-job .scroll-top { bottom: 88px; }
}
@media (prefers-reduced-motion: reduce) {
    .scroll-top { transition: opacity 0.001s; transform: none; }
}
