/* ── Variables ─────────────────────────────── */
:root {
    --black: #0a0a0a;
    --white: #fff;
    --green: #90EE90;
    --green-d: #7CC87C;
    --green-dd: #3a9b4a;
    --panel: #111c14;
    --gray-bg: #f4f5f4;
    --gray-1: #1a1a1a;
    --gray-2: #555;
    --gray-3: #888;
    --radius: 16px;
    --font: 'Inter', system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font);
    color: var(--black);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

/* ── Navbar ────────────────────────────────── */
.navbar {
    background: var(--black);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 1px 0 rgba(144, 238, 144, .12);
}

.nav-inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 64px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none
}

.nav-logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.02em
}

.nav-logo span {
    color: var(--green)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: .25rem
}

.nav-links a {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    font-size: .88rem;
    font-weight: 500;
    padding: .4rem .9rem;
    border-radius: 8px;
    transition: color .2s, background .2s;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, .06)
}

.nav-cta {
    display: flex;
    align-items: center;
    background: var(--green);
    color: var(--black) !important;
    font-weight: 700 !important;
    border-radius: 8px;
    padding: .45rem 1.1rem !important;
    margin-left: .5rem;
    transition: background .2s !important;
}

.nav-cta:hover {
    background: var(--green-d) !important;
    background: var(--green-d) !important
}

/* ── HERO ──────────────────────────────────── */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: var(--black)
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: .55;
}

/* dark gradient from left */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(10, 10, 10, .97) 38%, rgba(10, 10, 10, .45) 65%, transparent 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    max-width: 1260px;
    margin: 0 auto;
    padding: 5rem 2rem;
    width: 100%;
}

.hero-content {
    max-width: 580px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(144, 238, 144, .12);
    border: 1px solid rgba(144, 238, 144, .3);
    border-radius: 999px;
    padding: .35rem 1rem;
    font-size: .78rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s ease infinite
}

@keyframes pulse {

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

    50% {
        opacity: .4;
        transform: scale(1.3)
    }
}

.hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 1.5rem;
}

.hero h1 em {
    font-style: normal;
    color: var(--green)
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--green);
    color: var(--black);
    border: none;
    border-radius: 10px;
    padding: .85rem 1.8rem;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 0 32px rgba(144, 238, 144, .3);
    transition: background .2s, transform .15s, box-shadow .2s;
}

.btn-primary:hover {
    background: var(--green-d);
    transform: translateY(-2px);
    box-shadow: 0 0 48px rgba(144, 238, 144, .45)
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, .25);
    border-radius: 10px;
    padding: .85rem 1.6rem;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: border-color .2s, background .2s;
}

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .06)
}

/* scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(255, 255, 255, .4);
    font-size: .75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .3), transparent)
}

/* ── Stats bar ─────────────────────────────── */
.stats {
    background: var(--green);
    padding: 0;
}

.stats-inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, .1);
}

.stat-item:last-child {
    border-right: none
}

.stat-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
    margin-bottom: .35rem;
    letter-spacing: -.03em;
}

.stat-label {
    font-size: .82rem;
    font-weight: 600;
    color: rgba(0, 0, 0, .6);
    text-transform: uppercase;
    letter-spacing: .06em
}

/* ── Section generic ───────────────────────── */
.section {
    padding: 5.5rem 0
}

.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 2rem
}

.section-eyebrow {
    font-size: .78rem;
    font-weight: 700;
    color: var(--green-dd);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .75rem;
    display: block;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 1rem
}

.section-sub {
    color: var(--gray-2);
    font-size: 1.05rem;
    margin-bottom: 3rem;
    max-width: 580px
}

/* ── Mission section ───────────────────────── */
.mission {
    background: var(--gray-bg)
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.mission-text p {
    color: var(--gray-2);
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 1rem
}

.mission-text p:last-child {
    margin-bottom: 0
}

.mission-photo {
    border-radius: 24px;
    overflow: hidden;
    position: relative
}

.mission-photo img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block
}

.mission-photo-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--black);
    color: var(--white);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: .82rem;
    line-height: 1.4;
    backdrop-filter: blur(12px);
}

.mission-photo-badge strong {
    font-size: 1.3rem;
    display: block;
    color: var(--green)
}

/* ── Benefits — bento grid ───────────────────── */
/* Top row: featured (left) + 2 items stacked (right) */
.benefits-bento {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

/* Dark featured card – spans both rows on the left */
.benefit-featured {
    grid-row: 1 / 3;
    background: var(--black);
    border-radius: 22px;
    padding: 2.75rem 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    min-height: 420px;
}

.benefit-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 10% 80%, rgba(144, 238, 144, .18) 0%, transparent 60%);
}

.benefit-featured-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.benefit-featured h3 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -.025em;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.benefit-featured p {
    font-size: .95rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    flex: 1;
}

.benefit-featured-num {
    font-size: 9rem;
    font-weight: 800;
    color: rgba(144, 238, 144, .07);
    line-height: 1;
    position: absolute;
    bottom: -1.5rem;
    right: 1rem;
    letter-spacing: -.04em;
    user-select: none;
}

/* Right-side items */
.benefit-item {
    background: var(--white);
    border: 2px solid #eee;
    border-radius: 18px;
    padding: 1.5rem 1.5rem;
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    transition: border-color .25s, transform .2s, box-shadow .2s;
}

.benefit-item:hover {
    border-color: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(144, 238, 144, .12);
}

.benefit-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.benefit-item-icon.green {
    background: rgba(144, 238, 144, .15)
}

.benefit-item-icon.blue {
    background: rgba(99, 180, 255, .15)
}

.benefit-item-icon.amber {
    background: rgba(255, 191, 71, .15)
}

.benefit-item-icon.purple {
    background: rgba(180, 130, 255, .15)
}

.benefit-item-icon.red {
    background: rgba(255, 105, 105, .15)
}

.benefit-item-text h3 {
    font-size: .97rem;
    font-weight: 700;
    margin-bottom: .3rem
}

.benefit-item-text p {
    font-size: .87rem;
    color: var(--gray-2);
    line-height: 1.6
}

/* Bottom stats row */
.benefits-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.bstat {
    background: var(--white);
    border: 2px solid #eee;
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: border-color .2s, transform .2s;
}

.bstat:hover {
    border-color: var(--green);
    transform: translateY(-2px);
}

.bstat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(144, 238, 144, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.bstat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
    margin-bottom: .2rem;
}

.bstat-num span {
    color: var(--green-dd)
}

.bstat-label {
    font-size: .82rem;
    font-weight: 500;
    color: var(--gray-2);
    line-height: 1.4;
}

/* ── Jobs section ──────────────────────────── */
.jobs-section {
    background: var(--gray-bg)
}

.jobs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem
}

.jobs-count {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    border-radius: 999px;
    padding: .2rem .75rem;
    font-size: .78rem;
    font-weight: 700;
    margin-left: .6rem;
    vertical-align: middle;
}

/* filter bar */
.filter-bar {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-btn {
    background: var(--white);
    border: 2px solid #e4e4e4;
    border-radius: 999px;
    padding: .45rem 1.1rem;
    font-family: inherit;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--gray-2);
    transition: all .2s;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--green);
    color: var(--green-dd);
    background: rgba(144, 238, 144, .07)
}

/* job list */
.jobs-list {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.job-row {
    background: var(--white);
    border-radius: 14px;
    border: 2px solid #eee;
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.job-row:hover {
    border-color: var(--green);
    box-shadow: 0 6px 24px rgba(144, 238, 144, .15);
    transform: translateX(4px)
}

.job-row-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .3rem
}

.job-row-sub {
    font-size: .84rem;
    color: var(--gray-2)
}

.job-row-tag {
    background: var(--gray-bg);
    border-radius: 999px;
    padding: .3rem .85rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--gray-2);
    white-space: nowrap;
}

.job-row-tag.new {
    background: rgba(144, 238, 144, .15);
    color: var(--green-dd);
    border: 1px solid rgba(144, 238, 144, .3)
}

.job-row-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-3);
    transition: all .2s;
    flex-shrink: 0;
}

.job-row:hover .job-row-arrow {
    border-color: var(--green);
    color: var(--green-dd);
    transform: translateX(3px)
}

/* ── Accordion departments ─────────────────── */
.accordion {
    border-top: 1px solid #e0e0e0
}

.acc-item {
    border-bottom: 1px solid #e0e0e0
}

.acc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    cursor: pointer;
    user-select: none;
    transition: color .2s;
}

.acc-header:hover {
    color: var(--green-dd)
}

.acc-header h3 {
    font-size: 1.05rem;
    font-weight: 700
}

.acc-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gray-3);
    transition: transform .3s;
    line-height: 1;
}

.acc-item.open .acc-icon {
    transform: rotate(45deg);
    color: var(--green-dd)
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4, 0, .2, 1), padding .3s;
}

.acc-item.open .acc-body {
    padding-bottom: 1.5rem
}

.acc-body p {
    color: var(--gray-2);
    font-size: .92rem;
    line-height: 1.7;
    margin-bottom: 1rem
}

/* ── Quote strip ───────────────────────────── */
.quote-strip {
    background: var(--black);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.quote-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(144, 238, 144, .12) 0%, transparent 60%);
}

.quote-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.quote-mark {
    font-size: 5rem;
    color: var(--green);
    line-height: .7;
    margin-bottom: 1rem;
    font-family: Georgia, serif
}

.quote-text {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--white);
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    letter-spacing: -.01em;
}

.quote-author {
    font-size: .88rem;
    color: rgba(255, 255, 255, .45)
}

/* ── CTA strip ─────────────────────────────── */
.cta-strip {
    background: var(--green);
    padding: 4rem 0;
    text-align: center;
}

.cta-strip h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: .75rem;
    color: var(--black)
}

.cta-strip p {
    color: rgba(0, 0, 0, .6);
    margin-bottom: 2rem;
    font-size: 1.05rem
}

/* ── Footer ────────────────────────────────── */
footer {
    background: var(--black);
    padding: 3.5rem 0 1.5rem;
    color: var(--white)
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: .75rem
}

.footer-brand span {
    color: var(--green)
}

.footer-desc {
    font-size: .88rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.65
}

.footer-col h4 {
    font-size: .78rem;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 1rem
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, .55);
    font-size: .88rem;
    text-decoration: none;
    margin-bottom: .5rem;
    transition: color .2s
}

.footer-col a:hover {
    color: var(--white)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 1.5rem;
    font-size: .8rem;
    color: rgba(255, 255, 255, .3);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem
}

/* ── FUNNEL OVERLAY ─────────────────────────── */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.overlay.open {
    opacity: 1;
    pointer-events: all
}

.funnel {
    background: var(--white);
    border-radius: 24px;
    width: 100%;
    max-width: 600px;
    padding: 2.75rem;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(24px) scale(.97);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

.overlay.open .funnel {
    transform: none
}

.funnel-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--gray-bg);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--gray-2);
    transition: background .2s;
}

.funnel-close:hover {
    background: #e0e0e0
}

.funnel-job-title {
    font-size: .8rem;
    font-weight: 700;
    color: var(--green-dd);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 1.5rem
}

.progress-track {
    height: 5px;
    background: #eee;
    border-radius: 99px;
    margin-bottom: 2.25rem;
    overflow: hidden
}

.progress-bar {
    height: 100%;
    background: var(--green);
    border-radius: 99px;
    transition: width .4s ease
}

.step {
    display: none
}

.step.active {
    display: block
}

.step-num {
    font-size: .78rem;
    font-weight: 700;
    color: var(--gray-3);
    margin-bottom: .5rem
}

.step-q {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 1.75rem;
    color: var(--black)
}

.step-answers {
    display: flex;
    flex-direction: column;
    gap: .7rem
}

.ans-btn {
    background: var(--gray-bg);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-family: inherit;
    font-size: .94rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    gap: .85rem;
    transition: all .2s;
}

.ans-btn:hover {
    border-color: var(--green);
    background: #edfaed
}

.ans-btn.selected {
    border-color: var(--green);
    background: #e4f8e4
}

.ans-letter {
    min-width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--white);
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 800;
    color: var(--gray-2);
    transition: all .2s;
    flex-shrink: 0;
}

.ans-btn.selected .ans-letter {
    background: var(--green);
    border-color: var(--green);
    color: var(--black)
}

.ans-btn:hover .ans-letter {
    border-color: var(--green)
}

/* result */
.result-screen {
    display: none;
    text-align: center;
    padding: 1rem 0
}

.result-screen.active {
    display: block
}

.result-icon {
    font-size: 4rem;
    margin-bottom: 1.25rem
}

.result-screen h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: .75rem
}

.result-screen p {
    color: var(--gray-2);
    margin-bottom: 1.75rem;
    line-height: 1.65
}

/* contact form */
.cf-row {
    margin-bottom: 1rem
}

.cf-row label {
    display: block;
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: .4rem
}

.cf-row input {
    width: 100%;
    padding: .8rem 1rem;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-family: inherit;
    font-size: .95rem;
    outline: none;
    transition: border-color .2s;
}

.cf-row input:focus {
    border-color: var(--green)
}

.cf-submit {
    width: 100%;
    padding: .9rem;
    background: var(--green);
    color: var(--black);
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .15s;
}

.cf-submit:hover {
    background: var(--green-d);
    transform: translateY(-1px)
}

.cf-sent {
    display: none;
    text-align: center;
    padding: 1rem 0
}

.cf-sent.show {
    display: block
}

/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 900px
══════════════════════════════════════════════ */
@media (max-width: 900px) {

    /* Navbar: hide links, keep logo + CTA pill */
    .nav-links a:not(.nav-cta) {
        display: none
    }

    .nav-cta {
        margin-left: 0
    }

    /* Hero */
    .hero {
        min-height: 75vh
    }

    .hero-inner {
        padding: 4rem 1.5rem
    }

    .hero h1 {
        font-size: clamp(2.4rem, 6vw, 3.5rem)
    }

    .hero-sub {
        font-size: 1rem
    }

    .hero-scroll {
        display: none
    }

    /* Stats – 2 × 2 */
    .stats-inner {
        grid-template-columns: 1fr 1fr
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, .1)
    }

    .stat-item:last-child {
        border-bottom: none
    }

    /* Mission */
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .mission-photo {
        order: -1
    }

    .mission-photo img {
        height: 300px
    }

    /* Jobs */
    .jobs-header {
        flex-direction: column;
        align-items: flex-start
    }

    /* Benefits bento – stack on tablet */
    .benefits-bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .benefit-featured {
        grid-row: auto;
        min-height: 320px
    }

    .benefits-stats {
        grid-template-columns: 1fr 1fr 1fr
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem
    }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — SMARTPHONE  ≤ 600px
══════════════════════════════════════════════ */
@media (max-width: 600px) {

    /* Container padding */
    .container {
        padding: 0 1.25rem
    }

    .section {
        padding: 3.5rem 0
    }

    /* Navbar */
    .nav-inner {
        padding: 0 1.25rem;
        height: 58px
    }

    .nav-logo {
        font-size: 1.1rem
    }

    .nav-cta {
        font-size: .8rem !important;
        padding: .4rem .9rem !important
    }

    /* Hero */
    .hero {
        min-height: auto
    }

    .hero-img {
        object-position: 65% center
    }

    .hero-overlay {
        background: linear-gradient(160deg,
                rgba(10, 10, 10, .96) 0%,
                rgba(10, 10, 10, .80) 60%,
                rgba(10, 10, 10, .55) 100%);
    }

    .hero-inner {
        padding: 5.5rem 1.25rem 3.5rem
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.12
    }

    .hero-sub {
        font-size: .95rem;
        margin-bottom: 2rem
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: .75rem
    }

    .hero-badge {
        font-size: .72rem
    }

    /* Stats – 2 × 2 */
    .stats-inner {
        grid-template-columns: 1fr 1fr
    }

    .stat-item {
        padding: 1.25rem 1rem
    }

    .stat-num {
        font-size: 1.8rem
    }

    .stat-label {
        font-size: .72rem
    }

    /* Section headings */
    .section-title {
        font-size: 1.65rem
    }

    .section-sub {
        font-size: .95rem;
        margin-bottom: 2rem
    }

    /* Mission */
    .mission-photo img {
        height: 240px
    }

    .mission-photo-badge {
        padding: .75rem 1rem
    }

    /* Job rows – mobile friendly */
    .jobs-header {
        gap: .5rem
    }

    .filter-bar {
        gap: .5rem
    }

    .filter-btn {
        font-size: .78rem;
        padding: .4rem .85rem
    }

    .job-row {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: .5rem;
        padding: 1rem 1.1rem;
    }

    .job-row>div:first-child {
        grid-column: 1
    }

    .job-row .job-row-arrow {
        grid-column: 2;
        grid-row: 1 / 3;
        align-self: center
    }

    .job-row-tag {
        display: none
    }

    .job-row-tag.new {
        display: inline-block;
        grid-column: 1;
        width: fit-content;
    }

    .job-row-title {
        font-size: .95rem
    }

    .job-row-sub {
        font-size: .8rem
    }

    /* Accordion */
    .acc-header h3 {
        font-size: .95rem
    }

    /* Benefits bento – fully stacked */
    .benefits-bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: .85rem;
    }

    .benefit-featured {
        grid-row: auto;
        min-height: 260px;
        padding: 2rem 1.5rem;
    }

    .benefit-featured h3 {
        font-size: 1.45rem
    }

    .benefit-featured-num {
        font-size: 6rem;
        bottom: -.75rem;
        right: .75rem
    }

    .benefit-item {
        padding: 1.1rem 1.1rem
    }

    /* Benefits stats row → vertical stack */
    .benefits-stats {
        grid-template-columns: 1fr;
        gap: .75rem;
    }

    .bstat {
        padding: 1.1rem 1.25rem
    }

    .bstat-num {
        font-size: 1.3rem
    }

    /* Quote */
    .quote-strip {
        padding: 3.5rem 0
    }

    .quote-mark {
        font-size: 4rem
    }

    .quote-text {
        font-size: 1.15rem
    }

    /* CTA */
    .cta-strip {
        padding: 3rem 0
    }

    .cta-strip h2 {
        font-size: 1.65rem
    }

    .cta-strip .btn-primary {
        display: flex !important;
        width: 100%;
        justify-content: center
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem
    }

    .footer-bottom {
        flex-direction: column;
        gap: .35rem;
        text-align: center
    }

    /* Funnel modal */
    .funnel {
        padding: 1.75rem 1.1rem;
        border-radius: 18px
    }

    .step-q {
        font-size: 1.1rem
    }

    .ans-btn {
        padding: .85rem 1rem;
        font-size: .88rem
    }

    .result-screen h2 {
        font-size: 1.35rem
    }

    .cf-row input {
        padding: .75rem .9rem
    }
}