/* ==========================================================================
   Langmaster Careers — Homepage sections (pure CSS)
   Relies on :root variables + .shell from shell.css
   ========================================================================== */

.home-section {
    font-family: var(--font-shell);
    color: var(--ink);
}

/* --------------------------------------------------------------------------
   JOBS SECTION
   -------------------------------------------------------------------------- */
.jobs-section {
    position: relative;
    padding: 64px 0 80px;
}

/* Heading */
.jobs-heading {
    margin: 0 0 40px;
    text-align: center;
    line-height: 1.28;
    text-transform: uppercase;
    font-weight: 800;
    font-size: clamp(26px, 4vw, 40px);
}

.jobs-heading__line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.jobs-heading__line,
.jobs-heading__gtext {
    padding-top: .08em;
    background: linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.jobs-heading__arrow {
    flex: 0 0 auto;
    height: .8em;
    width: auto;
    object-fit: contain;
}

/* Category chips */
.jobs-cats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 44px;
}

.jobs-cat {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 71px;
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(117deg, #DB1F1F -0.4%, rgba(157, 11, 15, 0) 42%) border-box;
    box-shadow: 3px 4px 30px 0 rgba(58, 22, 22, .1);
    color: #505050;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
}

.jobs-cat:hover {
    transform: translateY(-3px);
    box-shadow: 6px 8px 34px 0 rgba(219, 31, 31, .18);
    color: var(--brand);
}

.jobs-cat.is-active {
    background:
        linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%) padding-box,
        linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%) border-box;
    color: #fff;
    box-shadow: 0 8px 20px rgba(219, 31, 31, .3);
}

/* Job grid */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 594px));
    justify-content: center;
    gap: 28px;
}

.job-card {
    display: flex;
    flex-direction: column;
    min-height: 274px;
    background: #fff;
    border-radius: 21px;
    padding: 30px 38px 28px;
    box-shadow: 0 4px 12.7px 4px rgba(126, 126, 126, .25);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.job-card.is-hidden { display: none; }

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px 4px rgba(126, 126, 126, .3);
}

.job-card__badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 165px;
    height: 50px;
    padding: 0 22px;
    margin-bottom: 22px;
    border-radius: 10px;
    background: rgba(219, 31, 31, .1);
    font-size: 22px;
    font-weight: 800;
    text-transform: capitalize;
    line-height: 1;
    background-clip: padding-box;
}

.job-card__badge span {
    background: linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.job-card__title {
    margin: 0 0 21px;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.4;
}

.job-card__title a {
    color: #272727;
    text-decoration: none;
    transition: color .2s var(--ease);
}

.job-card__title a:hover { color: var(--brand); }

.job-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 28px;
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.job-card__meta li {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 20px;
    font-weight: 500;
    color: #505050;
}

.job-card__meta i { color: var(--brand); font-size: 16px; }

.job-card__divider {
    height: 0;
    margin: 0 0 16px;
    border: 0;
    border-top: 1px solid #d8d8d8;
}

.job-card__foot {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    margin-top: auto;
}

.job-card__fav {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ead9d9;
    border-radius: 50%;
    background: #fff;
    color: var(--brand);
    font-size: 16px;
    cursor: pointer;
    transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}

.job-card__fav:hover { background: var(--brand-soft); transform: scale(1.06); }
.job-card__fav.is-active { background: var(--brand); color: #fff; }
.job-card__fav.is-active i { font-weight: 900; }

.job-card__apply {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    height: 40px;
    padding: 0 20px;
    border-radius: var(--radius-pill);
    background: linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 6px 14px rgba(219, 31, 31, .28);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), filter .2s var(--ease);
}

.job-card__apply:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 10px 20px rgba(219, 31, 31, .36);
}

/* Empty state */
.jobs-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 0;
    color: var(--muted);
    font-size: 16px;
}

/* See all */
.jobs-more { text-align: center; margin-top: 44px; }

.btn-seeall {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 421px;
    max-width: 100%;
    height: 54px;
    padding: 0 28px;
    border-radius: 100px;
    background: linear-gradient(180deg, #FDDA35 36.06%, #FE9C2B 100%);
    border: 5px solid #fff;
    color: #DB1F1F;
    font-family: "SVN-Gilroy", var(--font-shell);
    font-size: 24px;
    line-height: 23px;
    font-weight: 700;
    letter-spacing: .3px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), filter .2s var(--ease);
}

.btn-seeall:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow: 0 8px 14px 0 rgba(0, 0, 0, .28);
}

/* --------------------------------------------------------------------------
   SECTION HEAD (shared)
   -------------------------------------------------------------------------- */
.section-head {
    text-align: center;
    margin-bottom: 56px;
}

.section-head__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 0 10px;
    color: var(--brand);
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.section-head__arrow {
    flex: 0 0 auto;
    height: .7em;
    width: auto;
    object-fit: contain;
}

.section-head__title {
    margin: 0 0 14px;
    font-size: clamp(24px, 3.4vw, 40px);
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
    background: linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.section-head__sub {
    margin: 0 auto;
    max-width: 640px;
    color: #6b7280;
    font-size: 22px;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   WHY SECTION (5 reasons)
   -------------------------------------------------------------------------- */
.why-section {
    padding: 64px 0 80px;
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 64px 30px;
}

.why-card {
    position: relative;
    width: 390px;
    max-width: 100%;
    margin-top: 75px;
    padding: 92px 28px 32px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 26px rgba(58, 22, 22, .1);
    text-align: center;
}

.why-card::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    transform: translateX(-50%);
    width: 186px;
    height: 14px;
    border-radius: 8px;
    background: linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%);
    z-index: -1;
}

.why-card__icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
}

.why-card__icon-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-card__icon-glyph {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.why-card__title {
    margin: 0 0 14px;
    padding-top: .08em;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.why-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.why-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.45;
    color: #505050;
}

.why-card__list li + li { margin-top: 20px; }

.why-card__list i {
    margin-top: 4px;
    color: var(--brand);
    font-size: 16px;
    flex: 0 0 auto;
}

/* --------------------------------------------------------------------------
   CULTURE SECTION (monitor + video)
   -------------------------------------------------------------------------- */
.culture-section {
    padding: 56px 0 72px;
}

.culture {
    display: grid;
    grid-template-columns: minmax(0, 800px) minmax(340px, 1fr);
    align-items: center;
}

/* Monitor mockup: device frame image with the video positioned over the screen.
   Tune --screen-* to match your monitor.png screen cutout. */
.culture__monitor {
    position: relative;
    width: 1196px;
    max-width: 100%;
    aspect-ratio: 818 / 650;
    /* khớp vùng màn hình đen của khung iMac (đo từ monitor.png 818x650) */
    --screen-top: 3%;
    --screen-left: 9%;
    --screen-width: 82%;
    --screen-height: 61%;
}

.culture__frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.culture__screen {
    position: absolute;
    top: var(--screen-top);
    left: var(--screen-left);
    width: var(--screen-width);
    height: var(--screen-height);
    overflow: hidden;
    background: #000;
}

.culture__poster,
.culture__screen iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.culture__screen.js-yt { cursor: pointer; }

.culture__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    padding-left: 5px;
    border: 0;
    border-radius: 50%;
    background: rgba(219, 31, 31, .92);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .35);
    transition: transform .2s var(--ease), background .2s var(--ease);
}

.culture__screen:hover .culture__play {
    transform: translate(-50%, -50%) scale(1.08);
    background: var(--brand);
}

.culture__content { max-width: 460px; }

.culture__title {
    margin: 0 0 18px;
    padding-top: .06em;
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
    background: linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.culture__sub {
    margin: 0 0 28px;
    font-size: 18px;
    line-height: 1.6;
    color: #505050;
}

.btn-culture {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 54px;
    padding: 0 30px;
    border-radius: var(--radius-pill);
    background: linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(219, 31, 31, .32);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), filter .2s var(--ease);
}

.btn-culture i { font-size: 12px; }

.btn-culture:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 12px 26px rgba(219, 31, 31, .4);
}

/* --------------------------------------------------------------------------
   STATS SECTION (background band)
   -------------------------------------------------------------------------- */
.stats-section {
    position: relative;
}

.stats-section__bg {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1784 / 454;
}

.stats {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px 0;
    text-align: center;
}

.stat {
    flex: 1 1 0;
    min-width: 0;
    padding: 6px 16px;
}

.stat__num {
    font-family: "SVN-Gilroy", var(--font-shell);
    font-weight: 700;
    font-size: clamp(40px, 7.5vw, 96px);
    line-height: 1;
    white-space: nowrap;
    background: linear-gradient(180deg, #FDDA35 36.06%, #FE9C2B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.stat__label {
    margin-top: 10px;
    font-family: "SVN-Gilroy", var(--font-shell);
    font-weight: 500;
    font-size: clamp(15px, 1.6vw, 22px);
    line-height: 1.3;
    color: #fff;
}

/* --------------------------------------------------------------------------
   ROADMAP SECTION
   -------------------------------------------------------------------------- */
.roadmap-section {
    padding: 64px 0 80px;
}

.roadmap-head { margin-bottom: 36px; }

.roadmap-title {
    margin: 0;
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
    color: #2b2b2b;
}

/* Tabs */
.roadmap-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-bottom: 52px;
}

.roadmap-tab {
    min-width: 200px;
    padding: 16px 24px;
    border: 1px solid #ececec;
    border-radius: 12px;
    background: #fff;
    color: #3a3a3a;
    font-family: var(--font-shell);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(58, 22, 22, .06);
    transition: all .2s var(--ease);
}

.roadmap-tab:hover { color: var(--brand); border-color: #f4c9c9; }

.roadmap-tab.is-active {
    background: linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 20px rgba(219, 31, 31, .28);
}

/* Track */
.roadmap-track {
    display: flex;
    align-items: flex-start;
    margin-bottom: 56px;
}

.roadmap-step {
    position: relative;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 4px;
}

.roadmap-step__icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%);
    color: #fff;
    font-size: 24px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 16px rgba(219, 31, 31, .25);
}

.roadmap-step__icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* dashed connector + gold dot to the next step */
.roadmap-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 31px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    border-top: 2px dashed #efc98f;
}

.roadmap-step:not(:last-child)::before {
    content: "\f054"; /* chevron-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
    color: #9D0B0F;
    display: grid;
    place-items: center;
    position: absolute;
    top: 21px;
    left: 100%;
    transform: translateX(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(180deg, #FDDA35 0%, #FE9C2B 100%);
    z-index: 2;
}

.roadmap-step__title {
    margin-top: 14px;
    font-size: 15px;
    font-weight: 700;
    color: var(--brand);
    text-transform: uppercase;
}

.roadmap-step__time {
    margin-top: 4px;
    font-size: 13px;
    color: #8a8f98;
}

/* Coach card */
.coach-card {
    position: relative;
    margin-left: 117px;
    padding: 28px 40px 28px 165px;
    background: #fff;
    border: 1px solid #f3e4e4;
    border-radius: 18px;
    box-shadow: 0 10px 34px rgba(58, 22, 22, .1);
}

.coach-card__avatar {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 235px;
    height: 235px;
}

.coach-card__avatar-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
}

.coach-card__avatar-photo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 86%;
    height: 86%;
    object-fit: cover;
    border-radius: 50%;
}

.coach-card__body { flex: 1 1 auto; min-width: 0; }

.coach-card__name {
    margin: 0 0 14px;
    font-size: 19px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--brand);
}

.coach-card__points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 32px;
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
}

.coach-card__points li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 14.5px;
    line-height: 1.45;
    color: #41464f;
}

.coach-card__points i {
    font-size: 14px;
    margin-top: 3px;
    flex: 0 0 auto;
    background: linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.coach-card__path {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 4px;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(219, 31, 31, .1);
}

.coach-card__node {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    background: linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.coach-card__node:not(:last-child)::after {
    content: "\f054"; /* chevron-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 9px;
    color: #9D0B0F;
    -webkit-text-fill-color: #9D0B0F;
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    margin: 0 14px;
    border-radius: 50%;
    background: linear-gradient(180deg, #FDDA35 0%, #FE9C2B 100%);
}

.coach-card__node.is-current { font-weight: 800; }

/* --------------------------------------------------------------------------
   COMMUNITY SECTION (testimonials + press) — red background
   -------------------------------------------------------------------------- */
.community-section {
    background: linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%);
    padding: 64px 0 72px;
    color: #fff;
}

.community-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 0 48px;
    text-align: center;
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.3;
}

.community-head__arrow { flex: 0 0 auto; height: .62em; width: auto; }

.press-head { margin-top: 72px; }

/* Testimonial cards */
.proud-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.proud-card {
    position: relative;
    margin-top: 44px;
    padding: 56px 28px 28px;
    background: #fff;
    border-radius: 18px;
    text-align: center;
    color: #41464f;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
}

.proud-card__avatar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(180deg, #FDDA35 0%, #FE9C2B 100%);
}

.proud-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
}

.proud-card__name {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 800;
    color: var(--brand);
}

.proud-card__role {
    margin: 0 0 14px;
    font-size: 13px;
    font-style: italic;
    color: #8a8f98;
}

.proud-card__quote {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
}

.proud-more { text-align: center; }

.btn-story {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 50px;
    padding: 0 30px;
    border-radius: var(--radius-pill);
    background: linear-gradient(180deg, #FDDA35 0%, #FE9C2B 100%);
    color: #9D0B0F;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .22);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), filter .2s var(--ease);
}

.btn-story i { font-size: 11px; }
.btn-story:hover { transform: translateY(-2px); filter: brightness(1.04); }

/* Press carousel */
.press-carousel {
    position: relative;
    padding: 0 6px;
}

.press-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.press-track::-webkit-scrollbar { display: none; }

.press-card {
    flex: 0 0 calc((100% - 48px) / 3);
    scroll-snap-align: start;
}

.press-card__media {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: rgba(0, 0, 0, .15);
}

.press-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.press-card__caption {
    margin: 14px 4px 0;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
}

.press-nav {
    position: absolute;
    top: calc((100% - 0px) / 2);
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(180deg, #FDDA35 0%, #FE9C2B 100%);
    color: #9D0B0F;
    font-size: 16px;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .25);
    transition: transform .2s var(--ease), filter .2s var(--ease);
}

.press-nav--prev { left: -10px; }
.press-nav--next { right: -10px; }
.press-nav:hover { filter: brightness(1.05); transform: translateY(-50%) scale(1.08); }

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
    .jobs-cats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .jobs-cat { min-height: 60px; font-size: 17px; }
    .jobs-grid { grid-template-columns: 1fr; gap: 20px; }
    .jobs-heading { gap: 12px; }

    .culture { grid-template-columns: 1fr; gap: 32px; }
    .culture__content { max-width: none; text-align: center; margin: 0 auto; }
    .btn-culture { margin: 0 auto; }

    .roadmap-track { overflow-x: auto; padding-bottom: 10px; scrollbar-width: thin; }
    .roadmap-step { flex: 0 0 140px; }
    .roadmap-step:not(:last-child)::after { left: calc(50% + 36px); width: calc(100% - 72px); }
    .coach-card { margin-left: 0; padding: 150px 22px 28px; text-align: center; }
    .coach-card__avatar { left: 50%; top: 16px; transform: translateX(-50%); width: 150px; height: 150px; }
    .coach-card__points { grid-template-columns: 1fr; text-align: left; }
    .coach-card__path { justify-content: center; }

    .proud-grid { grid-template-columns: 1fr; }
    .press-card { flex-basis: calc((100% - 24px) / 2); }
    .press-head { margin-top: 56px; }
}

@media (max-width: 600px) {
    .stats { gap: 22px 0; }
    .stat { flex-basis: 45%; }
}

@media (max-width: 600px) {
    .press-card { flex-basis: 86%; }
}

@media (max-width: 480px) {
    .jobs-section { padding: 44px 0 56px; }
    .jobs-cats { grid-template-columns: 1fr 1fr; gap: 12px; }
    .jobs-cat { font-size: 15px; min-height: 54px; padding: 8px 10px; }
    .job-card { padding: 20px; }
    .job-card__foot { flex-wrap: wrap; justify-content: space-between; }
    .btn-seeall { min-width: 0; width: 100%; font-size: 16px; }
}
