/* ── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--c-bg);
    color: var(--c-ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--c-accent); text-decoration: none; }
a:hover { color: var(--c-accent-hover); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }
input, select, textarea { font-family: var(--font); }

/* ── Layout ───────────────────────────────────────────────────────────────── */
.tfj-container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 16px;
}
.tfj-section { padding: 60px 0; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.tfj-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    border: none;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}
.tfj-btn--accent { background: var(--c-accent); color: #fff; }
.tfj-btn--accent:hover { background: var(--c-accent-hover); color: #fff; }
.tfj-btn--ghost { background: transparent; color: var(--c-ink); border: 1.5px solid var(--c-border); }
.tfj-btn--ghost:hover { border-color: var(--c-ink); color: var(--c-ink); }
.tfj-btn--green { background: var(--c-green); color: #fff; }
.tfj-btn--green:hover { background: #165f30; color: #fff; }
.tfj-btn--wa { background: var(--c-wa); color: #fff; }
.tfj-btn--wa:hover { background: #1aab53; color: #fff; }
.tfj-btn--outline { background: transparent; color: var(--c-accent); border: 1.5px solid var(--c-accent); }
.tfj-btn--outline:hover { background: var(--c-accent); color: #fff; }
.tfj-btn--sm { padding: 8px 16px; font-size: 13px; }
.tfj-btn--lg { padding: 15px 28px; font-size: 16px; }
.tfj-btn--full { width: 100%; justify-content: center; }

/* ── Badges ───────────────────────────────────────────────────────────────── */
.tfj-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: .02em;
    text-transform: uppercase;
}
.tfj-badge--blue   { background: var(--c-blue-dim);   color: var(--c-blue); }
.tfj-badge--green  { background: var(--c-green-dim);  color: var(--c-green); }
.tfj-badge--orange { background: var(--c-accent-dim); color: var(--c-accent); }
.tfj-badge--gold   { background: var(--c-gold-dim);   color: var(--c-gold); }
.tfj-badge--gray   { background: var(--c-border);     color: var(--c-ink3); }

/* ── Nav ──────────────────────────────────────────────────────────────────── */
.tfj-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--nav-h);
    background: var(--c-surface);
    border-bottom: 1px solid var(--c-border-soft);
    box-shadow: 0 1px 0 var(--c-border-soft);
    transition: box-shadow var(--transition);
}
.tfj-nav.is-scrolled { box-shadow: var(--shadow); }
.tfj-nav__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}
.tfj-nav__logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--c-ink);
    flex-shrink: 0;
    letter-spacing: -.02em;
}
.tfj-nav__logo em { color: var(--c-accent); font-style: normal; }
.tfj-nav__logo img { height: 36px; width: auto; }
.tfj-nav__links { flex: 1; }
.tfj-nav__menu { display: flex; gap: 4px; align-items: center; }
.tfj-nav__menu li a {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--c-ink2);
    transition: background var(--transition), color var(--transition);
}
.tfj-nav__menu li a:hover { background: var(--c-bg); color: var(--c-ink); }
.tfj-nav__ctas { display: flex; gap: 8px; flex-shrink: 0; }
.tfj-nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    margin-left: auto;
}
.tfj-nav__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-ink);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.tfj-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(17,16,16,.4);
    z-index: 99;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.tfj-hero {
    background: var(--c-ink);
    position: relative;
    overflow: hidden;
    padding: 72px 0 80px;
    color: #fff;
}
.tfj-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(212,64,16,.35) 0%, transparent 70%);
    pointer-events: none;
}
.tfj-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255,255,255,.85);
    margin-bottom: 20px;
}
.tfj-hero__h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.03em;
    margin-bottom: 16px;
    max-width: 700px;
}
.tfj-hero__h1 .tfj-hero__rotating {
    color: var(--c-accent);
    transition: opacity .3s ease;
}
.tfj-hero__sub {
    font-size: 17px;
    color: rgba(255,255,255,.7);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.7;
}
.tfj-hero__sectors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.tfj-hero__sector-pill {
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.08);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition);
}
.tfj-hero__sector-pill:hover,
.tfj-hero__sector-pill.is-active { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }

.tfj-hero__search {
    display: flex;
    gap: 0;
    max-width: 640px;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}
.tfj-hero__search-field {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 16px;
    border-right: 1px solid var(--c-border);
}
.tfj-hero__search-field:last-of-type { border-right: none; }
.tfj-hero__search-field input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 15px;
    color: var(--c-ink);
    background: transparent;
    padding: 14px 0;
}
.tfj-hero__search-field input::placeholder { color: var(--c-ink3); }
.tfj-hero__search-btn {
    padding: 12px 24px;
    background: var(--c-accent);
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    flex-shrink: 0;
    transition: background var(--transition);
}
.tfj-hero__search-btn:hover { background: var(--c-accent-hover); }

.tfj-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}
.tfj-hero__stat-item { text-align: left; }
.tfj-hero__stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.tfj-hero__stat-label {
    font-size: 12px;
    color: rgba(255,255,255,.55);
    margin-top: 3px;
}

/* ── Filter Bar ───────────────────────────────────────────────────────────── */
.tfj-filter-bar {
    background: var(--c-surface);
    border-bottom: 1px solid var(--c-border);
    position: sticky;
    top: var(--nav-h);
    z-index: 90;
    padding: 10px 0;
}
.tfj-filter-bar__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.tfj-chip {
    padding: 6px 14px;
    border-radius: 20px;
    border: 1.5px solid var(--c-border);
    background: transparent;
    font-size: 13px;
    font-weight: 500;
    color: var(--c-ink2);
    cursor: pointer;
    transition: all var(--transition);
}
.tfj-chip:hover { border-color: var(--c-accent); color: var(--c-accent); }
.tfj-chip.is-active { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }
.tfj-filter-bar__sort {
    margin-left: auto;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--c-border);
    font-size: 13px;
    background: transparent;
    color: var(--c-ink2);
}
.tfj-filter-bar__count {
    font-size: 13px;
    color: var(--c-ink3);
    margin-left: 4px;
    flex-shrink: 0;
}

/* ── Job Card ─────────────────────────────────────────────────────────────── */
.tfj-jobs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
}
.tfj-job-card {
    background: var(--c-surface);
    border: 1.5px solid var(--c-border-soft);
    border-radius: var(--radius);
    padding: 20px;
    cursor: pointer;
    transition: border-color var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}
.tfj-job-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: var(--c-accent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform var(--transition);
    border-radius: 2px 0 0 2px;
}
.tfj-job-card:hover { border-color: var(--c-border); box-shadow: var(--shadow); }
.tfj-job-card:hover::before { transform: scaleY(1); }
.tfj-job-card__header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 10px; }
.tfj-job-card__logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--c-bg);
    border: 1px solid var(--c-border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    overflow: hidden;
}
.tfj-job-card__logo img { width: 100%; height: 100%; object-fit: cover; }
.tfj-job-card__badges { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 8px; }
.tfj-job-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--c-ink);
    margin-bottom: 3px;
    line-height: 1.3;
}
.tfj-job-card__company { font-size: 14px; color: var(--c-ink2); font-weight: 500; }
.tfj-job-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--c-ink3);
    margin: 10px 0;
    align-items: center;
}
.tfj-job-card__meta-item { display: flex; align-items: center; gap: 4px; }
.tfj-job-card__salary {
    font-size: 15px;
    font-weight: 700;
    color: var(--c-green);
    margin-bottom: 14px;
}
.tfj-job-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--c-border-soft);
    padding-top: 12px;
    gap: 8px;
    flex-wrap: wrap;
}
.tfj-job-card__footer-left { font-size: 12px; color: var(--c-ink3); display: flex; gap: 12px; }
.tfj-job-card__footer-btns { display: flex; gap: 8px; }

/* ── Slide-in Panel ───────────────────────────────────────────────────────── */
.tfj-panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17,16,16,.5);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}
.tfj-panel-overlay.is-open { opacity: 1; pointer-events: all; }
.tfj-panel {
    position: fixed;
    top: 0; right: 0;
    height: 100%;
    width: min(540px, 100vw);
    background: var(--c-surface);
    z-index: 201;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .28s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 32px rgba(0,0,0,.15);
}
.tfj-panel.is-open { transform: translateX(0); }
.tfj-panel__close {
    position: sticky;
    top: 0;
    background: var(--c-surface);
    border-bottom: 1px solid var(--c-border-soft);
    padding: 14px 20px;
    display: flex;
    justify-content: flex-end;
    z-index: 1;
}
.tfj-panel__close-btn {
    background: var(--c-bg);
    border: none;
    width: 32px; height: 32px;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-ink2);
}
.tfj-panel__body { padding: 24px 20px; }

/* ── Job Listings Page ────────────────────────────────────────────────────── */
.tfj-jobs-page { padding: 32px 0 60px; }
.tfj-jobs-page__layout {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
}
.tfj-jobs-sidebar {
    width: 260px;
    flex-shrink: 0;
    background: var(--c-surface);
    border: 1.5px solid var(--c-border-soft);
    border-radius: var(--radius);
    padding: 20px;
    position: sticky;
    top: calc(var(--nav-h) + 56px);
    max-height: calc(100vh - var(--nav-h) - 80px);
    overflow-y: auto;
}
.tfj-jobs-main { flex: 1; min-width: 0; }
.tfj-filter-group { margin-bottom: 24px; }
.tfj-filter-group__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--c-ink3);
    margin-bottom: 10px;
    display: block;
}
.tfj-filter-group__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    font-size: 14px;
    color: var(--c-ink2);
}
.tfj-filter-group__item input[type="checkbox"] { accent-color: var(--c-accent); }
.tfj-filter-select {
    width: 100%;
    padding: 8px 10px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--c-ink);
    background: var(--c-bg);
}
.tfj-salary-range { display: flex; gap: 8px; align-items: center; }
.tfj-salary-range input[type="range"] { accent-color: var(--c-accent); flex: 1; }
.tfj-load-more {
    text-align: center;
    padding: 24px 0;
}
.tfj-filters-mobile-btn {
    display: none;
    position: sticky;
    top: calc(var(--nav-h) + 56px);
    z-index: 80;
    width: 100%;
    background: var(--c-surface);
    border: none;
    border-bottom: 1px solid var(--c-border);
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--c-ink);
    text-align: left;
    display: none;
}
.tfj-filters-drawer {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--c-surface);
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 20px;
    z-index: 300;
    transform: translateY(100%);
    transition: transform .3s ease;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 -8px 32px rgba(0,0,0,.15);
}
.tfj-filters-drawer.is-open { transform: translateY(0); }

/* ── Single Job ───────────────────────────────────────────────────────────── */
.tfj-single-job { padding: 40px 0 80px; }
.tfj-single-job__layout {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    gap: 32px;
    align-items: flex-start;
}
.tfj-single-job__main { flex: 1; min-width: 0; }
.tfj-single-job__sidebar { width: 300px; flex-shrink: 0; }
.tfj-single-job__sticky {
    position: sticky;
    top: calc(var(--nav-h) + 20px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.tfj-job-cta-card {
    background: var(--c-surface);
    border: 1.5px solid var(--c-border-soft);
    border-radius: var(--radius);
    padding: 24px;
}
.tfj-job-cta-card__title { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.tfj-job-cta-card__note { font-size: 12px; color: var(--c-ink3); margin-bottom: 16px; }
.tfj-job-cta-card__btns { display: flex; flex-direction: column; gap: 10px; }
.tfj-job-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.tfj-job-overview-item {}
.tfj-job-overview-item__key { font-size: 11px; color: var(--c-ink3); font-weight: 600; text-transform: uppercase; margin-bottom: 3px; }
.tfj-job-overview-item__val { font-size: 14px; font-weight: 600; color: var(--c-ink); }
.tfj-job-content__section { margin-bottom: 28px; }
.tfj-job-content__section h3 { font-size: 16px; font-weight: 700; margin-bottom: 12px; color: var(--c-ink); }
.tfj-job-content__section ul { padding-left: 0; display: flex; flex-direction: column; gap: 8px; }
.tfj-job-content__section ul li { display: flex; gap: 8px; font-size: 15px; color: var(--c-ink2); line-height: 1.5; }
.tfj-job-content__section ul li::before { content: '›'; color: var(--c-accent); font-weight: 700; flex-shrink: 0; }
.tfj-skills-tags, .tfj-perks-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tfj-skill-tag {
    padding: 5px 12px;
    background: var(--c-bg);
    border: 1.5px solid var(--c-border);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--c-ink2);
}
.tfj-perk-tag {
    padding: 5px 12px;
    background: var(--c-green-dim);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--c-green);
}
.tfj-source-note {
    background: var(--c-blue-dim);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 13px;
    color: var(--c-blue);
    margin-top: 12px;
}
.tfj-nudge {
    background: var(--c-accent-dim);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 14px;
    color: var(--c-ink2);
    margin-top: 16px;
}
.tfj-nudge a { font-weight: 600; color: var(--c-accent); }
.tfj-related-jobs { margin-top: 48px; }
.tfj-related-jobs h3 { font-size: 20px; font-weight: 700; margin-bottom: 16px; }

/* ── Sectors Section ──────────────────────────────────────────────────────── */
.tfj-sectors__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.tfj-sector-card {
    background: var(--c-surface);
    border: 1.5px solid var(--c-border-soft);
    border-left: 3px solid transparent;
    border-radius: var(--radius);
    padding: 24px 20px;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    text-decoration: none;
    display: block;
}
.tfj-sector-card:hover {
    border-left-color: var(--c-accent);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
    color: inherit;
}
.tfj-sector-card__icon { font-size: 32px; margin-bottom: 12px; line-height: 1; }
.tfj-sector-card__name { font-size: 17px; font-weight: 700; color: var(--c-ink); margin-bottom: 4px; }
.tfj-sector-card__count { font-size: 13px; color: var(--c-ink3); }

/* ── How It Works ─────────────────────────────────────────────────────────── */
.tfj-how__steps { display: flex; flex-direction: column; gap: 0; }
.tfj-how__step { display: flex; gap: 20px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid var(--c-border-soft); }
.tfj-how__step:last-child { border-bottom: none; }
.tfj-how__step-num {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--c-accent);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tfj-how__step-title { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.tfj-how__step-desc { font-size: 15px; color: var(--c-ink2); line-height: 1.6; }

/* ── Employer CTA Strip ───────────────────────────────────────────────────── */
.tfj-employer-strip {
    background: var(--c-ink);
    padding: 60px 0;
    text-align: center;
}
.tfj-employer-strip h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 800; color: #fff; margin-bottom: 8px; }
.tfj-employer-strip p { color: rgba(255,255,255,.65); margin-bottom: 28px; font-size: 15px; }
.tfj-employer-strip__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Apply Modal ──────────────────────────────────────────────────────────── */
.tfj-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17,16,16,.55);
    z-index: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}
.tfj-modal-overlay.is-open { opacity: 1; pointer-events: all; }
.tfj-modal {
    background: var(--c-surface);
    border-radius: var(--radius);
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-md);
    transform: scale(.96);
    transition: transform .22s ease;
}
.tfj-modal-overlay.is-open .tfj-modal { transform: scale(1); }
.tfj-modal__header {
    padding: 20px 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.tfj-modal__close { background: none; border: none; font-size: 22px; color: var(--c-ink3); line-height: 1; }
.tfj-modal__tabs { display: flex; border-bottom: 1px solid var(--c-border); margin: 0 20px; }
.tfj-modal__tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--c-ink3);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color var(--transition), border-color var(--transition);
}
.tfj-modal__tab.is-active { color: var(--c-accent); border-bottom-color: var(--c-accent); }
.tfj-modal__body { padding: 20px; }

/* ── Forms ────────────────────────────────────────────────────────────────── */
.tfj-form-field { margin-bottom: 16px; }
.tfj-form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--c-ink2); margin-bottom: 6px; }
.tfj-form-field input,
.tfj-form-field select,
.tfj-form-field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--c-ink);
    background: var(--c-surface);
    transition: border-color var(--transition);
}
.tfj-form-field input:focus,
.tfj-form-field select:focus,
.tfj-form-field textarea:focus {
    outline: none;
    border-color: var(--c-accent);
}
.tfj-form-row { display: flex; gap: 14px; }
.tfj-form-row .tfj-form-field { flex: 1; }
.tfj-form-error { font-size: 12px; color: var(--c-accent); margin-top: 4px; }

/* ── Multi-step Form ──────────────────────────────────────────────────────── */
.tfj-steps-bar { display: flex; gap: 0; margin-bottom: 32px; }
.tfj-step-indicator {
    flex: 1;
    text-align: center;
    padding: 10px 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--c-ink3);
    border-bottom: 3px solid var(--c-border);
    transition: color var(--transition), border-color var(--transition);
}
.tfj-step-indicator.is-active { color: var(--c-accent); border-bottom-color: var(--c-accent); }
.tfj-step-indicator.is-done { color: var(--c-green); border-bottom-color: var(--c-green); }
.tfj-step-pane { display: none; }
.tfj-step-pane.is-active { display: block; }
.tfj-step-nav { display: flex; gap: 12px; justify-content: space-between; margin-top: 24px; }

/* ── Plan Cards ───────────────────────────────────────────────────────────── */
.tfj-plan-cards { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.tfj-plan-card {
    flex: 1;
    min-width: 180px;
    border: 2px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px;
    cursor: pointer;
    transition: border-color var(--transition), box-shadow var(--transition);
    text-align: center;
}
.tfj-plan-card.is-selected { border-color: var(--c-accent); box-shadow: 0 0 0 3px var(--c-accent-dim); }
.tfj-plan-card__name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.tfj-plan-card__price { font-size: 24px; font-weight: 800; color: var(--c-accent); margin-bottom: 8px; }
.tfj-plan-card__features { font-size: 13px; color: var(--c-ink2); line-height: 1.6; }

/* ── Skill/Perk Badge Picker ──────────────────────────────────────────────── */
.tfj-badge-picker { display: flex; flex-wrap: wrap; gap: 8px; }
.tfj-badge-picker-item {
    padding: 6px 14px;
    border-radius: 20px;
    border: 1.5px solid var(--c-border);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    background: transparent;
    color: var(--c-ink2);
}
.tfj-badge-picker-item.is-selected { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }
.tfj-badge-picker-item--green.is-selected { background: var(--c-green); border-color: var(--c-green); color: #fff; }

/* ── Section Headings ─────────────────────────────────────────────────────── */
.tfj-section-title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; letter-spacing: -.02em; color: var(--c-ink); }
.tfj-section-sub { font-size: 15px; color: var(--c-ink3); margin-top: 6px; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.tfj-footer {
    background: var(--c-ink);
    color: rgba(255,255,255,.7);
    padding: 60px 0 0;
}
.tfj-footer__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 16px 48px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.tfj-footer__logo { font-size: 22px; font-weight: 800; color: #fff; display: inline-block; margin-bottom: 14px; }
.tfj-footer__logo em { color: var(--c-accent); font-style: normal; }
.tfj-footer__desc { font-size: 14px; line-height: 1.7; max-width: 300px; margin-bottom: 16px; }
.tfj-footer__cert { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.tfj-footer__years { font-size: 12px; color: rgba(255,255,255,.45); }
.tfj-footer__col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.45); margin-bottom: 14px; }
.tfj-footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.tfj-footer__col ul li a { font-size: 14px; color: rgba(255,255,255,.65); transition: color var(--transition); }
.tfj-footer__col ul li a:hover { color: #fff; }
.tfj-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 16px;
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,.4);
}

/* ── WhatsApp Float ───────────────────────────────────────────────────────── */
.tfj-wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--c-wa);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    z-index: 150;
    transition: transform var(--transition), box-shadow var(--transition);
}
.tfj-wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.5); color: #fff; }

/* ── Registration & Post-job Pages ───────────────────────────────────────── */
.tfj-page-wrap {
    max-width: 700px;
    margin: 40px auto;
    padding: 0 16px 80px;
}
.tfj-page-card {
    background: var(--c-surface);
    border: 1.5px solid var(--c-border-soft);
    border-radius: var(--radius);
    padding: 32px 28px;
}
.tfj-page-card__header { margin-bottom: 28px; }
.tfj-page-card__title { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.tfj-page-card__sub { font-size: 14px; color: var(--c-ink3); }

.tfj-success-screen {
    text-align: center;
    padding: 40px 0;
    display: none;
}
.tfj-success-screen.is-visible { display: block; }
.tfj-success-icon { font-size: 56px; margin-bottom: 16px; }
.tfj-success-screen h2 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.tfj-success-screen p { font-size: 15px; color: var(--c-ink2); margin-bottom: 24px; }

/* ── Tag Input ────────────────────────────────────────────────────────────── */
.tfj-tag-input-wrap {
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    cursor: text;
    background: var(--c-surface);
    transition: border-color var(--transition);
    min-height: 44px;
    align-items: center;
}
.tfj-tag-input-wrap:focus-within { border-color: var(--c-accent); }
.tfj-tag-item {
    padding: 3px 10px 3px 12px;
    background: var(--c-accent-dim);
    color: var(--c-accent);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}
.tfj-tag-item__remove { background: none; border: none; font-size: 14px; cursor: pointer; color: var(--c-accent); line-height: 1; padding: 0; }
.tfj-tag-input { border: none; outline: none; font-size: 14px; flex: 1; min-width: 80px; background: transparent; }

/* ── Post-job Preview ─────────────────────────────────────────────────────── */
.tfj-post-job-layout {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 16px 80px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
}
.tfj-post-job-form { flex: 1; }
.tfj-post-job-preview { width: 300px; flex-shrink: 0; position: sticky; top: calc(var(--nav-h) + 20px); }
.tfj-preview-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--c-ink3); margin-bottom: 10px; }

/* ── Utilities ────────────────────────────────────────────────────────────── */
.tfj-divider { height: 1px; background: var(--c-border-soft); margin: 32px 0; }
.tfj-text-center { text-align: center; }
.tfj-mt-8 { margin-top: 8px; }
.tfj-mt-16 { margin-top: 16px; }
.tfj-mt-24 { margin-top: 24px; }
.tfj-mb-24 { margin-bottom: 24px; }
.tfj-spinner {
    display: inline-block;
    width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: tfj-spin .7s linear infinite;
}
@keyframes tfj-spin { to { transform: rotate(360deg); } }
.tfj-no-results { text-align: center; padding: 40px 0; color: var(--c-ink3); font-size: 15px; }

/* ── 404 ──────────────────────────────────────────────────────────────────── */
.tfj-404 { text-align: center; padding: 100px 16px; }
.tfj-404__num { font-size: 7rem; font-weight: 800; color: var(--c-border); line-height: 1; }
.tfj-404__title { font-size: 1.6rem; font-weight: 700; margin-bottom: 12px; }
.tfj-404__desc { font-size: 15px; color: var(--c-ink2); margin-bottom: 28px; }
