:root {
    --primary: #00A0E1;
    --primary-dark: #007FB4;
    --primary-soft: #E8F7FD;
    --secondary: #96BE0F;
    --secondary-dark: #769A08;
    --secondary-soft: #F3F8E5;
    --navy: #102A3A;
    --bg: #F7F9FB;
    --surface: #FFFFFF;
    --text: #17232D;
    --muted: #667580;
    --border: #DFE7EB;
    --success: #16A34A;
    --warning: #F59E0B;
    --danger: #DC2626;
    --brand-accent: #96BE0F;
    --brand-accent-light: #C7E85A;
    --brand-accent-dark: #769A08;
    --ink: #0F1217;
    --charcoal: #1D232C;
    --shadow: 0 22px 60px rgba(16, 42, 58, .12);
    --radius: 2px;
    --max: 1260px;
    --font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --font-body: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.topbar { background: #0D0F13; color: #9CA4AF; font-size: 13px; }
.topbar__inner { min-height: 44px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.topbar__contact { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.topbar__item svg { width: 16px; height: 16px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; opacity: .9; }
.topbar__social { display: flex; align-items: center; gap: 12px; }
.topbar__social a { width: 27px; height: 27px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; color: #AEB5BF; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.topbar__social svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.topbar__social a:first-child svg, .topbar__social a:last-child svg { fill: currentColor; stroke: none; }
.topbar__social a:hover { color: white; border-color: var(--brand-accent); background: var(--brand-accent); }
.site-header { position: sticky; top: 0; z-index: 20; background: #fff; border-bottom: 1px solid #E5E7EA; }
.nav { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 236px; max-width: 236px; overflow: hidden; }
.brand__image { display: block; width: auto; max-width: 220px; max-height: 58px; object-fit: contain; }
.brand__mark { position: relative; width: 44px; height: 44px; flex: none; border: 2px solid var(--primary); border-radius: 50%; background: transparent; }
.brand__mark::after { content: ""; position: absolute; inset: 6px; border: 2px solid var(--brand-accent); border-left-color: transparent; border-radius: 50%; }
.brand__text { min-width: 0; }
.brand strong { display: block; font-family: var(--font-head); font-size: 22px; color: #1E242C; line-height: .95; letter-spacing: .14em; font-weight: 700; white-space: nowrap; }
.brand small { display: block; margin-top: 6px; color: var(--brand-accent-dark); font-size: 8px; font-weight: 800; letter-spacing: .44em; text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; justify-content: flex-end; gap: 13px; font-family: var(--font-body); flex: 1 1 auto; min-width: 0; }
.nav-menu > a:not(.btn), .nav-dropdown > a { position: relative; display: inline-flex; align-items: center; min-height: 88px; padding: 0 2px; color: #2D333B; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; white-space: nowrap; }
.nav-menu > a:not(.btn)::after, .nav-dropdown > a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 24px; height: 2px; background: var(--brand-accent); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.nav-menu > a:not(.btn):hover, .nav-menu > a:not(.btn).is-active, .nav-dropdown > a:hover, .nav-dropdown > a.is-active { color: var(--brand-accent-dark); background: transparent; }
.nav-menu > a:not(.btn):hover::after, .nav-menu > a:not(.btn).is-active::after, .nav-dropdown > a:hover::after, .nav-dropdown > a.is-active::after { transform: scaleX(1); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::before { content: "⌄"; position: absolute; right: -15px; top: 35px; color: #A9AFB8; font-size: 11px; letter-spacing: 0; }
.nav-dropdown__menu { position: absolute; top: 100%; left: -18px; min-width: 238px; padding: 10px 0; background: white; border: 1px solid #E3E5E9; box-shadow: 0 18px 42px rgba(15,18,23,.15); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .22s ease; }
.nav-dropdown:hover .nav-dropdown__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown__menu a { display: block; padding: 12px 24px; color: #3F4650; font-size: 14px; letter-spacing: 0; text-transform: none; font-weight: 500; }
.nav-dropdown__menu a:hover { color: var(--brand-accent-dark); background: var(--secondary-soft); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--border); background: white; border-radius: var(--radius); }
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--navy); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; padding: 15px 30px; border: 1px solid var(--primary); border-radius: var(--radius); background: var(--primary); color: white !important; font-size: 12px; font-family: var(--font-body); font-weight: 800; letter-spacing: .16em; text-transform: uppercase; box-shadow: none; transition: .25s ease; }
.btn:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn--nav { min-height: 44px; padding: 13px 23px; margin-left: 8px; background: var(--brand-accent); border-color: var(--brand-accent); color: white !important; align-self: center; flex: 0 0 auto; }
.btn--nav:hover, .btn--gold:hover { background: #111418; border-color: #111418; }
.btn--gold, .btn--apply { background: var(--brand-accent); border-color: var(--brand-accent); color: white !important; }
.btn--outline-light { min-width: 232px; background: transparent; border-color: rgba(255,255,255,.35); color: white !important; }
.btn--outline-light:hover { background: white; border-color: white; color: #14181E !important; }
.hero__actions .btn--outline-light:hover { background: var(--brand-accent); border-color: var(--brand-accent); color: white !important; }
.btn--ghost { background: white; color: var(--primary-dark) !important; box-shadow: none; }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; color: var(--brand-accent-light); font-size: 11px; font-weight: 800; letter-spacing: .32em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--brand-accent); }
.hero { position: relative; overflow: hidden; color: white; background: radial-gradient(62% 75% at 88% 55%, rgba(0,160,225,.22), transparent 62%), linear-gradient(100deg, #0B0D11 0%, #171C23 48%, #2C3441 100%); }
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 88px 88px; opacity: .45; }
.hero__grid { position: relative; z-index: 1; min-height: 620px; display: grid; align-items: center; padding: 86px 0 78px; }
.hero__grid--classic { grid-template-columns: minmax(0, 790px); }
.hero h1, .page-hero h1 { margin: 24px 0 26px; font-family: var(--font-head); font-size: clamp(48px, 6.2vw, 80px); line-height: 1.02; color: white; letter-spacing: -.02em; font-weight: 400; }
.hero h1 em { color: var(--brand-accent-light); font-style: italic; font-weight: 400; }
.hero p { max-width: 640px; color: #C5CDD7; font-size: clamp(15px, 1.1vw, 18px); line-height: 1.62; font-weight: 500; }
.page-hero p, .section-head p { max-width: 680px; color: var(--muted); font-size: 18px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero__facts { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 56px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.14); color: #9AA2AE; font-size: 11px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; }
.hero__facts span { display: inline-flex; align-items: center; gap: 9px; }
.hero__facts b { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-accent); box-shadow: 0 0 0 4px rgba(150,190,15,.18); }
.hero__facts strong { color: white; letter-spacing: .12em; }
.hero__panel { background: rgba(255,255,255,.82); border: 1px solid rgba(0,160,225,.18); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.mini-card { padding: 24px; border-radius: var(--radius); background: var(--navy); color: white; }
.mini-card span, .mini-card small { display: block; color: rgba(255,255,255,.72); }
.mini-card strong { display: block; margin: 8px 0; font-family: var(--font-head); font-size: 28px; }
.mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 14px 0; }
.mini-stats div { padding: 20px; background: white; border: 1px solid var(--border); border-radius: var(--radius); }
.mini-stats strong { display: block; color: var(--primary-dark); font-family: var(--font-head); font-size: 32px; }
.mini-stats span { color: var(--muted); font-size: 13px; font-weight: 700; }
.process-line { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.process-line span { padding: 10px; text-align: center; border-radius: var(--radius); background: var(--secondary-soft); color: var(--secondary-dark); font-size: 12px; font-weight: 800; }
.search-band { position: relative; z-index: 2; background: white; padding: 24px 0; border-bottom: 1px solid var(--border); }
.job-search { display: grid; grid-template-columns: 1.1fr 1fr 1fr auto; gap: 12px; padding: 18px; background: white; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.job-search input, .job-search select { min-height: 48px; width: 100%; border: 1px solid var(--border); border-radius: var(--radius); padding: 0 14px; color: var(--text); background: white; }
.job-search input:focus, .job-search select:focus { outline: 3px solid rgba(0,160,225,.14); border-color: var(--primary); }
.section { padding: 82px 0; }
.section-head { margin-bottom: 34px; }
.section-head h2 { max-width: 780px; margin: 18px 0; font-family: var(--font-head); font-size: clamp(38px, 4.4vw, 56px); line-height: 1.1; color: #101317; font-weight: 400; }
.cards { display: grid; gap: 20px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--preview { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.card { min-height: 190px; padding: 26px; background: white; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 14px 34px rgba(16,42,58,.06); }
.card__icon { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 18px; border-radius: var(--radius); background: var(--primary-soft); color: var(--primary-dark); font-weight: 800; }
.card h3 { margin: 0 0 10px; font-family: var(--font-head); color: var(--navy); }
.card p { margin: 0 0 18px; color: var(--muted); }
.txt-link { color: var(--primary-dark); font-weight: 800; }
.page-hero { padding: 96px 0; background: linear-gradient(105deg, #0B0D11, #252D38); }
.page-hero .eyebrow { color: var(--brand-accent-light); }
.footer { background: #0B0E12; color: #949BA7; padding: 82px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.35fr .8fr .9fr 1.15fr; gap: 58px; align-items: start; }
.footer h3 { margin: 0 0 22px; color: white; font-family: var(--font-body); font-size: 12px; font-weight: 900; letter-spacing: .22em; text-transform: uppercase; }
.footer a { display: block; margin: 10px 0; color: #9AA2AE; transition: color .2s ease; }
.footer a:hover { color: white; }
.footer__about p { max-width: 340px; margin: 20px 0 26px; line-height: 1.75; }
.footer__links a { font-weight: 500; }
.footer__contact p { display: grid; grid-template-columns: 18px 1fr; gap: 12px; align-items: start; margin: 0 0 16px; line-height: 1.6; }
.footer__contact svg { width: 17px; height: 17px; margin-top: 4px; fill: none; stroke: var(--brand-accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer__contact a { display: inline; margin: 0; }
.footer__social { display: flex; gap: 12px; flex-wrap: wrap; }
.footer__social a { width: 37px; height: 37px; display: grid; place-items: center; margin: 0; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; color: #A7AEB9; }
.footer__social svg { width: 15px; height: 15px; fill: currentColor; stroke: none; }
.footer__social a:nth-child(2) svg { fill: none; stroke: currentColor; stroke-width: 1.8; }
.footer__social a:hover { color: white; border-color: var(--brand-accent); background: rgba(150,190,15,.12); }
.brand--footer { flex-basis: auto; max-width: 320px; margin-bottom: 18px; }
.brand--footer .brand__image { max-width: 260px; max-height: 78px; }
.brand--footer strong, .brand--admin strong { color: white; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; margin-top: 58px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; }
.footer__bottom span:last-child { display: flex; gap: 24px; flex-wrap: wrap; justify-content: flex-end; }
.footer__bottom a { display: inline; margin: 0; }
.whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 25; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: #25D366; color: white; box-shadow: 0 18px 34px rgba(37,211,102,.34); transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.whatsapp svg { width: 29px; height: 29px; display: block; fill: currentColor; }
.whatsapp:hover { transform: translateY(-3px); background: #1EBE5D; box-shadow: 0 22px 42px rgba(37,211,102,.42); }
.admin-body { background: #F2F6F8; color: #17232D; }
.admin-layout { min-height: 100vh; display: grid; grid-template-columns: 286px minmax(0, 1fr); }
.admin-main, .admin-content, .admin-panel, .admin-head, .admin-hero { min-width: 0; max-width: 100%; }
.admin-sidebar { position: sticky; top: 0; height: 100vh; overflow-y: auto; background: linear-gradient(180deg, #0C2230 0%, #102A3A 58%, #0A1A24 100%); padding: 24px 18px; color: white; box-shadow: 16px 0 36px rgba(16,42,58,.10); }
.brand--admin { flex-basis: auto; max-width: none; margin-bottom: 24px; padding: 6px 6px 22px; border-bottom: 1px solid rgba(255,255,255,.12); }
.brand--admin .brand__image { max-width: 220px; max-height: 72px; filter: none; }
.admin-nav { display: grid; gap: 0; }
.admin-nav a { display: flex; align-items: center; gap: 11px; padding: 12px 12px; border-bottom: 1px solid rgba(255,255,255,.08); border-radius: 0; color: rgba(255,255,255,.72); font-size: 13px; font-weight: 700; }
.admin-nav a:first-child { border-top: 1px solid rgba(255,255,255,.08); }
.admin-nav a span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 6px; background: rgba(255,255,255,.08); color: var(--brand-accent-light); flex: 0 0 auto; }
.admin-nav a svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.admin-nav a:first-child svg { fill: currentColor; stroke: none; }
.admin-nav a:hover { background: rgba(150,190,15,.14); color: white; border-bottom-color: rgba(150,190,15,.34); }
.admin-nav a:hover span { background: var(--brand-accent); color: #0C2230; }
.admin-nav a.is-active { background: rgba(0,160,225,.18); color: white; border-bottom-color: rgba(255,255,255,.08); }
.admin-nav a.is-active { box-shadow: inset 3px 0 0 var(--brand-accent); }
.admin-nav a.is-active span { background: var(--primary); color: white; }
.admin-main { min-width: 0; }
.admin-topbar { min-height: 76px; display: grid; grid-template-columns: 1fr minmax(280px, 460px) auto auto; align-items: center; gap: 16px; padding: 0 28px; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 10; backdrop-filter: blur(12px); }
.admin-topbar strong { display: block; color: var(--navy); font-size: 18px; }
.admin-topbar span { color: var(--muted); font-size: 13px; }
.admin-top-search { display: grid; grid-template-columns: 1fr auto; border: 1px solid var(--border); background: #F8FBFC; }
.admin-top-search input { min-height: 42px; border: 0; background: transparent; padding: 0 14px; outline: 0; }
.admin-top-search button { border: 0; background: var(--primary); color: white; padding: 0 16px; font-weight: 800; }
.admin-public-link { color: #52616C; font-size: 13px; font-weight: 600; letter-spacing: .02em; white-space: nowrap; transition: color .2s ease, background .2s ease; }
.admin-public-link:hover { color: var(--brand-accent-dark); }
.admin-content { padding: 30px; }
.admin-section { display: grid; gap: 22px; }
.admin-hero, .admin-head { display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; padding: 28px; background: linear-gradient(135deg, #FFFFFF 0%, #ECF9FE 100%); border: 1px solid var(--border); border-radius: 8px; box-shadow: 0 16px 38px rgba(16,42,58,.07); }
.admin-hero h1, .admin-head h1 { margin: 8px 0 10px; font-family: var(--font-head); color: var(--navy); font-size: clamp(34px, 3.4vw, 52px); line-height: 1.05; font-weight: 500; }
.admin-hero p, .admin-head p { max-width: 720px; margin: 0; color: var(--muted); }
.admin-eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--primary-dark); font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.admin-eyebrow::before { content: ""; width: 32px; height: 2px; background: var(--brand-accent); }
.admin-hero__actions, .admin-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.btn--soft { background: white; color: var(--primary-dark) !important; border-color: var(--border); }
.btn--soft:hover { background: var(--primary-soft); border-color: var(--primary); color: var(--primary-dark) !important; }
.metric-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.metric-grid--wide { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.metric, .admin-panel { padding: 22px; background: white; border: 1px solid var(--border); border-radius: 8px; box-shadow: 0 12px 30px rgba(16,42,58,.05); }
.metric { position: relative; overflow: hidden; }
.metric::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--primary); }
.metric:nth-child(even)::before { background: var(--brand-accent); }
.metric span { color: var(--muted); font-weight: 800; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.metric strong { display: block; margin-top: 8px; color: var(--navy); font-family: var(--font-head); font-size: 42px; line-height: 1; }
.metric small { color: var(--muted); font-weight: 600; }
.admin-panel h2 { margin: 0; font-family: var(--font-head); color: var(--navy); font-size: 28px; font-weight: 600; }
.admin-panel p { margin: 0; color: var(--muted); }
.dashboard-grid { display: grid; grid-template-columns: 1.35fr .9fr; gap: 18px; align-items: start; }
.panel-head { display: flex; justify-content: space-between; gap: 16px; align-items: center; margin-bottom: 16px; }
.panel-head a { color: var(--primary-dark); font-weight: 800; }
.table-wrap { width: 100%; overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 680px; }
.admin-table th { padding: 13px 12px; text-align: left; background: #F6FAFC; color: var(--muted); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; border-bottom: 1px solid var(--border); }
.admin-table td { padding: 14px 12px; border-bottom: 1px solid var(--border); color: #24313C; font-weight: 600; vertical-align: middle; }
.admin-table tr:hover td { background: #FBFDFE; }
.status-pill { display: inline-flex; align-items: center; min-height: 26px; padding: 4px 9px; border-radius: 999px; background: #EEF2F5; color: #475569; font-size: 11px; font-weight: 800; white-space: nowrap; }
.status-new, .status-open, .status-due-today { background: var(--primary-soft); color: var(--primary-dark); }
.status-contacted, .status-ready, .status-published, .status-active, .status-approved { background: #ECFDF3; color: #166534; }
.status-high, .status-overdue, .status-documents-pending { background: #FFF7ED; color: #B45309; }
.status-draft, .status-review, .status-pending { background: #F8FAFC; color: #475569; }
.row-actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.row-actions a, .row-actions button { min-height: 34px; padding: 7px 10px; border: 1px solid var(--border); background: white; color: var(--primary-dark); font-size: 12px; font-weight: 800; cursor: pointer; }
.row-actions a:hover, .row-actions button:hover { background: var(--primary-soft); }
.row-actions form { margin: 0; }
.row-actions .row-delete { color: #B42318; border-color: #F3C7C2; }
.row-actions .row-delete:hover { background: #FEE4E2; border-color: #FDA29B; }
.admin-filter { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-bottom: 16px; }
.admin-filter .btn--excel { background: #107C41; border-color: #107C41; color: #fff; }
.admin-filter .btn--excel:hover { background: #0B6334; border-color: #0B6334; }
.admin-filter input, .quick-form input, .quick-form select, .quick-form textarea { min-height: 46px; border: 1px solid var(--border); padding: 0 12px; background: white; outline: 0; width: 100%; min-width: 0; }
.quick-form textarea { min-height: 104px; padding: 12px; resize: vertical; }
.admin-filter input:focus, .quick-form input:focus, .quick-form select:focus, .quick-form textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,160,225,.12); }
.quick-form-panel { scroll-margin-top: 100px; }
.quick-form { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; align-items: end; margin-top: 14px; }
.quick-form label { color: var(--navy); font-weight: 800; font-size: 13px; }
.quick-form--jobs { grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: start; }
.quick-form--leads { grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: start; }
.quick-form--users { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.quick-form__wide { grid-column: span 2; }
.quick-form__actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; grid-column: 1 / -1; }
.lead-preview-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 14px; }
.lead-preview-grid div { padding: 12px; border: 1px solid var(--border); background: #FBFDFE; }
.lead-preview-grid span { display: block; margin-bottom: 6px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.lead-preview-grid strong { color: var(--navy); font-size: 14px; line-height: 1.35; }
.report-dashboard { display: grid; gap: 18px; }
.report-metrics { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.report-metrics article { position: relative; min-height: 132px; padding: 18px; overflow: hidden; background: #fff; border: 1px solid var(--border); border-radius: 8px; box-shadow: 0 12px 30px rgba(16,42,58,.05); }
.report-metrics article::after { content: ""; position: absolute; right: -28px; top: -28px; width: 86px; height: 86px; border-radius: 50%; background: rgba(0,160,225,.10); }
.report-metrics article:nth-child(even)::after { background: rgba(150,190,15,.16); }
.report-metrics span { color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.report-metrics strong { display: block; margin: 12px 0 8px; color: var(--navy); font-family: var(--font-head); font-size: 42px; line-height: .95; font-weight: 600; }
.report-metrics small { color: var(--muted); font-weight: 700; }
.report-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.report-card { min-height: 360px; }
.report-card--wide { grid-column: span 2; }
.report-badge { display: inline-flex; align-items: center; min-height: 28px; padding: 5px 10px; background: var(--primary-soft); color: var(--primary-dark); border: 1px solid rgba(0,160,225,.20); border-radius: 999px; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; white-space: nowrap; }
.report-column-chart { display: grid; grid-template-columns: repeat(7, minmax(54px, 1fr)); gap: 14px; align-items: end; min-height: 260px; padding-top: 12px; }
.report-column { display: grid; grid-template-rows: 1fr auto auto; gap: 8px; align-items: end; height: 240px; text-align: center; }
.report-column span { align-self: end; display: block; min-height: 8px; border-radius: 8px 8px 2px 2px; background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%); box-shadow: 0 10px 22px rgba(0,160,225,.20); }
.report-column strong { color: var(--navy); font-size: 14px; }
.report-column small { color: var(--muted); font-size: 11px; font-weight: 800; }
.report-bars, .report-funnel, .report-job-list { display: grid; gap: 14px; }
.report-bars div { display: grid; gap: 8px; }
.report-bars p { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin: 0; color: var(--navy); }
.report-bars p strong { font-size: 14px; }
.report-bars p span { color: var(--muted); font-weight: 900; }
.report-bars i { display: block; height: 12px; min-width: 8px; border-radius: 999px; background: linear-gradient(90deg, var(--primary), var(--brand-accent)); }
.report-bars--status i { background: linear-gradient(90deg, #1D4ED8, #10B981); }
.report-funnel div { display: grid; grid-template-columns: 1fr auto; gap: 8px 12px; align-items: center; }
.report-funnel span { grid-column: 1 / -1; display: block; height: 34px; padding: 5px; background: #F1F5F9; border: 1px solid var(--border); }
.report-funnel i { display: block; height: 100%; min-width: 10px; background: linear-gradient(90deg, var(--primary-dark), var(--primary)); }
.report-funnel strong { color: var(--navy); font-size: 14px; }
.report-funnel em { color: var(--muted); font-style: normal; font-weight: 900; }
.report-job-list div { display: grid; grid-template-columns: minmax(150px, .65fr) 1fr auto; gap: 12px; align-items: center; }
.report-job-list strong { color: var(--navy); font-size: 14px; }
.report-job-list span { display: block; height: 12px; background: #EEF2F5; border-radius: 999px; overflow: hidden; }
.report-job-list i { display: block; height: 100%; min-width: 8px; background: linear-gradient(90deg, var(--brand-accent), var(--secondary-dark)); }
.report-job-list em { min-width: 30px; color: var(--muted); font-style: normal; font-weight: 900; text-align: right; }
.document-publish-form .btn { white-space: nowrap; }
.work-list, .case-list { display: grid; gap: 10px; }
.work-list a, .case-list a { display: grid; gap: 2px; padding: 14px; border: 1px solid var(--border); background: #FBFDFE; }
.work-list a:hover, .case-list a:hover { border-color: var(--primary); background: var(--primary-soft); }
.work-list span, .case-list span { color: var(--muted); font-size: 12px; font-weight: 800; }
.work-list strong, .case-list strong { color: var(--navy); }
.work-list small { color: var(--muted); }
.case-list em { justify-self: start; font-style: normal; margin-top: 5px; }
.funnel { display: grid; gap: 14px; }
.funnel div { display: grid; grid-template-columns: 1fr auto; gap: 8px; align-items: center; }
.funnel div span { grid-column: 1 / -1; height: 10px; border-radius: 999px; background: linear-gradient(90deg, var(--primary), var(--brand-accent)); }
.funnel b { color: var(--navy); }
.funnel em { color: var(--muted); font-style: normal; font-weight: 800; }
.admin-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 30; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: #25D366; color: white; font-weight: 900; box-shadow: 0 18px 34px rgba(37,211,102,.34); }
.admin-whatsapp svg { width: 30px; height: 30px; display: block; fill: currentColor; }
.admin-whatsapp:hover { background: #1EBE5D; transform: translateY(-3px); }
.settings-panel { max-width: 900px; }
.logo-setting-grid { display: grid; grid-template-columns: 320px 1fr; gap: 28px; align-items: start; }
.logo-preview-box { min-height: 210px; display: grid; align-content: center; gap: 18px; padding: 24px; border: 1px dashed var(--border); background: #FBFDFE; }
.logo-preview-box > span { color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.logo-preview-box img { max-width: 260px; max-height: 110px; object-fit: contain; }
.brand--preview { flex-basis: auto; max-width: none; }
.settings-form { display: grid; gap: 14px; }
.settings-form--grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 18px; }
.settings-form--grid input { width: 100%; min-height: 46px; border: 1px solid var(--border); padding: 0 12px; }
.settings-form--grid input:focus { outline: 0; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,160,225,.12); }
.settings-form__wide, .settings-form__actions { grid-column: 1 / -1; }
.settings-form label { color: var(--navy); font-weight: 800; }
.settings-form input[type="file"] { width: 100%; padding: 14px; border: 1px solid var(--border); background: white; }
.settings-form p { color: var(--muted); }
.notice { margin-bottom: 18px; padding: 12px 14px; border-radius: var(--radius); font-weight: 700; }
.notice--success { color: #166534; background: #DCFCE7; border: 1px solid #BBF7D0; }
.notice--error { color: #991B1B; background: #FEE2E2; border: 1px solid #FECACA; }
.application-form, .form-success, .status-card { padding: 26px; background: white; border: 1px solid var(--border); border-radius: 8px; box-shadow: 0 14px 34px rgba(16,42,58,.06); }
.form-success { margin-bottom: 22px; }
.form-success h2, .status-card h2 { margin: 0 0 10px; font-family: var(--font-head); color: var(--navy); font-size: 36px; }
.form-grid, .upload-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-bottom: 22px; }
.application-form label, .status-form label { display: grid; gap: 7px; color: var(--navy); font-weight: 800; font-size: 13px; }
.application-form input, .application-form select, .status-form input { min-height: 46px; border: 1px solid var(--border); padding: 0 12px; background: white; outline: 0; }
.application-form textarea { min-height: 150px; border: 1px solid var(--border); padding: 12px; resize: vertical; font: inherit; outline: 0; }
.application-form input[type="file"] { padding: 11px; }
.application-form input:focus, .application-form select:focus, .application-form textarea:focus, .status-form input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,160,225,.12); }
.application-form--ozo { width: min(100%, 760px); margin: 0 auto; padding: 48px; border-radius: 0; border: 1px solid #DDE3E7; background: #fff; box-shadow: 0 24px 60px rgba(16,42,58,.06); }
.application-form--ozo .form-intro h2 { margin: 0 0 8px; color: #111418; font-family: var(--font-body); font-size: 26px; line-height: 1.2; font-weight: 800; letter-spacing: 0; }
.application-form--ozo .form-grid, .application-form--ozo .upload-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 20px; margin-bottom: 30px; }
.application-form--ozo label { gap: 10px; color: #2C333B; font-size: 11px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.application-form--ozo input, .application-form--ozo select, .application-form--ozo textarea { min-height: 56px; border: 1px solid #DCE2E7; background: #F7F7F7; color: #17232D; font-size: 15px; font-weight: 500; letter-spacing: 0; text-transform: none; box-shadow: none; }
.application-form--ozo input, .application-form--ozo select { padding: 0 16px; }
.application-form--ozo input::placeholder, .application-form--ozo textarea::placeholder { color: #7A818A; opacity: 1; }
.application-form--ozo input[type="file"] { display: flex; align-items: center; width: 100%; max-width: 100%; min-width: 0; padding: 15px; background: #fff; }
.application-form--ozo input[type="file"]::file-selector-button { margin-right: 12px; padding: 8px 12px; border: 1px solid #DCE2E7; background: #F5F6F6; color: #111418; font-weight: 800; cursor: pointer; }
.application-form--ozo input[type="file"]::file-selector-button:hover { background: var(--secondary-soft); border-color: var(--brand-accent); }
.application-form--ozo input:focus, .application-form--ozo select:focus, .application-form--ozo textarea:focus { background: #fff; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,160,225,.12); }
.application-form--ozo .btn--gold { min-width: 232px; background: var(--brand-accent); border-color: var(--brand-accent); }
.job-choice-group { margin: 0 0 30px; }
.job-choice-group h3 { margin: 0 0 14px; color: #111418; font-size: 18px; line-height: 1.25; }
.job-choice-list { display: grid; gap: 0; border: 1px solid #DCE2E7; background: #fff; }
.application-form--ozo .job-choice { display: flex; grid-template-columns: none; align-items: center; gap: 16px; min-height: 64px; padding: 0 18px; border-bottom: 1px solid #EEF1F4; color: #20242A; font-size: 18px; font-weight: 500; letter-spacing: 0; text-transform: none; }
.application-form--ozo .job-choice:last-child { border-bottom: 0; }
.application-form--ozo .job-choice input { width: 28px; min-width: 28px; height: 28px; min-height: 28px; margin: 0; accent-color: var(--primary); box-shadow: none; }
.application-form--ozo .job-choice span { line-height: 1.3; }
.status-form { display: grid; grid-template-columns: minmax(0, 420px) auto; gap: 12px; margin-bottom: 22px; }
.status-card { max-width: 620px; display: grid; gap: 6px; }
.status-card p { margin: 0; color: var(--muted); }
.status-check-section { padding: 86px 0 96px; background: linear-gradient(90deg, #fff 0%, #F7F8F9 50%, #fff 100%); }
.status-check-section .container { max-width: 760px; }
.status-check-card { padding: 48px; background: #fff; border: 1px solid #DDE3E7; box-shadow: 0 24px 60px rgba(16,42,58,.06); }
.status-check-card h1 { margin: 0 0 8px; color: #111418; font-family: var(--font-body); font-size: 26px; line-height: 1.2; font-weight: 800; letter-spacing: 0; }
.status-note { margin: 8px 0 28px; padding: 16px 18px; border-left: 3px solid var(--brand-accent); background: #F5F6F6; color: #667580; font-size: 14px; line-height: 1.75; }
.status-note strong { color: #323942; }
.status-form--card { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 0; }
.status-form--card label { color: #2C333B; font-size: 11px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.status-form--card input { min-height: 56px; width: 100%; border: 1px solid #DCE2E7; background: #F7F7F7; padding: 0 18px; color: #17232D; font-size: 16px; box-shadow: none; }
.status-form--card input:focus { background: #fff; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,160,225,.12); }
.btn--dark { width: 204px; margin-top: 8px; background: #080A0D; border-color: #080A0D; color: #fff !important; }
.btn--dark:hover { background: var(--brand-accent); border-color: var(--brand-accent); }
.status-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 30px; }
.status-info-card { min-height: 280px; padding: 36px 30px; background: #fff; border: 1px solid #DDE3E7; }
.status-info-icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 28px; border: 2px solid var(--brand-accent-dark); border-radius: 50%; color: var(--brand-accent-dark); font-weight: 800; font-family: var(--font-body); }
.status-info-card h3 { margin: 0 0 12px; color: #15191F; font-family: var(--font-body); font-size: 21px; font-weight: 800; letter-spacing: 0; }
.status-info-card p { margin: 0; color: #667580; font-size: 16px; line-height: 1.7; }
.status-message { margin: 22px 0 0; padding: 18px 20px; background: #F5F6F6; border-left: 3px solid var(--brand-accent); color: #4B5563; }
.status-message--error { border-left-color: var(--danger); background: #FEF2F2; color: #991B1B; }
.status-result-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; margin-top: 26px; padding: 28px; background: #fff; border: 1px solid #DDE3E7; box-shadow: 0 24px 60px rgba(16,42,58,.06); }
.status-result-panel h2 { margin: 12px 0; font-family: var(--font-head); color: var(--navy); font-size: 38px; }
.status-result-panel p { margin: 6px 0; color: var(--muted); }
.public-documents { display: grid; gap: 18px; }
.public-document-card { display: grid; gap: 12px; padding: 18px; border: 1px solid var(--border); background: #FBFDFE; }
.public-document-card h3 { margin: 0; color: var(--navy); font-family: var(--font-body); font-size: 18px; }
.public-document-card p { margin: 0; }
.public-document-card iframe { width: 100%; min-height: 420px; border: 1px solid var(--border); background: white; }
.jobs-toolbar { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin: 42px 0 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.jobs-toolbar .eyebrow { color: var(--brand-accent-dark); }
.jobs-toolbar h2 { margin: 10px 0 0; color: #101317; font-family: var(--font-head); font-size: clamp(34px, 3.4vw, 48px); line-height: 1; font-weight: 500; }
.jobs-toolbar p { max-width: 480px; margin: 0; color: var(--muted); line-height: 1.7; }
.jobs-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 0; }
.job-card { display: grid; grid-template-rows: 218px 1fr; background: #fff; border: 1px solid #DCE5EA; border-radius: 0; box-shadow: 0 18px 42px rgba(16,42,58,.07); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.job-card:hover { transform: translateY(-4px); border-color: rgba(150,190,15,.45); box-shadow: 0 24px 54px rgba(16,42,58,.13); }
.job-card__media { position: relative; display: block; min-height: 218px; overflow: hidden; background: #111820; }
.job-card__media img { width: 100%; height: 100%; display: block; object-fit: cover; transform: scale(1.01); transition: transform .35s ease, filter .35s ease; }
.job-card:hover .job-card__media img { transform: scale(1.06); filter: saturate(1.08); }
.job-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,17,23,0) 35%, rgba(13,17,23,.48) 100%); pointer-events: none; }
.job-card__media span { position: absolute; left: 24px; bottom: 20px; z-index: 1; display: inline-flex; align-items: center; min-height: 30px; padding: 7px 11px; background: rgba(255,255,255,.92); color: var(--primary-dark); font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.job-card__body { display: grid; gap: 15px; padding: 26px 26px 24px; }
.job-card__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.job-card__location { color: var(--primary-dark); font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.job-card__status { display: inline-flex; align-items: center; gap: 7px; padding: 6px 10px; background: var(--secondary-soft); color: var(--secondary-dark); border: 1px solid rgba(150,190,15,.24); border-radius: 999px; font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; white-space: nowrap; }
.job-card__status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--brand-accent); box-shadow: 0 0 0 4px rgba(150,190,15,.18); }
.job-card h2 { margin: 0; color: #101317; font-family: var(--font-head); font-size: 30px; line-height: 1.1; font-weight: 600; }
.job-card__employer { margin: -4px 0 0; color: #566572; font-weight: 600; }
.job-card__meta { display: grid; grid-template-columns: 1.4fr .8fr 1fr; gap: 10px; margin: 2px 0 0; }
.job-card__meta div { padding: 11px 12px; background: #F7FAFC; border: 1px solid #E4EBEF; border-radius: 0; }
.job-card__meta dt { color: #64737F; font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.job-card__meta dd { margin: 3px 0 0; color: #0F1720; font-size: 16px; line-height: 1.25; font-weight: 800; }
.job-card__actions { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 14px; align-self: end; margin-top: 4px; }
.job-card__read { display: inline-flex; align-items: center; gap: 10px; color: #101317; font-size: 11px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.job-card__read:hover { color: var(--brand-accent-dark); }
.job-card__actions .btn { min-width: 142px; min-height: 46px; padding: 12px 18px; letter-spacing: .14em; }
.detail-layout, .contact-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr); gap: 22px; align-items: start; }
.job-summary { display: grid; gap: 10px; }
.job-summary p { margin: 0; }
.process-line--page { grid-template-columns: repeat(7, 1fr); background: white; border: 1px solid var(--border); padding: 18px; }
.section-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.legal-copy { display: grid; gap: 12px; }
.legal-copy h2 { margin-top: 12px; }
.settings-help { margin-top: 14px !important; font-size: 14px; }

.home-hero { background: linear-gradient(105deg, rgba(8,10,14,.96), rgba(19,25,33,.92)), url("../img/jobs/photos/hospitality.jpg") center/cover no-repeat; }
.home-hero::before { content: ""; position: absolute; inset: auto 0 0; height: 5px; background: linear-gradient(90deg, var(--brand-accent), var(--primary)); z-index: 1; }
.home-hero__grid { grid-template-columns: minmax(0, 760px) minmax(320px, 460px); gap: 58px; min-height: 680px; }
.home-hero-card { align-self: end; margin-bottom: 8px; padding: 34px; background: rgba(12, 17, 23, .86); border: 1px solid rgba(255,255,255,.16); color: white; box-shadow: 20px 20px 0 rgba(150,190,15,.18); }
.home-hero-card__label { display: inline-flex; min-height: 32px; align-items: center; padding: 8px 13px; background: white; color: #15191F; font-size: 10px; font-weight: 900; letter-spacing: .22em; text-transform: uppercase; }
.home-hero-card strong { display: block; max-width: 340px; margin: 46px 0 12px; font-family: var(--font-head); font-size: 34px; line-height: 1.1; font-weight: 500; }
.home-hero-card p { color: #B9C2CC; }
.home-hero-card__steps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 28px; }
.home-hero-card__steps span { min-height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); color: #DCE6EF; font-size: 10px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }

.home-editorial { padding: 108px 0; background: #FFFFFF; }
.home-split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: 86px; align-items: center; }
.home-split--reverse { grid-template-columns: minmax(360px, .95fr) minmax(0, 1.05fr); }
.home-editorial .eyebrow, .home-sectors .eyebrow, .home-final-cta .eyebrow { color: var(--brand-accent-dark); }
.home-editorial h2, .home-dark h2, .home-final-cta h2 { margin: 18px 0 18px; font-family: var(--font-head); font-size: clamp(42px, 4.8vw, 66px); line-height: 1.05; font-weight: 400; color: #111418; }
.home-lead { max-width: 720px; margin: 0 0 24px; color: #5D6875; font-size: 21px; line-height: 1.7; }
.home-editorial p { color: #637080; }
.market-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 34px; }
.market-grid article { min-height: 94px; display: grid; grid-template-columns: 30px 1fr; gap: 10px 14px; align-items: center; padding: 18px; border: 1px solid #DDE3E7; background: white; }
.market-grid span { width: 22px; height: 22px; border: 2px solid var(--brand-accent-dark); border-radius: 50%; }
.market-grid strong { color: #15191F; }
.market-grid small { grid-column: 2; margin-top: -20px; color: #667580; }
.footprint-panel, .ethics-panel { min-height: 360px; display: grid; align-content: end; padding: 36px; background: linear-gradient(150deg, #202733, #0B0D11); color: white; border: 1px solid #2F3742; box-shadow: 20px 20px 0 rgba(150,190,15,.18); }
.footprint-panel h3, .ethics-panel strong { margin: 26px 0 10px; font-family: var(--font-head); font-size: 32px; line-height: 1.15; font-weight: 500; }
.footprint-panel p { margin: 0; color: #B9C2CC; }
.route-map { position: relative; min-height: 160px; margin: 20px 0 10px; border-bottom: 1px solid rgba(150,190,15,.28); }
.route-map::before, .route-map::after { content: ""; position: absolute; left: 16%; right: 10%; top: 48%; height: 1px; background: linear-gradient(90deg, var(--brand-accent), transparent); transform: rotate(-9deg); transform-origin: left center; }
.route-map::after { top: 36%; transform: rotate(-28deg); opacity: .7; }
.route-map i { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--brand-accent); box-shadow: 0 0 0 8px rgba(150,190,15,.16); }
.route-map i:nth-child(1) { left: 10%; bottom: 18%; }
.route-map i:nth-child(2) { right: 28%; top: 14%; }
.route-map i:nth-child(3) { right: 8%; bottom: 30%; }
.route-map i:nth-child(4) { left: 42%; bottom: 48%; background: var(--primary); }

.home-dark { padding: 112px 0; background: #0D1015; color: white; }
.home-dark .eyebrow { color: var(--brand-accent-light); }
.home-dark h2 { max-width: 850px; color: white; }
.home-dark__head { text-align: center; display: grid; justify-items: center; margin-bottom: 50px; }
.home-dark__head--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; text-align: left; }
.home-dark__head--split .eyebrow { justify-self: start; }
.vision-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.vision-grid article { min-height: 210px; padding: 34px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.025); }
.vision-grid h3 { margin: 0 0 14px; color: var(--brand-accent-light); font-family: var(--font-head); font-size: 30px; }
.vision-grid p { margin: 0; color: #BFC7D1; font-size: 18px; }
.value-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 28px; background: white; color: #15191F; }
.value-strip article { min-height: 210px; padding: 34px 28px; border-right: 1px solid #DDE3E7; }
.value-strip article:last-child { border-right: 0; }
.value-strip span { color: var(--brand-accent-dark); font-size: 11px; letter-spacing: .24em; }
.value-strip strong { display: block; margin: 20px 0 8px; font-size: 20px; }
.value-strip p { margin: 0; color: #667580; }

.ethics-panel { min-height: 310px; align-content: center; box-shadow: none; }
.ethics-panel::before { content: ""; width: 104px; height: 104px; margin: 18px auto 10px; border: 2px solid var(--brand-accent); border-radius: 50%; background: radial-gradient(circle, transparent 45%, rgba(150,190,15,.14) 46%); }
.home-link-btn { margin-top: 22px; }

.home-sectors { padding: 98px 0; background: #F7F9FB; }
.sector-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.sector-card { background: white; border: 1px solid #DDE3E7; box-shadow: 0 18px 42px rgba(16,42,58,.07); overflow: hidden; }
.sector-card img { width: 100%; height: 230px; display: block; object-fit: cover; }
.sector-card div { padding: 28px; }
.sector-card h3 { margin: 0 0 12px; color: #111418; font-family: var(--font-head); font-size: 32px; line-height: 1.1; }
.sector-card p { margin: 0; color: #667580; }

.standards-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(440px, 1.05fr); gap: 74px; align-items: start; }
.mini-cert-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.mini-cert-grid span { min-height: 54px; display: inline-flex; align-items: center; padding: 12px 22px; border: 1px solid #DDE3E7; color: #15191F; font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.standard-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.standard-grid article { min-height: 280px; padding: 34px 30px; border: 1px solid #DDE3E7; background: white; }
.standard-grid span { display: block; width: 42px; height: 42px; margin-bottom: 28px; border: 2px solid var(--brand-accent-dark); border-radius: 50%; }
.standard-grid h3 { margin: 0 0 12px; color: #15191F; font-size: 22px; }
.standard-grid p { margin: 0; color: #667580; }

.home-dark--jobs { padding: 96px 0; }
.home-job-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.home-job-grid article { min-height: 260px; display: grid; align-content: space-between; padding: 30px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.03); }
.home-job-grid span { color: var(--brand-accent-light); font-size: 11px; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
.home-job-grid h3 { margin: 18px 0 8px; color: white; font-family: var(--font-head); font-size: 34px; line-height: 1.1; font-weight: 500; }
.home-job-grid p { color: #BFC7D1; }
.home-job-grid a { color: white; font-size: 11px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }

.home-final-cta { padding: 112px 0; background: #101317; color: white; text-align: center; }
.home-final-cta .container { max-width: 820px; }
.home-final-cta .eyebrow { justify-content: center; }
.home-final-cta h2 { color: white; }
.home-final-cta p { margin: 0 auto; max-width: 640px; color: #BFC7D1; font-size: 18px; }
.home-final-cta .section-cta { justify-content: center; margin-top: 34px; }
.contact-hero { padding-bottom: 132px; }
.contact-section { padding: 0 0 98px; background: linear-gradient(90deg, #FFFFFF 0%, #F6F8FA 52%, #FFFFFF 100%); }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(320px, .65fr); gap: 24px; align-items: start; margin-top: -58px; position: relative; z-index: 2; }
.contact-form-pro, .contact-side-pro { background: #FFFFFF; border: 1px solid #DDE3E7; border-radius: 0; box-shadow: 0 24px 60px rgba(16,42,58,.07); }
.contact-form-pro { padding: 44px; }
.contact-form-pro__head { margin-bottom: 28px; }
.contact-form-pro .eyebrow, .contact-side-pro .eyebrow { color: var(--brand-accent-dark); }
.contact-form-pro__head h2, .contact-side-pro h2 { margin: 14px 0 10px; color: #111418; font-family: var(--font-head); font-size: 42px; line-height: 1.05; font-weight: 500; }
.contact-form-pro__head p, .contact-side-pro p { margin: 0; color: #667580; }
.contact-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 18px; }
.contact-form-grid label { display: grid; gap: 10px; color: #2C333B; font-size: 11px; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
.contact-form-grid input, .contact-form-grid textarea { width: 100%; min-height: 56px; border: 1px solid #DCE2E7; background: #F7F7F7; padding: 0 16px; color: #17232D; font-size: 15px; font-weight: 500; letter-spacing: 0; text-transform: none; outline: 0; }
.contact-form-grid textarea { min-height: 170px; padding: 14px 16px; resize: vertical; font-family: var(--font-body); }
.contact-form-grid input:focus, .contact-form-grid textarea:focus { background: #FFFFFF; border-color: var(--brand-accent); box-shadow: 0 0 0 3px rgba(150,190,15,.14); }
.contact-form-grid__wide { grid-column: 1 / -1; }
.contact-form-pro .btn { margin-top: 26px; min-width: 210px; }
.contact-side-pro { padding: 34px; }
.contact-info-list { display: grid; gap: 0; margin: 28px 0; border-top: 1px solid #DDE3E7; }
.contact-info-list a, .contact-info-list div { display: grid; gap: 4px; padding: 17px 0; border-bottom: 1px solid #DDE3E7; }
.contact-info-list span { color: var(--brand-accent-dark); font-size: 10px; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
.contact-info-list strong { color: #17232D; font-size: 15px; line-height: 1.55; }
.contact-info-list a:hover strong { color: var(--brand-accent-dark); }
.contact-whatsapp-btn { width: 100%; background: #25D366; border-color: #25D366; }
.contact-whatsapp-btn:hover { background: var(--brand-accent); border-color: var(--brand-accent); }
.admin-login { min-height: 100vh; display: grid; place-items: center; background: linear-gradient(135deg, var(--primary-soft), var(--secondary-soft)); }
.login-shell { width: min(100%, 520px); padding: 24px; }
.login-card { padding: 34px; background: white; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.login-card h1 { font-family: var(--font-head); color: var(--navy); }
.login-card p { color: var(--muted); }
.login-card label { display: grid; gap: 7px; margin-top: 14px; color: var(--navy); font-weight: 800; }
.login-card input, .login-card select { min-height: 46px; border: 1px solid var(--border); padding: 0 12px; background: white; }
.login-card button { width: 100%; margin-top: 18px; }
.login-card small { display: block; margin-top: 14px; color: var(--muted); }
.login-card small a { color: #16A34A; font-weight: 800; }
.login-card small a:hover { color: #15803D; text-decoration: underline; }

@media (max-width: 980px) {
    .nav-toggle { display: block; }
    .nav-menu { position: absolute; left: 20px; right: 20px; top: 92px; display: none; flex-direction: column; align-items: stretch; padding: 16px; background: white; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
    .nav-menu.is-open { display: flex; }
    .nav-menu > a:not(.btn), .nav-dropdown > a { min-height: 44px; }
    .nav-menu > a:not(.btn)::after, .nav-dropdown > a::after { bottom: 4px; }
    .btn--nav { margin-left: 0; width: 100%; }
    .brand { flex-basis: 230px; max-width: 230px; }
    .hero__grid, .admin-layout { grid-template-columns: 1fr; }
    .home-hero__grid, .home-split, .home-split--reverse, .standards-layout { grid-template-columns: 1fr; gap: 44px; }
    .contact-layout { grid-template-columns: 1fr; }
    .home-hero-card { align-self: stretch; margin-bottom: 0; }
    .home-editorial, .home-dark, .home-sectors, .home-final-cta { padding: 76px 0; }
    .sector-grid, .home-job-grid { grid-template-columns: 1fr; }
    .value-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px; }
    .hero__grid { min-height: auto; }
    .job-search { grid-template-columns: 1fr; }
    .jobs-toolbar { align-items: flex-start; flex-direction: column; }
    .jobs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cards--3, .metric-grid { grid-template-columns: repeat(2, 1fr); }
    .report-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .report-grid { grid-template-columns: 1fr; }
    .report-card--wide { grid-column: auto; }
    .report-column-chart { overflow-x: auto; }
    .quick-form--jobs, .quick-form--leads { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .admin-sidebar { position: static; }
    .logo-setting-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    .container { width: min(100% - 28px, var(--max)); }
    .footer { padding: 54px 0 24px; }
    .footer__grid { grid-template-columns: 1fr; gap: 34px; }
    .footer__bottom, .admin-head { flex-direction: column; align-items: flex-start; }
    .footer__bottom { margin-top: 38px; }
    .footer__bottom span:last-child { justify-content: flex-start; gap: 14px 18px; }
    .topbar__inner { min-height: 42px; display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 10px; }
    .topbar__contact { gap: 10px; flex-wrap: nowrap; min-width: 0; }
    .topbar__item { width: 32px; height: 32px; display: grid; place-items: center; gap: 0; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; font-size: 0; }
    .topbar__item span { display: none !important; }
    .topbar__item--office { display: none; }
    .topbar__item svg { width: 17px; height: 17px; }
    .topbar__social { min-width: 0; justify-content: flex-end; gap: 8px; overflow: hidden; }
    .topbar__social a { flex: 0 0 32px; width: 32px; height: 32px; }
    .hero__grid { padding: 48px 0; gap: 30px; }
    .home-hero__grid { min-height: auto; }
    .home-hero-card { padding: 26px; box-shadow: 10px 10px 0 rgba(150,190,15,.18); }
    .home-hero-card strong { margin-top: 28px; font-size: 28px; }
    .home-editorial h2, .home-dark h2, .home-final-cta h2 { font-size: 38px; }
    .home-lead { font-size: 18px; }
    .market-grid, .vision-grid, .value-strip, .standard-grid { grid-template-columns: 1fr; }
    .value-strip article { border-right: 0; border-bottom: 1px solid #DDE3E7; }
    .value-strip article:last-child { border-bottom: 0; }
    .footprint-panel, .ethics-panel { min-height: 300px; padding: 26px; }
    .home-dark__head--split { display: grid; justify-items: start; }
    .sector-card img { height: 190px; }
    .contact-hero { padding-bottom: 88px; }
    .contact-section { padding-bottom: 64px; }
    .contact-layout { margin-top: -44px; }
    .contact-form-pro, .contact-side-pro { padding: 26px 20px; }
    .contact-form-pro__head h2, .contact-side-pro h2 { font-size: 34px; }
    .contact-form-grid { grid-template-columns: 1fr; gap: 20px; }
    .contact-form-pro .btn { width: 100%; }
    .hero h1, .page-hero h1 { font-size: 38px; }
    .hero__actions, .hero__actions .btn { width: 100%; }
    .mini-stats, .process-line, .cards--3, .metric-grid { grid-template-columns: 1fr; }
    .report-metrics { grid-template-columns: 1fr; }
    .report-column-chart { grid-template-columns: repeat(7, 58px); }
    .report-job-list div { grid-template-columns: 1fr auto; }
    .report-job-list span { grid-column: 1 / -1; }
    .form-grid, .upload-grid, .status-form, .jobs-grid, .detail-layout, .contact-grid, .process-line--page, .status-info-grid, .status-result-panel { grid-template-columns: 1fr; }
    .quick-form, .quick-form--jobs, .quick-form--leads, .lead-preview-grid { grid-template-columns: 1fr; }
    .quick-form__wide { grid-column: auto; }
    .admin-topbar { position: static; grid-template-columns: 1fr; align-items: stretch; gap: 12px; padding: 14px 18px; }
    .admin-top-search { grid-template-columns: minmax(0, 1fr) auto; width: 100%; min-width: 0; }
    .admin-public-link { justify-self: start; }
    .admin-head, .admin-hero, .admin-panel { width: 100%; padding: 20px; overflow: hidden; }
    .admin-head h1, .admin-hero h1 { overflow-wrap: anywhere; }
    .admin-actions, .admin-hero__actions { width: 100%; justify-content: flex-start; }
    .admin-actions .btn, .admin-hero__actions .btn { width: 100%; }
    .admin-filter { grid-template-columns: 1fr; }
    .table-wrap { max-width: 100%; }
    .application-form--ozo input[type="file"] { font-size: 13px; }
    .application-form--ozo input[type="file"]::file-selector-button { max-width: 128px; padding: 8px 9px; font-size: 12px; }
    .jobs-toolbar { margin-top: 32px; }
    .job-card { grid-template-rows: 190px 1fr; }
    .job-card__body { padding: 24px 20px 20px; }
    .job-card__meta, .job-card__actions { grid-template-columns: 1fr; }
    .application-form--ozo { padding: 28px 20px; }
    .application-form--ozo .form-grid, .application-form--ozo .upload-grid { grid-template-columns: 1fr; gap: 20px; }
    .application-form--ozo .btn--gold { width: 100%; }
    .status-check-section { padding: 48px 0 64px; }
    .status-check-card { padding: 28px 20px; }
    .btn--dark { width: 100%; }
    .admin-content { padding: 18px; }
    .settings-form--grid { grid-template-columns: 1fr; }
}

/* OZO-style status checker page: kept at the end to beat older generic form/card rules. */
body .status-check-section {
    padding: 86px 0 102px !important;
    background: linear-gradient(90deg, #FFFFFF 0%, #F6F7F8 50%, #FFFFFF 100%) !important;
}
body .status-check-section > .container {
    width: min(712px, calc(100% - 40px)) !important;
    max-width: 712px !important;
}
body .status-check-card {
    display: block !important;
    padding: 48px !important;
    background: #FFFFFF !important;
    border: 1px solid #DDE3E7 !important;
    border-radius: 0 !important;
    box-shadow: 0 22px 58px rgba(16, 42, 58, .06) !important;
}
body .status-check-card h1 {
    margin: 0 0 8px !important;
    color: #111418 !important;
    font-family: var(--font-body) !important;
    font-size: 26px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
}
body .status-note {
    margin: 8px 0 28px !important;
    padding: 15px 18px !important;
    background: #F5F5F4 !important;
    border-left: 3px solid var(--brand-accent) !important;
    color: #667580 !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
}
body .status-note strong { color: #3E4650 !important; }
body .status-form.status-form--card {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin: 0 !important;
}
body .status-form.status-form--card label {
    display: block !important;
    color: #2D333B !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: .22em !important;
    text-transform: uppercase !important;
}
body .status-form.status-form--card input {
    min-height: 56px !important;
    width: 100% !important;
    padding: 0 18px !important;
    border: 1px solid #DCE2E7 !important;
    background: #F7F7F6 !important;
    color: #17232D !important;
    font-size: 16px !important;
    box-shadow: none !important;
}
body .status-form.status-form--card input:focus {
    background: #FFFFFF !important;
    border-color: var(--primary) !important;
    outline: 3px solid rgba(0, 160, 225, .12) !important;
}
body .status-form.status-form--card .btn--dark {
    width: auto !important;
    min-width: 204px !important;
    min-height: 52px !important;
    display: inline-flex !important;
    justify-self: start !important;
    white-space: nowrap !important;
    margin-top: 8px !important;
    padding: 15px 30px !important;
    background: #080A0D !important;
    border-color: #080A0D !important;
    color: #FFFFFF !important;
    line-height: 1 !important;
    letter-spacing: .12em !important;
    word-spacing: 0 !important;
}
body .status-form.status-form--card .btn--dark span { display: inline !important; margin-left: 8px !important; }
body .status-form.status-form--card .btn--dark:hover {
    background: var(--brand-accent) !important;
    border-color: var(--brand-accent) !important;
}
body .status-info-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 26px !important;
    margin-top: 30px !important;
}
body .status-info-card {
    min-height: 280px !important;
    padding: 36px 30px !important;
    background: #FFFFFF !important;
    border: 1px solid #DDE3E7 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
body .status-info-icon {
    width: 42px !important;
    height: 42px !important;
    display: grid !important;
    place-items: center !important;
    margin-bottom: 28px !important;
    color: var(--brand-accent-dark) !important;
}
body .status-info-icon svg {
    width: 42px !important;
    height: 42px !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.8 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}
body .status-info-card h3 {
    margin: 0 0 12px !important;
    color: #15191F !important;
    font-family: var(--font-body) !important;
    font-size: 21px !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
}
body .status-info-card p {
    margin: 0 !important;
    color: #667580 !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
}
body .status-result-panel {
    margin-top: 26px !important;
    padding: 28px !important;
    background: #FFFFFF !important;
    border: 1px solid #DDE3E7 !important;
    box-shadow: 0 22px 58px rgba(16, 42, 58, .06) !important;
}
body .status-message {
    margin-top: 22px !important;
}
@media (max-width: 720px) {
    body .status-check-section { padding: 48px 0 68px !important; }
    body .status-check-card { padding: 28px 20px !important; }
    body .status-info-grid { grid-template-columns: 1fr !important; }
    body .status-form.status-form--card .btn--dark { width: 100% !important; justify-self: stretch !important; }
}
