/* ── 2026 U.S. Tax & Accounting Services Platform ── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --accent: #f97316;
    --accent-light: #fb923c;
    --success: #10b981;
    --dark: #0f172a;
    --dark-soft: #1e293b;
    --text: #334155;
    --text-muted: #64748b;
    --bg: #f8fafc;
    --surface: rgba(255, 255, 255, 0.72);
    --surface-solid: #ffffff;
    --border: rgba(148, 163, 184, 0.18);
    --glow: rgba(99, 102, 241, 0.35);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 10px 36px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 22px 64px rgba(15, 23, 42, 0.11);
    --shadow-premium: 0 18px 48px rgba(99, 102, 241, 0.08), 0 4px 16px rgba(15, 23, 42, 0.04);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --layout-width: min(80vw, var(--layout-max));
    --layout-width-tablet: min(90vw, var(--layout-max));
    --layout-width-mobile: min(94vw, var(--layout-max));
    --layout-max: 1440px;
    --layout-max-wide: 1520px;
    --space-section-y: clamp(2.75rem, 6vw, 4.75rem);
    --space-grid: clamp(1rem, 2vw, 1.25rem);
    --space-card: clamp(1.25rem, 2.5vw, 1.75rem);
    --site-navbar-height: 4.5rem;
    --bs-gutter-x: clamp(0.75rem, 2vw, 1.5rem);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: clip;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    padding-top: var(--site-navbar-height);
}

::selection {
    background: rgba(99, 102, 241, 0.16);
    color: var(--dark);
}

:focus-visible {
    outline: 2px solid rgba(99, 102, 241, 0.45);
    outline-offset: 2px;
}

/* ── Mesh gradient backdrop ── */
.mesh-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(99, 102, 241, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 10%, rgba(249, 115, 22, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse 70% 60% at 50% 90%, rgba(16, 185, 129, 0.08) 0%, transparent 55%),
        var(--bg);
    pointer-events: none;
}

/* ── Site layout width (80% viewport) ── */
.container {
    width: var(--layout-width);
    max-width: calc(100% - var(--bs-gutter-x));
    margin-inline: auto;
    padding-inline: calc(var(--bs-gutter-x) * 0.5);
}

.row {
    --bs-gutter-x: clamp(0.75rem, 2vw, 1.5rem);
    --bs-gutter-y: clamp(0.75rem, 2vw, 1.25rem);
}

/* ── Navbar ── */
.site-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.72) !important;
    backdrop-filter: blur(22px) saturate(1.8);
    -webkit-backdrop-filter: blur(22px) saturate(1.8);
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    padding: 0.85rem 0;
    transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
    z-index: 1030;
}

.site-navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.35) 35%, rgba(249, 115, 22, 0.28) 65%, transparent 100%);
    pointer-events: none;
}

.site-navbar.is-scrolled {
    background: rgba(255, 255, 255, 0.92) !important;
    border-bottom-color: rgba(148, 163, 184, 0.2);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.07);
    padding: 0.65rem 0;
}

.site-navbar__inner {
    position: relative;
    align-items: center;
}

.site-navbar__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 800;
    font-size: 1.12rem;
    letter-spacing: -0.03em;
    text-decoration: none;
    transition: var(--transition);
}

.site-navbar__brand:hover {
    transform: translateY(-1px);
}

.site-navbar__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
    flex-shrink: 0;
}

.site-navbar__name {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-navbar__collapse {
    flex-grow: 0;
}

.site-navbar__links {
    flex-direction: row;
    align-items: center;
}

.site-navbar__links .nav-item {
    flex-shrink: 0;
}

.site-navbar__links .nav-link {
    color: var(--text-muted) !important;
    font-weight: 600;
    font-size: 0.84rem;
    letter-spacing: 0.01em;
    padding: 0.5rem 0.9rem !important;
    border-radius: 100px;
    white-space: nowrap;
    transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.site-navbar__links .nav-link:hover {
    color: var(--primary-dark) !important;
    background: rgba(99, 102, 241, 0.07);
}

.site-navbar__links .nav-link.active {
    color: var(--primary-dark) !important;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
    font-weight: 700;
}

.site-navbar__language {
    display: flex;
    align-items: center;
    margin-left: 0.45rem;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    min-height: 2.45rem;
    padding: 0.38rem 0.58rem;
    color: #4338ca;
    background: linear-gradient(135deg, rgba(238, 242, 255, 0.96), rgba(255, 255, 255, 0.96));
    border: 1px solid rgba(99, 102, 241, 0.22);
    border-radius: 999px;
    box-shadow: 0 3px 10px rgba(79, 70, 229, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.language-switcher:hover {
    color: #3730a3;
    background: linear-gradient(135deg, #e8edff, #ffffff);
    border-color: rgba(99, 102, 241, 0.42);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
}

.language-switcher__icon {
    line-height: 1;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 1.55rem;
    height: 1.55rem;
    color: #4f46e5;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(79, 70, 229, 0.16);
}

.language-switcher select {
    min-width: 5.4rem;
    padding: 0.12rem 1.1rem 0.12rem 0;
    color: inherit;
    font: inherit;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.2;
    appearance: none;
    -webkit-appearance: none;
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234f46e5' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E") no-repeat right 0 center / 0.75rem;
    border: 0;
    outline: 0;
    cursor: pointer;
}

.language-switcher:focus-within {
    border-color: rgba(99, 102, 241, 0.65);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.16), 0 5px 14px rgba(79, 70, 229, 0.12);
}

.google-translate-host {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.contact-support-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 0.95rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, rgba(248, 250, 255, 0.92), rgba(255, 255, 255, 0.78));
    border: 1px solid rgba(226, 232, 240, 0.82);
    border-radius: 1.05rem;
}

.contact-support-actions__btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.62rem;
    min-width: 0;
    min-height: 4.25rem;
    padding: 0.76rem 2rem 0.76rem 0.74rem;
    color: var(--dark);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid transparent;
    border-radius: 0.82rem;
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.045);
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-support-actions__btn:hover {
    color: var(--dark);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.11);
    transform: translateY(-2px);
}

.contact-support-actions__btn::after {
    content: '›';
    position: absolute;
    right: 0.68rem;
    top: 50%;
    color: currentColor;
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.45;
    transform: translateY(-52%);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-support-actions__btn:hover::after { opacity: 0.95; transform: translate(2px, -52%); }

.contact-support-actions__btn--signal {
    color: #215fc9;
    border-color: rgba(58, 118, 240, 0.14);
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.96), rgba(255, 255, 255, 0.98));
}

.contact-support-actions__btn--livechat {
    color: #5144d6;
    border-color: rgba(109, 93, 252, 0.14);
    background: linear-gradient(135deg, rgba(245, 243, 255, 0.96), rgba(255, 255, 255, 0.98));
}

.contact-support-actions__icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
}

.contact-support-actions__btn--signal .contact-support-actions__icon { background: #3a76f0; }
.contact-support-actions__btn--livechat .contact-support-actions__icon { background: linear-gradient(135deg, #6d5dfc, #4f46e5); }

.contact-support-actions__btn strong,
.contact-support-actions__btn small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-support-actions__btn strong { color: var(--dark); font-size: 0.82rem; }
.contact-support-actions__btn small { margin-top: 0.16rem; color: var(--text-muted); font-size: 0.7rem; }
.contact-support-actions:has(.contact-support-actions__btn--only) { grid-template-columns: 1fr; }
.contact-support-actions__btn--only { min-height: 4.7rem; padding-left: .95rem; }
.contact-support-actions__btn--only .contact-support-actions__icon { width: 2.6rem; height: 2.6rem; border-radius: .85rem; }
.contact-support-actions__btn--only strong { font-size: .92rem; }
.contact-support-actions__btn--only small { font-size: .76rem; }

/* Signal and Live Chat support controls */
.btn-signal { display:inline-flex; align-items:center; justify-content:center; gap:.5rem; padding:.78rem 1rem; color:#fff!important; background:#3a76f0; border:0; border-radius:.8rem; box-shadow:0 7px 18px rgba(58,118,240,.28); font-weight:700; text-decoration:none; transition:transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn-signal:hover { color:#fff!important; background:#2865dd; transform:translateY(-2px); box-shadow:0 11px 24px rgba(58,118,240,.36); }
.btn-signal--inline { width:auto; }
.contact-support-panel { flex:1; display:flex; flex-direction:column; padding:1.5rem; background:#fff; border:1px solid var(--border); border-radius:1.2rem; }
.contact-support-panel__head { display:flex; align-items:flex-start; gap:.85rem; }
.contact-support-panel__icon { display:inline-flex; align-items:center; justify-content:center; flex:0 0 auto; width:52px; height:52px; color:#4f46e5; background:#eef2ff; border-radius:1rem; }
.contact-support-panel__lead { margin:.25rem 0 0; color:var(--text-muted); font-size:.88rem; }
.contact-support-panel__list { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:.55rem; padding:0; margin:1.25rem 0; list-style:none; }
.contact-support-panel__list li { display:flex; align-items:center; gap:.5rem; padding:.65rem; color:var(--dark); background:#fff; border:1px solid var(--border); border-radius:.75rem; font-size:.79rem; font-weight:600; }
.contact-support-panel__check { display:inline-flex; align-items:center; justify-content:center; flex:0 0 auto; width:1.35rem; height:1.35rem; color:#10b981; background:#ecfdf5; border-radius:50%; font-size:.75rem; }
.contact-support-panel__note { margin:1rem 0 0; color:var(--text-muted); font-size:.78rem; }
.contact-support-panel h2 { margin:0; color:var(--dark); font-size:clamp(1.05rem,2vw,1.2rem); font-weight:800; letter-spacing:-.02em; }
.contact-support-panel__icon { position:relative; overflow:hidden; box-shadow:inset 0 1px 0 rgba(255,255,255,.8); transition:transform .25s ease, box-shadow .25s ease; }
.contact-support-panel__icon::after { content:''; position:absolute; width:2rem; height:2rem; background:rgba(255,255,255,.45); border-radius:50%; transform:translate(-120%,120%); transition:transform .45s ease; }
.contact-support-panel__icon svg { position:relative; z-index:1; }
.contact-support-panel:hover .contact-support-panel__icon { transform:rotate(-5deg) translateY(-2px); box-shadow:0 10px 22px rgba(79,70,229,.18); }
.contact-support-panel:hover .contact-support-panel__icon::after { transform:translate(60%,-60%); }
.contact-support-actions { margin-bottom:.2rem; }
.contact-support-actions__btn { align-items:center; }
.cta-panel__actions .btn-signal,.job-detail-apply-card .job-apply-signal { min-height:2.85rem; }
.job-detail-apply-card .job-apply-signal { width:100%; }
.support-float { position:fixed; right:1.25rem; bottom:1.5rem; z-index:1070; display:flex; flex-direction:column-reverse; align-items:flex-end; gap:.8rem; transition:bottom .35s ease; }
.support-float--raised { bottom:6.75rem; }
.support-float__link { display:flex; flex-direction:row-reverse; align-items:center; gap:.75rem; color:inherit; text-decoration:none; }
.support-float__btn { position:relative; display:flex; align-items:center; justify-content:center; width:58px; height:58px; color:#fff; border-radius:50%; transition:transform .2s ease, box-shadow .2s ease; }
.support-float__btn::before { content:''; position:absolute; inset:-4px; border:2px solid var(--support-pulse-color); border-radius:50%; animation:supportPulse 2.4s ease-out infinite; }
.support-float__btn--signal { --support-pulse-color:rgba(58,118,240,.48); background:linear-gradient(135deg,#4f94f7,#2e6ee9); box-shadow:0 8px 28px rgba(58,118,240,.42); }
.support-float__btn--livechat { --support-pulse-color:rgba(109,93,252,.5); background:linear-gradient(135deg,#7c6cff,#5144e8); box-shadow:0 8px 28px rgba(79,70,229,.4); }
.support-float__link:hover .support-float__btn { transform:translateY(-2px) scale(1.04); }
.support-float__panel { max-width:0; padding:0; overflow:hidden; opacity:0; white-space:nowrap; background:#fff; border:1px solid var(--border); border-radius:14px; box-shadow:var(--shadow-lg); transition:max-width .35s ease,opacity .25s ease,padding .35s ease; }
.support-float__link:hover .support-float__panel,.support-float__link:focus-visible .support-float__panel { max-width:220px; padding:.75rem 1rem; opacity:1; }
.support-float__title,.support-float__hint { display:block; }.support-float__title { color:var(--dark); font-size:.88rem; font-weight:700; }.support-float__hint { margin-top:.15rem; color:var(--text-muted); font-size:.72rem; }
@keyframes supportPulse { 0%{transform:scale(.95);opacity:.8}70%,100%{transform:scale(1.18);opacity:0} }
@media(max-width:575.98px){.support-float{right:1rem;bottom:1.25rem}.support-float--raised{bottom:7.25rem}.support-float__btn{width:54px;height:54px}.support-float__panel{display:none}.contact-support-panel__list{grid-template-columns:1fr}}

@media (max-width: 479.98px) {
    .contact-support-actions { grid-template-columns: 1fr; }
}

/* ── Visual polish: shared interaction language ── */
.site-navbar__mark,
.contact-whatsapp-panel__icon,
.cta-panel__perk-icon,
.contact-support-actions__icon {
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-navbar__brand:hover .site-navbar__mark {
    transform: rotate(-7deg) scale(1.06);
}

.contact-whatsapp-panel__icon {
    position: relative;
    overflow: hidden;
}

.contact-whatsapp-panel__icon::after {
    content: '';
    position: absolute;
    width: 2.1rem;
    height: 2.1rem;
    background: rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    transform: translate(-115%, 115%);
    transition: transform 0.45s ease;
}

.contact-whatsapp-panel:hover .contact-whatsapp-panel__icon {
    transform: rotate(-5deg) translateY(-2px);
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.22);
}

.contact-whatsapp-panel:hover .contact-whatsapp-panel__icon::after {
    transform: translate(55%, -55%);
}

.contact-whatsapp-panel__icon > svg { position: relative; z-index: 1; }

.contact-support-actions__btn:hover .contact-support-actions__icon {
    transform: rotate(-6deg) scale(1.08);
}

.cta-panel__perk:hover .cta-panel__perk-icon {
    transform: translateY(-2px) scale(1.08);
}

.job-card,
.category-panel,
.guides-slide,
.contact-layout__shell {
    transition: transform 0.28s cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 0.28s ease, border-color 0.28s ease;
}

@media (hover: hover) and (pointer: fine) {
    .job-card:hover,
    .category-panel:hover,
    .guides-slide:hover {
        transform: translateY(-5px);
    }

    .contact-layout__shell:hover {
        transform: translateY(-3px);
    }
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
.accordion-button:focus-visible {
    outline: 3px solid rgba(99, 102, 241, 0.32);
    outline-offset: 3px;
}

.reveal {
    transition-timing-function: cubic-bezier(0.2, 0.75, 0.25, 1);
}

@media (prefers-reduced-motion: reduce) {
    .site-navbar__mark,
    .contact-whatsapp-panel__icon,
    .cta-panel__perk-icon,
    .contact-support-actions__icon,
    .job-card,
    .category-panel,
    .guides-slide,
    .contact-layout__shell,
    .reveal {
        transition: none !important;
        animation: none !important;
    }

    .contact-whatsapp-panel__icon::after { display: none; }
}

/* Keep the Google Translate control available to the language selector without
   allowing its default banner to push the site navigation down. */
iframe.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame.skiptranslate,
iframe.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

.site-navbar__toggler {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.55rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.site-navbar__toggler:hover {
    border-color: rgba(99, 102, 241, 0.25);
    background: rgba(99, 102, 241, 0.05);
}

.site-navbar__toggler:focus {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
    outline: none;
}

.site-navbar__toggler-bar {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--dark);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-navbar__toggler[aria-expanded="true"] .site-navbar__toggler-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-navbar__toggler[aria-expanded="true"] .site-navbar__toggler-bar:nth-child(2) {
    opacity: 0;
}

.site-navbar__toggler[aria-expanded="true"] .site-navbar__toggler-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ── */
.hero {
    padding: clamp(4rem, 10vw, 7rem) 0 clamp(3rem, 8vw, 5rem);
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: 0;
    width: min(600px, 50vw);
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem 0.45rem 0.55rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(249, 115, 22, 0.08));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.7s ease both;
}

.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--dark);
    margin-bottom: 1.25rem;
    animation: fadeUp 0.7s 0.1s ease both;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 100%;
    animation: fadeUp 0.7s 0.2s ease both;
}

.hero-search {
    max-width: 100%;
    margin-bottom: 1rem;
    animation: fadeUp 0.7s 0.25s ease both;
}

.hero-search__inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.4rem 0.4rem 1rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.75));
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.hero-search__inner:focus-within {
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1), var(--shadow-md);
}

.hero-search__icon {
    flex-shrink: 0;
    color: var(--text-muted);
    opacity: 0.7;
}

.hero-search__input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.7rem 0.25rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--dark);
    outline: none;
}

.hero-search__input::placeholder {
    color: var(--text-muted);
}

.hero-search__btn {
    flex-shrink: 0;
    padding: 0.65rem 1.15rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.hero-search__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px var(--glow);
}

.hero-quick-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
    animation: fadeUp 0.7s 0.28s ease both;
}

.hero-quick-tags__label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
}

.hero-quick-tag {
    display: inline-flex;
    padding: 0.3rem 0.75rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.hero-quick-tag:hover {
    border-color: rgba(99, 102, 241, 0.35);
    color: var(--primary);
    background: rgba(99, 102, 241, 0.06);
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    animation: fadeUp 0.7s 0.35s ease both;
}

.hero-metrics__item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.hero-metrics__item strong {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.hero-metrics__item span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    animation: fadeUp 0.7s 0.3s ease both;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff !important;
    border: none;
    border-radius: 14px;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 20px var(--glow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    opacity: 0;
    transition: var(--transition);
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--glow);
    color: #fff !important;
}

.btn-main:hover::before { opacity: 1; }

.btn-main span, .btn-main svg { position: relative; z-index: 1; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--surface);
    backdrop-filter: blur(12px);
    color: var(--dark) !important;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-ghost:hover {
    border-color: var(--primary-light);
    color: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Hero SVG illustration */
.hero-visual {
    position: relative;
    z-index: 2;
    animation: fadeUp 0.9s 0.2s ease both;
}

.hero-photo-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,255,255,0.5));
    border: 1px solid var(--border);
    padding: 0.65rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero-photo-wrap::after {
    content: '';
    position: absolute;
    inset: 0.65rem;
    border-radius: calc(var(--radius-lg) - 0.35rem);
    background: linear-gradient(135deg, transparent 40%, rgba(99, 102, 241, 0.08) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: calc(var(--radius-lg) - 0.35rem);
    aspect-ratio: 4 / 3.35;
    object-fit: cover;
    object-position: center top;
}

.floating-card {
    position: absolute;
    z-index: 5;
    background: var(--surface-solid);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.65rem 1rem;
    box-shadow: var(--shadow-md);
    font-size: 0.78rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    animation: float 4s ease-in-out infinite;
}

.floating-card--1 {
    top: 10%;
    right: 0.75rem;
    animation-delay: 0s;
}

.floating-card--2 {
    bottom: 14%;
    left: 0.75rem;
    animation-delay: 1.5s;
}

/* ── Trust Badges ── */
.trust-section {
    padding: 2rem 0 3rem;
    border-bottom: 1px solid var(--border);
}

.trust-label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 2.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.1rem;
    background: var(--surface);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
    cursor: default;
}

.trust-badge:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.trust-badge svg {
    flex-shrink: 0;
    opacity: 0.85;
}

/* ── Stats ── */
.stats-section {
    padding: 3.5rem 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-grid);
}

.stat-panel {
    position: relative;
    padding: 1.75rem 1.5rem;
    background: linear-gradient(160deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.6) 100%);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
}

.stat-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: var(--transition);
}

.stat-panel:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(99, 102, 241, 0.25);
}

.stat-panel:hover::before { opacity: 1; }

.stat-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(249, 115, 22, 0.08));
    border-radius: 12px;
    transition: var(--transition);
}

.stat-panel:hover .stat-icon {
    transform: scale(1.1) rotate(-3deg);
}

.stat-number {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-number .suffix {
    font-size: 0.65em;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ── Section common ── */
.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--dark);
    margin-bottom: 0.75rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: clamp(0.92rem, 2vw, 1rem);
    line-height: 1.65;
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
    max-width: min(680px, 80%);
    margin-left: auto;
    margin-right: auto;
}

.section-block { padding: var(--space-section-y) 0; }

.section-block--alt {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(248, 250, 252, 0.38) 48%, rgba(255, 255, 255, 0.55) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.page-hub {
    overflow: hidden;
}

.page-hub::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: min(420px, 40vw);
    height: min(420px, 40vw);
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 68%);
    pointer-events: none;
}

.page-hub::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: min(360px, 34vw);
    height: min(360px, 34vw);
    background: radial-gradient(circle, rgba(249, 115, 22, 0.07) 0%, transparent 68%);
    pointer-events: none;
}

.page-hub > .container {
    position: relative;
    z-index: 1;
}

.page-eyebrow,
.jobs-page__eyebrow,
.category-banner__eyebrow,
.about-intro__eyebrow,
.cta-panel__eyebrow,
.about-section-head__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-dark);
}

.page-section-head,
.categories-page__head,
.guides-page__head,
.contact-page__head {
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.page-section-head .section-title,
.categories-page__title,
.guides-page__title,
.contact-page__head .section-title {
    text-align: left;
    margin-bottom: 0.45rem;
}

.page-section-head__lead,
.categories-page__lead,
.guides-page__lead,
.contact-page__lead {
    margin: 0;
    max-width: 42rem;
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.65;
}

/* ── Category panels (NOT Bootstrap cards) ── */
.category-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    background: linear-gradient(160deg, rgba(255,255,255,0.92), rgba(255,255,255,0.55));
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
    height: 100%;
}

.category-panel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.category-panel:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(99, 102, 241, 0.2);
}

.category-panel:hover::after { transform: scaleX(1); }

.category-panel__photo {
    margin: 0;
    height: auto;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    flex-shrink: 0;
}

.category-panel__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.category-panel:hover .category-panel__photo img {
    transform: scale(1.05);
}

.category-panel__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.1rem 1.2rem 1.2rem;
}

.category-panel__head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
}

.category-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(249, 115, 22, 0.06));
    border-radius: 13px;
    margin-bottom: 0;
    flex-shrink: 0;
    transition: var(--transition);
}

.category-panel:hover .category-icon {
    transform: scale(1.08) rotate(3deg);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.18), rgba(249, 115, 22, 0.1));
}

.category-panel h5,
.category-panel__head h5 {
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--dark);
    margin: 0;
    line-height: 1.35;
}

.category-panel p {
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.55;
    margin: 0;
    flex: 1;
}

.category-count {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border);
    width: 100%;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
}

.job-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.6rem;
    background: rgba(99, 102, 241, 0.08);
    border-radius: 6px;
    font-weight: 500;
    color: var(--primary-dark);
}

.section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.section-header-row .section-title {
    margin-bottom: 0.35rem;
    text-align: left;
}

.section-header-row .section-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}

.section-header-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
}

.section-header-link:hover {
    color: var(--primary-dark);
    gap: 0.5rem;
}

.home-how__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-grid);
}

.home-how__layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.home-how__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.home-how__media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.home-how__content .section-title,
.home-how__content .section-subtitle {
    text-align: left;
}

.home-how__content .section-subtitle {
    margin-bottom: 1.5rem;
}

.home-how__content .home-how__grid {
    grid-template-columns: 1fr;
    gap: var(--space-grid);
}

.home-how__content .home-how__step {
    text-align: left;
    padding: 1.35rem 1.25rem 1.25rem 1.5rem;
}

.home-how__content .home-how__step .home-how__icon {
    margin-left: 0;
}

.home-how__content .home-how__step h3,
.home-how__content .home-how__step p {
    text-align: left;
}

.home-promo {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: center;
    margin-bottom: 2rem;
}

.home-promo__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.home-promo__media img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
}

.home-promo__body .section-title,
.home-promo__body .section-subtitle {
    text-align: left;
    margin-bottom: 0.75rem;
}

.home-promo__body .section-subtitle {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.home-promo__highlights {
    list-style: none;
    margin: 1.15rem 0 1.35rem;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
}

.home-promo__highlight {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.8rem 0.9rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.65));
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.home-promo__check {
    flex-shrink: 0;
    width: 1.65rem;
    height: 1.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.12);
    color: var(--success);
    margin-top: 0.1rem;
}

.home-promo__highlight-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.home-promo__highlight-text strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
}

.home-promo__highlight-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.home-promo__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.home-promo__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 1.75rem;
    margin-top: 1.35rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.home-promo__stat {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.home-promo__stat strong {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.home-promo__stat span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.home-how__step {
    position: relative;
    padding: 2rem 1.5rem 1.75rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.6));
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.home-how__step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(99, 102, 241, 0.2);
}

.home-how__num {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.72rem;
    font-weight: 800;
    color: rgba(99, 102, 241, 0.35);
    letter-spacing: 0.05em;
}

.home-how__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(249, 115, 22, 0.08));
    border-radius: 14px;
}

.home-how__step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.home-how__step p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.home-jobs-grid {
    margin-top: 1.5rem;
}

.home-guides .guides-grid {
    margin-top: 1.5rem;
}

.guide-card__category {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
}

.home-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-grid);
}

.home-feature-card {
    padding: var(--space-card);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.55));
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.home-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(99, 102, 241, 0.2);
}

.home-feature-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1rem;
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.home-feature-card__icon--zap {
    color: #ea580c;
    background: rgba(249, 115, 22, 0.1);
}

.home-feature-card__icon--shield {
    color: #059669;
    background: rgba(16, 185, 129, 0.1);
}

.home-feature-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.4rem;
}

.home-feature-card__desc {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* ── FAQ ── */
.faq-wrap {
    width: 100%;
}

.faq-item {
    background: linear-gradient(160deg, rgba(255,255,255,0.95), rgba(255,255,255,0.6)) !important;
    backdrop-filter: blur(12px);
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-md) !important;
    margin-bottom: 0.75rem !important;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(99, 102, 241, 0.2) !important;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    color: var(--dark) !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 1.25rem 1.5rem !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary) !important;
    background: rgba(99, 102, 241, 0.04) !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236366f1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-body {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    padding: 0 1.5rem 1.25rem !important;
}

/* ── CTA ── */
.cta-panel {
    position: relative;
    padding: clamp(2.5rem, 6vw, 4rem) 2rem;
    text-align: center;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 50%, #312e81 100%);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-panel--split {
    display: grid;
    grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1.05fr);
    gap: 0;
    padding: 0;
    text-align: left;
}

.cta-panel__media {
    position: relative;
    min-height: 280px;
}

.cta-panel__media img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.cta-panel__body {
    position: relative;
    z-index: 1;
    padding: clamp(2rem, 5vw, 3rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: none;
}

.cta-panel__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.65rem;
}

.cta-panel__perks {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    width: 100%;
}

.cta-panel__perk {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 0.8rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.35;
}

.cta-panel__perk-icon {
    flex-shrink: 0;
    width: 1.45rem;
    height: 1.45rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.18);
    color: #6ee7b7;
}

.cta-panel__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    width: auto;
}

.cta-panel__actions .btn-whatsapp {
    width: auto;
}

.cta-panel__btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff !important;
    box-shadow: none;
}

.cta-panel__btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff !important;
    transform: translateY(-2px);
}

.cta-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.cta-panel::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-panel h2 {
    position: relative;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.cta-panel--split h2,
.cta-panel--split p {
    text-align: left;
}

.cta-panel p {
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 1.15rem;
    max-width: 34rem;
}

.cta-panel .btn-main {
    position: relative;
    background: linear-gradient(135deg, #fff 0%, #f1f5f9 100%);
    color: var(--dark) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-panel .btn-main:hover {
    color: var(--primary-dark) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ── Footer ── */
.site-footer {
    position: relative;
    background: linear-gradient(180deg, var(--dark-soft) 0%, var(--dark) 100%);
    color: rgba(255, 255, 255, 0.65);
    padding: clamp(2.75rem, 6vw, 3.75rem) 0 clamp(1.75rem, 4vw, 2.25rem);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(720px, 90vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.45), rgba(249, 115, 22, 0.35), transparent);
    pointer-events: none;
}

.site-footer__main {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.45fr);
    gap: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__brand {
    max-width: 24rem;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.site-footer__logo:hover {
    color: rgba(255, 255, 255, 0.92);
    transform: translateY(-1px);
}

.site-footer__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
    flex-shrink: 0;
}

.site-footer__name {
    color: #fff;
}

.site-footer__tagline {
    margin: 0.75rem 0 1.25rem;
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.52);
}

.site-footer__cta {
    display: inline-flex !important;
    padding: 0.65rem 1.25rem !important;
    font-size: 0.85rem !important;
    box-shadow: 0 4px 18px rgba(99, 102, 241, 0.35);
}

.site-footer__columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem clamp(1rem, 3vw, 2rem);
}

.site-footer__heading {
    margin: 0 0 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.42);
}

.site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.site-footer__links a {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.site-footer__links a:hover {
    color: #fff;
    transform: translateX(2px);
}

.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem 1.25rem;
}

.site-footer__copy {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.42);
}

.site-footer__note {
    margin: 0;
    font-size: 0.76rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.32);
    letter-spacing: 0.01em;
}

/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Animations ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    50%      { opacity: 0.8; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

/* ── Mobile ── */
@media (max-width: 991.98px) {
    .floating-card { display: none; }

    .hero-visual { margin-top: 2.5rem; }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .hero-search__inner {
        flex-direction: column;
        padding: 0.75rem;
    }

    .hero-search__btn {
        width: 100%;
    }

    .hero-metrics {
        gap: 1rem 1.5rem;
    }

    .home-how__grid {
        grid-template-columns: 1fr;
    }

    .section-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .section-header-row .section-title,
    .section-header-row .section-subtitle {
        text-align: left;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn-main,
    .hero-actions .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .trust-badges {
        gap: 0.75rem;
    }

    .trust-badge {
        font-size: 0.78rem;
        padding: 0.5rem 0.85rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .stat-panel {
        padding: 1.25rem 0.75rem;
    }

    .site-footer__main {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .site-footer__brand {
        max-width: none;
        margin-inline: 0;
    }

    .site-footer__cta {
        width: 100%;
        justify-content: center;
    }

    .site-footer__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem 1rem;
        text-align: left;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .jobs-search__inner {
        flex-direction: column;
    }

    .jobs-search__input {
        border-radius: var(--radius-sm) !important;
    }

    .jobs-search__btn {
        width: 100%;
        justify-content: center;
    }

    .jobs-stats {
        gap: 0.5rem;
    }

    .jobs-stats__item {
        font-size: 0.78rem;
        padding: 0.45rem 0.75rem;
    }

    .jobs-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .jobs-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        font-size: 0.78rem;
        padding: 0.45rem 0.85rem;
    }

    .job-card__header {
        gap: 0.65rem;
    }

    .jobs-pagination {
        flex-wrap: wrap;
        gap: 0.35rem;
    }

    .pagination-btn {
        min-width: 40px;
        padding: 0.5rem 0.75rem;
    }
}

/* ── Jobs page ── */
.jobs-page {
    padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 5rem);
}

.jobs-page__header {
    text-align: center;
    margin-bottom: 2rem;
}

.jobs-page__header-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: center;
    text-align: left;
    margin-bottom: 0.5rem;
}

.jobs-page__header-content .section-title {
    text-align: left;
    margin-bottom: 0.5rem;
}

.jobs-page__header-content .section-subtitle {
    margin-bottom: 0;
    max-width: none;
    text-align: left;
}

.jobs-page__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-dark);
    margin-bottom: 0.85rem;
}

.jobs-page__header--hub .jobs-page__header-content {
    padding: clamp(1.35rem, 2.5vw, 1.85rem);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.68));
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
}

.jobs-page__header--hub .jobs-page__header-content .section-title {
    font-size: clamp(1.85rem, 3.5vw, 2.35rem);
}

.jobs-stats--panel {
    justify-content: flex-start;
    margin-top: 1.15rem;
    margin-bottom: 0;
}

.jobs-page__highlights {
    list-style: none;
    margin: 1.15rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
}

.jobs-page__highlight {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.8rem;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.35;
}

.jobs-page__check {
    flex-shrink: 0;
    width: 1.45rem;
    height: 1.45rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.12);
    color: var(--success);
}

.jobs-page__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.15rem;
}

.jobs-page__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.42rem 0.82rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72));
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.jobs-page__chip span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    padding: 0.08rem 0.32rem;
    border-radius: 100px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-dark);
    font-size: 0.66rem;
    font-weight: 700;
}

.jobs-page__chip:hover {
    border-color: rgba(99, 102, 241, 0.25);
    color: var(--primary-dark);
    transform: translateY(-1px);
}

.jobs-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.jobs-page__header-media {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.jobs-page__header-media img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    display: block;
}

.jobs-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    margin-top: 1.5rem;
}

.jobs-stats__item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.84rem;
    color: var(--text-muted);
}

.jobs-stats__item strong {
    color: var(--dark);
    font-weight: 700;
}

.jobs-search {
    max-width: 80%;
    margin: 0 auto 1.5rem;
}

.jobs-search__inner {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 0.45rem 0.45rem 1rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.65));
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.jobs-search__inner:focus-within {
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1), var(--shadow-md);
}

.jobs-search__icon {
    flex-shrink: 0;
    color: var(--text-muted);
    opacity: 0.7;
}

.jobs-search__input {
    flex: 1;
    border: none !important;
    background: transparent !important;
    padding: 0.75rem 0.5rem !important;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    box-shadow: none !important;
}

.jobs-search__input::placeholder {
    color: var(--text-muted);
}

.jobs-search__input:focus {
    outline: none;
}

.jobs-search__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.75rem 1.35rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.jobs-search__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px var(--glow);
}

.jobs-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}

.jobs-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.jobs-toolbar__count {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.jobs-toolbar__count strong {
    color: var(--primary);
    font-weight: 700;
}

.jobs-toolbar__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.jobs-toolbar__link:hover {
    color: var(--primary-dark);
    gap: 0.5rem;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1.1rem;
    background: var(--surface);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.35rem;
    padding: 0.1rem 0.42rem;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.2;
    background: rgba(15, 23, 42, 0.06);
    color: var(--text-muted);
}

.filter-btn--active .filter-btn__count {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.filter-btn:hover {
    border-color: rgba(99, 102, 241, 0.3);
    color: var(--primary);
    transform: translateY(-2px);
}

.filter-btn--active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 16px var(--glow);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-grid);
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.job-card {
    display: flex;
    flex-direction: column;
    padding: var(--space-card);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.6));
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    height: 100%;
}

.job-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.22);
    box-shadow: var(--shadow-premium);
}

.job-card--listing {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.job-card--listing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
}

.job-card--listing:hover::before {
    opacity: 1;
}

.job-card__header {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.job-card__avatar {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(249, 115, 22, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
}

.job-card__header-text {
    flex: 1;
    min-width: 0;
}

.job-card__company {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.45rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.job-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.job-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.15rem 0.5rem;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.job-badge--new {
    background: rgba(249, 115, 22, 0.12);
    color: #ea580c;
}

.job-badge--verified {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.job-tag--full {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
}

.job-tag--part {
    background: rgba(249, 115, 22, 0.1);
    color: #ea580c;
}

.job-tag--remote {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.job-tag--default {
    background: rgba(100, 116, 139, 0.1);
    color: var(--text-muted);
}

.job-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.job-card__title-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.job-card__title-link:hover {
    color: var(--primary);
}

.job-card__category {
    display: inline-block;
    margin-bottom: 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.job-card__row--salary span {
    font-weight: 700;
    color: var(--dark);
}

.job-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.job-card__row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.job-card__row svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.job-card__footer {
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.job-card__cta {
    width: 100%;
    justify-content: center;
    padding: 0.65rem 1rem !important;
    font-size: 0.85rem !important;
}

.job-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.job-card__link:hover {
    color: var(--primary-dark);
    gap: 0.6rem;
}

.jobs-empty {
    display: none;
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.jobs-empty.is-visible {
    display: block;
}

.jobs-empty a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.jobs-empty a:hover {
    text-decoration: underline;
}

.jobs-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.jobs-pagination__pages {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    max-width: min(100%, 22rem);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.15rem 0;
}

.jobs-pagination__pages::-webkit-scrollbar {
    display: none;
}

.pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    padding: 0 0.1rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-muted);
    user-select: none;
}

.pagination-btn--nav {
    flex-shrink: 0;
    min-width: auto;
    padding-inline: 0.95rem;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 0.55rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.pagination-btn:hover:not(.pagination-btn--disabled):not(.pagination-btn--active) {
    border-color: rgba(99, 102, 241, 0.3);
    color: var(--primary);
}

.pagination-btn--active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 12px var(--glow);
    pointer-events: none;
}

.pagination-btn--disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Job detail page ── */
.job-detail-page {
    padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 5rem);
}

.job-detail-hero {
    text-align: center;
    margin-bottom: 2.5rem;
}

.job-detail-hero .section-title {
    margin-bottom: 1.25rem;
}

.job-detail-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.job-detail-meta__item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    background: var(--surface);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.job-detail-meta__item svg {
    flex-shrink: 0;
    color: var(--primary);
}

.job-detail-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 1.5rem;
    align-items: start;
}

.job-detail-main {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.job-detail-section {
    padding: var(--space-card);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.6));
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.job-detail-section:hover {
    border-color: rgba(99, 102, 241, 0.15);
    box-shadow: var(--shadow-sm);
}

.job-detail-section h2 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.job-detail-section p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 0.85rem;
}

.job-detail-section p:last-child {
    margin-bottom: 0;
}

.job-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.job-detail-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.job-detail-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.job-detail-sidebar {
    position: sticky;
    top: 5.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.job-detail-info-card {
    padding: 1.5rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.65));
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.job-detail-info-card h3 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.job-detail-info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
}

.job-detail-info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.job-detail-info-row span:first-child {
    color: var(--text-muted);
    font-weight: 500;
}

.job-detail-info-row span:last-child {
    color: var(--dark);
    font-weight: 600;
    text-align: right;
}

.job-detail-apply-card {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    text-align: center;
}

.job-detail-apply-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.job-detail-apply-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.15rem;
    line-height: 1.55;
}

.job-detail-apply-card .job-apply-whatsapp {
    width: 100%;
}

.job-apply-whatsapp__note {
    margin: 0.85rem 0 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

.job-detail-related-card {
    margin-top: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.job-detail-related-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    color: var(--dark);
}

.job-detail-related-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.job-detail-related-list li {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
}

.job-detail-related-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.job-detail-related-list a {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.job-detail-related-list a:hover {
    color: var(--primary-dark);
}

.job-detail-related-list span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.job-detail-faq {
    margin-top: 0.5rem;
}

.job-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.job-detail-back:hover {
    color: var(--primary-dark);
    gap: 0.55rem;
}

@media (max-width: 991.98px) {
    .job-detail-layout {
        grid-template-columns: 1fr;
    }

    .job-detail-sidebar {
        position: static;
        order: -1;
    }

    .job-detail-info-card {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0 1.5rem;
    }

    .job-detail-info-card h3 {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575.98px) {
    .job-detail-section {
        padding: 1.35rem 1.25rem;
    }

    .job-detail-meta {
        flex-direction: column;
        align-items: stretch;
    }

    .job-detail-meta__item {
        justify-content: center;
    }

    .job-detail-info-card {
        grid-template-columns: 1fr;
    }
}

/* ── Category page ── */
.category-banner {
    position: relative;
    padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem);
    overflow: hidden;
}

.category-banner__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: center;
}

.category-banner__content {
    text-align: left;
}

.category-banner__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-dark);
    margin-bottom: 0.85rem;
}

.category-banner__content .section-subtitle {
    margin-bottom: 0;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

.category-banner__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.25rem;
}

.category-banner__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72));
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.category-banner__chip span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.35rem;
    padding: 0.1rem 0.35rem;
    border-radius: 100px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-dark);
    font-size: 0.68rem;
    font-weight: 700;
}

.category-banner__chip:hover {
    border-color: rgba(99, 102, 241, 0.25);
    background: rgba(99, 102, 241, 0.06);
    color: var(--primary-dark);
    transform: translateY(-1px);
}

.category-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.35rem;
}

.category-banner__top {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.category-banner__top .category-banner__icon {
    width: 52px;
    height: 52px;
    margin: 0;
    border-radius: 14px;
}

.category-banner__top .category-banner__eyebrow {
    margin-bottom: 0;
}

.category-banner__highlights {
    list-style: none;
    margin: 1.15rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
}

.category-banner__highlight {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.8rem;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.35;
}

.category-banner__check {
    flex-shrink: 0;
    width: 1.45rem;
    height: 1.45rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.12);
    color: var(--success);
}

.guides-page__head {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.guides-page__title {
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: 0.35rem;
}

.guides-page__lead {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.category-banner--hub .category-banner__content {
    padding: clamp(1.35rem, 2.5vw, 1.85rem);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.68));
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
}

.category-banner--hub .category-banner__content .section-title {
    font-size: clamp(1.85rem, 3.5vw, 2.35rem);
}

.categories-page__head {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.categories-page__title {
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: 0.35rem;
}

.categories-page__lead {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.category-banner__content .category-banner__icon {
    margin: 0 0 1.25rem;
}

.category-banner__content .section-title {
    text-align: left;
}

.category-banner__content .category-banner__stats {
    justify-content: flex-start;
}

.category-banner__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.category-banner__media img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    display: block;
}

.category-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

.category-banner__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(249, 115, 22, 0.08));
    border: 1px solid var(--border);
    border-radius: 18px;
    animation: fadeUp 0.7s ease both;
}

.category-banner__content .category-banner__icon {
    margin-left: 0;
}

.category-banner .section-title {
    animation: fadeUp 0.7s 0.1s ease both;
}

.category-banner__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    margin-top: 1.5rem;
    animation: fadeUp 0.7s 0.2s ease both;
}

.category-banner__stat {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 1rem;
    background: var(--surface);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
}

.category-banner__stat strong {
    color: var(--primary);
}

.category-description {
    max-width: 100%;
    margin: 0 auto 2.5rem;
    padding: 1.75rem 2rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.6));
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
}

.category-description p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0;
}

.category-desc-section {
    padding-top: 0;
}

.category-jobs-section {
    padding-bottom: clamp(3rem, 7vw, 5rem);
}

.category-jobs-section .jobs-grid {
    margin-bottom: 0;
}

.category-faq-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
}

@media (max-width: 575.98px) {
    .category-description {
        padding: 1.35rem 1.25rem;
    }

    .hero-metrics {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.5rem 0.45rem;
        width: 100%;
        max-width: 100%;
        justify-content: stretch;
    }

    .hero-metrics__item {
        min-width: 0;
        align-items: center;
        text-align: center;
    }

    .hero-metrics__item strong {
        font-size: clamp(1rem, 4.5vw, 1.2rem);
    }

    .hero-metrics__item span {
        font-size: 0.62rem;
        letter-spacing: 0.02em;
    }
}

/* ── About page ── */
.about-page {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 5rem);
}

.about-page > .container {
    position: relative;
    z-index: 1;
}

.page-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.page-decor__grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(99, 102, 241, 0.09) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.6) 100%);
}

.page-decor__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
}

.page-decor__blob--1 {
    width: min(440px, 48vw);
    height: min(440px, 48vw);
    top: -14%;
    right: -6%;
    background: rgba(99, 102, 241, 0.2);
}

.page-decor__blob--2 {
    width: min(380px, 42vw);
    height: min(380px, 42vw);
    bottom: 8%;
    left: -12%;
    background: rgba(249, 115, 22, 0.16);
}

.page-decor__blob--3 {
    width: min(300px, 34vw);
    height: min(300px, 34vw);
    top: 46%;
    right: 12%;
    background: rgba(16, 185, 129, 0.12);
}

.page-decor__ring {
    position: absolute;
    border: 1px dashed rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.page-decor__ring--1 {
    width: clamp(120px, 14vw, 180px);
    height: clamp(120px, 14vw, 180px);
    top: 16%;
    left: 4%;
}

.page-decor__ring--2 {
    width: clamp(90px, 10vw, 130px);
    height: clamp(90px, 10vw, 130px);
    bottom: 20%;
    right: 7%;
    border-color: rgba(249, 115, 22, 0.22);
    animation-delay: 1.2s;
    animation-direction: reverse;
}

.page-decor__icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    color: var(--primary-dark);
    backdrop-filter: blur(10px);
    animation: float 5s ease-in-out infinite;
}

.page-decor__icon--1 {
    top: 10%;
    right: 18%;
    animation-delay: 0.3s;
}

.page-decor__icon--2 {
    bottom: 28%;
    left: 7%;
    color: var(--success);
    animation-delay: 1s;
}

.page-decor__icon--3 {
    top: 58%;
    right: 5%;
    animation-delay: 1.8s;
}

.page-decor__chip {
    position: absolute;
    padding: 0.45rem 0.9rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    animation: float 4.5s ease-in-out infinite;
}

.page-decor__chip--1 {
    top: 6%;
    left: 5%;
}

.page-decor__chip--2 {
    top: 52%;
    right: 3%;
    animation-delay: 0.8s;
}

.page-decor__chip--3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 1.6s;
}

.about-intro {
    max-width: none;
    margin: 0 auto clamp(2rem, 4vw, 3rem);
    text-align: left;
}

.about-page__main {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
}

.about-intro__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: center;
}

.about-intro__content .section-title,
.about-intro__content .section-subtitle {
    text-align: left;
}

.about-intro__content .section-subtitle {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}

.about-intro__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-dark);
    margin-bottom: 0.85rem;
}

.about-intro__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 1.75rem;
    margin-top: 1.25rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--border);
}

.about-intro__highlights {
    list-style: none;
    margin: 1.15rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
}

.about-intro__highlight {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.8rem 0.9rem;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.about-intro__check {
    flex-shrink: 0;
    width: 1.65rem;
    height: 1.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.12);
    color: var(--success);
    margin-top: 0.1rem;
}

.about-intro__highlight strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 0.1rem;
}

.about-intro__highlight span {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.about-intro__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.35rem;
}

.about-intro--split .about-intro__shell {
    padding: clamp(1.15rem, 2.2vw, 1.65rem);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72));
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.about-intro--split .about-intro__layout {
    align-items: stretch;
    gap: clamp(1.15rem, 2.5vw, 1.75rem);
}

.about-intro--split .about-intro__content {
    padding: clamp(0.35rem, 1.2vw, 0.85rem);
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-intro--split .about-intro__content .section-title {
    font-size: clamp(1.85rem, 3.5vw, 2.35rem);
    margin-bottom: 0.65rem;
}

.about-intro--split .about-intro__eyebrow {
    margin-bottom: 0.75rem;
}

.about-intro--split .about-intro__stats {
    margin-top: 1.1rem;
    margin-bottom: 0;
}

.about-intro--split .about-intro__highlights {
    margin-top: 1rem;
    gap: 0.5rem;
}

.about-intro--split .about-intro__highlight {
    align-items: center;
    padding: 0.6rem 0.75rem;
    font-size: 0.8rem;
    line-height: 1.4;
}

.about-intro--split .about-intro__highlight div {
    display: contents;
}

.about-intro--split .about-intro__actions {
    margin-top: 1.15rem;
}

.about-intro--split .about-intro__media {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    min-height: 240px;
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.06), rgba(249, 115, 22, 0.04));
}

.about-intro--split .about-intro__media img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.about-page .page-decor__chip,
.about-page .page-decor__icon,
.about-page .page-decor__ring {
    display: none;
}

.about-block--panel {
    padding: clamp(1.5rem, 3vw, 2rem);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.62));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.about-block--panel__body {
    display: grid;
    gap: 0.85rem;
}

.about-block--panel h2 {
    margin-bottom: 1.15rem;
}

.about-section-head {
    margin-bottom: clamp(1rem, 2vw, 1.35rem);
}

.about-section-head--compact {
    margin-bottom: 1rem;
}

.about-section-head__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-dark);
    margin-bottom: 0.55rem;
}

.about-section-head__title {
    font-size: clamp(1.25rem, 2.5vw, 1.45rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin: 0 0 0.65rem;
    line-height: 1.25;
}

.about-section-head__lead {
    margin: 0;
    max-width: 42rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.about-block__content--panel {
    padding: clamp(1.35rem, 2.5vw, 1.85rem);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.62));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.about-block__content--panel .about-section-head__title {
    margin-bottom: 0.85rem;
}

.about-block__content--panel p:last-child {
    margin-bottom: 0;
}

.about-block--values,
.about-block--steps {
    padding-top: 0.25rem;
}

.about-value__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.85rem;
    border-radius: 10px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.about-intro__media {
    position: relative;
}

.about-intro__media img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
    border-radius: calc(var(--radius-lg) - 0.35rem);
    position: relative;
    z-index: 0;
}

.about-block--split {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: center;
}

.about-block__media {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.about-block__media img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    display: block;
}

.about-intro .section-subtitle {
    margin-bottom: 0;
}

.about-block {
    max-width: 100%;
    margin: 0;
}

.about-block:last-child {
    margin-bottom: 0;
}

.about-block h2 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.about-block--panel .about-section-head__title,
.about-block--values .about-section-head__title,
.about-block--steps .about-section-head__title,
.about-contact .about-section-head__title {
    font-size: clamp(1.25rem, 2.5vw, 1.45rem);
}

.about-block p {
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.8;
    margin-bottom: 0.85rem;
}

.about-block p:last-child {
    margin-bottom: 0;
}

.about-block a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.about-block a:hover {
    color: var(--primary-dark);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.25rem;
}

.about-value {
    padding: 1.35rem 1.5rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.55));
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.about-value:hover {
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: var(--shadow-sm);
}

.about-value h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.45rem;
}

.about-value p {
    font-size: 0.85rem;
    line-height: 1.65;
    margin: 0;
}

.about-help-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.about-help-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.15rem 1.35rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.55));
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.about-help-list__num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
}

.about-help-list__text strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.about-help-list__text span {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-contact {
    padding: clamp(1.5rem, 3vw, 2rem);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.6));
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.about-contact .about-section-head__lead {
    max-width: none;
}

.about-contact .about-contact__grid,
.about-contact .about-contact__note {
    margin-top: 0;
}

.about-contact .about-contact__grid {
    margin-top: 1.25rem;
}

.about-contact__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.25rem;
}

.about-contact__item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.about-contact__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.about-contact__value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.5;
}

.about-contact__value a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.about-contact__value a:hover {
    color: var(--primary-dark);
}

.about-contact__note {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.about-contact__note a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.about-contact__note a:hover {
    color: var(--primary-dark);
}

@media (max-width: 767.98px) {
    .about-values {
        grid-template-columns: 1fr;
    }

    .about-contact__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* ── Contact page ── */
.contact-page {
    padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 5rem);
}

.contact-page__head {
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.contact-page__head .section-title {
    margin-bottom: 0.5rem;
    text-align: left;
}

.contact-page__lead {
    margin: 0;
    max-width: 42rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.contact-layout {
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.contact-layout--split .contact-layout__shell {
    padding: clamp(1.15rem, 2.2vw, 1.65rem);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72));
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.contact-layout__grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
    gap: clamp(1.15rem, 2.5vw, 1.75rem);
    align-items: stretch;
}

.contact-layout__media {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    min-height: 280px;
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.06), rgba(16, 185, 129, 0.04));
}

.contact-layout__media img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    object-position: center 15%;
    display: block;
}

.contact-layout__body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 100%;
}

.contact-whatsapp-panel h2 {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: 0.35rem;
}

.contact-whatsapp-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: clamp(1.25rem, 2.5vw, 1.65rem);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.55));
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.contact-whatsapp-panel__head {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.1rem;
}

.contact-whatsapp-panel__icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: 14px;
    color: #128c7e;
}

.contact-whatsapp-panel__lead {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-whatsapp-panel__list {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.contact-whatsapp-panel__list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 0.75rem;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.35;
}

.contact-whatsapp-panel__check {
    flex-shrink: 0;
    width: 1.35rem;
    height: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.12);
    color: var(--success);
}

.contact-whatsapp-panel__note {
    margin: 1rem 0 0;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: #25d366;
    color: #fff !important;
    border: none;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #1ebe57;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp--inline {
    display: inline-flex;
    width: auto;
    padding: 0.65rem 1.25rem;
    margin-right: 0.35rem;
    vertical-align: middle;
}

/* ── WhatsApp floating widget ── */
.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.5rem;
    z-index: 1070;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 0.8rem;
    transition: bottom 0.35s ease, transform 0.35s ease;
}

.whatsapp-float--raised {
    bottom: 6.75rem;
}

.whatsapp-float__link {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.whatsapp-float__btn {
    position: relative;
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
}

.whatsapp-logo {
    display: block;
    flex-shrink: 0;
}

.whatsapp-logo--float {
    width: 30px;
    height: 30px;
}

.whatsapp-float__btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--support-pulse-color, rgba(37, 211, 102, 0.45));
    animation: whatsappPulse 2.4s ease-out infinite;
}

.whatsapp-float__btn--whatsapp { --support-pulse-color: rgba(37, 211, 102, 0.48); }

.whatsapp-float__link--whatsapp:hover .whatsapp-float__btn,
.whatsapp-float__link--whatsapp:focus-visible .whatsapp-float__btn {
    background: #1ebe57;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float__btn--signal {
    --support-pulse-color: rgba(58, 118, 240, 0.48);
    background: linear-gradient(135deg, #4f94f7, #2e6ee9);
    box-shadow: 0 8px 28px rgba(58, 118, 240, 0.42);
}

.whatsapp-float__link--signal:hover .whatsapp-float__btn,
.whatsapp-float__link--signal:focus-visible .whatsapp-float__btn {
    background: #2865dd;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 32px rgba(58, 118, 240, 0.48);
}

.whatsapp-float__btn--livechat {
    --support-pulse-color: rgba(109, 93, 252, 0.5);
    background: linear-gradient(135deg, #7c6cff, #5144e8);
    box-shadow: 0 8px 28px rgba(79, 70, 229, 0.4);
}

.whatsapp-float__link--livechat:hover .whatsapp-float__btn,
.whatsapp-float__link--livechat:focus-visible .whatsapp-float__btn {
    background: linear-gradient(135deg, #5c4cf4, #3730a3);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 32px rgba(79, 70, 229, 0.48);
}

.support-float-icon {
    display: block;
    filter: drop-shadow(0 1px 1px rgba(15, 23, 42, 0.12));
}

.support-float-icon--signal { stroke-width: 1.75; }
.support-float-icon--livechat { stroke-width: 1.9; }

.whatsapp-float__panel {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    padding: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    transition: max-width 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
    pointer-events: none;
}

.whatsapp-float__title {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

.whatsapp-float__hint {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.35;
}

.whatsapp-float__link:hover .whatsapp-float__panel,
.whatsapp-float__link:focus-visible .whatsapp-float__panel {
    max-width: 220px;
    opacity: 1;
    padding: 0.75rem 1rem;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.18);
        opacity: 0;
    }

    100% {
        transform: scale(1.18);
        opacity: 0;
    }
}

@media (max-width: 575.98px) {
    .whatsapp-float {
        right: 1rem;
        bottom: 1.25rem;
    }

    .whatsapp-float--raised {
        bottom: 7.25rem;
    }

    .whatsapp-float__btn {
        width: 54px;
        height: 54px;
    }

    .whatsapp-float__panel {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-float__btn::before {
        animation: none;
    }
}

@media (max-width: 991.98px) {
    .home-how__layout,
    .home-promo,
    .category-banner__layout,
    .about-intro__layout,
    .about-block--split,
    .jobs-page__header-layout,
    .cta-panel--split {
        grid-template-columns: 1fr;
    }

    .home-how__content .section-title,
    .home-how__content .section-subtitle,
    .home-promo__body .section-title,
    .home-promo__body .section-subtitle,
    .about-intro__content .section-title,
    .about-intro__content .section-subtitle {
        text-align: center;
    }

    .home-promo__actions,
    .home-promo__stats {
        justify-content: center;
    }

    .site-footer__main {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 1.75rem;
    }

    .site-footer__brand {
        max-width: none;
        margin-inline: 0;
    }

    .site-footer__columns {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        text-align: left;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .about-intro__stats,
    .about-intro__actions {
        justify-content: center;
    }

    .about-intro__actions {
        display: flex;
    }

    .about-intro--split .about-intro__content,
    .about-intro--split .about-intro__content .section-title,
    .about-intro--split .about-intro__content .section-subtitle {
        text-align: left;
    }

    .about-intro--split .about-intro__stats,
    .about-intro--split .about-intro__actions {
        justify-content: flex-start;
    }

    .about-intro--split .about-intro__highlights {
        grid-template-columns: 1fr;
    }

    .about-block--panel__body {
        grid-template-columns: 1fr;
    }

    .about-section-head,
    .about-section-head__lead {
        text-align: center;
    }

    .about-section-head__lead {
        margin-inline: auto;
    }

    .about-help-list {
        grid-template-columns: 1fr;
    }

    .cta-panel--split h2,
    .cta-panel--split p,
    .cta-panel__eyebrow {
        text-align: center;
    }

    .cta-panel__body {
        align-items: center;
    }

    .cta-panel__actions {
        justify-content: center;
    }

    .home-how__content .home-how__step {
        display: block;
        text-align: center;
        padding: 1.35rem 1.25rem 1.25rem 1.5rem;
    }

    .home-how__content .home-how__icon {
        margin: 0 auto 1rem;
    }

    .home-how__content .home-how__step h3,
    .home-how__content .home-how__step p {
        text-align: center;
    }

    .jobs-page__header-layout {
        text-align: center;
    }

    .jobs-page__header-content .section-title,
    .jobs-page__header-content .section-subtitle {
        text-align: center;
    }

    .jobs-page__header--hub .jobs-page__header-content {
        text-align: center;
    }

    .jobs-page__header--hub .jobs-page__header-content .section-subtitle {
        text-align: center;
    }

    .jobs-stats--panel,
    .jobs-page__actions,
    .jobs-page__chips {
        justify-content: center;
    }

    .jobs-page__actions {
        display: flex;
    }

    .jobs-page__highlights {
        text-align: left;
    }

    .category-banner__content .section-title,
    .category-banner__content .category-banner__stats,
    .category-banner__content .section-subtitle {
        text-align: center;
    }

    .category-banner__content .category-banner__stats {
        justify-content: center;
    }

    .category-banner__content .category-banner__icon {
        margin-left: auto;
        margin-right: auto;
    }

    .category-banner__chips,
    .category-banner__actions {
        justify-content: center;
    }

    .category-banner__actions {
        display: flex;
    }

    .category-banner--hub .category-banner__content {
        text-align: center;
    }

    .category-banner--hub .category-banner__content .section-subtitle {
        text-align: center;
    }

    .categories-page__head {
        text-align: center;
    }

    .guides-page__head {
        text-align: center;
    }

    .category-banner__top {
        justify-content: center;
    }

    .category-banner__highlights {
        text-align: left;
    }

    .page-decor__ring,
    .page-decor__icon,
    .page-decor__chip {
        display: none;
    }

    .page-decor__blob {
        filter: blur(50px);
        opacity: 0.75;
    }

    .contact-layout__grid {
        grid-template-columns: 1fr;
    }

    .contact-whatsapp-panel__list {
        grid-template-columns: 1fr;
    }
}

/* ── Legal pages ── */
.legal-footer-note {
    margin-top: 1rem;
    padding-top: 0;
    border-top: none;
}

/* ── Guides page ── */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-grid);
}

.guide-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: var(--space-card);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.68));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    overflow: hidden;
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.guide-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.22);
    box-shadow: var(--shadow-premium);
}

.guide-card:hover::before {
    transform: scaleX(1);
}

.guide-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(249, 115, 22, 0.06));
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.guide-card:hover .guide-card__icon {
    transform: scale(1.08) rotate(-3deg);
}

.guide-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.65rem;
    line-height: 1.35;
}

.guide-card__desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.guide-card__footer {
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.category-banner .section-subtitle {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .guides-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Guides page: Latest Guides showcase (guides.php only) ── */
.guides-showcase {
    display: flex;
    flex-direction: column;
    gap: clamp(1.35rem, 3vw, 2rem);
}

.guides-featured {
    display: grid;
    grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
    gap: 0;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.72));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, opacity 0.35s ease;
}

.guides-featured.is-hidden {
    display: none;
}

.guides-featured:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.22);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.14), 0 10px 28px rgba(99, 102, 241, 0.12);
}

.guides-featured.guides-reveal.is-inview:hover {
    transform: translateY(-10px);
}

.guides-featured__media {
    display: block;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.guides-featured__label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1;
    padding: 0.35rem 0.75rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
}

.guides-featured__media img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.guides-featured:hover .guides-featured__media img {
    transform: scale(1.05);
}

.guides-featured__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.5rem, 3vw, 2.25rem);
}

.guides-featured__badge,
.guides-slide__badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.35rem 0.85rem;
    margin-bottom: 0.85rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(249, 115, 22, 0.08));
    border: 1px solid rgba(99, 102, 241, 0.18);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.guides-featured__title,
.guides-slide__title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.guides-featured__title a,
.guides-slide__title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.25s ease;
}

.guides-featured__title a:hover,
.guides-slide__title a:hover {
    color: var(--primary-dark);
}

.guides-featured__desc,
.guides-slide__desc {
    margin: 0 0 1rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.guides-featured__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.guides-featured__meta span {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border);
    border-radius: 100px;
}

.guides-featured__cta {
    align-self: flex-start;
    padding: 0.75rem 1.35rem !important;
    font-size: 0.88rem !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.guides-featured__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.guides-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.35rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.42));
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 100px;
    width: fit-content;
    max-width: 100%;
}

.guides-tabs__btn {
    padding: 0.5rem 0.95rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72));
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.guides-tabs__btn:hover {
    color: var(--primary-dark);
    border-color: rgba(99, 102, 241, 0.25);
}

.guides-tabs__btn.is-active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 16px var(--glow);
}

.guides-carousel-panel {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2.5vw, 1.35rem);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.guides-showcase.is-filtering .guides-carousel-panel {
    opacity: 0.55;
    transform: translateY(6px);
}

.guides-showcase.is-filtering .guides-featured {
    opacity: 0.88;
}

.guides-carousel__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.guides-carousel__title {
    margin: 0 0 0.35rem;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.guides-carousel__subtitle {
    margin: 0;
    max-width: 38rem;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.guides-carousel__count {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72));
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.guides-carousel {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem;
}

.guides-carousel__viewport {
    overflow: hidden;
    min-width: 0;
    width: 100%;
}

.guides-carousel__track {
    display: flex;
    align-items: stretch;
    gap: var(--space-grid);
    width: 100%;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.guides-slide {
    flex: 0 0 calc((100% - (var(--guides-visible, 3) - 1) * var(--space-grid)) / var(--guides-visible, 3));
    width: calc((100% - (var(--guides-visible, 3) - 1) * var(--space-grid)) / var(--guides-visible, 3));
    max-width: calc((100% - (var(--guides-visible, 3) - 1) * var(--space-grid)) / var(--guides-visible, 3));
    min-width: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.72));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, opacity 0.4s ease;
}

.guides-slide.is-filtered-out {
    display: none;
}

.guides-slide:hover,
.guides-slide.guides-reveal.is-inview:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.22);
    box-shadow: 0 24px 52px rgba(15, 23, 42, 0.12), 0 8px 24px rgba(99, 102, 241, 0.1);
}

.guides-slide__media {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.guides-slide__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.guides-slide:hover .guides-slide__media img {
    transform: scale(1.05);
}

.guides-slide__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.15rem 1.15rem 1.25rem;
}

.guides-slide__badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
}

.guides-slide__badges .guides-slide__badge {
    margin-bottom: 0;
}

.guides-slide__related-tag {
    display: inline-flex;
    padding: 0.28rem 0.65rem;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.18);
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #c2410c;
}

.guides-slide__title {
    font-size: 1rem;
    margin-bottom: 0.55rem;
}

.guides-slide__desc {
    font-size: 0.86rem;
    margin-bottom: 0.75rem;
    flex-grow: 1;
}

.guides-slide__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--text-muted);
}

.guides-slide__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.28rem 0.65rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border);
    border-radius: 100px;
}

.guides-slide__footer {
    margin-top: auto;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border);
}

.guides-slide__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
}

.guides-slide__link:hover {
    gap: 0.55rem;
    color: var(--primary);
}

.guides-carousel__arrow {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.72));
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--dark);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
}

.guides-carousel__arrow:hover:not(:disabled) {
    border-color: rgba(99, 102, 241, 0.25);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.guides-carousel__arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: none;
}

.guides-carousel__empty {
    margin: 0;
    padding: 1.25rem 1.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.92rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.65));
    border: 1px dashed rgba(148, 163, 184, 0.35);
    border-radius: var(--radius-md);
}

.guides-reveal {
    opacity: 1;
    transform: translateY(0);
}

.guides-showcase.is-enhanced .guides-reveal:not(.is-inview) {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.guides-showcase.is-enhanced .guides-reveal.is-inview {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.guides-slide.guides-reveal:nth-child(3n + 2) {
    transition-delay: 0.05s;
}

.guides-slide.guides-reveal:nth-child(3n + 3) {
    transition-delay: 0.1s;
}

@media (prefers-reduced-motion: reduce) {
    .guides-showcase.is-enhanced .guides-reveal:not(.is-inview),
    .guides-showcase.is-enhanced .guides-reveal.is-inview {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 991.98px) {
    .guides-featured {
        grid-template-columns: 1fr;
    }

    .guides-featured__media,
    .guides-featured__media img {
        min-height: 220px;
    }

    .guides-showcase {
        --guides-visible: 2;
    }
}

@media (max-width: 575.98px) {
    .guides-carousel {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .guides-carousel__arrow {
        display: none;
    }

    .guides-carousel__viewport {
        order: 1;
    }

    .guides-showcase {
        --guides-visible: 1;
    }

    .guides-tabs {
        width: 100%;
        border-radius: var(--radius-md);
    }

    .guides-tabs__btn {
        font-size: 0.78rem;
        padding: 0.5rem 0.85rem;
    }
}

@media (min-width: 992px) {
    .guides-showcase {
        --guides-visible: 3;
    }
}

/* ── Article page ── */
.article-page {
    padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 5rem);
}

.article-page .job-detail-back {
    margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
    gap: clamp(1.5rem, 3vw, 2.25rem);
    align-items: start;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.article-main {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-width: 0;
}

.article-reading-shell {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.74));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.article-hero {
    padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 1.75rem);
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.04) 0%, transparent 100%);
}

.article-hero--split {
    text-align: left;
}

.article-hero__eyebrow {
    display: inline-block;
    margin-bottom: 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.article-hero__category {
    display: inline-flex;
    padding: 0.35rem 0.85rem;
    margin-bottom: 0.85rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(249, 115, 22, 0.08));
    border: 1px solid rgba(99, 102, 241, 0.18);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.article-hero__title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--dark);
}

.article-hero__lead {
    margin: 0 0 1.15rem;
    max-width: 42rem;
    font-size: clamp(0.94rem, 1.6vw, 1.02rem);
    line-height: 1.65;
    color: var(--text-muted);
}

.article-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.article-hero__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
}

.article-hero__meta-item svg {
    flex-shrink: 0;
    color: var(--primary);
}

.article-reading-shell__body {
    padding: clamp(1.35rem, 2.5vw, 2rem) clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.25rem);
}

.article-content {
    max-width: none;
    width: 100%;
    margin: 0;
}

.article-content p {
    margin: 0 0 1rem;
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.8;
}

.article-content p:last-child {
    margin-bottom: 0;
}

.article-content h2 {
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin: 1.85rem 0 0.85rem;
    padding-bottom: 0;
    border-bottom: none;
}

.article-content h2:first-of-type {
    margin-top: 0.25rem;
}

.article-takeaways {
    margin-top: clamp(1.5rem, 3vw, 2rem);
    padding: clamp(1.15rem, 2.5vw, 1.5rem);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.06), rgba(249, 115, 22, 0.04));
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: var(--radius-md);
}

.article-takeaways__head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.article-takeaways__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.12);
    color: var(--success);
}

.article-takeaways__head h2 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.article-takeaways__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.article-takeaways__list li {
    position: relative;
    padding-left: 1.45rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.article-takeaways__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.article-panel {
    padding: 1.25rem 1.35rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.72));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.article-panel:hover {
    border-color: rgba(99, 102, 241, 0.18);
    box-shadow: var(--shadow-md);
}

.article-panel__title {
    margin: 0 0 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.article-panel__details {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.article-panel__detail {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.article-panel__detail:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.article-panel__detail dt {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
}

.article-panel__detail dd {
    margin: 0;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--dark);
    text-align: right;
}

.article-panel__related {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.article-panel__related-link {
    display: block;
    padding: 0.75rem 0.85rem;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
}

.article-panel__related-link:hover {
    border-color: rgba(99, 102, 241, 0.22);
    background: rgba(99, 102, 241, 0.04);
    transform: translateX(3px);
}

.article-panel__related-title {
    display: block;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.45;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.article-panel__related-meta {
    display: block;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--text-muted);
}

.article-panel--cta {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(49, 46, 129, 0.06) 100%);
    border-color: rgba(99, 102, 241, 0.16);
}

.article-panel--cta p {
    margin: 0 0 1rem;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.article-panel__cta {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.15rem !important;
    font-size: 0.88rem !important;
}

.article-faq.article-panel {
    padding: clamp(1.25rem, 2.5vw, 1.5rem) clamp(1.35rem, 2.5vw, 1.75rem);
}

.article-faq .page-section-head {
    margin-bottom: 1.25rem;
}

.article-faq .page-section-head .section-title {
    font-size: 1.15rem;
    margin-bottom: 0;
}

.article-faq .page-eyebrow {
    margin-bottom: 0.5rem;
}

.article-sidebar {
    position: sticky;
    top: calc(var(--site-navbar-height, 72px) + 1rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.article-sidebar__media {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: var(--shadow-premium);
}

.article-sidebar__media img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.article-sidebar__media:hover img {
    transform: scale(1.04);
}

.article-related {
    margin-bottom: 2.5rem;
    padding-top: clamp(1.5rem, 3vw, 2rem);
    border-top: 1px solid var(--border);
}

.article-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-grid);
}

.article-related-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.72));
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.article-related-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.22);
    box-shadow: var(--shadow-premium);
}

.article-related-card__media {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.article-related-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.article-related-card:hover .article-related-card__media img {
    transform: scale(1.05);
}

.article-related-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.15rem 1.15rem 1.25rem;
}

.article-related-card__badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.3rem 0.75rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(249, 115, 22, 0.08));
    border: 1px solid rgba(99, 102, 241, 0.16);
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.article-related-card__title {
    margin: 0 0 0.55rem;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
}

.article-related-card__title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.25s ease;
}

.article-related-card__title a:hover {
    color: var(--primary-dark);
}

.article-related-card__desc {
    margin: 0 0 1rem;
    flex-grow: 1;
    font-size: 0.86rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.article-related-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border);
}

.article-related-card__time {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--text-muted);
}

.article-related-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
}

.article-related-card__link:hover {
    gap: 0.5rem;
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .article-sidebar__media {
        grid-column: 1 / -1;
    }

    .article-panel--cta {
        grid-column: 1 / -1;
    }

    .article-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .article-sidebar {
        grid-template-columns: 1fr;
    }

    .article-hero__meta {
        flex-direction: column;
        align-items: stretch;
    }

    .article-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1200px) {
    .article-layout {
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 2.25rem;
    }
}

/* ── Cookie consent banner ── */
.cookie-banner {
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1080;
    width: calc(100% - 2rem);
    max-width: 720px;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.cookie-banner--hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(1.5rem);
    pointer-events: none;
}

.cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.15rem 1.35rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82));
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.cookie-banner__text {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.cookie-banner__text a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.cookie-banner__text a:hover {
    color: var(--primary-dark);
}

.cookie-banner__btn {
    flex-shrink: 0;
    border: none;
    cursor: pointer;
    padding: 0.7rem 1.5rem;
    font-size: 0.88rem;
}

/* ── 404 page ── */
.error-page {
    padding: clamp(3rem, 8vw, 6rem) 0;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.error-page__code {
    display: inline-block;
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.error-page__title {
    text-align: left;
    margin-bottom: 1rem;
}

.error-page__lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
}

.error-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.error-page__visual {
    position: relative;
}

@media (max-width: 991.98px) {
    .error-page__title {
        text-align: center;
    }

    .error-page__lead {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .error-page__actions {
        justify-content: center;
    }

    .error-page__code {
        display: block;
        text-align: center;
    }

    .error-page__visual {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .error-page__actions {
        flex-direction: column;
    }

    .error-page__actions .btn-main,
    .error-page__actions .btn-ghost {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .cookie-banner {
        bottom: 0.75rem;
        width: calc(100% - 1.25rem);
    }

    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 1.1rem 1.15rem;
    }

    .cookie-banner__btn {
        width: 100%;
        justify-content: center;
    }
}

/* ── Layout polish & mobile rhythm ── */
@media (max-width: 991.98px) {
    :root {
        --layout-width: var(--layout-width-tablet);
    }

    .hero {
        padding: clamp(2.5rem, 8vw, 4rem) 0 clamp(2rem, 6vw, 3rem);
    }

    .section-header-row {
        align-items: flex-start;
    }

    .section-header-row .section-title,
    .section-header-row .section-subtitle {
        text-align: left;
    }

    .jobs-search {
        max-width: 100%;
    }

    .home-promo__media,
    .home-how__media,
    .category-banner__media,
    .about-intro__media,
    .about-block--split .about-block__media,
    .jobs-page__header-media,
    .cta-panel__media {
        order: -1;
    }

    .home-promo {
        margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
    }

    .home-how__media img {
        min-height: 240px;
    }

    .category-banner {
        padding: clamp(2rem, 6vw, 3.25rem) 0 clamp(1.5rem, 4vw, 2.25rem);
    }

    .contact-layout__media img {
        min-height: 220px;
    }

    .cta-panel--split .cta-panel__media {
        min-height: 220px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --layout-width: var(--layout-width-mobile);
    }

    .jobs-grid,
    .home-jobs-grid.jobs-grid,
    .category-jobs-section .jobs-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .home-jobs-grid {
        margin-top: 1.15rem;
    }

    .job-card--listing {
        padding: 1.15rem 1.1rem;
    }

    .job-card--listing:hover {
        transform: none;
    }

    .job-card__header {
        margin-bottom: 0.85rem;
        align-items: center;
    }

    .job-card__avatar {
        width: 40px;
        height: 40px;
        font-size: 0.92rem;
        border-radius: 10px;
    }

    .job-card__company {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        font-size: 0.82rem;
        line-height: 1.35;
        margin-bottom: 0.4rem;
    }

    .job-card__badges {
        gap: 0.3rem;
    }

    .job-badge {
        font-size: 0.64rem;
        padding: 0.12rem 0.45rem;
    }

    .job-card__title {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .job-card__category {
        margin-bottom: 0.75rem;
        font-size: 0.72rem;
    }

    .job-card__meta {
        margin-bottom: 1rem;
        gap: 0.45rem;
    }

    .job-card__row {
        font-size: 0.82rem;
        align-items: flex-start;
    }

    .job-card__row svg {
        margin-top: 0.1rem;
    }

    .job-card__footer {
        padding-top: 0.85rem;
    }

    .job-card__cta {
        width: 100%;
        min-height: 44px;
        padding: 0.75rem 1rem !important;
        font-size: 0.88rem !important;
    }

    .stats-grid {
        gap: var(--space-grid);
    }

    .home-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
        margin-top: 1.35rem;
    }

    .home-feature-card {
        padding: 1.1rem 0.95rem;
    }

    .navbar .navbar-collapse,
    .site-navbar .site-navbar__collapse {
        flex-basis: 100%;
        margin-top: 0.85rem;
        padding: 0.85rem;
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
    }

    .site-navbar > .container.site-navbar__inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .site-navbar__brand {
        order: 1;
    }

    .site-navbar__toggler {
        order: 2;
        margin-left: auto;
    }

    .site-navbar__collapse {
        order: 3;
    }

    .site-navbar__links {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
        width: 100%;
        padding: 0;
        background: transparent;
        border: none;
        border-radius: 0;
    }

    .site-navbar__links .nav-item {
        width: 100%;
    }

    .site-navbar__links .nav-link {
        display: flex;
        align-items: center;
        text-align: left;
        justify-content: flex-start;
        width: 100%;
        padding: 0.75rem 0.85rem !important;
        background: rgba(15, 23, 42, 0.03);
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        white-space: normal;
    }

    .site-navbar__links .nav-link.active {
        background: rgba(99, 102, 241, 0.08);
        border-color: rgba(99, 102, 241, 0.18);
        box-shadow: none;
    }

    .navbar .nav-link,
    .site-navbar__links .nav-link {
        padding: 0.72rem 0.65rem !important;
    }
}

@media (max-width: 575.98px) {
    .hero .col-lg-6:first-child {
        text-align: center;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title,
    .hero-lead {
        text-align: center;
    }

    .hero-quick-tags {
        justify-content: center;
    }

    .hero-metrics {
        justify-content: center;
        gap: 0.75rem 0.85rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-metrics__item {
        min-width: 0;
    }

    .section-title {
        font-size: clamp(1.4rem, 5.2vw, 1.7rem);
        line-height: 1.2;
    }

    .section-subtitle {
        max-width: 100%;
        margin-bottom: 1.75rem;
    }

    .section-header-row .section-title,
    .section-header-row .section-subtitle {
        text-align: left;
        width: 100%;
    }

    .section-header-link {
        width: 100%;
        justify-content: flex-start;
        padding-top: 0.15rem;
    }

    .category-panel__body {
        padding: 1rem 1.05rem 1.05rem;
    }

    .category-panel__head h5 {
        font-size: 1rem;
    }

    .job-card,
    .guide-card,
    .home-feature-card,
    .home-how__step {
        padding: 1.25rem;
    }

    .job-detail-section {
        padding: 1.25rem;
    }

    .job-detail-hero .section-title {
        font-size: clamp(1.35rem, 5vw, 1.65rem);
    }

    .contact-page__head,
    .contact-page__head .section-title,
    .contact-page__lead {
        text-align: left;
    }

    .contact-whatsapp-panel {
        padding: 1.35rem;
    }

    .about-block {
        margin-bottom: 2rem;
    }

    .about-intro__content .section-title,
    .about-intro__content .section-subtitle {
        text-align: center;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .home-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
        margin-top: 1.25rem;
    }

    .home-feature-card {
        padding: 1rem 0.85rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 100%;
    }

    .home-feature-card__icon {
        width: 42px;
        height: 42px;
        margin-bottom: 0.65rem;
        border-radius: 11px;
    }

    .home-feature-card__icon svg {
        width: 20px;
        height: 20px;
    }

    .home-feature-card__title {
        font-size: 0.88rem;
        margin-bottom: 0.35rem;
        line-height: 1.3;
    }

    .home-feature-card__desc {
        font-size: 0.76rem;
        line-height: 1.45;
    }

    .home-promo__media img,
    .home-how__media img {
        min-height: 200px;
    }

    .cta-panel__body {
        padding: 1.5rem 1.25rem;
    }

    .cta-panel--split .cta-panel__media {
        min-height: 180px;
    }

    .jobs-filters {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 0.35rem;
        margin-bottom: 0.25rem;
    }

    .jobs-filters::-webkit-scrollbar {
        display: none;
    }

    .jobs-filters .filter-btn {
        flex-shrink: 0;
    }

    .jobs-toolbar {
        align-items: stretch;
        gap: 0.65rem;
    }

    .jobs-toolbar__link {
        align-self: flex-start;
    }

    .jobs-pagination {
        justify-content: center;
    }

    .site-footer__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: none;
        margin-inline: 0;
        gap: 1.35rem 1.5rem;
        text-align: left;
    }

    .site-footer__col:last-child {
        grid-column: 1 / -1;
    }

    .site-footer__col:last-child .site-footer__links {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.45rem 0.75rem;
    }

    .site-footer__heading {
        margin-bottom: 0.55rem;
    }

    .trust-badges {
        justify-content: center;
    }

    .stat-panel {
        padding: 1.15rem 0.85rem;
    }

    .hero-photo-wrap {
        padding: 0.45rem;
    }

    .floating-card {
        display: none;
    }
}

/* ── Sitewide mobile enhancements ── */
@media (max-width: 767.98px) {
    :root {
        --space-section-y: clamp(2rem, 5vw, 3rem);
    }

    .site-navbar {
        padding-top: env(safe-area-inset-top, 0px);
    }

    .jobs-page__chips,
    .category-banner__chips {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-inline: 0;
        max-width: 100%;
        padding-bottom: 0.35rem;
        justify-content: flex-start;
    }

    .jobs-page__chips::-webkit-scrollbar,
    .category-banner__chips::-webkit-scrollbar {
        display: none;
    }

    .jobs-page__chip,
    .category-banner__chip {
        flex-shrink: 0;
    }

    .jobs-page__actions,
    .category-banner__actions,
    .about-intro__actions,
    .home-promo__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .jobs-page__actions .btn-main,
    .jobs-page__actions .btn-ghost,
    .category-banner__actions .btn-main,
    .category-banner__actions .btn-ghost,
    .about-intro__actions .btn-main,
    .about-intro__actions .btn-ghost,
    .home-promo__actions .btn-main,
    .home-promo__actions .btn-ghost {
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }

    .guides-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        width: 100%;
        max-width: 100%;
        justify-content: flex-start;
    }

    .guides-tabs::-webkit-scrollbar {
        display: none;
    }

    .guides-tabs__btn {
        flex-shrink: 0;
        min-height: 44px;
        white-space: nowrap;
    }

    .category-banner__layout,
    .jobs-page__header-layout {
        min-width: 0;
        width: 100%;
    }

    .category-banner--hub .category-banner__content,
    .jobs-page__header--hub .jobs-page__header-content {
        min-width: 0;
        max-width: 100%;
        overflow-x: clip;
    }

    .category-banner--hub .category-banner__content,
    .category-banner--hub .category-banner__content .section-title,
    .category-banner--hub .category-banner__content .section-subtitle,
    .jobs-page__header--hub .jobs-page__header-content,
    .jobs-page__header--hub .jobs-page__header-content .section-title,
    .jobs-page__header--hub .jobs-page__header-content .section-subtitle {
        text-align: left;
    }

    .category-banner__top {
        justify-content: flex-start;
    }

    .category-banner__content .category-banner__icon {
        margin-left: 0;
        margin-right: 0;
    }

    .category-banner__stats,
    .jobs-stats,
    .jobs-stats--panel {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
        width: 100%;
        max-width: 100%;
        margin-top: 1rem;
        justify-content: stretch;
    }

    .category-banner__stat,
    .jobs-stats__item {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        justify-content: center;
        padding: 0.5rem 0.65rem;
        font-size: 0.76rem;
        line-height: 1.35;
        white-space: normal;
        text-align: center;
    }

    .category-banner__stat:last-child,
    .jobs-stats__item:last-child {
        grid-column: 1 / -1;
    }

    .category-banner__content .category-banner__stats {
        align-items: stretch;
        justify-content: stretch;
    }

    .article-page {
        padding: clamp(1.75rem, 5vw, 2.5rem) 0 clamp(2rem, 5vw, 3rem);
    }

    .article-layout {
        gap: 1.25rem;
        margin-bottom: 1.75rem;
    }

    .cta-panel__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .cta-panel__actions .btn-main,
    .cta-panel__actions .btn-ghost,
    .cta-panel__actions .btn-whatsapp {
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }

    .cta-panel__perks {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .contact-layout__body {
        padding: 1.35rem 1.15rem;
    }

    .site-footer {
        padding: 2.25rem 0 max(2rem, calc(1.5rem + env(safe-area-inset-bottom, 0px)));
    }

    .site-footer__main {
        text-align: left;
        gap: 1.5rem;
        padding-bottom: 1.15rem;
        margin-bottom: 0.85rem;
    }

    .site-footer__brand {
        max-width: none;
        margin-inline: 0;
        padding-bottom: 1.15rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .site-footer__tagline {
        margin: 0.6rem 0 0.95rem;
        font-size: 0.84rem;
        max-width: 22rem;
    }

    .site-footer__cta {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .site-footer__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: none;
        margin-inline: 0;
        gap: 1.25rem 1.35rem;
        text-align: left;
    }

    .site-footer__col:last-child {
        grid-column: 1 / -1;
    }

    .site-footer__col:last-child .site-footer__links {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.4rem 0.65rem;
    }

    .site-footer__heading {
        margin-bottom: 0.5rem;
        font-size: 0.68rem;
    }

    .site-footer__links {
        gap: 0.45rem;
    }

    .site-footer__links a {
        font-size: 0.84rem;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 0.45rem;
    }

    .site-footer__note {
        font-size: 0.72rem;
        line-height: 1.55;
        max-width: 100%;
        white-space: normal;
        word-break: break-word;
    }
}

@media (max-width: 767.98px) and (hover: none) {
    .guides-featured:hover,
    .guides-featured.guides-reveal.is-inview:hover,
    .guides-featured:hover .guides-featured__media img,
    .job-card--listing:hover,
    .article-related-card:hover,
    .article-related-card:hover .article-related-card__media img,
    .guide-card:hover,
    .category-panel:hover,
    .home-feature-card:hover {
        transform: none;
    }
}

@media (max-width: 575.98px) {
    :root {
        --space-section-y: clamp(1.75rem, 4.5vw, 2.75rem);
        --layout-width-mobile: min(92vw, var(--layout-max));
    }

    .whatsapp-float {
        right: max(1rem, env(safe-area-inset-right, 0px));
        bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
    }

    .whatsapp-float--raised {
        bottom: max(7.25rem, calc(6rem + env(safe-area-inset-bottom, 0px)));
    }

    .cookie-banner {
        bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
        width: calc(100% - max(1.25rem, env(safe-area-inset-left, 0px) + env(safe-area-inset-right, 0px)));
    }

    .category-banner,
    .jobs-page__header--hub {
        padding-top: clamp(1.75rem, 5vw, 2.5rem);
        padding-bottom: clamp(1.25rem, 3.5vw, 2rem);
    }

    .guides-page__head,
    .categories-page__head,
    .page-section-head {
        margin-bottom: 1.25rem;
    }

    .guides-featured__body {
        padding: 1.25rem 1.15rem 1.35rem;
    }

    .guides-featured__cta {
        align-self: stretch;
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }

    .guides-slide {
        padding: 1.15rem;
    }

    .guides-carousel__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.65rem;
    }

    .article-hero {
        padding: 1.25rem 1.15rem 1.15rem;
    }

    .article-reading-shell__body {
        padding: 1.15rem 1.15rem 1.25rem;
    }

    .article-hero__title {
        font-size: clamp(1.35rem, 6vw, 1.65rem);
    }

    .article-takeaways {
        padding: 1.15rem;
    }

    .article-reading-shell,
    .guides-featured,
    .job-detail-section,
    .contact-layout__shell {
        border-radius: var(--radius-md);
    }

    .filter-btn {
        min-height: 44px;
        padding-inline: 1rem;
    }

    .guide-card .job-card__link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .job-detail-apply-card .job-apply-whatsapp {
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }

    .site-footer__col:last-child .site-footer__links {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    .site-footer__tagline {
        max-width: none;
    }

    .category-banner__stats,
    .jobs-stats,
    .jobs-stats--panel {
        grid-template-columns: 1fr;
    }

    .category-banner__stat:last-child,
    .jobs-stats__item:last-child {
        grid-column: auto;
    }

    .category-banner--hub .category-banner__content,
    .jobs-page__header--hub .jobs-page__header-content {
        padding: 1.15rem 1rem;
    }

    .category-banner--hub .category-banner__content .section-title,
    .jobs-page__header--hub .jobs-page__header-content .section-title {
        font-size: clamp(1.45rem, 6vw, 1.75rem);
    }
}

/* ── Desktop layout polish ── */
@media (min-width: 992px) {
    :root {
        --space-section-y: clamp(3.25rem, 5vw, 5.25rem);
        --space-grid: clamp(1.15rem, 1.4vw, 1.5rem);
        --space-card: clamp(1.5rem, 1.8vw, 2rem);
    }

    .navbar {
        padding: 0.85rem 0;
    }

    .site-navbar {
        padding: 0.9rem 0;
    }

    .site-navbar.is-scrolled {
        padding: 0.7rem 0;
    }

    .site-navbar > .container.site-navbar__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1.25rem;
        flex-wrap: nowrap;
    }

    .site-navbar__brand {
        flex-shrink: 0;
    }

    .site-navbar__toggler {
        display: none;
    }

    .site-navbar__collapse {
        flex: 0 0 auto;
        margin-left: auto;
        display: flex !important;
        flex-basis: auto;
        justify-content: flex-end;
    }

    .site-navbar__links {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 0.15rem;
        padding: 0.32rem;
        background: rgba(15, 23, 42, 0.035);
        border: 1px solid rgba(148, 163, 184, 0.14);
        border-radius: 100px;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
    }

    .site-navbar__links .nav-link {
        padding: 0.5rem clamp(0.65rem, 1vw, 0.95rem) !important;
    }

    .navbar .navbar-nav {
        gap: 0.15rem;
    }

    .hero {
        padding: clamp(4.5rem, 8vw, 6.5rem) 0 clamp(3.5rem, 6vw, 5rem);
    }

    .hero .row {
        align-items: stretch;
    }

    .hero-visual {
        display: flex;
        flex-direction: column;
        padding-left: clamp(0.5rem, 2vw, 1.5rem);
        padding-right: 1.25rem;
    }

    .hero-photo-wrap {
        flex: 1;
        display: flex;
        min-height: 22rem;
    }

    .hero-photo {
        flex: 1;
        width: 100%;
        height: 100%;
        min-height: 22rem;
        max-height: none;
        aspect-ratio: auto;
        object-fit: cover;
        object-position: center 20%;
    }

    .floating-card--1 {
        right: 0.75rem;
    }

    .floating-card--2 {
        left: 0.75rem;
    }

    .hero-lead {
        max-width: 34rem;
    }

    .hero-search {
        max-width: 32rem;
    }

    .hero-photo-wrap {
        min-height: 24rem;
    }

    .hero-photo {
        min-height: 24rem;
    }

    .trust-section {
        padding: 2.5rem 0 3.5rem;
    }

    .trust-badges {
        gap: 1.75rem 2.75rem;
    }

    .stats-grid {
        gap: 1.35rem;
    }

    .stat-panel {
        padding: 2rem 1.65rem;
    }

    .section-title {
        font-size: clamp(1.75rem, 2.2vw, 2.2rem);
        margin-bottom: 0.85rem;
    }

    .section-header-row {
        align-items: flex-end;
        margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
    }

    .section-header-row .section-subtitle {
        max-width: 42rem;
    }

    .home-how__layout {
        grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
        gap: clamp(2rem, 3.5vw, 3.5rem);
        align-items: stretch;
    }

    .home-how__media {
        display: flex;
        min-height: 100%;
    }

    .home-how__media img {
        flex: 1;
        width: 100%;
        height: 100%;
        min-height: 100%;
        object-position: center 22%;
    }

    .home-how__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .home-how__content .section-title {
        margin-bottom: 0.5rem;
    }

    .home-how__content .section-subtitle {
        margin-bottom: 1.75rem;
        max-width: none;
    }

    .home-how__content .home-how__grid {
        gap: 0.85rem;
    }

    .home-how__content .home-how__step {
        display: grid;
        grid-template-columns: 3.25rem minmax(0, 1fr);
        grid-template-rows: auto auto;
        column-gap: 1rem;
        row-gap: 0.2rem;
        align-items: start;
        padding: 1.1rem 2.5rem 1.1rem 1.15rem;
    }

    .home-how__content .home-how__icon {
        grid-row: 1 / span 2;
        grid-column: 1;
        width: 3.25rem;
        height: 3.25rem;
        margin: 0;
    }

    .home-how__content .home-how__step h3 {
        grid-column: 2;
        grid-row: 1;
        margin-bottom: 0.15rem;
        font-size: 1rem;
    }

    .home-how__content .home-how__step p {
        grid-column: 2;
        grid-row: 2;
        font-size: 0.86rem;
        line-height: 1.55;
    }

    .home-how__content .home-how__num {
        top: 0.85rem;
        right: 1rem;
    }

    .home-promo {
        grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
        gap: clamp(2rem, 3vw, 3rem);
        margin-bottom: 2.5rem;
        align-items: stretch;
    }

    .home-promo__media {
        display: flex;
    }

    .home-promo__media img {
        flex: 1;
        min-height: 100%;
        height: 100%;
        object-position: center 30%;
    }

    .home-promo__body {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .home-promo__highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
        margin: 1.25rem 0 1.5rem;
    }

    .home-promo__highlight {
        padding: 0.85rem 0.95rem;
    }

    .home-promo__highlight-text span {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .home-features {
        gap: 1.35rem;
    }

    .category-banner {
        padding: clamp(3.25rem, 6vw, 4.5rem) 0 clamp(2.25rem, 4vw, 3rem);
    }

    .category-banner__layout {
        grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
        gap: clamp(1.75rem, 3vw, 2.75rem);
        align-items: stretch;
    }

    .category-banner--hub .category-banner__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .category-banner__media {
        display: flex;
    }

    .category-banner__media img {
        flex: 1;
        min-height: 100%;
        height: 100%;
        object-position: center 25%;
    }

    .category-banner--hub .category-banner__stats {
        margin-top: 1.15rem;
    }

    .category-banner--hub .category-banner__chips {
        margin-top: 1.35rem;
    }

    .category-banner__highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .guides-page__head {
        text-align: left;
    }

    .guides-page__title,
    .guides-page__lead {
        text-align: left;
    }

    .categories-page__grid {
        --bs-gutter-x: 1.15rem;
        --bs-gutter-y: 1.15rem;
    }

    .categories-page .category-panel:hover {
        transform: translateY(-5px);
    }

    .home-categories .section-header-row {
        align-items: center;
    }

    .home-categories .section-header-row__text {
        flex: 1;
        min-width: 0;
    }

    .home-categories .section-header-link {
        flex-shrink: 0;
        align-self: center;
        padding: 0.55rem 1rem;
        background: rgba(99, 102, 241, 0.06);
        border: 1px solid rgba(99, 102, 241, 0.12);
        border-radius: 100px;
    }

    .home-categories .section-header-link:hover {
        background: rgba(99, 102, 241, 0.1);
        border-color: rgba(99, 102, 241, 0.2);
    }

    .home-categories__grid {
        --bs-gutter-x: 1.15rem;
        --bs-gutter-y: 1.15rem;
    }

    .home-categories .category-panel__body {
        padding: 1rem 1.15rem 1.1rem;
    }

    .home-categories .category-panel__head .category-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .home-categories .category-panel__head h5 {
        font-size: 0.98rem;
    }

    .home-categories .category-panel p {
        font-size: 0.84rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .home-categories .category-panel:hover {
        transform: translateY(-5px);
    }

    .jobs-page__header {
        text-align: left;
    }

    .jobs-page__header-layout {
        grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
        gap: clamp(1.75rem, 3vw, 2.75rem);
        margin-bottom: 0;
        align-items: stretch;
    }

    .jobs-page__header--hub .jobs-page__header-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .jobs-page__header-media {
        display: flex;
    }

    .jobs-page__header-media img {
        flex: 1;
        min-height: 100%;
        height: 100%;
        object-position: center 20%;
    }

    .jobs-page__highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .jobs-stats--panel {
        margin-top: 1.25rem;
    }

    .jobs-search {
        max-width: min(42rem, 72%);
        margin-bottom: 1.75rem;
    }

    .jobs-toolbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .jobs-filters {
        justify-content: flex-start;
        margin-bottom: 1.5rem;
    }

    .jobs-grid {
        gap: 1.35rem;
        margin-bottom: 2.75rem;
    }

    .job-detail-layout {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 2rem;
    }

    .article-layout {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 2rem;
    }

    .article-main {
        gap: 1.5rem;
    }

    .article-sidebar__media img {
        height: 220px;
    }

    .job-detail-hero {
        margin-bottom: 3rem;
    }

    .job-detail-main {
        gap: 1.5rem;
    }

    .about-intro__layout {
        grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
        gap: clamp(1.75rem, 3vw, 2.75rem);
        align-items: stretch;
    }

    .about-intro--split .about-intro__layout {
        grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
        gap: clamp(1.25rem, 2.5vw, 2rem);
    }

    .about-intro--split .about-intro__media {
        min-height: 100%;
    }

    .about-intro--split .about-intro__media img {
        min-height: 100%;
        height: 100%;
        object-position: center 15%;
    }

    .about-intro--split .about-intro__highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
    }

    .about-intro__media {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .about-intro__media img {
        flex: 1;
        min-height: 100%;
        height: 100%;
        object-position: center 20%;
    }

    .about-intro__media .floating-card {
        display: flex;
    }

    .about-intro__media .floating-card--1 {
        top: 8%;
        right: -0.75rem;
    }

    .about-intro__media .floating-card--2 {
        bottom: 10%;
        left: -0.75rem;
    }

    .about-intro--split .about-intro__media .floating-card {
        display: none;
    }

    .page-decor__chip,
    .page-decor__icon,
    .page-decor__ring {
        display: flex;
    }

    .page-decor__chip {
        display: inline-flex;
    }

    .about-intro__highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .about-block--panel__body {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem 2rem;
    }

    .about-block--panel__body p {
        margin-bottom: 0;
    }

    .about-help-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
        margin-top: 0;
    }

    .about-help-list li {
        height: 100%;
    }

    .about-section-head__lead {
        max-width: 36rem;
    }

    .about-block h2 {
        font-size: 1.35rem;
    }

    .about-values {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        margin-top: 0;
    }

    .about-block--split {
        grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
        gap: clamp(2rem, 3vw, 3rem);
        align-items: stretch;
    }

    .about-block--split .about-block__media {
        display: flex;
    }

    .about-block__media img {
        flex: 1;
        min-height: 100%;
        height: 100%;
    }

    .contact-page__head {
        text-align: left;
    }

    .contact-layout__grid {
        grid-template-columns: minmax(280px, 0.4fr) minmax(0, 0.6fr);
        gap: clamp(1.25rem, 2.5vw, 2rem);
    }

    .contact-layout__media,
    .contact-layout__media img {
        min-height: 100%;
        height: 100%;
    }

    .guides-grid {
        gap: 1.35rem;
    }

    .cta-panel--split {
        grid-template-columns: minmax(300px, 0.44fr) minmax(0, 0.56fr);
        align-items: stretch;
    }

    .cta-panel__body {
        padding: clamp(2.5rem, 4vw, 3.5rem) clamp(2rem, 3vw, 3rem);
    }

    .cta-panel__perks {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.65rem;
        margin-bottom: 1.65rem;
    }

    .cta-panel__media {
        display: flex;
    }

    .cta-panel__media img {
        flex: 1;
        min-height: 100%;
        height: 100%;
    }

    .site-footer {
        padding: 3.5rem 0 2.5rem;
    }

    .site-footer__columns {
        gap: 1.5rem 2.5rem;
    }

    .site-footer__links a {
        font-size: 0.9rem;
    }

    .category-description {
        padding: 2rem 2.25rem;
    }

    .category-jobs-section .section-title,
    .category-jobs-section .section-subtitle {
        text-align: left;
    }

    .category-jobs-section .section-subtitle {
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (min-width: 1200px) {
    :root {
        --layout-width: min(82vw, var(--layout-max-wide));
    }

    .hero-photo-wrap {
        min-height: 26rem;
    }

    .hero-photo {
        min-height: 26rem;
    }

    .job-detail-layout {
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 2.25rem;
    }

    .jobs-grid {
        gap: 1.5rem;
    }

    .home-jobs-grid.jobs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .site-navbar__links .nav-link {
        font-size: 0.8rem;
        padding: 0.48rem 0.68rem !important;
    }
}

@media (min-width: 1400px) {
    :root {
        --layout-width: min(84vw, var(--layout-max-wide));
        --space-grid: 1.5rem;
    }

    .hero-photo-wrap {
        min-height: 28rem;
    }

    .hero-photo {
        min-height: 28rem;
    }

    .hero-lead {
        max-width: 36rem;
    }
}
