:root {
    --brand-yellow: #f5c518;
    --brand-dark:   #1a1a1a;
    --brand-accent: #e8a900;
    --brand-light:  #fdf9ee;
    --body-text:    #3a3a3a;
    --muted:        #6c757d;
    --border-light: #e9e4d6;
    --section-bg:   #f7f4ec;
    --ease:         0.28s ease;
    --ease-slow:    0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --yellow:      #F4B804;
    --yellow-light:#FFF4C8;
    --yellow-dark: #D49E00;
    --dark:        #212121;
    --text:        #282828;
    --muted:       #595959;
    --bg-light:    #F6F6F6;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: "Open Sans", sans-serif;
    color: var(--body-text);
    background: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

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

/* ── Reading Progress Bar ── */
#progress-bar {
    position: fixed; top: 0; left: 0;
    height: 3px; width: 0%;
    background: var(--brand-yellow);
    z-index: 9999;
    transition: width .12s linear;
}

/* ── Scroll Animations ── */
/* .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-slow), transform 0.7s var(--ease-slow);
} */
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
/* Hero */
.career-hero { position: relative; overflow: hidden; min-height: 300px; display: flex; align-items: flex-end; }
.career-hero img.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.7s ease; will-change: transform; }
.career-hero:hover img.hero-bg { transform: scale(1.03); }
.career-hero .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,.92) 35%, rgba(10,10,10,.4) 70%, transparent 100%); }
.career-hero .hero-content { position: relative; z-index: 2; padding: 56px 15px 44px; }
.hero-category { display: inline-block; background: var(--brand-yellow); color: var(--brand-dark); font-family: "Montserrat", sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 5px 13px; border-radius: 3px; margin-bottom: 16px; transition: background var(--ease), transform var(--ease); }
.hero-category:hover { background: var(--brand-accent); transform: translateY(-2px); }
.career-hero .hero-title { font-size: clamp(1.55rem, 3.6vw, 2.5rem); color: #fff; line-height: 1.22; margin-bottom: 18px; font-weight: 800; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-meta span { color: rgba(255,255,255,.72); font-size: .82rem; }
.hero-meta .divider { color: rgba(255,255,255,.22); }
.hero-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    /* max-width: 600px; */
    margin-bottom: 22px;
    line-height: 1.7;
    animation: fadeSlideUp 0.7s 0.25s ease both;
}

/* ── Breadcrumb ── */
.breadcrumb-strip {
    background: var(--section-bg);
    border-bottom: 1px solid var(--border-light);
    padding: 9px 0;
}
.breadcrumb-list {
    list-style: none; display: flex; gap: 8px;
    font-size: .8rem; align-items: center;
}
.breadcrumb-list li + li::before {
    content: '/'; color: var(--muted); margin-right: 8px;
}
.breadcrumb-list a {
    color: var(--brand-accent);
    transition: color var(--ease);
}
.breadcrumb-list a:hover { color: var(--brand-dark); text-decoration: underline; }
.breadcrumb-list .active { color: var(--muted); }

/* ── Job Info Strip ── */
.job-info-strip {
    background: #fff;
    border-bottom: 1px solid var(--border-light);
    padding: 20px 0;
}
.info-cards {
    display: flex; flex-wrap: wrap; gap: 0;
}
.info-card {
    flex: 1 1 180px;
    padding: 14px 22px;
    border-right: 1px solid var(--border-light);
    transition: background var(--ease);
}
.info-card:last-child { border-right: none; }
.info-card:hover { background: var(--brand-light); }
.info-card-label {
    font-family: "Montserrat", sans-serif;
    font-size: .62rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--brand-accent); margin-bottom: 4px;
}
.info-card-value {
    font-size: .9rem; font-weight: 600;
    color: var(--brand-dark);
}

/* ── Main Layout ── */
.career-body { padding: 48px 0 72px; }
.career-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 44px;
    align-items: start;
}

/* ── Article Content ── */
.career-content {}

.section-block {
    margin-bottom: 40px;
}
.section-block h2 {
    font-size: 1.4rem; font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--brand-yellow);
    display: inline-block;
    color: var(--brand-dark);
    transition: color var(--ease);
}
.section-block h2:hover { color: var(--brand-accent); }

.section-block h3 {
    font-size: 1.15rem; font-weight: 700;
    margin-top: 28px; margin-bottom: 10px;
    color: var(--brand-dark);
}

.section-block p {
    font-size: .98rem; line-height: 1.88;
    margin-bottom: 1.25rem;
}

.section-block ul {
    padding-left: 1.4rem;
    margin-bottom: 1.25rem;
}
.section-block ul li {
    margin-bottom: .55rem;
    font-size: .98rem; line-height: 1.78;
    transition: color var(--ease);
}
.section-block ul li:hover { color: var(--brand-dark); }

/* ── Lead Text ── */
.article-lead {
    font-size: 1.08rem; line-height: 1.9; color: #444;
    border-left: 4px solid var(--brand-yellow);
    padding-left: 20px; margin-bottom: 36px;
    font-style: italic;
    transition: border-color var(--ease);
}
.article-lead:hover { border-color: var(--brand-accent); }

/* ── Responsibility Panel ── */
.jd-panel {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 28px 30px;
    margin-bottom: 24px;
    transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}
.jd-panel:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.07);
    transform: translateY(-3px);
    border-color: var(--brand-yellow);
}
.jd-panel h3 {
    font-size: 1.2rem; font-weight: 700;
    margin-bottom: 16px; color: var(--brand-dark);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--brand-yellow);
    display: inline-block;
}
.jd-panel ul {
    padding-left: 1.3rem; margin: 0;
}
.jd-panel ul li {
    margin-bottom: .6rem;
    font-size: .95rem; line-height: 1.75;
    transition: color var(--ease), padding-left var(--ease);
}
.jd-panel ul li:hover {
    color: var(--brand-dark);
    padding-left: 4px;
}
.jd-panel p {
    font-size: .95rem; line-height: 1.8;
    margin-bottom: 14px;
}

/* ── Company Profile Block ── */
.company-block {
    background: var(--brand-dark);
    border-radius: 12px;
    padding: 36px 34px;
    margin-top: 10px;
    transition: box-shadow var(--ease);
}
.company-block:hover { box-shadow: 0 14px 44px rgba(0,0,0,.22); }
.company-block h3 {
    color: var(--brand-yellow);
    font-size: 1.2rem; font-weight: 700;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.company-block p {
    color: rgba(255,255,255,.72);
    font-size: .93rem; line-height: 1.8;
    margin: 0;
}

/* ── Sticky Sidebar Form ── */
.sidebar-form {
    position: sticky;
    top: 28px;
}
.form-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: box-shadow var(--ease);
}
.form-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.form-header {
    background: var(--brand-dark);
    padding: 20px 24px;
}
.form-header h4 {
    font-family: "Montserrat", sans-serif;
    font-size: .72rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--brand-yellow);
    margin-bottom: 4px;
}
.form-header p {
    color: rgba(255,255,255,0.6);
    font-size: .78rem;
    margin: 0;
}
.form-body {
    padding: 24px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: .72rem; font-weight: 600;
    letter-spacing: .04em;
    color: var(--brand-dark);
    margin-bottom: 6px;
}
.form-group label .required {
    color: #d63031;
    margin-left: 2px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-family: "Open Sans", sans-serif;
    font-size: .88rem;
    color: var(--body-text);
    background: #fff;
    transition: border-color var(--ease), box-shadow var(--ease);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--brand-yellow);
    box-shadow: 0 0 0 3px rgba(245,197,24,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b5b0a3;
}
.form-group textarea {
    resize: vertical;
    min-height: 80px;
}
.form-group input[type="file"] {
    padding: 9px 14px;
    font-size: .82rem;
    cursor: pointer;
}
.form-group input[type="file"]::file-selector-button {
    background: var(--brand-light);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 4px 12px;
    font-family: "Montserrat", sans-serif;
    font-size: .72rem;
    font-weight: 600;
    color: var(--brand-dark);
    cursor: pointer;
    margin-right: 10px;
    transition: background var(--ease);
}
.form-group input[type="file"]::file-selector-button:hover {
    background: var(--brand-yellow);
}
.form-note {
    font-size: .72rem;
    color: var(--muted);
    margin-top: 4px;
}
.required-note {
    font-size: .73rem;
    color: var(--muted);
    margin-bottom: 16px;
}
.required-note span { color: #d63031; }

.btn-submit {
    width: 100%;
    padding: 13px 24px;
    background: var(--brand-yellow);
    color: var(--brand-dark);
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: .92rem;
    letter-spacing: .03em;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-submit:hover {
    background: var(--brand-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(232,169,0,.32);
}
.btn-submit:active {
    transform: translateY(0);
}

/* ── Apply CTA (mobile only) ── */
.mobile-apply-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--brand-dark);
    padding: 14px 20px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.mobile-apply-bar .btn-apply-mobile {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px;
    background: var(--brand-yellow);
    color: var(--brand-dark);
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: .92rem;
    border-radius: 6px;
    transition: background var(--ease);
}
.mobile-apply-bar .btn-apply-mobile:hover {
    background: var(--brand-accent);
}

/* FEATURED CARD */
.featured-card {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 0;
    background: #fff;
    border: 1px solid #e4e4e4;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}
.featured-card.in-view { opacity: 1; transform: none; }

.featured-photo-side {
    position: relative;
    background: var(--dark);
    overflow: hidden;
    min-height: 460px;
}
.photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(150deg, #fff2c3 0%, #fff6d4 100%);
}
.avatar-init {
    font-family: 'Montserrat', sans-serif;
    font-size: 5.5rem;
    font-weight: 900;
    color: rgba(255,255,255,.1);
    letter-spacing: -4px;
    user-select: none;
}
.photo-accent {
    position: absolute;
    top: 0; left: 0;
    width: 5px; height: 100%;
    background: var(--yellow);
}

.featured-info {
    padding: 48px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.role-tag {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: var(--yellow-light);
    color: var(--yellow-dark);
    font-family: 'Montserrat', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-left: 3px solid var(--yellow);
    margin-bottom: 22px;
    width: fit-content;
}
.featured-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 6px;
}
.featured-desg {
    font-family: 'Montserrat', sans-serif;
    font-size: .84rem;
    font-weight: 600;
    color: var(--yellow-dark);
    letter-spacing: .5px;
    margin-bottom: 26px;
}
.featured-bio {
    font-size: .9rem;
    line-height: 1.85;
    color: var(--muted);
    margin-bottom: 28px;
}
.featured-quote {
    border-left: 3px solid var(--yellow);
    padding: 14px 18px;
    background: var(--bg-light);
    font-style: italic;
    font-size: .88rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 32px;
    position: relative;
}
.featured-quote::before {
    content: '\201C';
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    line-height: 0;
    vertical-align: -0.65rem;
    color: var(--yellow);
    margin-right: 3px;
    font-style: normal;
}



/* LEADER CARDS GRID */
.board-grid { padding-bottom: 90px; }

.leader-card {
    background: #fff;
    border: 1px solid #e4e4e4;
    margin: 1px !important;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: flex-start;
    /* flex-direction: column; */
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease, box-shadow .3s;
}
.leader-card.in-view { opacity: 1; transform: none; }
.leader-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,.1); }

.card-photo {
    position: relative;
    /* height: 250px; */
    overflow: hidden;
    /* background: var(--dark); */
}
.card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.card-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--yellow);
}

.card-body-inner {
    padding: 24px 26px;
}
.card-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
}
.card-desg {
    font-family: 'Montserrat', sans-serif;
    font-size: .73rem;
    font-weight: 600;
    color: var(--yellow-dark);
    letter-spacing: .4px;
    margin-bottom: 16px;
}
.card-bio {
    font-size: .86rem;
    line-height: 1.75;
    color: var(--muted);
    flex: 1;
    margin-bottom: 18px;
}
.card-quote {
    font-style: italic;
    font-size: .82rem;
    color: var(--text);
    line-height: 1.65;
    border-left: 3px solid var(--yellow);
    padding-left: 12px;
    margin-bottom: 0;
}
.card-quote::before {
    content: '\201C';
    color: var(--yellow);
    font-size: 1.1rem;
    font-style: normal;
    font-family: 'Montserrat', sans-serif;
}

.card-footer-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 26px;
    border-top: 1px solid #f0f0f0;
    background: var(--bg-light);
    margin-top: auto;
}
.card-meta {
    font-family: 'Montserrat', sans-serif;
    font-size: .67rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.4;
}
.card-meta strong {
    display: block;
    font-size: 1.05rem;
    color: var(--dark);
    letter-spacing: 0;
    text-transform: none;
}

/* KEYFRAMES */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
    

/* ── Responsive ── */
@media (max-width: 1024px) {
    .career-layout {
    grid-template-columns: 1fr 340px;
    gap: 30px;
    }
}

@media (max-width: 900px) {
    .career-layout {
    grid-template-columns: 1fr;
    }
    .sidebar-form {
    position: static;
    max-width: 500px;
    }
    .mobile-apply-bar { display: block; }
    .career-body { padding-bottom: 100px; }
    .featured-card { grid-template-columns: 1fr; }
    .featured-photo-side, .photo-placeholder { min-height: 280px; }
    .featured-info { padding: 34px 28px; }
}

@media (max-width: 767px) {
    .career-hero { min-height: 380px; }
    .hero-content { padding: 60px 0 36px; }
    .info-cards { gap: 0; }
    .info-card {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: 12px 16px;
    }
    .info-card:nth-child(odd) { border-right: 1px solid var(--border-light); }
    .info-card:nth-last-child(-n+2) { border-bottom: none; }
    .jd-panel { padding: 22px 20px; }
    .company-block { padding: 28px 22px; }
}
@media (max-width: 576px) {
    .featured-info { padding: 26px 18px; }
    .featured-name { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-content { padding: 50px 0 30px; }
    .career-hero h1 { font-size: 1.4rem; }
    .info-card { flex: 1 1 100%; border-right: none !important; }
    .jd-panel { padding: 18px 16px; }
}