/* =============================================
   JBK SEARCH – CONSTRUCTION DIVISION
   Main Stylesheet
   ============================================= */

:root {
    --black: #0a0a0a;
    --dark: #111214;
    --dark-2: #181a1d;
    --dark-3: #1e2125;
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.15);
    --gold: #cd6200;
    --gold-light: #e09773;
    --gold-dim: rgba(201, 168, 76, 0.15);
    --white: #f5f3ef;
    --white-dim: rgba(245, 243, 239, 0.65);
    --white-faint: rgba(245, 243, 239, 0.1);
    --text: #d4d0c9;
    --text: #8a8680;
    --accent-red: #b84040;
    --radius: 4px;
    --radius-lg: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.6);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ---- TYPOGRAPHY ---- */
h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
    font-size: 1.3rem;
}

em {
    font-style: italic;
    color: var(--gold-light);
}

em:hover {
    color: var(--white);
    transition: color var(--transition);
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--border-light);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 18px 44px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ---- SECTION ELEMENTS ---- */
.section-eyebrow {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text);
    font-size: 1.05rem;
}

.section-header.light h2 {
    color: var(--white);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: var(--transition);
    background: transparent;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}



.logo-jbk {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.logo-divider {
    width: 1px;
    height: 20px;
    background: var(--border-light);
}

.logo-search {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--white);
}

.logo-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--text);
    text-transform: uppercase;
    border-left: 1px solid var(--border-light);
    padding-left: 10px;
    margin-left: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 10px 24px;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-cta:hover,
.nav-cta.active {
    background: var(--gold);
    color: var(--black);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: var(--transition);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    padding: 24px 40px;
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    transition: color var(--transition);
}

.nav-mobile-link:hover {
    color: var(--gold);
}

/* ============================================
   FLASH MESSAGES
   ============================================ */
.flash-container {
    position: fixed;
    top: 88px;
    right: 24px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.flash {
    padding: 16px 24px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    max-width: 400px;
    animation: slideIn 0.3s ease;
}

.flash-success {
    background: #1a3a2a;
    border: 1px solid #2d6b47;
    color: #6fcf97;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 40px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
        linear-gradient(135deg, rgba(10, 10, 10, 0.97) 0%, rgba(20, 22, 26, 0.92) 50%, rgba(10, 10, 10, 0.95) 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.9rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease both;
}

.eyebrow-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.hero-headline {
    font-size: clamp(2rem, 7vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease 0.1s both;
    max-width: 680px;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--white);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 44px;
    animation: fadeUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
    animation: fadeUp 0.8s ease 0.3s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    animation: fadeUp 0.8s ease 0.4s both;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    width: fit-content;
}

.stat {
    display: flex;
    flex-direction: column;
    padding: 20px 40px;
    background: var(--white-faint);
}

.stat-sep {
    width: 1px;
    height: 60px;
    background: var(--border);
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--text);
    animation: fadeUp 1s ease 0.8s both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.7);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   ABOUT STRIP
   ============================================ */
.about-strip {
    padding: 100px 0;
    background: var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.strip-text h2 {
    margin-bottom: 20px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.strip-text p {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.strip-text .btn {
    margin-top: 16px;
}

.strip-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;

}



.pillar {
    background: var(--dark-2);
    padding: 28px;
    transition: background var(--transition);

}

.pillar:hover {
    background: var(--dark-3);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 14px;
}

.pillar h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
}

.pillar p {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.6;
}

.about-list {
    margin-top: 2em;
}

.about-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
    padding: 100px 0;
    background: var(--black);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}

.step {
    flex: 1;
    padding: 40px 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--dark-2);
    position: relative;
    transition: var(--transition);
    max-width: 240px;
}

.step:hover {
    border-color: var(--gold);
    background: var(--dark-3);
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold-dim);
    line-height: 1;
    margin-bottom: 16px;
    transition: color var(--transition);
}

.step:hover .step-number {
    color: var(--gold);
}

.step-content h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.step-content p {
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.6;
}

.step-arrow {
    font-size: 1.2rem;
    color: var(--gold);
    opacity: 0.4;
    align-self: center;
    padding: 0 8px;
    flex-shrink: 0;
}

/* ============================================
   SECTORS
   ============================================ */
.sectors {
    padding: 100px 0;
    background: var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.sectors .section-header {
    margin-bottom: 48px;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.sector-card {
    background: var(--dark-2);
    padding: 40px 28px;
    transition: background var(--transition);
    cursor: default;
}

.sector-card:hover {
    background: var(--dark-3);
}

.sector-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 12px;
}

.sector-card h3 {
    font-size: 1rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: var(--black);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 64px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--dark-2);
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-text h2 {
    margin-bottom: 12px;
}

.cta-text p {
    color: var(--text);
    max-width: 480px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(201, 168, 76, 0.04) 0%, transparent 50%),
        var(--dark);
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-content h1 {
    margin-bottom: 16px;
    animation: fadeUp 0.6s ease both;
}

.page-hero-content p {
    color: var(--text);
    font-size: 1.1rem;
    max-width: 560px;
    animation: fadeUp 0.6s ease 0.1s both;
}

.page-hero-content .section-eyebrow {
    animation: fadeUp 0.6s ease both;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    padding: 80px 0 100px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.contact-info>p {
    color: var(--text);
    margin-bottom: 40px;
    line-height: 1.7;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 28px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: var(--dark-2);
    transition: background var(--transition);
}

.info-card:hover {
    background: var(--dark-3);
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.info-card h4 {
    font-size: 0.75rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 2px;
}

.info-card p {
    font-size: 0.95rem;
    color: var(--white);
}

.contact-note {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.note-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-note p {
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.6;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.form-header {
    padding: 32px 40px 28px;
    border-bottom: 1px solid var(--border);
}

.form-header h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.form-header p {
    font-size: 0.85rem;
    color: var(--text);
}

.contact-form {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text);
}

input,
select,
textarea {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    transition: border-color var(--transition);
    outline: none;
    width: 100%;
}

input::placeholder,
textarea::placeholder {
    color: var(--text);
    opacity: 0.6;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.03);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%238a8680' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

select option {
    background: var(--dark-3);
    color: var(--white);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   POSITIONS PAGE
   ============================================ */
.positions-section {
    padding: 80px 0 100px;
}

.positions-intro {
    max-width: 720px;
    margin-bottom: 48px;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.7;
}

.positions-intro a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 64px;
}

.job-card {
    background: var(--dark-2);
    padding: 36px 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: background var(--transition);
}

.job-card:hover {
    background: var(--dark-3);
}

.job-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.job-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.job-type {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 4px 10px;
    background: var(--gold-dim);
    color: var(--gold);
    border-radius: 2px;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.job-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    color: var(--white);
}

.job-title {
    font-size: 1.05rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}

.job-salary {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--gold-light);
}

.job-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job-desc {
    font-size: 0.9rem;
    color: var(--white);
    line-height: 1.65;
}

.job-reqs h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
}

.job-reqs ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.job-reqs li {
    font-size: 0.85rem;
    color: var(--white-dim);
    padding-left: 16px;
    position: relative;
}

.job-reqs li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    opacity: 0.6;
    font-size: 0.7rem;
}

.job-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.job-ref {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--text);
    opacity: 0.6;
}

/* Positions CTA */
.positions-cta {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.positions-cta-inner {
    padding: 64px;
    text-align: center;
    background: var(--dark-2);
    position: relative;
}

.positions-cta-inner::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-badge {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    padding: 6px 14px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    background: var(--gold-dim);
    color: var(--gold);
    border-radius: 2px;
    margin-bottom: 24px;
}

.positions-cta-inner h2 {
    margin-bottom: 12px;
}

.positions-cta-inner p {
    color: var(--text-dim);
    max-width: 480px;
    margin: 0 auto 36px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 72px 0 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.footer-tagline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 16px;
    margin-top: 20px;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.65;
    max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-dim);
    padding: 6px 0;
    border-bottom: 1px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    border-bottom-color: rgba(201, 168, 76, 0.3);
}

.footer-contact p {
    font-size: 0.9rem;
    color: var(--text-dim);
    padding: 6px 0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-dim);
    opacity: 0.5;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .strip-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .step-arrow {
        display: none;
    }

    .sectors-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-text p {
        max-width: 100%;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .nav-inner {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .nav-mobile {
        padding: 24px;
    }

    .hero {
        padding: 120px 24px 80px;
    }

    .hero-stats {
        flex-direction: column;
        width: 100%;
    }

    .stat-sep {
        width: 100%;
        height: 1px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }

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

    .positions-cta-inner {
        padding: 40px 24px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        max-width: 100%;
        width: 100%;
    }

    .cta-inner {
        padding: 40px 24px;
    }
}