/* =============================================================================
 * OMNITECH — CAREERS UI
 * -----------------------------------------------------------------------------
 * Components for careers.html (listing) and career.html (position detail +
 * apply drawer). Everything here is prefixed `c-` so it can never collide with
 * the shared site chrome in careers-base.css.
 *
 * Colours come from the :root tokens in careers-base.css — do not hardcode the
 * navy or the orange here.
 * ============================================================================= */

.c-wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---------- buttons -------------------------------------------------------- */
.c-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14.5px;
    padding: 13px 26px; border-radius: 999px; border: 0; cursor: pointer;
    transition: var(--transition); text-decoration: none; line-height: 1.2;
}
.c-btn-primary { background: var(--secondary); color: #fff; box-shadow: 0 10px 24px rgba(255, 87, 34, .28); }
.c-btn-primary:hover { background: var(--secondary-dark); transform: translateY(-1px); }
.c-btn-navy { background: var(--primary); color: #fff; box-shadow: 0 10px 24px rgba(26, 35, 126, .24); }
.c-btn-navy:hover { background: var(--primary-light); }
.c-btn-ghost { background: #fff; color: var(--primary); border: 1px solid var(--line, #e6ebf2); }
.c-btn-ghost:hover { border-color: var(--primary); }
.c-btn-ghost-light { background: rgba(255, 255, 255, .1); color: #fff; border: 1px solid rgba(255, 255, 255, .28); }
.c-btn-ghost-light:hover { background: rgba(255, 255, 255, .18); }
.c-btn-lg { padding: 16px 34px; font-size: 15.5px; }
.c-btn-block { width: 100%; }
.c-btn[disabled] { opacity: .6; cursor: not-allowed; transform: none; }

/* ---------- hero ----------------------------------------------------------- */
.c-hero {
    /* Clears the fixed site header: 81px desktop, 72px below the 768px breakpoint. */
    position: relative; margin-top: 81px; color: #fff; overflow: hidden;
    background: linear-gradient(135deg, #0d153a 0%, #1a237e 55%, #283593 100%);
}
.c-hero::before {
    content: ''; position: absolute; width: 620px; height: 620px; right: -160px; top: -260px;
    border-radius: 50%; background: radial-gradient(circle, rgba(255, 87, 34, .32), transparent 62%);
}
.c-hero::after {
    content: ''; position: absolute; width: 520px; height: 520px; left: -200px; bottom: -300px;
    border-radius: 50%; background: radial-gradient(circle, rgba(255, 214, 0, .16), transparent 65%);
}
.c-hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 78%);
            mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 78%);
}
.c-hero-inner { position: relative; z-index: 2; padding: 76px 0 116px; max-width: 790px; }
.c-badge {
    display: inline-flex; align-items: center; gap: 9px; background: rgba(255, 87, 34, .16);
    border: 1px solid rgba(255, 138, 101, .45); color: #ffc7b3; font-size: 12.5px; font-weight: 600;
    letter-spacing: .09em; text-transform: uppercase; padding: 8px 16px; border-radius: 999px; margin-bottom: 24px;
}
.c-hero h1 { font-size: 56px; line-height: 1.08; font-weight: 800; margin-bottom: 20px; color: #fff; }
.c-hero h1 em { font-style: normal; color: var(--accent); }
.c-hero > .c-wrap > .c-hero-inner > p { font-size: 18.5px; color: rgba(255, 255, 255, .8); max-width: 660px; }
.c-stats { display: flex; gap: 46px; margin-top: 40px; flex-wrap: wrap; }
.c-stats div b { display: block; font-family: 'Poppins', sans-serif; font-size: 30px; font-weight: 700; line-height: 1; }
.c-stats div span { font-size: 13px; color: rgba(255, 255, 255, .62); letter-spacing: .05em; text-transform: uppercase; font-weight: 500; }

/* ---------- filter bar ----------------------------------------------------- */
.c-filters {
    background: #fff; border: 1px solid #e6ebf2; border-radius: 26px;
    box-shadow: 0 26px 70px rgba(13, 21, 58, .16); padding: 16px;
    display: flex; gap: 12px; align-items: center; margin-top: -46px; position: relative; z-index: 5;
}
.c-search { flex: 1; display: flex; align-items: center; gap: 12px; background: var(--gray-bg); border: 1px solid #e6ebf2; border-radius: 14px; padding: 12px 18px; }
.c-search input { border: 0; background: none; outline: 0; font-family: 'Inter', sans-serif; font-size: 15px; width: 100%; color: var(--dark); }
.c-search input::placeholder { color: #94a3b8; }
.c-filters select {
    appearance: none; -webkit-appearance: none; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b0bec5' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 15px center;
    border: 1px solid #e6ebf2; border-radius: 14px; padding: 14px 42px 14px 16px;
    font-family: 'Inter', sans-serif; font-size: 14.5px; font-weight: 500; color: #33415c; cursor: pointer; outline: 0;
}
.c-filters select:focus { border-color: var(--primary); }

/* ---------- section heads -------------------------------------------------- */
.c-section { padding: 74px 0; }
.c-section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 34px; gap: 30px; flex-wrap: wrap; }
.c-eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--secondary); margin-bottom: 10px; }
.c-section-head h2 { font-size: 36px; line-height: 1.15; }
.c-section-head > div > p { color: var(--gray); font-size: 15.5px; margin-top: 8px; }
.c-count { font-size: 14px; color: var(--gray); }
.c-count b { color: var(--dark); }

/* ---------- position cards ------------------------------------------------- */
.c-jobs { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.c-job {
    position: relative; display: flex; flex-direction: column; background: #fff;
    border: 1px solid #e6ebf2; border-radius: 18px; padding: 30px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, .05); overflow: hidden;
    transition: var(--transition); text-decoration: none; color: inherit;
}
.c-job::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: linear-gradient(180deg, var(--secondary), var(--accent)); opacity: 0; transition: var(--transition);
}
.c-job:hover { box-shadow: 0 10px 34px rgba(15, 23, 42, .09); border-color: #d7deea; transform: translateY(-3px); }
.c-job:hover::before { opacity: 1; }
.c-job-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 14px; }
.c-dept {
    display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase; color: var(--primary);
    background: rgba(26, 35, 126, .07); padding: 6px 12px; border-radius: 999px;
}
.c-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--secondary); flex-shrink: 0; }
.c-new {
    font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: #0f7b4f; background: #e6f7ef; border: 1px solid #bfe9d5; padding: 5px 11px; border-radius: 999px; white-space: nowrap;
}
.c-job h3 { font-size: 22px; margin-bottom: 10px; line-height: 1.25; color: var(--primary); }
.c-job .c-summary { color: var(--gray); font-size: 14.6px; line-height: 1.62; margin-bottom: 20px; }
.c-prose .c-block > ul:last-child, .c-prose .c-block > p:last-child { margin-bottom: 0; }
.c-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 22px; }
.c-chip {
    display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500;
    color: #3d4d63; background: var(--gray-bg); border: 1px solid #e6ebf2; padding: 7px 13px; border-radius: 9px;
}
.c-chip svg { color: var(--gray-light); flex-shrink: 0; }
.c-chip.c-money { background: #fff7ed; border-color: #fed7aa; color: #b45309; }
.c-chip.c-money svg { color: #f59e0b; }
.c-job-foot { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding-top: 19px; border-top: 1px solid #eef2f6; margin-top: auto; }
.c-posted { font-size: 13px; color: var(--gray-light); }
.c-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 600; color: var(--secondary); text-decoration: none; }
.c-job:hover .c-link svg { transform: translateX(3px); }
.c-link svg { transition: var(--transition); }

/* ---------- value band + cta ----------------------------------------------- */
.c-band { background: var(--gray-bg); border-top: 1px solid #e6ebf2; border-bottom: 1px solid #e6ebf2; }
.c-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.c-value { background: #fff; border: 1px solid #e6ebf2; border-radius: 18px; padding: 30px; }
.c-vicon { width: 46px; height: 46px; border-radius: 13px; background: rgba(26, 35, 126, .08); color: var(--primary); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.c-value h4 { font-size: 17.5px; margin-bottom: 8px; }
.c-value p { color: var(--gray); font-size: 14.3px; }

.c-cta {
    background: linear-gradient(135deg, #0d153a, #1a237e); border-radius: 26px; padding: 52px 56px; color: #fff;
    display: flex; justify-content: space-between; align-items: center; gap: 40px; position: relative; overflow: hidden;
}
.c-cta::after {
    content: ''; position: absolute; width: 380px; height: 380px; right: -90px; top: -140px;
    border-radius: 50%; background: radial-gradient(circle, rgba(255, 87, 34, .3), transparent 65%);
}
.c-cta > * { position: relative; z-index: 2; }
.c-cta h3 { font-size: 27px; margin-bottom: 9px; color: #fff; }
.c-cta p { color: rgba(255, 255, 255, .76); font-size: 15.5px; max-width: 520px; }
.c-cta .c-btn { flex-shrink: 0; }

/* ---------- loading / empty / error ---------------------------------------- */
.c-skel { background: linear-gradient(90deg, #eef1f6 25%, #e3e8f0 50%, #eef1f6 75%); background-size: 200% 100%; border-radius: 8px; animation: c-shimmer 1.4s infinite; }
@keyframes c-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.c-state { text-align: center; padding: 62px 30px; background: #fff; border: 1px solid #e6ebf2; border-radius: 18px; }
.c-state-mark { width: 64px; height: 64px; border-radius: 19px; background: #eef1f6; color: #8494a8; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.c-state-mark.c-warn { background: #fff4ed; color: var(--secondary-dark); }
.c-state h4 { font-size: 21px; margin-bottom: 10px; }
.c-state p { font-size: 15px; color: var(--gray); line-height: 1.6; max-width: 460px; margin: 0 auto 24px; }
.c-state-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- position detail ------------------------------------------------ */
.c-crumbs { background: var(--gray-bg); border-bottom: 1px solid #e6ebf2; padding: 15px 0; font-size: 13.5px; color: var(--gray); margin-top: 81px; }
.c-crumbs .c-wrap { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.c-crumbs a { color: var(--gray); text-decoration: none; }
.c-crumbs a:hover { color: var(--primary); }
.c-crumbs b { color: var(--dark); font-weight: 600; }
.c-crumbs .c-sep { color: var(--gray-light); }

.c-jobhead { position: relative; background: linear-gradient(135deg, #0d153a 0%, #1a237e 60%, #283593 100%); color: #fff; overflow: hidden; padding: 52px 0 56px; }
.c-jobhead::before { content: ''; position: absolute; width: 560px; height: 560px; right: -170px; top: -250px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 87, 34, .3), transparent 62%); }
.c-jobhead .c-wrap { position: relative; z-index: 2; }
.c-jh-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 48px; }
.c-jh-eyebrow {
    display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 700;
    letter-spacing: .13em; text-transform: uppercase; color: #ffc7b3; background: rgba(255, 87, 34, .15);
    border: 1px solid rgba(255, 138, 101, .4); padding: 6px 13px; border-radius: 999px; margin-bottom: 18px;
}
.c-jh-eyebrow .c-dot { background: var(--secondary-light); }
.c-jobhead h1 { font-size: 44px; line-height: 1.12; font-weight: 800; margin-bottom: 18px; max-width: 760px; color: #fff; }
.c-jh-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.c-jh-chip {
    display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 500;
    color: rgba(255, 255, 255, .9); background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .17); padding: 8px 14px; border-radius: 10px;
}
.c-jh-chip svg { color: rgba(255, 255, 255, .55); flex-shrink: 0; }
.c-jh-chip.c-gold { background: rgba(255, 214, 0, .13); border-color: rgba(255, 214, 0, .32); color: #ffe57f; }
.c-jh-chip.c-gold svg { color: var(--accent); }
.c-jh-actions { display: flex; flex-direction: column; gap: 12px; min-width: 220px; flex-shrink: 0; padding-top: 6px; }
.c-jh-meta { font-size: 12.8px; color: rgba(255, 255, 255, .55); text-align: center; }

.c-detail { display: grid; grid-template-columns: 1fr 366px; gap: 52px; align-items: start; padding: 60px 0 74px; }
.c-prose h2 { font-size: 25px; margin: 0 0 14px; }
.c-prose h3 { font-size: 19px; margin: 22px 0 10px; }
.c-prose p { color: #3f5065; font-size: 16px; line-height: 1.75; margin-bottom: 15px; }
.c-prose ul, .c-prose ol { margin: 0 0 15px; padding-left: 22px; color: #3f5065; font-size: 16px; line-height: 1.75; }
.c-prose ul { list-style: disc; }
.c-prose ol { list-style: decimal; }
.c-prose strong { color: var(--dark); font-weight: 600; }
.c-prose a { color: var(--primary); font-weight: 500; }
.c-block { padding-bottom: 34px; margin-bottom: 34px; border-bottom: 1px solid #e6ebf2; }
.c-block:last-child { border: 0; margin-bottom: 0; padding-bottom: 0; }
/* The lede wraps sanitised HTML from Pulse, so it styles its children rather
 * than itself — the summary may be several paragraphs or a short list. */
.c-lede { border-left: 3px solid var(--secondary); padding-left: 20px; }
.c-lede > :last-child { margin-bottom: 0; }
.c-lede p, .c-lede li { font-size: 17.5px; line-height: 1.7; color: #2b3a4d; }
.c-lede h3, .c-lede h4 { font-size: 18px; margin-top: 0; }
.c-ticks { display: grid; gap: 13px; margin: 4px 0 0 !important; padding: 0 !important; list-style: none !important; }
.c-ticks li { display: flex; gap: 13px; font-size: 15.6px; color: #3f5065; line-height: 1.6; }
.c-tick { flex-shrink: 0; width: 23px; height: 23px; border-radius: 7px; background: rgba(26, 35, 126, .08); color: var(--primary); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.c-ticks.c-gold-list .c-tick { background: rgba(255, 87, 34, .1); color: var(--secondary); }

.c-side { position: sticky; top: 104px; display: grid; gap: 20px; }
.c-card { background: #fff; border: 1px solid #e6ebf2; border-radius: 18px; box-shadow: 0 10px 34px rgba(15, 23, 42, .08); overflow: hidden; }
.c-card-h { padding: 20px 24px; border-bottom: 1px solid #e6ebf2; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.c-card-h h4 { font-size: 16.5px; }
.c-card-b { padding: 22px 24px; }
.c-kv { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px dashed #e6ebf2; font-size: 14.2px; }
.c-kv:last-of-type { border-bottom: 0; }
.c-kv span { color: var(--gray); flex-shrink: 0; }
.c-kv b { font-weight: 600; color: var(--dark); text-align: right; }
.c-kv b.c-pos { color: #0f7b4f; }
.c-map { display: block; height: 150px; background: linear-gradient(135deg, #e8edf5, #dfe6f0); position: relative; }
.c-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.c-steps { display: grid; }
.c-step { display: flex; gap: 14px; padding-bottom: 18px; position: relative; }
.c-step:last-child { padding-bottom: 0; }
.c-step::before { content: ''; position: absolute; left: 12px; top: 26px; bottom: 0; width: 2px; background: #e6ebf2; }
.c-step:last-child::before { display: none; }
.c-snum { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: #e3e8f0; color: var(--gray); font-size: 12.5px; font-weight: 700; display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; font-family: 'Poppins', sans-serif; }
.c-step.c-on .c-snum { background: var(--primary); color: #fff; }
.c-step b { display: block; font-size: 14.4px; font-weight: 600; margin-bottom: 2px; }
.c-step p { font-size: 13.2px; color: var(--gray); line-height: 1.5; }
.c-share { display: flex; gap: 9px; }
.c-sbtn { flex: 1; height: 40px; border-radius: 11px; border: 1px solid #e6ebf2; background: #fff; display: flex; align-items: center; justify-content: center; color: var(--gray); cursor: pointer; transition: var(--transition); }
.c-sbtn:hover { border-color: var(--primary); color: var(--primary); }
.c-schema { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 600; color: #0f7b4f; background: #e9f8f0; border: 1px solid #c7ecda; padding: 5px 10px; border-radius: 999px; white-space: nowrap; }

.c-more { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.c-mini { background: #fff; border: 1px solid #e6ebf2; border-radius: 16px; padding: 24px; box-shadow: 0 2px 10px rgba(15, 23, 42, .05); text-decoration: none; color: inherit; transition: var(--transition); display: block; }
.c-mini:hover { transform: translateY(-3px); box-shadow: 0 10px 34px rgba(15, 23, 42, .09); }
.c-mini .c-dept { margin-bottom: 12px; }
.c-mini h4 { font-size: 18px; margin-bottom: 8px; color: var(--primary); }
.c-mini p { font-size: 13.6px; color: var(--gray); margin-bottom: 16px; }

/* ---------- apply drawer --------------------------------------------------- */
.c-scrim {
    position: fixed; inset: 0; background: rgba(9, 14, 38, .55); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
    z-index: 1500; opacity: 0; visibility: hidden; transition: opacity .28s ease, visibility .28s ease;
}
.c-scrim.c-open { opacity: 1; visibility: visible; }
.c-drawer {
    position: fixed; top: 0; right: 0; bottom: 0; width: 588px; max-width: 100%; background: #fff;
    z-index: 1600; box-shadow: -30px 0 80px rgba(9, 14, 38, .35); display: flex; flex-direction: column;
    transform: translateX(100%); transition: transform .32s cubic-bezier(.32, .72, 0, 1);
}
.c-drawer.c-open { transform: translateX(0); }
.c-dr-head { padding: 24px 32px; background: linear-gradient(135deg, #0d153a, #1a237e); color: #fff; position: relative; overflow: hidden; flex-shrink: 0; }
.c-dr-head::after { content: ''; position: absolute; width: 280px; height: 280px; right: -80px; top: -140px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 87, 34, .32), transparent 65%); }
.c-dr-head-row { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.c-dr-eyebrow { font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #ffc7b3; margin-bottom: 7px; }
.c-dr-head h3 { font-size: 23px; margin-bottom: 8px; color: #fff; }
.c-dr-head p { font-size: 13.4px; color: rgba(255, 255, 255, .68); }
.c-x { width: 36px; height: 36px; border-radius: 10px; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .2); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; cursor: pointer; transition: var(--transition); }
.c-x:hover { background: rgba(255, 255, 255, .22); }
.c-dr-body { flex: 1; overflow-y: auto; padding: 26px 32px; -webkit-overflow-scrolling: touch; }
.c-dr-meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.c-dr-count { font-size: 12.4px; color: var(--gray-light); }

.c-grp { font-size: 11.8px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--gray-light); display: flex; align-items: center; gap: 12px; margin: 26px 0 18px; }
.c-grp:first-of-type { margin-top: 4px; }
.c-grp::after { content: ''; flex: 1; height: 1px; background: #e6ebf2; }

/* The form is a wrapping flex row so a col-6 field in the Pulse builder pairs
 * with the next one on the same line, and a full-width field always starts a
 * new line. Anything that is not a field spans the whole row. */
#cApplyForm { display: flex; flex-wrap: wrap; column-gap: 16px; }
#cApplyForm > .c-grp,
#cApplyForm > .c-hint,
#cApplyForm > .c-alert,
#cApplyForm > .c-hp { flex: 1 1 100%; }
#cApplyForm > input[type="hidden"] { display: none; }

.c-f { flex: 1 1 100%; min-width: 0; margin-bottom: 16px; }
.c-f.c-half { flex: 1 1 calc(50% - 8px); max-width: calc(50% - 8px); }
.c-f > label { display: block; font-size: 13.4px; font-weight: 600; margin-bottom: 7px; color: #2b3a4d; }
.c-f .c-req { color: var(--secondary); margin-left: 2px; }
.c-f input[type="text"], .c-f input[type="tel"], .c-f input[type="email"],
.c-f input[type="number"], .c-f input[type="date"], .c-f select, .c-f textarea {
    width: 100%; border: 1px solid #dbe2ec; border-radius: 11px; padding: 12px 15px;
    font-family: 'Inter', sans-serif; font-size: 14.4px; color: var(--dark); background: #fff; outline: 0; transition: var(--transition);
}
.c-f select {
    appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 42px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%239aa8bb' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 15px center;
}
.c-f textarea { min-height: 78px; resize: vertical; line-height: 1.55; }
.c-f input:focus, .c-f select:focus, .c-f textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26, 35, 126, .11); }
.c-f .c-hint { font-size: 12.3px; color: var(--gray-light); margin-top: 6px; }
.c-f .c-msg { display: none; font-size: 12.6px; color: #e11d48; margin-top: 6px; align-items: center; gap: 6px; font-weight: 500; }
.c-f.c-err .c-msg { display: flex; }
.c-f.c-err input, .c-f.c-err select, .c-f.c-err textarea { border-color: #e11d48; background: #fff5f7; }
.c-f.c-err .c-drop, .c-f.c-err .c-opts { border-color: #e11d48; }

.c-opts { display: flex; gap: 10px; flex-wrap: wrap; }
.c-opts.c-stack { flex-direction: column; }
.c-opt { flex: 1 1 auto; min-width: 120px; border: 1px solid #dbe2ec; border-radius: 11px; padding: 11px 14px; font-size: 14px; display: flex; align-items: center; gap: 9px; color: #2b3a4d; cursor: pointer; transition: var(--transition); margin: 0; font-weight: 400; }
.c-opt:hover { border-color: #b9c5d6; }
.c-opt input { accent-color: var(--primary); width: 17px; height: 17px; flex-shrink: 0; margin: 0; }
.c-opt.c-on { border-color: var(--primary); background: rgba(26, 35, 126, .05); font-weight: 600; }

.c-drop { border: 1.6px dashed #c6d0de; border-radius: 13px; background: #fafbfd; padding: 20px; display: flex; align-items: center; gap: 15px; cursor: pointer; transition: var(--transition); }
.c-drop:hover, .c-drop.c-dragging { border-color: var(--primary); background: #f5f7fd; }
.c-drop.c-filled { border-style: solid; border-color: #bfe9d5; background: #f2fbf6; cursor: default; }
.c-drop input[type="file"] { display: none; }
.c-dropicon { width: 44px; height: 44px; border-radius: 12px; background: rgba(26, 35, 126, .07); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-drop.c-filled .c-dropicon { background: #dcf3e7; color: #0f7b4f; }
.c-drop b { display: block; font-size: 14.2px; margin-bottom: 3px; word-break: break-word; }
.c-drop small { font-size: 12.4px; color: var(--gray); }
.c-drop-clear { width: 36px; height: 36px; border-radius: 10px; border: 1px solid #e6ebf2; background: #fff; display: flex; align-items: center; justify-content: center; color: var(--gray); flex-shrink: 0; cursor: pointer; }

.c-dr-foot { padding: 20px 32px; border-top: 1px solid #e6ebf2; background: #fff; box-shadow: 0 -8px 24px rgba(15, 23, 42, .05); flex-shrink: 0; }
.c-consent { display: flex; gap: 11px; font-size: 12.6px; color: var(--gray); line-height: 1.55; margin-bottom: 15px; cursor: pointer; }
.c-consent input { accent-color: var(--primary); width: 17px; height: 17px; flex-shrink: 0; margin-top: 1px; }
.c-alert { display: none; border-radius: 11px; padding: 13px 16px; margin-bottom: 16px; font-size: 13.6px; line-height: 1.55; }
.c-alert.c-show { display: block; }
.c-alert.c-alert-error { background: #ffebee; color: #b71c1c; border: 1px solid #ef9a9a; }
.c-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- drawer success ------------------------------------------------- */
.c-done { min-height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px 44px; }
.c-done-mark { width: 88px; height: 88px; border-radius: 50%; background: #e9f8f0; border: 1px solid #c7ecda; color: #0f7b4f; display: flex; align-items: center; justify-content: center; margin-bottom: 26px; }
.c-done h3 { font-size: 27px; margin-bottom: 12px; }
.c-done > p { font-size: 15.4px; color: var(--gray); line-height: 1.65; margin-bottom: 24px; }
.c-ref { display: inline-flex; align-items: center; gap: 10px; background: var(--gray-bg); border: 1px solid #e6ebf2; border-radius: 12px; padding: 12px 18px; font-size: 13.6px; color: var(--gray); margin-bottom: 28px; }
.c-ref b { font-family: 'Poppins', sans-serif; color: var(--dark); letter-spacing: .02em; }
.c-next { width: 100%; text-align: left; background: var(--gray-bg); border: 1px solid #e6ebf2; border-radius: 14px; padding: 20px 22px; }
.c-next > b { display: block; font-size: 13.8px; margin-bottom: 12px; }
.c-next li { display: flex; gap: 11px; font-size: 13.6px; color: var(--gray); line-height: 1.55; margin-bottom: 9px; }
.c-next li:last-child { margin-bottom: 0; }
.c-next .c-tick { width: 20px; height: 20px; border-radius: 6px; }

/* ---------- env ribbon (non-production only) ------------------------------- */
.c-env {
    position: fixed; left: 14px; bottom: 14px; z-index: 2000; display: flex; align-items: center; gap: 8px;
    background: #111827; color: #fff; font-family: 'Inter', sans-serif; font-size: 11.5px; font-weight: 600;
    letter-spacing: .04em; padding: 7px 13px; border-radius: 999px; box-shadow: 0 8px 22px rgba(0, 0, 0, .28);
}
.c-env i { font-style: normal; width: 7px; height: 7px; border-radius: 50%; background: #34d399; }
.c-env.c-env-develop i { background: var(--accent); }
.c-env span { color: rgba(255, 255, 255, .6); font-weight: 500; }

/* ---------- responsive ----------------------------------------------------- */
@media (max-width: 992px) {
    .c-jobs { grid-template-columns: 1fr; }
    .c-detail { grid-template-columns: 1fr; gap: 34px; padding: 36px 0 46px; }
    .c-side { position: static; }
    .c-more { grid-template-columns: 1fr; }
    .c-values { grid-template-columns: 1fr; }
    .c-filters { flex-wrap: wrap; }
    .c-search { flex: 1 1 100%; }
    .c-filters select { flex: 1 1 30%; }
}
@media (max-width: 768px) {
    .c-hero { margin-top: 72px; }
    .c-crumbs { margin-top: 72px; }
    .c-hero-inner { padding: 44px 0 96px; }
    .c-hero h1 { font-size: 33px; }
    .c-hero > .c-wrap > .c-hero-inner > p { font-size: 15.6px; }
    .c-stats { gap: 0; row-gap: 22px; margin-top: 30px; }
    .c-stats div { width: 50%; }
    .c-stats div b { font-size: 24px; }
    .c-filters { flex-direction: column; align-items: stretch; border-radius: 20px; margin-top: -58px; }
    .c-filters select { width: 100%; }
    .c-section { padding: 44px 0; }
    .c-section-head h2 { font-size: 26px; }
    .c-job { padding: 22px; }
    .c-job h3 { font-size: 19px; }
    .c-cta { flex-direction: column; align-items: flex-start; padding: 34px 28px; }
    .c-jobhead { padding: 34px 0 38px; }
    .c-jobhead h1 { font-size: 31px; }
    .c-jh-row { flex-direction: column; gap: 24px; }
    .c-jh-actions { min-width: 0; width: 100%; }
    .c-prose h2 { font-size: 21px; }
    .c-prose p, .c-ticks li { font-size: 15px; }
    .c-lede p, .c-lede li { font-size: 16px; }
    .c-dr-head { padding: 18px 20px; }
    .c-dr-head h3 { font-size: 19.5px; }
    .c-dr-body { padding: 20px; }
    .c-dr-foot { padding: 16px 20px; }
    .c-f.c-half { flex: 1 1 100%; max-width: 100%; }
    .c-done { padding: 32px 24px; }
    .c-env { left: 10px; bottom: 10px; }
}
