/* ═══════════════════════════════════════════════
   BOTRON DYNAMICS — CAREERS PAGE
   Scoped under .botron-careers-page
═══════════════════════════════════════════════ */
.botron-careers-page,
.botron-careers-page *,
.botron-careers-page *::before,
.botron-careers-page *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.botron-careers-page {
    --max-w:        1200px;
    --gutter:       clamp(20px, 5vw, 60px);
    --accent:       #6846c6;
    --accent-dark:  #4f34a3;
    --accent-light: #ede8fb;
    --ink:          #0e0e12;
    --ink-2:        #2c2c38;
    --ink-3:        #555564;
    --surface:      #f5f5f8;
    --surface-2:    #ededf3;
    --white:        #ffffff;
    --border:       rgba(0,0,0,.08);
    --green:        #059669;
    --green-light:  #d1fae5;
    --amber:        #d97706;
    --amber-light:  #fef3c7;
    --font-sans:    'Inter', sans-serif;
    --ease:         cubic-bezier(.22,1,.36,1);
    font-family: var(--font-sans);
    color: var(--ink);
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
.botron-careers-page img { display: block; max-width: 100%; }
.botron-careers-page a   { text-decoration: none; color: inherit; }

/* shared */
.botron-careers-page .bd-container { max-width: var(--max-w); margin: 0 auto; }
.botron-careers-page .bd-label {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--accent);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.botron-careers-page .bd-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ink);
    line-height: 1.15;
    margin: 0;
}

/* scroll reveal */
.botron-careers-page .bd-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.botron-careers-page .bd-reveal.visible { opacity: 1; transform: none; }
.botron-careers-page .bd-reveal[data-delay="1"] { transition-delay: .1s; }
.botron-careers-page .bd-reveal[data-delay="2"] { transition-delay: .2s; }
.botron-careers-page .bd-reveal[data-delay="3"] { transition-delay: .3s; }
.botron-careers-page .bd-reveal[data-delay="4"] { transition-delay: .4s; }

/* ══════════════════════════════
   SECTION 1 — INTRO
══════════════════════════════ */
.botron-careers-page .cr-intro {
    padding: 100px var(--gutter) 80px;
    position: relative;
    overflow: hidden;
}
.botron-careers-page .cr-intro::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 90% at 100% 10%, rgba(104,70,198,.07) 0%, transparent 60%),
      radial-gradient(ellipse 40% 60% at -5% 90%,  rgba(37,99,235,.04)  0%, transparent 60%);
    pointer-events: none;
}
.botron-careers-page .cr-intro-grid {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 80px;
    align-items: center;
}
.botron-careers-page .cr-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    background: var(--green-light);
    color: var(--green);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.botron-careers-page .cr-intro-badge::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: botroncr-pulse 2s infinite;
}
@keyframes botroncr-pulse {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:.4; transform:scale(.7); }
}
.botron-careers-page .cr-intro-title { margin-bottom: 24px; }
.botron-careers-page .cr-intro-lead {
    font-size: 1.0625rem;
    color: var(--ink-3);
    line-height: 1.85;
    max-width: 540px;
    margin-bottom: 40px;
}
.botron-careers-page .cr-intro-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.botron-careers-page .cr-btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 26px; background: var(--accent); color: #fff;
    border-radius: 10px; font-weight: 600; font-size: .95rem;
    transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.botron-careers-page .cr-btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(104,70,198,.3);
}
.botron-careers-page .cr-btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 24px; border: 1.5px solid var(--border);
    color: var(--ink-2); border-radius: 10px; font-weight: 600; font-size: .95rem;
    background: transparent;
    transition: border-color .25s, background .25s;
}
.botron-careers-page .cr-btn-ghost:hover { border-color: var(--accent); background: var(--accent-light); color: var(--accent); }

.botron-careers-page .cr-stat-row {
    display: flex; margin-top: 52px;
    border-top: 1px solid var(--border); padding-top: 40px;
}
.botron-careers-page .cr-stat-item {
    flex: 1; padding-right: 32px;
    border-right: 1px solid var(--border); margin-right: 32px;
}
.botron-careers-page .cr-stat-item:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.botron-careers-page .cr-stat-num {
    font-size: 2.4rem; color: var(--accent); line-height: 1; margin-bottom: 4px; font-weight: 800;
}
.botron-careers-page .cr-stat-label { font-size: .82rem; color: var(--ink-3); font-weight: 500; }

/* intro dark card */
.botron-careers-page .cr-intro-card {
    background: var(--ink); border-radius: 24px; overflow: hidden; position: relative;
}
.botron-careers-page .cr-intro-card::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 70% 70% at 110% -10%, rgba(104,70,198,.5) 0%, transparent 55%),
      radial-gradient(ellipse 50% 50% at -20% 110%, rgba(37,99,235,.3) 0%, transparent 55%);
    pointer-events: none;
}
.botron-careers-page .cr-intro-card-top { padding: 36px 36px 28px; position: relative; z-index: 1; }
.botron-careers-page .cr-card-eyebrow {
    font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
    color: rgba(255,255,255,.45); margin-bottom: 18px;
}
.botron-careers-page .cr-role-preview-list { display: flex; flex-direction: column; gap: 10px; }
.botron-careers-page .cr-role-preview-item {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 14px 16px; background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.07); border-radius: 10px; transition: background .2s;
}
.botron-careers-page .cr-role-preview-item:hover { background: rgba(255,255,255,.1); }
.botron-careers-page .cr-role-preview-left { display: flex; align-items: center; gap: 12px; }
.botron-careers-page .cr-role-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.botron-careers-page .cr-role-preview-name { font-size: .875rem; font-weight: 600; color: #fff; }
.botron-careers-page .cr-role-preview-dept { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: 2px; }
.botron-careers-page .cr-role-preview-tag {
    font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 20px;
    background: rgba(104,70,198,.3); color: #c4b5fd; white-space: nowrap;
}
.botron-careers-page .cr-intro-card-footer {
    padding: 20px 36px 28px; border-top: 1px solid rgba(255,255,255,.07);
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.botron-careers-page .cr-card-footer-text { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.6; }
.botron-careers-page .cr-card-footer-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .82rem; font-weight: 600; color: #c4b5fd; white-space: nowrap;
    transition: gap .2s var(--ease);
}
.botron-careers-page .cr-card-footer-link:hover { gap: 10px; }

/* ══════════════════════════════
   SECTION 2 — WHY BOTRON
══════════════════════════════ */
.botron-careers-page .cr-why {
    padding: 100px var(--gutter);
    background: var(--ink);
    position: relative; overflow: hidden;
}
.botron-careers-page .cr-why::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 50% 100% at 5%  50%, rgba(104,70,198,.32) 0%, transparent 55%),
      radial-gradient(ellipse 40% 80%  at 95% 20%, rgba(37,99,235,.18)  0%, transparent 55%);
    pointer-events: none;
}
.botron-careers-page .cr-why .bd-label { color: rgba(255,255,255,.55); }
.botron-careers-page .cr-why .bd-title { color: #fff; }
.botron-careers-page .cr-why-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 24px; margin-bottom: 56px; position: relative;
}
.botron-careers-page .cr-why-header-text { max-width: 580px; }
.botron-careers-page .cr-why-header-sub { margin-top: 16px; font-size: .9375rem; color: rgba(255,255,255,.5); line-height: 1.8; }
.botron-careers-page .cr-perks-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.botron-careers-page .cr-perk-card {
    padding: 40px 36px; background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    transition: background .3s var(--ease);
}
.botron-careers-page .cr-perk-card:nth-child(1) { border-radius: 16px 0 0 0; }
.botron-careers-page .cr-perk-card:nth-child(3) { border-radius: 0 16px 0 0; }
.botron-careers-page .cr-perk-card:nth-child(4) { border-radius: 0 0 0 16px; }
.botron-careers-page .cr-perk-card:nth-child(6) { border-radius: 0 0 16px 0; }
.botron-careers-page .cr-perk-card:hover { background: rgba(255,255,255,.08); }
.botron-careers-page .cr-perk-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(104,70,198,.25); border: 1px solid rgba(104,70,198,.3);
    display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.botron-careers-page .cr-perk-icon .material-icons-round { font-size: 22px; color: #c4b5fd; }
.botron-careers-page .cr-perk-title { font-size: 1.0625rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.botron-careers-page .cr-perk-desc { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.75; }

/* ══════════════════════════════
   SECTION 3 — OPEN ROLES
══════════════════════════════ */
.botron-careers-page .cr-roles { padding: 100px var(--gutter); background: #fff; }
.botron-careers-page .cr-roles-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 24px; margin-bottom: 40px;
}
.botron-careers-page .cr-roles-header-text { max-width: 520px; }
.botron-careers-page .cr-roles-header-sub { font-size: .9375rem; color: var(--ink-3); line-height: 1.75; margin-top: 12px; }

.botron-careers-page .cr-filter-bar {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
    margin-bottom: 36px; padding: 16px 20px;
    background: var(--surface); border-radius: 12px; border: 1px solid var(--border);
}
.botron-careers-page .cr-filter-label {
    font-size: .8rem; font-weight: 700; color: var(--ink-3);
    letter-spacing: .06em; text-transform: uppercase; margin-right: 4px; white-space: nowrap;
}
.botron-careers-page .cr-filter-btn {
    padding: 7px 16px; border-radius: 8px; border: 1.5px solid transparent;
    background: transparent; font-family: var(--font-sans); font-size: .85rem;
    font-weight: 600; color: var(--ink-3); cursor: pointer;
    transition: background .2s, border-color .2s, color .2s;
}
.botron-careers-page .cr-filter-btn:hover   { background: var(--white); border-color: var(--border); color: var(--ink); }
.botron-careers-page .cr-filter-btn.active  { background: var(--accent); border-color: var(--accent); color: #fff; }

.botron-careers-page .cr-dept-group { margin-bottom: 48px; }
.botron-careers-page .cr-dept-group:last-child { margin-bottom: 0; }
.botron-careers-page .cr-dept-label { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.botron-careers-page .cr-dept-label-text { font-size: .8rem; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: .1em; }
.botron-careers-page .cr-dept-line { flex: 1; height: 1px; background: var(--border); }
.botron-careers-page .cr-dept-count {
    font-size: .78rem; font-weight: 700; color: var(--accent);
    background: var(--accent-light); padding: 2px 8px; border-radius: 20px;
}
.botron-careers-page .cr-role-list { display: flex; flex-direction: column; gap: 12px; }
.botron-careers-page .cr-role-card {
    display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center;
    padding: 24px 28px; background: var(--white); border: 1px solid var(--border);
    border-radius: 14px; cursor: pointer;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.botron-careers-page .cr-role-card:hover {
    border-color: rgba(104,70,198,.3);
    box-shadow: 0 8px 30px rgba(104,70,198,.08);
    transform: translateY(-2px);
}
.botron-careers-page .cr-role-card-left { display: flex; align-items: center; gap: 18px; }
.botron-careers-page .cr-role-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--accent-light); display: flex; align-items: center;
    justify-content: center; flex-shrink: 0;
}
.botron-careers-page .cr-role-icon .material-icons-round { font-size: 20px; color: var(--accent); }
.botron-careers-page .cr-role-title { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.botron-careers-page .cr-role-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.botron-careers-page .cr-role-tag { display: inline-flex; align-items: center; gap: 5px; font-size: .75rem; font-weight: 600; color: var(--ink-3); }
.botron-careers-page .cr-role-tag .material-icons-round { font-size: 13px; }
.botron-careers-page .cr-role-tag-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--surface-2); }
.botron-careers-page .cr-role-card-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.botron-careers-page .cr-role-type-badge { font-size: .75rem; font-weight: 700; padding: 5px 12px; border-radius: 6px; }
.botron-careers-page .cr-role-type-badge.full-time { background: var(--green-light); color: var(--green); }
.botron-careers-page .cr-role-type-badge.contract  { background: var(--amber-light); color: var(--amber); }
.botron-careers-page .cr-role-arrow {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
    color: var(--accent); transition: background .2s, border-color .2s, transform .2s var(--ease);
}
.botron-careers-page .cr-role-card:hover .cr-role-arrow {
    background: var(--accent); border-color: var(--accent); color: #fff; transform: translateX(3px);
}
.botron-careers-page .cr-role-arrow .material-icons-round { font-size: 17px; }

.botron-careers-page .cr-no-results { display: none; padding: 64px 0; text-align: center; }
.botron-careers-page .cr-no-results.visible { display: block; }
.botron-careers-page .cr-no-results p { font-size: .95rem; color: var(--ink-3); margin-top: 12px; }
.botron-careers-page .cr-no-results .material-icons-round { font-size: 40px; color: var(--surface-2); }

/* ══════════════════════════════
   SECTION 4 — LIFE AT BOTRON
══════════════════════════════ */
.botron-careers-page .cr-culture { padding: 100px var(--gutter); background: #f8f9fb; }
.botron-careers-page .cr-culture-header { max-width: 620px; margin-bottom: 56px; }
.botron-careers-page .cr-culture-header-sub { font-size: .9375rem; color: var(--ink-3); line-height: 1.8; margin-top: 16px; }

/* Photo gallery */
.botron-careers-page .cr-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 280px 240px;
    gap: 12px;
}
.botron-careers-page .cr-gallery-item {
    position: relative; overflow: hidden; border-radius: 16px;
}
.botron-careers-page .cr-gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s var(--ease);
}
.botron-careers-page .cr-gallery-item:hover img { transform: scale(1.04); }
.botron-careers-page .cr-gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px 20px 18px;
    background: linear-gradient(to top, rgba(14,14,18,.72) 0%, transparent 100%);
    color: #fff; font-size: .8rem; font-weight: 600; letter-spacing: .04em;
    opacity: 0; transform: translateY(6px);
    transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.botron-careers-page .cr-gallery-item:hover .cr-gallery-caption { opacity: 1; transform: none; }
.botron-careers-page .cr-gallery-item:nth-child(1) { grid-column: span 5; }
.botron-careers-page .cr-gallery-item:nth-child(2) { grid-column: span 4; }
.botron-careers-page .cr-gallery-item:nth-child(3) { grid-column: span 3; }
.botron-careers-page .cr-gallery-item:nth-child(4) { grid-column: span 3; }
.botron-careers-page .cr-gallery-item:nth-child(5) { grid-column: span 5; }
.botron-careers-page .cr-gallery-item:nth-child(6) { grid-column: span 4; }

.botron-careers-page .cr-gallery-stat {
    position: absolute; bottom: 18px; right: 18px;
    background: rgba(255,255,255,.12); backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.15); border-radius: 12px;
    padding: 12px 16px; text-align: center;
}
.botron-careers-page .cr-gallery-stat .s-num { font-size: 1.5rem; font-weight: 800; color: #c4b5fd; line-height: 1; }
.botron-careers-page .cr-gallery-stat .s-lbl { font-size: .68rem; font-weight: 600; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em; margin-top: 3px; }

/* Placeholder tiles (no real img) */
.botron-careers-page .cr-gallery-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 10px; padding: 24px;
}
.botron-careers-page .cr-gallery-placeholder .material-icons-round { font-size: 30px; color: rgba(255,255,255,.3); }
.botron-careers-page .cr-gallery-placeholder .p-num { font-size: 2.2rem; font-weight: 800; color: #c4b5fd; line-height: 1; }
.botron-careers-page .cr-gallery-placeholder .p-lbl { font-size: .75rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; }
.botron-careers-page .cr-gallery-placeholder .p-list { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; width: 100%; }
.botron-careers-page .cr-gallery-placeholder .p-list-item { display: flex; align-items: center; gap: 7px; font-size: .72rem; color: rgba(255,255,255,.6); }
.botron-careers-page .cr-gallery-placeholder .p-list-item .material-icons-round { font-size: 12px; }

/* ══════════════════════════════
   JOB MODAL
══════════════════════════════ */
.botron-careers-page .cr-modal-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(14,14,18,.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    align-items: center; justify-content: center;
    padding: 24px;
}
.botron-careers-page .cr-modal-overlay.open { display: flex; }

.botron-careers-page .cr-modal {
    background: #fff; border-radius: 20px;
    width: 100%; max-width: 720px;
    max-height: 90vh; overflow-y: auto;
    box-shadow: 0 32px 80px rgba(0,0,0,.22);
    animation: botroncr-modal-in .35s var(--ease) both;
    position: relative;
}
@keyframes botroncr-modal-in {
    from { opacity: 0; transform: translateY(20px) scale(.98); }
    to   { opacity: 1; transform: none; }
}

.botron-careers-page .cr-modal-header {
    padding: 36px 40px 28px;
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; background: #fff;
    border-radius: 20px 20px 0 0;
    z-index: 2;
}
.botron-careers-page .cr-modal-header-top {
    display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
}
.botron-careers-page .cr-modal-close {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1.5px solid var(--border); background: transparent;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: var(--ink-3); flex-shrink: 0;
    transition: background .2s, border-color .2s, color .2s;
}
.botron-careers-page .cr-modal-close:hover { background: var(--surface); border-color: var(--ink-3); color: var(--ink); }
.botron-careers-page .cr-modal-close .material-icons-round { font-size: 18px; }

.botron-careers-page .cr-modal-title { font-size: 1.4rem; font-weight: 800; color: var(--ink); margin-bottom: 12px; }
.botron-careers-page .cr-modal-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.botron-careers-page .cr-modal-meta-tag {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: .78rem; font-weight: 600; color: var(--ink-3);
    background: var(--surface); padding: 5px 10px; border-radius: 6px;
}
.botron-careers-page .cr-modal-meta-tag .material-icons-round { font-size: 13px; }
.botron-careers-page .cr-modal-badge {
    font-size: .75rem; font-weight: 700; padding: 5px 12px; border-radius: 6px;
}
.botron-careers-page .cr-modal-badge.full-time { background: var(--green-light); color: var(--green); }
.botron-careers-page .cr-modal-badge.contract  { background: var(--amber-light); color: var(--amber); }

.botron-careers-page .cr-modal-body { padding: 32px 40px 0; }

.botron-careers-page .cr-modal-section { margin-bottom: 28px; }
.botron-careers-page .cr-modal-section:last-child { margin-bottom: 0; }
.botron-careers-page .cr-modal-section-title {
    font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 12px;
}
.botron-careers-page .cr-modal-section p {
    font-size: .9375rem; color: var(--ink-3); line-height: 1.8;
}
.botron-careers-page .cr-modal-section ul {
    list-style: none; display: flex; flex-direction: column; gap: 9px;
}
.botron-careers-page .cr-modal-section ul li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .9rem; color: var(--ink-3); line-height: 1.6;
}
.botron-careers-page .cr-modal-section ul li::before {
    content: '';
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent); flex-shrink: 0; margin-top: 8px;
}

.botron-careers-page .cr-modal-footer {
    padding: 28px 40px 36px;
    border-top: 1px solid var(--border);
    margin-top: 32px;
    background: var(--surface);
    border-radius: 0 0 20px 20px;
}
.botron-careers-page .cr-modal-footer-note {
    font-size: .85rem; color: var(--ink-3); line-height: 1.7; margin-bottom: 20px;
}
.botron-careers-page .cr-modal-footer-note strong { color: var(--ink); }
.botron-careers-page .cr-modal-apply-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; background: var(--accent); color: #fff;
    border-radius: 10px; font-weight: 700; font-size: .95rem;
    transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.botron-careers-page .cr-modal-apply-btn:hover {
    background: var(--accent-dark); transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(104,70,198,.3);
}
.botron-careers-page .cr-modal-apply-btn .material-icons-round { font-size: 18px; }

/* ══════════════════════════════
   SECTION 5 — BOTTOM CTA
══════════════════════════════ */
.botron-careers-page .cr-cta { padding: 0 var(--gutter) 100px; background: #fff; }
.botron-careers-page .cr-cta-inner {
    max-width: var(--max-w); margin: 0 auto;
    background: var(--ink); border-radius: 24px; padding: 80px 72px;
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.botron-careers-page .cr-cta-inner::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 55% 90% at 100% 50%, rgba(104,70,198,.4) 0%, transparent 60%),
      radial-gradient(ellipse 35% 60% at 0%   50%, rgba(37,99,235,.2)  0%, transparent 60%);
    pointer-events: none;
}
.botron-careers-page .cr-cta-text { position: relative; }
.botron-careers-page .cr-cta-eyebrow {
    font-size: .72rem; font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 14px;
}
.botron-careers-page .cr-cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: #fff;
    line-height: 1.15; margin-bottom: 16px;
}
.botron-careers-page .cr-cta-sub { font-size: .9375rem; color: rgba(255,255,255,.55); line-height: 1.75; max-width: 480px; }
.botron-careers-page .cr-cta-actions {
    display: flex; flex-direction: column; gap: 12px;
    flex-shrink: 0; position: relative; min-width: 220px;
}
.botron-careers-page .cr-cta-btn-white {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px 28px; background: var(--white); color: var(--ink);
    border-radius: 10px; font-weight: 700; font-size: .95rem;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.botron-careers-page .cr-cta-btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.3); }
.botron-careers-page .cr-cta-btn-ghost {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 15px 28px; border: 1.5px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.8); border-radius: 10px; font-weight: 600; font-size: .95rem;
    transition: background .25s, border-color .25s;
}
.botron-careers-page .cr-cta-btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }
.botron-careers-page .cr-cta-note { font-size: .78rem; color: rgba(255,255,255,.35); text-align: center; position: relative; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1100px) {
    .botron-careers-page .cr-perks-grid { grid-template-columns: repeat(2,1fr); }
    .botron-careers-page .cr-perk-card:nth-child(1) { border-radius: 16px 0 0 0; }
    .botron-careers-page .cr-perk-card:nth-child(2) { border-radius: 0 16px 0 0; }
    .botron-careers-page .cr-perk-card:nth-child(3),
    .botron-careers-page .cr-perk-card:nth-child(4) { border-radius: 0; }
    .botron-careers-page .cr-perk-card:nth-child(5) { border-radius: 0 0 0 16px; }
    .botron-careers-page .cr-perk-card:nth-child(6) { border-radius: 0 0 16px 0; }
    .botron-careers-page .cr-gallery {
        grid-template-columns: repeat(6,1fr);
        grid-template-rows: 220px 200px;
    }
    .botron-careers-page .cr-gallery-item:nth-child(1) { grid-column: span 3; }
    .botron-careers-page .cr-gallery-item:nth-child(2) { grid-column: span 3; }
    .botron-careers-page .cr-gallery-item:nth-child(3) { grid-column: span 2; }
    .botron-careers-page .cr-gallery-item:nth-child(4) { grid-column: span 2; }
    .botron-careers-page .cr-gallery-item:nth-child(5) { grid-column: span 2; }
    .botron-careers-page .cr-gallery-item:nth-child(6) { display: none; }
}
@media (max-width: 1024px) {
    .botron-careers-page .cr-intro-grid    { grid-template-columns: 1fr; gap: 48px; }
    .botron-careers-page .cr-intro-card    { display: none; }
    .botron-careers-page .cr-cta-inner     { flex-direction: column; align-items: flex-start; padding: 56px 44px; gap: 36px; }
    .botron-careers-page .cr-cta-actions   { width: 100%; flex-direction: row; }
    .botron-careers-page .cr-roles-header  { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
    .botron-careers-page .cr-intro         { padding: 72px var(--gutter) 60px; }
    .botron-careers-page .cr-stat-row      { flex-direction: column; gap: 24px; }
    .botron-careers-page .cr-stat-item     { border-right: none; margin-right: 0; padding-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
    .botron-careers-page .cr-stat-item:last-child { border-bottom: none; }
    .botron-careers-page .cr-perks-grid    { grid-template-columns: 1fr; }
    .botron-careers-page .cr-perk-card     { border-radius: 0 !important; }
    .botron-careers-page .cr-perk-card:first-child { border-radius: 16px 16px 0 0 !important; }
    .botron-careers-page .cr-perk-card:last-child  { border-radius: 0 0 16px 16px !important; }
    .botron-careers-page .cr-role-card     { grid-template-columns: 1fr; gap: 14px; }
    .botron-careers-page .cr-role-card-right { justify-content: flex-start; }
    .botron-careers-page .cr-cta-actions   { flex-direction: column; }
    .botron-careers-page .cr-cta-btn-white,
    .botron-careers-page .cr-cta-btn-ghost { width: 100%; }
    .botron-careers-page .cr-why-header    { flex-direction: column; align-items: flex-start; }
    .botron-careers-page .cr-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3,200px);
    }
    .botron-careers-page .cr-gallery-item:nth-child(1) { grid-column: span 2; }
    .botron-careers-page .cr-gallery-item:nth-child(2),
    .botron-careers-page .cr-gallery-item:nth-child(3),
    .botron-careers-page .cr-gallery-item:nth-child(4),
    .botron-careers-page .cr-gallery-item:nth-child(5) { grid-column: span 1; }
    .botron-careers-page .cr-gallery-item:nth-child(6) { display: none; }
    .botron-careers-page .cr-modal-header,
    .botron-careers-page .cr-modal-body,
    .botron-careers-page .cr-modal-footer  { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 480px) {
    .botron-careers-page .cr-filter-bar    { gap: 6px; }
    .botron-careers-page .cr-gallery       { grid-template-columns: 1fr; grid-template-rows: repeat(4,200px); }
    .botron-careers-page .cr-gallery-item  { grid-column: span 1 !important; }
    .botron-careers-page .cr-gallery-item:nth-child(n+5) { display: none; }
}