  :root {
            --red: #e5373f;
            --dark: #1a1a1a;
            --light: #f8f8f8;
            --text: #555;
            --border: #e5e5e5;
            --white: #fff;
        }

/* ── Join page hero: ju.png full-cover background, two-column layout ── */
.join-us-page .development-hero.join-hero-bg {
    --join-hero-image: url(../images/contact/ju-hero-1600.webp);
    min-height: 100vh;
    padding: 0;
    background:
        linear-gradient(124deg, rgba(8, 12, 15, 0.80) 0%, rgba(8, 12, 15, 0.54) 50%, rgba(8, 12, 15, 0.20) 100%),
        var(--join-hero-image, url(../images/contact/ju-hero-1600.webp)) center center / cover no-repeat;
    background-color: #0d1012;
}

.join-us-page .development-hero.join-hero-bg::before,
.join-us-page .development-hero.join-hero-bg::after {
    display: none;
}

/* Grid texture overlay (reused from .join-hero__grid) */
.join-us-page .join-hero-bg .join-hero__grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

/* Bottom vignette */
.join-us-page .join-hero-bg .join-hero__fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 260px;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent, rgba(8, 8, 8, 0.55));
}

.join-us-page .join-hero-bg .development-hero__container {
    position: relative;
    z-index: 2;
    width: min(var(--rn-width1, 1400px), calc(100% - 48px));
    max-width: 1320px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-inline: auto;
}

.join-us-page .join-hero-bg .development-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: clamp(40px, 6vw, 100px);
    width: 100%;
}

/* ── Left content ── */
.join-us-page .join-hero-bg .development-hero__content {
    max-width: 580px;
    text-align: left;
    margin-top: 25px;
}

.join-us-page .join-hero-bg .development-hero__eyebrow {
    justify-content: flex-start;
    color: var(--dev-red);
}

.join-us-page .join-hero-bg .expertise-hero__title {
    max-width: 540px;
    margin: 0;
    text-align: left;
    font-size: clamp(2.6rem, 4vw, 4.4rem);
    line-height: 1.08;
}

.join-us-page .join-hero-bg .development-hero__intro {
    max-width: 500px;
    margin: 20px 0 0;
    text-align: left;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.72;
}

.join-us-page .join-hero-bg .development-hero__actions {
    justify-content: flex-start;
    margin-top: 32px;
}

/* ── Right: glass stats panel ── */
.join-us-page .join-hero__right-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 2;
}

.join-us-page .join-hero__stats-panel {
    width: min(100%, 280px);
    padding: 32px 36px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 28px 72px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.join-us-page .join-hero__stats-panel-label {
    font-family: "PoppinsSemiBold", sans-serif;
    font-size: 10px;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: rgba(105, 193, 189, 0.82);
    margin-bottom: 24px;
}

.join-us-page .join-hero__stat-item {
    display: flex;
    flex-direction: column;
    padding: 18px 0;
}

.join-us-page .join-hero__stat-item strong {
    font-family: "PoppinsBold", sans-serif;
    font-size: clamp(30px, 3.2vw, 44px);
    color: #fff;
    line-height: 1;
}

.join-us-page .join-hero__stat-item strong span {
    font-size: 0.55em;
    color: rgba(229, 55, 63, 0.9);
    vertical-align: super;
    margin-left: 2px;
}

.join-us-page .join-hero__stat-item > span {
    font-family: "PoppinsRegular", sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.48);
    margin-top: 5px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.join-us-page .join-hero__stat-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.10);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .join-us-page .join-hero-bg .development-hero__layout {
        gap: clamp(32px, 4vw, 64px);
    }
}

@media (max-width: 900px) {
    .join-us-page .join-hero-bg .development-hero__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .join-us-page .join-hero__right-visual {
        justify-content: flex-start;
    }

    .join-us-page .join-hero__stats-panel {
        width: 100%;
        max-width: 480px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
        padding: 24px 28px;
    }

    .join-us-page .join-hero__stats-panel-label {
        width: 100%;
        margin-bottom: 16px;
    }

    .join-us-page .join-hero__stat-item {
        flex: 1 1 120px;
        padding: 12px 16px;
    }

    .join-us-page .join-hero__stat-divider {
        display: none;
    }

    .join-us-page .development-hero.join-hero-bg {
        min-height: auto;
        padding-bottom: 80px;
    }
}

@media (max-width: 640px) {
    .join-us-page .join-hero-bg .development-hero__container {
        width: calc(100% - 32px);
        /* padding: 120px 0 60px; */
        min-height: auto;
        align-items: flex-start;
    }

    .join-us-page .join-hero-bg .expertise-hero__title {
        font-size: clamp(2.2rem, 9vw, 3rem);
    }

    .join-us-page .join-hero__stats-panel {
        padding: 20px;
    }

    .join-us-page .join-hero__stat-item {
        padding: 10px 12px;
    }
}

/* =====================================================
   JOIN US HERO – ju.png full-cover background
   Layers (top → bottom):
     1. bokeh radial colour accents
     2. dark gradient overlay for readability
     3. ju.png photo as base
   ===================================================== */
.join-us-page .join-hero {
    --join-hero-image: url('../images/contact/ju-hero-1600.webp');
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* 1 – colour accents on top */
    background-image:
        radial-gradient(circle at 16% 12%, rgba(229, 55, 63, 0.22) 0%, transparent 36%),
        radial-gradient(circle at 84% 20%, rgba(105, 193, 189, 0.24) 0%, transparent 38%),
        radial-gradient(circle at 50% 92%, rgba(105, 193, 189, 0.14) 0%, transparent 42%),
        /* 2 – dark overlay so text stays legible */
        linear-gradient(148deg, rgba(10, 6, 8, 0.82) 0%, rgba(6, 6, 6, 0.72) 42%, rgba(2, 12, 10, 0.80) 100%),
        /* 3 – photo */
        var(--join-hero-image, url('../images/contact/ju-hero-1600.webp'));
    background-size:
        auto, auto, auto,
        100% 100%,
        cover;
    background-position:
        center, center, center,
        center, center;
    background-repeat: no-repeat;
    background-color: #0a0608;
    color: #fff;
    text-align: center;
    padding: 120px 24px 88px;
    padding-top: 22px;
}

@media (max-width: 700px) {
    .join-us-page .development-hero.join-hero-bg,
    .join-us-page .join-hero {
        --join-hero-image: url('../images/contact/ju-hero-900.webp');
    }
}

/* Subtle grid overlay */
.join-us-page .join-hero__grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 80%, transparent 100%);
}

/* Bottom vignette */
.join-us-page .join-hero__fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 240px;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent, rgba(8, 8, 8, 0.6));
}

/* Large glow orbs — creates the bokeh atmosphere */
.join-us-page .join-hero__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.join-us-page .join-hero__orb--1 {
    width: clamp(280px, 36vw, 580px);
    height: clamp(280px, 36vw, 580px);
    top: -20%;
    left: -10%;
    background: rgba(229, 55, 63, 0.22);
    filter: blur(115px);
    animation: join-orb-drift 16s ease-in-out infinite alternate;
}

.join-us-page .join-hero__orb--2 {
    width: clamp(240px, 30vw, 500px);
    height: clamp(240px, 30vw, 500px);
    top: 6%;
    right: -12%;
    background: rgba(105, 193, 189, 0.28);
    filter: blur(100px);
    animation: join-orb-drift 12s ease-in-out infinite alternate-reverse;
}

.join-us-page .join-hero__orb--3 {
    width: clamp(200px, 26vw, 400px);
    height: clamp(200px, 26vw, 400px);
    bottom: -14%;
    left: 14%;
    background: rgba(105, 193, 189, 0.16);
    filter: blur(90px);
    animation: join-orb-drift 14s ease-in-out infinite alternate;
    animation-delay: -5s;
}

.join-us-page .join-hero__orb--4 {
    width: clamp(160px, 20vw, 320px);
    height: clamp(160px, 20vw, 320px);
    bottom: 18%;
    right: 5%;
    background: rgba(229, 55, 63, 0.20);
    filter: blur(80px);
    animation: join-orb-drift 10s ease-in-out infinite alternate-reverse;
    animation-delay: -3s;
}

.join-us-page .join-hero__orb--5 {
    width: clamp(120px, 16vw, 240px);
    height: clamp(120px, 16vw, 240px);
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(105, 193, 189, 0.10);
    filter: blur(55px);
    animation: join-orb-pulse 8s ease-in-out infinite;
}

/* Small floating dots — mimics bokeh light points from the photo */
.join-us-page .join-hero__dots {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.join-us-page .join-hero__dots span {
    position: absolute;
    border-radius: 50%;
    animation: join-dot-float 10s ease-in-out infinite;
}

.join-us-page .join-hero__dots span:nth-child(1)  { width: 14px; height: 14px; top: 11%; left: 17%;  background: rgba(105,193,189,0.60); filter: blur(6px);  animation-duration: 8s; }
.join-us-page .join-hero__dots span:nth-child(2)  { width:  9px; height:  9px; top: 21%; left: 79%;  background: rgba(229, 55, 63,0.55); filter: blur(4px);  animation-duration: 11s; animation-delay: -2s; }
.join-us-page .join-hero__dots span:nth-child(3)  { width: 19px; height: 19px; top: 67%; left:  9%;  background: rgba(105,193,189,0.44); filter: blur(8px);  animation-duration: 9s;  animation-delay: -4s; }
.join-us-page .join-hero__dots span:nth-child(4)  { width: 11px; height: 11px; top: 55%; right: 13%; background: rgba(229, 55, 63,0.50); filter: blur(5px);  animation-duration: 13s; animation-delay: -6s; }
.join-us-page .join-hero__dots span:nth-child(5)  { width:  7px; height:  7px; top: 37%; left:  6%;  background: rgba(255,255,255,0.35); filter: blur(3px);  animation-duration: 7s;  animation-delay: -1s; }
.join-us-page .join-hero__dots span:nth-child(6)  { width: 16px; height: 16px; top: 79%; left: 63%;  background: rgba(105,193,189,0.40); filter: blur(7px);  animation-duration: 10s; animation-delay: -5s; }
.join-us-page .join-hero__dots span:nth-child(7)  { width: 10px; height: 10px; top: 28%; right: 29%; background: rgba(229, 55, 63,0.45); filter: blur(4px);  animation-duration: 12s; animation-delay: -3s; }
.join-us-page .join-hero__dots span:nth-child(8)  { width: 12px; height: 12px; top: 85%; left: 36%;  background: rgba(255,255,255,0.28); filter: blur(5px);  animation-duration: 6s;  animation-delay: -7s; }

/* Content wrapper */
.join-us-page .join-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
}

/* Eyebrow label with flanking rules */
.join-us-page .join-hero__eyebrow-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
}

.join-us-page .join-hero__rule {
    display: block;
    width: 48px;
    height: 1px;
    background: rgba(255, 255, 255, 0.26);
}

.join-us-page .join-hero__label {
    font-family: "PoppinsSemiBold", sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(105, 193, 189, 0.88);
}

/* ── HERO TITLE ─────────────────────────────────────
   Two stacked words. Each gets a multi-stop gradient
   that simulates the specular highlights of 3D metal,
   using ATIRAO's teal and red as the colour accents.
   ─────────────────────────────────────────────────── */
.join-us-page .join-hero__title {
    margin: 0 0 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    line-height: 0.86;
    letter-spacing: -0.04em;
    font-family: "PoppinsBold", sans-serif;
    user-select: none;
}

.join-us-page .join-hero__word {
    display: block;
}

/* "JOIN" — teal-dominated metallic shimmer */
.join-us-page .join-hero__word--join {
    font-size: clamp(5.5rem, 17vw, 18rem);
    background: linear-gradient(
        148deg,
        #8aa2b0  0%,
        #d0e6ef 14%,
        #ffffff 26%,
        #69c1bd 38%,
        #b8e4e2 50%,
        #ffffff 60%,
        #c8dbe6 74%,
        #9ab4c2 88%,
        #c4d8e4 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 6px 52px rgba(105, 193, 189, 0.30));
}

/* "US" — red-dominated metallic shimmer */
.join-us-page .join-hero__word--us {
    font-size: clamp(5.5rem, 17vw, 18rem);
    background: linear-gradient(
        148deg,
        #8898a8  0%,
        #ccd8e2 12%,
        #ffffff 24%,
        #e53740 36%,
        #ff9296 50%,
        #ffffff 62%,
        #69c1bd 74%,
        #b6e2e0 84%,
        #8898a8 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 6px 52px rgba(229, 55, 63, 0.28));
}

/* Description */
.join-us-page .join-hero__desc {
    font-family: "PoppinsRegular", sans-serif;
    font-size: clamp(15px, 1.8vw, 18px);
    color: rgba(255, 255, 255, 0.58);
    max-width: 500px;
    line-height: 1.74;
    margin: 10px 0 44px;
}

/* CTA row */
.join-us-page .join-hero__ctas {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 68px;
}

.join-us-page .join-hero__cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    background: #e53740;
    color: #fff;
    font-family: "PoppinsSemiBold", sans-serif;
    font-size: 15px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
    box-shadow: 0 8px 32px rgba(229, 55, 63, 0.40);
}

.join-us-page .join-hero__cta-primary svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

.join-us-page .join-hero__cta-primary:hover {
    background: #c92d35;
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(229, 55, 63, 0.52);
}

.join-us-page .join-hero__cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 34px;
    background: transparent;
    color: rgba(255, 255, 255, 0.80);
    font-family: "PoppinsSemiBold", sans-serif;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 8px;
    text-decoration: none;
    transition: border-color 0.22s, background 0.22s, color 0.22s;
}

.join-us-page .join-hero__cta-ghost:hover {
    border-color: rgba(105, 193, 189, 0.60);
    background: rgba(105, 193, 189, 0.10);
    color: #fff;
}

/* Stats glass pill */
.join-us-page .join-hero__stats {
    display: flex;
    align-items: center;
    padding: 22px 48px;
    background: rgba(255, 255, 255, 0.052);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 20px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.join-us-page .join-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 36px;
}

.join-us-page .join-hero__stat strong {
    font-family: "PoppinsBold", sans-serif;
    font-size: clamp(22px, 2.8vw, 32px);
    color: #fff;
    line-height: 1.1;
}

.join-us-page .join-hero__stat span {
    font-family: "PoppinsRegular", sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.46);
    margin-top: 5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.join-us-page .join-hero__divider {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.11);
    flex-shrink: 0;
}

/* Mouse-wheel scroll indicator */
.join-us-page .join-hero__scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.join-us-page .join-hero__scroll-hint span {
    display: block;
    width: 24px;
    height: 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    position: relative;
}

.join-us-page .join-hero__scroll-hint span::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.46);
    border-radius: 2px;
    animation: join-scroll-bounce 2s ease-in-out infinite;
}

/* Keyframes */
@keyframes join-orb-drift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(26px, -18px) scale(1.08); }
}

@keyframes join-orb-pulse {
    0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
    50%       { opacity: 0.82; transform: translate(-50%, -50%) scale(1.18); }
}

@keyframes join-dot-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-20px); }
}

@keyframes join-scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    60%       { transform: translateX(-50%) translateY(13px); opacity: 0.25; }
}

/* Responsive — hero */
@media (max-width: 900px) {
    .join-us-page .join-hero {
        padding: 108px 20px 72px;
    }
    .join-us-page .join-hero__stats {
        padding: 20px 24px;
    }
    .join-us-page .join-hero__stat {
        padding: 0 20px;
    }
}

@media (max-width: 640px) {
    .join-us-page .join-hero {
        padding: 96px 16px 64px;
    }
    .join-us-page .join-hero__ctas {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
    .join-us-page .join-hero__cta-primary,
    .join-us-page .join-hero__cta-ghost {
        width: 100%;
        justify-content: center;
    }
    .join-us-page .join-hero__stats {
        flex-wrap: wrap;
        gap: 8px 0;
        padding: 18px 20px;
        justify-content: center;
    }
    .join-us-page .join-hero__stat {
        padding: 8px 20px;
    }
    .join-us-page .join-hero__divider {
        display: none;
    }
    .join-us-page .join-hero__scroll-hint {
        display: none;
    }
}

        /* ===== VALUES SECTION - METHODOLOGY INSPIRED ===== */
        .join-us-page .join-values-section.containerW,
        .join-us-page .join-values-section.containerW.is-visible {
            position: relative;
            isolation: isolate;
            width: 100%;
            margin: 0;
            padding: 96px 20px;
            overflow: hidden;
            background:
                linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
                radial-gradient(70% 64% at 78% 24%, rgba(229, 55, 63, 0.18) 0%, rgba(229, 55, 63, 0) 62%),
                #080808;
            background-size: 58px 58px, 58px 58px, auto, auto;
            color: #fff;
            opacity: 1;
            transform: none;
            animation: none;
            box-sizing: border-box;
        }

        .join-us-page .join-values-section::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -1;
            pointer-events: none;
            background: linear-gradient(180deg, rgba(8, 8, 8, 0), rgba(8, 8, 8, 0.88));
        }

        .join-us-page .join-values-section .expertisesSection {
            width: min(1180px, 100%);
            margin: 0 auto 52px;
            text-align: left;
        }

        .join-us-page .join-values-section .section-subtitle,
        .join-us-page .join-offers-section .section-subtitle,
        .join-us-page .join-application-section .section-subtitle {
            width: fit-content;
            margin: 0 0 16px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.64) !important;
        }

        .join-us-page .join-values-section .section-subtitle::before,
        .join-us-page .join-offers-section .section-subtitle::before,
        .join-us-page .join-application-section .section-subtitle::before {
            content: "";
            width: 36px;
            height: 2px;
            border-radius: 999px;
            background: var(--red);
        }

        .join-us-page .join-offers-section .section-subtitle,
        .join-us-page .join-application-section .section-subtitle {
            color: rgba(26, 26, 26, 0.64) !important;
        }

        .join-us-page .join-values-section .section-title {
            max-width: 760px;
            margin: 0;
            color: #fff;
            letter-spacing: -0.035em;
        }

        .join-us-page .join-values-section .valeurs-section {
            width: min(1180px, 100%);
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
            gap: 34px;
            align-items: start;
        }

        .join-us-page .join-values-section .valeurs-gauche {
            counter-reset: value-step;
            display: grid;
            gap: 10px;
        }

        .join-us-page .join-values-section .valeurs-row {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
        }

        .join-us-page .join-values-section .valeur-box {
            counter-increment: value-step;
            position: relative;
            min-height: 72px;
            padding: 14px 16px 14px 58px;
            display: flex;
            align-items: center;
            gap: 12px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.055);
            color: rgba(255, 255, 255, 0.86);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
            cursor: pointer;
            overflow: hidden;
            transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
        }

        .join-us-page .join-values-section .valeur-box::before {
            content: counter(value-step, decimal-leading-zero);
            position: absolute;
            top: 50%;
            left: 16px;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.24);
            font-family: "PoppinsBold";
            font-size: 12px;
            letter-spacing: 0.08em;
        }

        .join-us-page .join-values-section .valeur-box::after {
            content: "";
            position: absolute;
            inset: auto 0 0 0;
            height: 3px;
            background: var(--red);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.25s ease;
        }

        .join-us-page .join-values-section .valeur-box:hover,
        .join-us-page .join-values-section .valeur-box.active {
            border-color: rgba(229, 55, 63, 0.72);
            background: rgba(229, 55, 63, 0.14);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 14px 42px rgba(0, 0, 0, 0.22);
        }

        .join-us-page .join-values-section .valeur-box:hover::after,
        .join-us-page .join-values-section .valeur-box.active::after {
            transform: scaleX(1);
        }

        .join-us-page .join-values-section .valeur-icon {
            width: 34px;
            height: 34px;
            min-width: 34px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.08);
            flex: 0 0 34px;
        }

        .join-us-page .join-values-section .valeur-icon svg {
            width: 20px !important;
            height: 20px !important;
            min-width: 20px;
            max-width: 20px;
            display: block;
            flex: 0 0 20px;
        }

        .join-us-page .join-values-section .valeur-icon path,
        .join-us-page .join-values-section .valeur-icon .cls-1 {
            fill: currentColor !important;
        }

        .join-us-page .join-values-section .valeurs-droite {
            position: sticky;
            top: 118px;
            display: none;
            min-height: 494px;
            padding: 34px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(16px);
        }

        .join-us-page .join-values-section .valeurs-droite.active {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .join-us-page .join-values-section .valeurs-titre {
            margin-bottom: 12px;
            color: #fff;
            font-family: "PoppinsBold";
            font-size: clamp(30px, 4vw, 54px);
            line-height: 1.02;
            letter-spacing: -0.035em;
        }

        .join-us-page .join-values-section .valeurs-soustitre {
            margin-bottom: 20px;
            color: #ff6a6f;
            font-family: "PoppinsSemiBold";
            font-size: 16px;
        }

        .join-us-page .join-values-section .valeurs-texte {
            margin-bottom: 28px;
            color: rgba(255, 255, 255, 0.72);
            font-size: 15px;
            line-height: 1.85;
        }

        .join-us-page .join-values-section .btn-box {
            justify-content: flex-start;
        }

        .join-us-page .join-values-section .mobile-content-overlay {
            display: none;
        }

        /* Keep the recruitment page visible without depending on the legacy
           IntersectionObserver reveal animation. */
        .join-us-page .containerW,
        .join-us-page .containerW.is-visible {
            opacity: 1;
            transform: none;
            animation: none;
        }

        .join-us-page .containerB.topsection {
            padding: 0;
        }

        /* ===== RECRUITMENT HERO ===== */
        /* .join-us-page .containerB.topsection.development-hero {
            margin-bottom: 40px;
        } */

        .join-us-page .development-hero__container {
            width: min(calc(100% - 64px), 1510px);
        }

        .join-us-page .development-hero__visual--compact {
            padding-top: 0;
        }

        .join-us-page .join-hero-visual {
            position: relative;
            width: min(100%, 620px);
            min-height: 500px;
            margin-inline: auto;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.22);
            border-radius: 24px;
            background:
                linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
                #0d0f12;
            box-shadow: 0 34px 80px rgba(0, 0, 0, 0.52);
            animation: development-window-float 7s ease-in-out infinite;
        }

        .join-us-page .join-hero-visual::before {
            content: "";
            position: absolute;
            inset: 18px;
            z-index: 2;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 18px;
            pointer-events: none;
        }

        .join-us-page .join-hero-visual::after {
            content: "";
            position: absolute;
            inset: auto -20% -28% 18%;
            z-index: 1;
            height: 46%;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(98, 201, 193, 0.28), transparent 68%);
            filter: blur(28px);
            pointer-events: none;
        }

        .join-us-page .join-hero-visual img {
            position: relative;
            z-index: 1;
            display: block;
            width: 100%;
            height: 100%;
            min-height: 500px;
            object-fit: cover;
        }

        .join-us-page .join-hero-visual__badge {
            position: absolute;
            z-index: 3;
            display: grid;
            gap: 4px;
            min-width: 132px;
            padding: 14px 16px;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 14px;
            background: rgba(8, 10, 12, 0.76);
            box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(12px);
        }

        .join-us-page .join-hero-visual__badge strong {
            color: var(--dev-teal);
            font-family: "PoppinsBold", "Poppins", Arial, sans-serif;
            font-size: 18px;
            line-height: 1;
        }

        .join-us-page .join-hero-visual__badge span {
            color: #c8ced8;
            font-size: 12px;
            line-height: 1.25;
        }

        .join-us-page .join-hero-visual__badge--top {
            top: 42px;
            right: 34px;
        }

        .join-us-page .join-hero-visual__badge--bottom {
            left: 34px;
            bottom: 42px;
        }

        .join-us-page .containerB.topsection .topSection {
            width: min(1180px, calc(100% - 48px));
            height: auto;
            min-height: 560px;
            margin: 0 auto;
            padding: 64px 0;
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
            align-items: center;
            gap: 56px;
            overflow: hidden;
        }

        .join-us-page .containerB.topsection .titleAndBtn {
            width: auto;
            min-width: 0;
            margin: 0;
        }

        .join-us-page .containerB.topsection .image {
            width: 100%;
            max-width: 560px;
            min-width: 0;
            margin: 0 auto;
            display: block;
            overflow: hidden;
        }

        .join-us-page .containerB.topsection .image img {
            display: block;
            width: 100%;
            max-width: 100%;
            height: auto;
            max-height: 480px;
            object-fit: contain;
        }

        /* ===== VALUES SECTION ===== */
        .join-us-page .expertisesSection,
        .join-us-page .valeurs-section,
        .join-us-page .jobs-grid,
        .join-us-page .expertisesSection + .section1,
        .join-us-page .spontaneous-form-container {
            width: min(1180px, calc(100% - 48px));
            margin-left: auto;
            margin-right: auto;
        }

        .join-us-page .valeurs-section {
            position: relative;
            display: grid;
            grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1.15fr);
            gap: 56px;
            align-items: stretch;
            margin-top: 42px;
        }

        .join-us-page .valeurs-gauche {
            display: grid;
            gap: 14px;
        }

        .join-us-page .valeurs-row {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
        }

        .join-us-page .valeur-box {
            min-height: 92px;
            padding: 18px;
            display: flex;
            align-items: center;
            gap: 14px;
            border: 1px solid var(--border);
            border-radius: 12px;
            background: var(--white);
            color: var(--dark);
            font-family: "PoppinsSemiBold";
            font-size: 14px;
            cursor: pointer;
            transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
        }

        .join-us-page .valeur-box:hover,
        .join-us-page .valeur-box.active {
            border-color: var(--red);
            background: var(--red);
            color: var(--white);
        }

        .join-us-page .valeur-icon,
        .join-us-page .valeur-icon svg {
            width: 34px !important;
            height: 34px !important;
            min-width: 34px;
            max-width: 34px;
            display: block;
            flex: 0 0 34px;
        }

        .join-us-page .valeur-box.active .valeur-icon path,
        .join-us-page .valeur-box:hover .valeur-icon path {
            fill: currentColor;
        }

        .join-us-page .valeurs-droite {
            display: none;
            min-height: 304px;
            padding: 36px;
            border-radius: 16px;
            background: var(--light);
        }

        .join-us-page .valeurs-droite.active {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .join-us-page .valeurs-titre {
            margin-bottom: 8px;
            color: var(--dark);
            font-family: "PoppinsBold";
            font-size: clamp(26px, 3vw, 38px);
        }

        .join-us-page .valeurs-soustitre {
            margin-bottom: 18px;
            color: var(--red);
            font-family: "PoppinsSemiBold";
            font-size: 16px;
        }

        .join-us-page .valeurs-texte {
            margin-bottom: 24px;
            color: var(--text);
            font-size: 15px;
            line-height: 1.75;
        }

        .join-us-page .mobile-content-overlay {
            display: none;
        }

        /* ===== JOIN THE TEAM SECTION - PARTNERS INSPIRED ===== */
        .join-us-page .join-team-section.containerW,
        .join-us-page .join-team-section.containerW.is-visible {
            position: relative;
            isolation: isolate;
            width: 100%;
            margin: 0;
            padding: 112px 0;
            overflow: hidden;
            color: #fff;
            background:
                linear-gradient(90deg, rgba(229, 55, 63, 0.10) 0, transparent 34%),
                linear-gradient(120deg, #0a0a0b 0%, #151517 48%, #0a0a0b 100%);
            opacity: 1;
            transform: none;
            animation: none;
            box-sizing: border-box;
        }

        .join-us-page .join-team-section::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -1;
            pointer-events: none;
            background:
                radial-gradient(58% 52% at 82% 24%, rgba(229, 55, 63, 0.16), transparent 62%),
                linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
            background-size: auto, 58px 58px, 58px 58px;
            opacity: 0.9;
        }

        .join-us-page .join-team-section .solutions.Auto {
            position: relative;
            z-index: 2;
            width: min(1180px, calc(100% - 48px));
            margin: 0 auto;
            padding: 0;
            display: grid;
            grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1fr);
            align-items: center;
            gap: 72px;
            background: transparent;
            border-radius: 0;
            overflow: visible;
        }

        .join-us-page .join-team-section .SAContent {
            width: auto;
            min-width: 0;
        }

        .join-us-page .join-team-section .section-subtitleleft {
            width: fit-content;
            margin: 0 0 18px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.64);
            font-family: "PoppinsSemiBold";
            text-transform: uppercase;
        }

        .join-us-page .join-team-section .section-subtitleleft::before {
            content: "";
            width: 36px;
            height: 2px;
            border-radius: 999px;
            background: var(--red);
        }

        .join-us-page .join-team-section .pageTitles {
            max-width: 720px;
            margin: 0 0 28px;
            color: #fff;
            font-family: "PoppinsBold";
            font-size: clamp(36px, 5vw, 72px);
            line-height: 0.98;
            letter-spacing: 0;
        }

        .join-us-page .join-team-section .context {
            max-width: 620px;
            margin: 0 0 34px;
            color: rgba(255, 255, 255, 0.64);
            font-size: 18px;
            line-height: 1.75;
        }

        .join-us-page .join-team-section .btn-box {
            justify-content: flex-start;
        }

        .join-us-page .join-team-section .img {
            position: relative;
            width: 100%;
            min-width: 0;
            height: 520px;
            display: grid;
            place-items: center;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 28px;
            background:
                radial-gradient(circle at 50% 42%, rgba(229, 55, 63, 0.08), transparent 28%),
                linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
            box-shadow:
                inset 0 0 0 1px rgba(255, 255, 255, 0.06),
                0 28px 80px rgba(0, 0, 0, 0.45);
            isolation: isolate;
        }

        .join-us-page .join-team-section .img::before {
            content: "";
            position: absolute;
            inset: 20px;
            z-index: 0;
            border-radius: 20px;
            background: #030303;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
        }

        .join-us-page .join-team-section .img::after {
            content: "";
            position: absolute;
            inset: 20px;
            z-index: 2;
            pointer-events: none;
            border-radius: 20px;
            background:
                linear-gradient(90deg, transparent, rgba(229, 55, 63, 0.15), transparent),
                linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.35));
            opacity: 0.55;
        }

        .join-us-page .join-team-section .img img {
            position: relative;
            z-index: 1;
            display: block;
            width: calc(100% - 40px);
            height: calc(100% - 40px);
            max-width: 100%;
            object-fit: cover;
            object-position: center;
            border-radius: 20px;
        }

        @media (max-width: 900px) {
            .join-us-page .containerB.topsection .topSection {
                width: min(720px, calc(100% - 40px));
                min-height: 0;
                padding-top: 64px;
                padding-bottom: 64px;
                grid-template-columns: 1fr;
                gap: 42px;
                text-align: center;
            }

            .join-us-page .containerB.topsection .titleAndBtn {
                align-items: center;
            }

            .join-us-page .containerB.topsection .image {
                max-width: 520px;
            }

            .join-us-page .join-hero-visual {
                width: min(100%, 560px);
                min-height: 420px;
            }

            .join-us-page .join-hero-visual img {
                min-height: 420px;
            }

            .join-us-page .valeurs-section {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .join-us-page .join-values-section.containerW,
            .join-us-page .join-values-section.containerW.is-visible {
                padding: 76px 18px;
            }

            .join-us-page .join-values-section .valeurs-section {
                grid-template-columns: 1fr;
            }

            .join-us-page .join-values-section .valeurs-row {
                grid-template-columns: 1fr;
            }

            .join-us-page .join-values-section .valeurs-droite {
                position: relative;
                top: auto;
                grid-column: 1 / -1;
                width: 100%;
                min-height: 0;
                margin: 0 0 10px;
                padding: 30px;
            }

            .join-us-page .join-values-section .valeurs-droite.active {
                display: flex;
            }

            .join-us-page .join-team-section .solutions.Auto {
                grid-template-columns: 1fr;
                padding: 0;
                gap: 54px;
            }

            .join-us-page .join-team-section .img {
                max-width: 720px;
                height: 420px;
                margin-inline: auto;
            }
        }

        @media (max-width: 700px) {
            .join-us-page .containerB.topsection .topSection {
                padding-top: 56px;
                padding-bottom: 56px;
            }

            .join-us-page .development-hero__container {
                width: min(calc(100% - 32px), 1510px);
            }

            .join-us-page .join-hero-visual {
                min-height: 320px;
                border-radius: 18px;
            }

            .join-us-page .join-hero-visual img {
                min-height: 320px;
            }

            .join-us-page .join-hero-visual__badge {
                min-width: 112px;
                padding: 11px 12px;
            }

            .join-us-page .join-hero-visual__badge--top {
                top: 28px;
                right: 24px;
            }

            .join-us-page .join-hero-visual__badge--bottom {
                left: 24px;
                bottom: 28px;
            }

            .join-us-page .expertisesSection,
            .join-us-page .valeurs-section,
            .join-us-page .jobs-grid,
            .join-us-page .expertisesSection + .section1,
            .join-us-page .spontaneous-form-container {
                width: min(100% - 32px, 560px);
            }

            .join-us-page .valeurs-row {
                grid-template-columns: 1fr;
            }

            .join-us-page .join-values-section.containerW,
            .join-us-page .join-values-section.containerW.is-visible {
                padding: 64px 16px;
            }

            .join-us-page .join-values-section .expertisesSection {
                margin-bottom: 34px;
            }

            .join-us-page .join-values-section .valeurs-row {
                grid-template-columns: 1fr;
            }

            .join-us-page .join-values-section .valeur-box {
                min-height: 86px;
                align-items: center;
                padding: 18px 18px 18px 74px;
            }

            .join-us-page .join-values-section .valeur-box::before {
                top: 50%;
                left: 18px;
                transform: translateY(-50%);
            }

            .join-us-page .join-values-section .valeur-icon {
                width: 38px;
                height: 38px;
                min-width: 38px;
                flex-basis: 38px;
            }

            .join-us-page .join-values-section .valeurs-droite {
                position: relative;
                top: auto;
                grid-column: 1 / -1;
                width: 88%;
                min-height: 0;
                margin: 0 0 10px;
                padding: 24px 20px;
            }

            .join-us-page .join-values-section .valeurs-droite.active {
                display: flex !important;
            }

            .join-us-page .join-values-section .mobile-content-overlay {
                display: none;
                margin-top: 18px;
                padding: 26px 22px;
                border: 1px solid rgba(255, 255, 255, 0.14);
                border-radius: 18px;
                background: rgba(255, 255, 255, 0.08);
                color: #fff;
                box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
                backdrop-filter: blur(16px);
            }

            .join-us-page .join-values-section .mobile-content-overlay.show {
                display: block;
            }

            .join-us-page .join-values-section .close-btn {
                width: 34px;
                height: 34px;
                margin-left: auto;
                margin-bottom: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                border: 1px solid rgba(255, 255, 255, 0.18);
                border-radius: 50%;
                background: transparent;
                color: #fff;
                cursor: pointer;
            }

            .join-us-page .join-values-section .mobile-valeurs-titre {
                margin-bottom: 10px;
                color: #fff;
                font-family: "PoppinsBold";
                font-size: 28px;
                line-height: 1.1;
            }

            .join-us-page .join-values-section .mobile-valeurs-soustitre {
                margin-bottom: 16px;
                color: #ff6a6f;
                font-family: "PoppinsSemiBold";
                font-size: 15px;
            }

            .join-us-page .join-values-section .mobile-valeurs-texte {
                color: rgba(255, 255, 255, 0.72);
                font-size: 15px;
                line-height: 1.75;
            }

            .join-us-page .join-values-section .mobile-btn-box {
                margin-top: 22px;
            }

            .join-us-page .valeur-box {
                min-height: 72px;
            }

            .join-us-page .valeurs-droite {
                min-height: 0;
                padding: 26px 22px;
            }

            .join-us-page .join-team-section.containerW,
            .join-us-page .join-team-section.containerW.is-visible {
                padding: 76px 0;
            }

            .join-us-page .join-team-section .solutions.Auto {
                width: calc(100% - 32px);
                padding: 0;
                gap: 34px;
            }

            .join-us-page .join-team-section .pageTitles {
                font-size: clamp(34px, 11vw, 52px);
            }

            .join-us-page .join-team-section .context {
                font-size: 16px;
            }

            .join-us-page .join-team-section .btn-box {
                justify-content: center;
            }

            .join-us-page .join-team-section .img {
                height: 320px;
                border-radius: 22px;
            }

            .join-us-page .join-team-section .img::before,
            .join-us-page .join-team-section .img::after {
                inset: 14px;
                border-radius: 16px;
            }

            .join-us-page .join-team-section .img img {
                width: calc(100% - 28px);
                height: calc(100% - 28px);
                border-radius: 16px;
            }
        }

        /* ===== VALUES SECTION ===== */
        .values-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
            margin-top: 60px;
        }

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

        .value-card {
            padding: 24px;
            background: linear-gradient(135deg, var(--light) 0%, #f0f0f0 100%);
            border-radius: 14px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .value-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--red);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }

        .value-card:hover {
            transform: translateY(-8px);
            border-color: var(--red);
        }

        .value-card.active {
            background: var(--red);
            color: var(--white);
            box-shadow: 0 20px 50px rgba(229, 55, 63, 0.3);
        }

        .value-card-inner {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .value-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .value-icon svg {
            width: 100%;
            height: 100%;
        }

        .value-card.active svg path {
            fill: var(--white);
        }

        .value-name {
            font-weight: 700;
            font-size: 15px;
        }

        .value-details {
            display: none;
            padding: 40px;
            background: var(--light);
            border-radius: 14px;
            animation: fadeIn 0.4s ease;
        }

        .value-details.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .value-details-title {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 12px;
            color: var(--dark);
        }

        .value-details-subtitle {
            font-size: 14px;
            font-weight: 700;
            color: var(--red);
            margin-bottom: 15px;
        }

        .value-details-text {
            font-size: 15px;
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 25px;
        }

        /* ===== JOBS SECTION ===== */
        .jobs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .job-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 32px;
            transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .job-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--red) 0%, transparent 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .job-card:hover {
            border-color: var(--red);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
            transform: translateY(-8px);
        }

        .job-card:hover::before {
            transform: scaleX(1);
        }

        .job-title {
            font-size: 20px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 16px;
        }

        .job-meta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border);
        }

        .job-meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--text);
        }

        .job-meta-item svg {
            width: 16px;
            height: 16px;
            fill: var(--red);
        }

        .job-description {
            font-size: 15px;
            color: var(--text);
            line-height: 1.7;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .job-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }

        .job-tag {
            display: inline-block;
            background: linear-gradient(135deg, var(--light) 0%, #f0f0f0 100%);
            color: var(--dark);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            transition: all 0.2s ease;
        }

        .job-card:hover .job-tag {
            background: linear-gradient(135deg, var(--red) 0%, #cc2e36 100%);
            color: var(--white);
        }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 15px;
            border: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
            text-decoration: none;
        }

        .btn-primary {
            background: var(--red);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(229, 55, 63, 0.2);
        }

        .btn-primary:hover {
            background: #cc2e36;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(229, 55, 63, 0.3);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--dark);
            border: 2px solid var(--red);
        }

        .btn-secondary:hover {
            background: var(--red);
            color: var(--white);
        }

        .btn svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-top: 60px;
            padding: 60px;
            background: linear-gradient(135deg, var(--light) 0%, rgba(229, 55, 63, 0.05) 100%);
            border-radius: 14px;
        }

        .cta-content h2 {
            font-size: 36px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .cta-content p {
            font-size: 16px;
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 30px;
        }

        /* ===== FORM SECTION ===== */
        .form-container {
            max-width: 700px;
            margin: 50px auto 0;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-label {
            display: block;
            font-weight: 700;
            font-size: 14px;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .form-label span {
            color: var(--red);
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 14px;
            font-family: inherit;
            transition: all 0.3s ease;
            background: var(--white);
            color: var(--dark);
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--red);
            box-shadow: 0 0 0 3px rgba(229, 55, 63, 0.1);
        }

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

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

        .form-checkbox {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text);
        }

        .form-checkbox input {
            width: 18px;
            height: 18px;
            cursor: pointer;
            accent-color: var(--red);
        }

        .form-checkbox a {
            color: var(--red);
            text-decoration: none;
        }

        .form-checkbox a:hover {
            text-decoration: underline;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .hero {
                height: 350px;
            }

            .hero h1 {
                font-size: 36px;
            }

            .section {
                padding: 50px 25px;
            }

            .section-title {
                font-size: 28px;
            }

            .values-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

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

            .cta-section {
                grid-template-columns: 1fr;
                padding: 40px;
            }

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

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 28px;
            }

            .section {
                padding: 40px 15px;
            }

            .section-title {
                font-size: 22px;
            }

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

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

        /* ===== SPONTANEOUS APPLICATION SECTION ===== */
        .join-us-page #application-form.spontaneous-application-section {
            position: relative;
            isolation: isolate;
            overflow: hidden;
            margin: 0;
            padding: 96px 20px 110px;
            /* background: */
                /* linear-gradient(135deg, rgba(229, 55, 63, 0.06), rgba(105, 193, 189, 0.08)),
                #f7f8fa; */
            width: var(--rn-width1);
            margin: 40px auto;
        }

        .join-us-page #application-form.spontaneous-application-section::before {
            content: "";
            position: absolute;
            inset: 52px auto auto 8%;
            width: min(44vw, 520px);
            height: min(44vw, 520px);
            border: 1px solid rgba(229, 55, 63, 0.16);
            border-radius: 50%;
            opacity: 0.72;
            animation: applicationOrbit 14s linear infinite;
            z-index: -1;
        }

        .join-us-page #application-form .expertisesSection {
            width: min(1180px, 100%);
            margin: 0 auto;
        }

        .join-us-page #application-form .section-description {
            width: min(620px, 100%);
            margin: 20px auto 46px;
            color: #62656b;
            font-size: 16px;
            line-height: 1.7;
            text-align: center;
        }

        .spontaneous-application-layout {
            display: grid;
            grid-template-columns: minmax(280px, 0.86fr) minmax(420px, 1.14fr);
            gap: clamp(28px, 4vw, 58px);
            align-items: center;
        }

        .spontaneous-portrait {
            position: relative;
            display: grid;
            justify-items: center;
            gap: 22px;
            animation: applicationPanelIn 700ms ease both;
        }

        .portrait-card {
            position: relative;
            width: min(100%, 430px);
            aspect-ratio: 4 / 5;
            overflow: hidden;
            border-radius: 28px;
            background: #111;
            box-shadow: 0 30px 80px rgba(17, 17, 17, 0.24);
            transform: translateY(0);
            animation: portraitFloat 5.5s ease-in-out infinite;
        }

        .portrait-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(17, 17, 17, 0.08) 0%, rgba(17, 17, 17, 0.66) 100%),
                linear-gradient(135deg, rgba(229, 55, 63, 0.26), transparent 42%);
            pointer-events: none;
        }

        .portrait-card img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            object-position: center;
            transform: scale(1.08);
            transition: transform 700ms ease;
        }

        .portrait-card:hover img {
            transform: scale(1.14);
        }

        .portrait-shine {
            position: absolute;
            inset: -20% auto -20% -55%;
            width: 42%;
            transform: rotate(18deg);
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
            animation: portraitShine 4.8s ease-in-out infinite;
            z-index: 2;
        }

        .portrait-badge {
            position: absolute;
            z-index: 3;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 14px;
            border: 1px solid rgba(255, 255, 255, 0.22);
            border-radius: 16px;
            color: #fff;
            background: rgba(17, 17, 17, 0.72);
            box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
            backdrop-filter: blur(12px);
            font-size: 13px;
            line-height: 1.2;
        }

        .portrait-badge--top {
            top: 22px;
            left: 22px;
            animation: badgeFloatTop 4.2s ease-in-out infinite;
        }

        .portrait-badge--bottom {
            right: 22px;
            bottom: 22px;
            animation: badgeFloatBottom 4.8s ease-in-out infinite;
        }

        .portrait-badge__number {
            color: var(--red);
            font-family: "PoppinsSemiBold", "Poppins", Arial, sans-serif;
            font-size: 22px;
            line-height: 1;
        }

        .portrait-badge__dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #69c1bd;
            box-shadow: 0 0 0 8px rgba(105, 193, 189, 0.18);
        }

        .portrait-skills {
            width: min(100%, 430px);
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }

        .portrait-skills span {
            padding: 9px 12px;
            border: 1px solid rgba(17, 17, 17, 0.08);
            border-radius: 999px;
            color: #2c2c2c;
            background: rgba(255, 255, 255, 0.78);
            box-shadow: 0 10px 24px rgba(17, 17, 17, 0.07);
            font-size: 13px;
        }

        .join-us-page #application-form .spontaneous-form-container {
            position: relative;
            max-width: 680px;
            width: 100%;
            margin: 0;
            padding: clamp(24px, 4vw, 42px);
            border: 1px solid rgba(17, 17, 17, 0.08);
            border-radius: 28px;
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 30px 70px rgba(17, 17, 17, 0.1);
            backdrop-filter: blur(18px);
            transition: box-shadow 300ms ease, transform 300ms ease;
            animation: applicationPanelIn 700ms 100ms ease both;
        }

        .join-us-page #application-form .spontaneous-form-container::before {
            content: "";
            position: absolute;
            inset: 14px;
            border: 1px solid rgba(229, 55, 63, 0.1);
            border-radius: 22px;
            pointer-events: none;
        }

        .join-us-page #application-form .spontaneous-form-container.pre-filled {
            animation: formHighlight 1.8s ease, applicationPanelIn 700ms ease both;
        }

        .spontaneous-form {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .spontaneous-form .form-row {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
        }

        .spontaneous-form .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
            min-width: 0;
            animation: fieldReveal 520ms ease both;
        }

        .spontaneous-form > .form-group:nth-of-type(1) {
            animation-delay: 120ms;
        }

        .spontaneous-form .form-row:nth-of-type(1) .form-group {
            animation-delay: 190ms;
        }

        .spontaneous-form .form-row:nth-of-type(2) .form-group {
            animation-delay: 260ms;
        }

        .spontaneous-form > .form-group:nth-of-type(2) {
            animation-delay: 330ms;
        }

        .spontaneous-form > .form-group:nth-of-type(3) {
            animation-delay: 400ms;
        }

        .spontaneous-form > .form-group:nth-of-type(4) {
            animation-delay: 470ms;
        }

        .spontaneous-form .form-group label {
            color: #24262a;
            font-family: "PoppinsSemiBold", "Poppins", Arial, sans-serif;
            font-size: 13px;
            line-height: 1.3;
        }

        .spontaneous-form .form-group label span,
        .spontaneous-form .form-group--terms strong {
            color: var(--red);
        }

        .spontaneous-form select,
        .spontaneous-form input[type="text"],
        .spontaneous-form input[type="email"],
        .spontaneous-form input[type="tel"],
        .spontaneous-form input[type="file"],
        .spontaneous-form textarea {
            width: 100%;
            min-height: 48px;
            box-sizing: border-box;
            padding: 13px 15px;
            border: 1px solid rgba(17, 17, 17, 0.12);
            border-radius: 14px;
            color: #171719;
            background: #fff;
            font-family: inherit;
            font-size: 14px;
            line-height: 1.45;
            transition:
                border-color 220ms ease,
                box-shadow 220ms ease,
                transform 220ms ease,
                background-color 220ms ease;
        }

        .spontaneous-form select {
            cursor: pointer;
        }

        .spontaneous-form textarea {
            min-height: 132px;
            resize: vertical;
        }

        .spontaneous-form select:focus,
        .spontaneous-form input[type="text"]:focus,
        .spontaneous-form input[type="email"]:focus,
        .spontaneous-form input[type="tel"]:focus,
        .spontaneous-form input[type="file"]:focus,
        .spontaneous-form textarea:focus {
            outline: none;
            border-color: rgba(229, 55, 63, 0.86);
            box-shadow: 0 0 0 4px rgba(229, 55, 63, 0.12);
            transform: translateY(-1px);
        }

        .spontaneous-form input[type="file"] {
            padding: 15px;
            border-style: dashed;
            cursor: pointer;
        }

        .spontaneous-form input[type="file"]:hover {
            border-color: rgba(229, 55, 63, 0.7);
            background: rgba(229, 55, 63, 0.04);
        }

        .spontaneous-form input[type="file"]::file-selector-button {
            margin-right: 12px;
            padding: 9px 12px;
            border: 0;
            border-radius: 10px;
            color: #fff;
            background: var(--red);
            cursor: pointer;
        }

        .spontaneous-form .form-group--file small {
            color: #74777d;
            font-size: 12px;
            line-height: 1.4;
        }

        .spontaneous-form .form-group--terms label {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 14px 15px;
            border: 1px solid rgba(17, 17, 17, 0.08);
            border-radius: 14px;
            background: rgba(247, 248, 250, 0.9);
            color: #555b63;
            cursor: pointer;
            font-family: "PoppinsRegular", "Poppins", Arial, sans-serif;
            font-size: 13px;
            line-height: 1.5;
        }

        .spontaneous-form .form-group--terms input[type="checkbox"] {
            flex: 0 0 auto;
            width: 18px;
            height: 18px;
            margin-top: 2px;
            accent-color: var(--red);
            cursor: pointer;
        }

        .spontaneous-form .form-group--terms span {
            color: #555b63;
        }

        .spontaneous-form .form-group--terms a {
            color: var(--red);
            text-decoration: none;
            font-family: "PoppinsSemiBold", "Poppins", Arial, sans-serif;
        }

        .spontaneous-form .form-group--terms a:hover {
            text-decoration: underline;
        }

        .spontaneous-form .btn-box {
            margin-top: 4px;
        }

        .spontaneous-form .thm-btn {
            border: 0;
            cursor: pointer;
        }

        .spontaneous-form .thm-btn .txt {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
        }

        .spontaneous-form .buttonSvg {
            width: 22px;
            fill: currentColor;
        }

        /* Notification Styles */
        .job-notification {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
            padding: 16px 24px;
            border-radius: 8px;
            color: white;
            background: #e5373f;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            font-size: 14px;
            font-weight: 500;
            opacity: 0;
            transform: translateX(400px);
            transition: all 0.3s ease;
        }

        .job-notification.show {
            opacity: 1;
            transform: translateX(0);
        }

        @keyframes applicationOrbit {
            from {
                transform: rotate(0deg) scale(1);
            }

            to {
                transform: rotate(360deg) scale(1);
            }
        }

        @keyframes applicationPanelIn {
            from {
                opacity: 0;
                transform: translateY(28px);
            }

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

        @keyframes portraitFloat {
            0%, 100% {
                transform: translateY(0) rotate(-1deg);
            }

            50% {
                transform: translateY(-14px) rotate(1deg);
            }
        }

        @keyframes portraitShine {
            0%, 40% {
                transform: translateX(0) rotate(18deg);
                opacity: 0;
            }

            58% {
                opacity: 1;
            }

            100% {
                transform: translateX(390%) rotate(18deg);
                opacity: 0;
            }
        }

        @keyframes badgeFloatTop {
            0%, 100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(8px);
            }
        }

        @keyframes badgeFloatBottom {
            0%, 100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        @keyframes fieldReveal {
            from {
                opacity: 0;
                transform: translateY(14px);
            }

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

        @keyframes formHighlight {
            0%, 100% {
                box-shadow: 0 30px 70px rgba(17, 17, 17, 0.1);
            }

            45% {
                box-shadow: 0 30px 90px rgba(229, 55, 63, 0.28);
                transform: translateY(-4px);
            }
        }

        @keyframes fieldPulse {
            0%, 100% {
                background-color: #fff;
            }

            50% {
                background-color: rgba(229, 55, 63, 0.05);
            }
        }

        .spontaneous-form-container.pre-filled input,
        .spontaneous-form-container.pre-filled select,
        .spontaneous-form-container.pre-filled textarea {
            animation: fieldPulse 1s ease;
        }

        @media (max-width: 980px) {
            .spontaneous-application-layout {
                grid-template-columns: 1fr;
                justify-items: center;
            }

            .join-us-page #application-form .spontaneous-form-container {
                max-width: 760px;
            }
        }

        @media (max-width: 768px) {
            .join-us-page #application-form.spontaneous-application-section {
                padding: 72px 16px 84px;
            }

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

            .portrait-card {
                width: min(100%, 360px);
                border-radius: 22px;
            }

            .portrait-skills {
                width: min(100%, 360px);
            }

            .join-us-page #application-form .spontaneous-form-container {
                padding: 22px;
                border-radius: 22px;
            }

            .join-us-page #application-form .spontaneous-form-container::before {
                inset: 10px;
                border-radius: 17px;
            }

            .job-notification {
                top: 10px;
                right: 10px;
                left: 10px;
                text-align: center;
            }
        }

        @media (max-width: 520px) {
            .portrait-badge {
                padding: 10px 11px;
                font-size: 12px;
            }

            .portrait-badge--top {
                top: 14px;
                left: 14px;
            }

            .portrait-badge--bottom {
                right: 14px;
                bottom: 14px;
            }

            .spontaneous-form .thm-btn {
                width: 100%;
                padding-right: 16px;
                padding-left: 16px;
            }

            .spontaneous-form .thm-btn .txt {
                justify-content: center;
                white-space: normal;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .join-us-page #application-form.spontaneous-application-section::before,
            .spontaneous-portrait,
            .portrait-card,
            .portrait-shine,
            .portrait-badge,
            .spontaneous-form-container,
            .spontaneous-form .form-group,
            .spontaneous-form-container.pre-filled,
            .spontaneous-form-container.pre-filled input,
            .spontaneous-form-container.pre-filled select,
            .spontaneous-form-container.pre-filled textarea {
                animation: none;
            }
        }

/* Match Join Us CTAs to the homepage hero red button. */
body.join-us-page :is(
    .atirao-button--primary,
    .join-hero__cta-primary,
    .thm-btn.red,
    .thm-btn.red.bgw,
    .thm-btn.red.inMenu
) {
    appearance: none;
    position: relative;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    max-width: 100%;
    min-height: 18px;
    padding: 15px 28px !important;
    overflow: hidden;
    border: 0 !important;
    border-radius: 8px !important;
    background: #c62828 !important;
    color: #f7f7f5 !important;
    box-shadow: 0 4px 18px rgba(229, 57, 53, 0.36) !important;
    font-family: var(--atirao-section-title-font, "Atirao Sans", Arial, Helvetica, sans-serif) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: 0.08em !important;
    text-align: center;
    text-decoration: none !important;
    text-transform: uppercase !important;
    white-space: normal;
    cursor: pointer;
    transition:
        transform 220ms ease,
        background-color 220ms ease,
        color 220ms ease,
        box-shadow 220ms ease !important;
}

body.join-us-page :is(
    .atirao-button--primary,
    .join-hero__cta-primary,
    .thm-btn.red,
    .thm-btn.red.bgw,
    .thm-btn.red.inMenu
):hover,
body.join-us-page :is(
    .atirao-button--primary,
    .join-hero__cta-primary,
    .thm-btn.red,
    .thm-btn.red.bgw,
    .thm-btn.red.inMenu
):focus-visible {
    background: #c62828 !important;
    color: #f7f7f5 !important;
    box-shadow: 0 8px 28px rgba(229, 57, 53, 0.42) !important;
    transform: translateY(-2px);
}

body.join-us-page :is(
    .thm-btn.red,
    .thm-btn.red.bgw,
    .thm-btn.red.inMenu
)::before,
body.join-us-page :is(
    .thm-btn.red,
    .thm-btn.red.bgw,
    .thm-btn.red.inMenu
)::after,
body.join-us-page :is(
    .thm-btn.red,
    .thm-btn.red.bgw,
    .thm-btn.red.inMenu
) .bdrl,
body.join-us-page :is(
    .thm-btn.red,
    .thm-btn.red.bgw,
    .thm-btn.red.inMenu
) .bdrr {
    content: none !important;
    display: none !important;
}

body.join-us-page :is(
    .atirao-button--primary,
    .join-hero__cta-primary,
    .thm-btn.red,
    .thm-btn.red.bgw,
    .thm-btn.red.inMenu
) .txt {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: inherit !important;
    font: inherit !important;
    letter-spacing: inherit !important;
    text-transform: inherit !important;
}

body.join-us-page :is(
    .atirao-button--primary,
    .join-hero__cta-primary,
    .thm-btn.red,
    .thm-btn.red.bgw,
    .thm-btn.red.inMenu
) :is(svg, .buttonSvg) {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    color: currentColor !important;
    fill: currentColor !important;
}

@media (max-width: 520px) {
    body.join-us-page :is(
        .atirao-button--primary,
        .join-hero__cta-primary,
        .thm-btn.red,
        .thm-btn.red.bgw,
        .thm-btn.red.inMenu
    ) {
        width: 100%;
        padding-right: 18px !important;
        padding-left: 18px !important;
        min-height: 38px;
    }
}

/* Screenshot-aligned Join Us hero */
body.join-us-page .development-hero.join-hero-bg {
    min-height: min(760px, calc(100vh - 112px));
    padding: 0;
    background:
        linear-gradient(90deg, rgba(0, 5, 7, 0.78) 0%, rgba(0, 8, 10, 0.52) 25%, rgba(0, 0, 0, 0.08) 48%, rgba(0, 0, 0, 0.16) 70%, rgba(0, 0, 0, 0.50) 100%),
        radial-gradient(ellipse at 54% 48%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.02) 42%, rgba(0, 0, 0, 0.36) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.34) 100%),
        var(--join-hero-image, url(../images/contact/join.png)) center center / cover no-repeat;
    background-color: #020405;
}

body.join-us-page .development-hero.join-hero-bg::before,
body.join-us-page .development-hero.join-hero-bg::after,
body.join-us-page .development-hero.join-hero-bg .join-hero__grid {
    content: none;
    display: none;
}

body.join-us-page .join-hero-bg .join-hero__fade {
    height: 150px;
    background: linear-gradient(to bottom, transparent, rgba(0, 4, 5, 0.76));
}

body.join-us-page .join-hero-bg .development-hero__container {
    width: min(1580px, calc(100% - 104px));
    max-width: none;
    min-height: min(760px, calc(100vh - 112px));
    padding: 0;
    margin-inline: auto;
    justify-content: center;
}

body.join-us-page .join-hero-bg .development-hero__layout {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 640px) minmax(260px, 300px);
    align-items: center;
    justify-content: space-between;
    gap: clamp(36px, 8vw, 180px);
}

body.join-us-page .join-hero-bg .development-hero__content {
    position: relative;
    width: min(100%, 640px);
    margin: 0;
    padding: 26px 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

body.join-us-page .join-hero-bg .development-hero__content::before {
    content: "";
    position: absolute;
    inset: -28px -38px -28px -56px;
    z-index: -1;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(0, 6, 8, 0.48), rgba(0, 6, 8, 0.16), rgba(0, 6, 8, 0));
    pointer-events: none;
}

body.join-us-page .join-hero-bg .development-hero__eyebrow {
    margin-bottom: 26px;
    color: #27d4d5;
    font-size: 13px;
    letter-spacing: 0.22em;
    line-height: 1;
}

body.join-us-page .join-hero-bg .development-hero__eyebrow span {
    width: 28px;
    height: 3px;
    background: #27d4d5;
}

body.join-us-page .join-hero-bg .development-hero__eyebrow b,
body.join-us-page .join-hero-bg .development-hero__eyebrow {
    text-shadow: 0 0 18px rgba(39, 212, 213, 0.18);
}

body.join-us-page .join-hero-bg .development-hero__eyebrow b,
body.join-us-page .join-hero-bg .development-hero__eyebrow::first-letter {
    color: inherit;
}

body.join-us-page .join-hero-bg .development-hero__eyebrow b {
    color: #d5232f;
    opacity: 1;
    padding-inline: 4px;
}

body.join-us-page .join-hero-bg .expertise-hero__title {
    min-width: 798px;
    margin: 0;
    color: #fff;
    font-family: "PoppinsBold", "Poppins", Arial, sans-serif;
    font-size: clamp(2.35rem, 3.2vw, 3.7rem) !important;
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -0.035em;
    text-align: left;
    overflow-wrap: normal;
    text-wrap: balance;
}

body.join-us-page .join-hero-bg .expertise-hero__title span {
    color: #24cfd0 !important;
}

body.join-us-page .join-hero-bg .development-hero__intro {
    width: min(100%, 500px);
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(15px, 1.2vw, 19px);
    line-height: 1.65;
}

body.join-us-page .join-hero-bg .development-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 34px;
}

body.join-us-page .join-hero-bg .development-hero__actions .atirao-button {
    min-width: 185px;
    padding: 14px 24px !important;
    border-radius: 8px !important;
    white-space: nowrap;
    min-height: 42px;
}

body.join-us-page .join-hero-bg .join-hero__apply-link {
    min-width: 190px;
    border: 1px solid rgba(39, 212, 213, 0.72) !important;
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
}

body.join-us-page .join-hero-bg .join-hero__right-visual {
    justify-content: flex-end;
    align-self: center;
}

body.join-us-page .join-hero-bg .join-hero__stats-panel {
    width: 300px;
    margin-left: 20px;
    padding: 28px 30px 26px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(20, 22, 24, 0.58), rgba(4, 8, 10, 0.36));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10), 0 24px 62px rgba(0, 0, 0, 0.42);
}

body.join-us-page .join-hero-bg .join-hero__stats-panel-label {
    margin-bottom: 18px;
    color: #29d8d9;
    font-size: 11px;
    letter-spacing: 0.18em;
}

body.join-us-page .join-hero-bg .join-hero__stat-item {
    padding: 11px 0;
}

body.join-us-page .join-hero-bg .join-hero__stat-item strong {
    font-size: clamp(2.1rem, 2.15vw, 3rem);
    line-height: 0.95;
    letter-spacing: -0.035em;
}

body.join-us-page .join-hero-bg .join-hero__stat-item strong span {
    color: #f1222f;
}

body.join-us-page .join-hero-bg .join-hero__stat-item > span {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    letter-spacing: 0;
}

body.join-us-page .join-hero-bg .join-hero__stat-divider {
    background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 1100px) {
    body.join-us-page .join-hero-bg .development-hero__container {
        width: min(920px, calc(100% - 56px));
        padding: 56px 0;
    }

    body.join-us-page .join-hero-bg .development-hero__layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    body.join-us-page .join-hero-bg .development-hero__content {
        width: min(100%, 700px);
    }

    body.join-us-page .join-hero-bg .expertise-hero__title {
        width: min(100%, 700px);
        font-size: clamp(2.45rem, 6vw, 3.45rem) !important;
        line-height: 1.12;
    }

    body.join-us-page .join-hero-bg .development-hero__intro {
        width: min(100%, 560px);
        font-size: clamp(15px, 2vw, 18px);
    }

    body.join-us-page .join-hero-bg .join-hero__right-visual {
        justify-content: flex-start;
    }

    body.join-us-page .join-hero-bg .join-hero__stats-panel {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(100%, 560px);
        margin-left: 0;
        padding: 22px 24px;
        gap: 0 22px;
    }

    body.join-us-page .join-hero-bg .join-hero__stats-panel-label {
        grid-column: 1 / -1;
        margin-bottom: 14px;
    }

    body.join-us-page .join-hero-bg .join-hero__stat-item {
        min-width: 0;
        padding: 13px 0;
    }

    body.join-us-page .join-hero-bg .join-hero__stat-item strong {
        font-size: clamp(1.9rem, 5vw, 2.6rem);
    }

    body.join-us-page .join-hero-bg .join-hero__stat-divider {
        display: none;
    }

    body.join-us-page .join-hero-bg .join-hero__stat-item:nth-of-type(4n) {
        padding-left: 18px;
        border-left: 1px solid rgba(255, 255, 255, 0.14);
    }

    body.join-us-page .join-hero-bg .join-hero__stat-item:nth-of-type(2),
    body.join-us-page .join-hero-bg .join-hero__stat-item:nth-of-type(4) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }
}

@media (max-width: 820px) {
    body.join-us-page .join-hero-bg .development-hero__container {
        width: min(100% - 40px, 680px);
        padding: 48px 0;
    }

    body.join-us-page .join-hero-bg .development-hero__content {
        padding: 18px 0;
    }

    body.join-us-page .join-hero-bg .development-hero__eyebrow {
        margin-bottom: 18px;
        gap: 10px;
        font-size: 11px;
        letter-spacing: 0.16em;
        line-height: 1.35;
    }

    body.join-us-page .join-hero-bg .development-hero__eyebrow span {
        width: 22px;
    }

    body.join-us-page .join-hero-bg .expertise-hero__title {
        font-size: clamp(2.05rem, 7vw, 3rem) !important;
        line-height: 1.12;
        letter-spacing: -0.025em;
    }

    body.join-us-page .join-hero-bg .development-hero__intro {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.62;
    }

    body.join-us-page .join-hero-bg .development-hero__intro br {
        display: none;
    }

    body.join-us-page .join-hero-bg .development-hero__actions {
        gap: 12px;
        margin-top: 26px;
    }

    body.join-us-page .join-hero-bg .development-hero__actions .atirao-button {
        min-width: 0;
        padding: 13px 18px !important;
        font-size: 12px !important;
        white-space: normal;
    }
}

@media (max-width: 700px) {
    body.join-us-page .join-hero-bg .development-hero__container {
        width: calc(100% - 32px);
        min-height: auto;
        padding: 42px 0;
    }

    body.join-us-page .development-hero.join-hero-bg {
        min-height: auto;
        background-position: 54% center;
    }

    body.join-us-page .join-hero-bg .development-hero__content::before {
        inset: -22px -16px;
        background: rgba(0, 6, 8, 0.42);
    }

    body.join-us-page .join-hero-bg .development-hero__actions {
        width: 100%;
        gap: 14px;
    }

    body.join-us-page .join-hero-bg .development-hero__actions .atirao-button {
        width: 100%;
        justify-content: center;
    }

    body.join-us-page .join-hero-bg .join-hero__stats-panel {
        width: 100%;
        max-width: 440px;
        padding: 20px;
        gap: 0 16px;
    }

    body.join-us-page .join-hero-bg .join-hero__stats-panel-label {
        font-size: 10px;
    }

    body.join-us-page .join-hero-bg .join-hero__stat-item strong {
        font-size: clamp(1.65rem, 8vw, 2.25rem);
    }

    body.join-us-page .join-hero-bg .join-hero__stat-item > span {
        font-size: 10px;
        line-height: 1.25;
    }
}

@media (max-width: 480px) {
    body.join-us-page .join-hero-bg .development-hero__container {
        width: calc(100% - 28px);
        padding: 20px 0;
    }

    body.join-us-page .join-hero-bg .development-hero__eyebrow {
        flex-wrap: wrap;
        font-size: 10px;
        letter-spacing: 0.13em;
    }

    body.join-us-page .join-hero-bg .expertise-hero__title {
        font-size: clamp(1.52rem, 4.8vw, 2.28rem) !important;
        min-width: 100%;
        line-height: 1.16;
    }

    body.join-us-page .join-hero-bg .development-hero__intro {
        font-size: 14px;
        line-height: 1.58;
        text-align: left;
    }

    body.join-us-page .join-hero-bg .join-hero__stats-panel {
        display: grid;
        grid-template-columns: 1fr;
        /* max-width: 320px; */
        padding: 18px 18px 16px;
        gap: 0;
    }

    body.join-us-page .join-hero-bg .join-hero__stats-panel-label {
        margin-bottom: 8px;
    }

    body.join-us-page .join-hero-bg .join-hero__stat-item {
        display: grid;
        grid-template-columns: minmax(88px, auto) minmax(0, 1fr);
        align-items: baseline;
        gap: 12px;
        padding: 10px 0;
        border-left: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    }

    body.join-us-page .join-hero-bg .join-hero__stat-item:last-child {
        border-bottom: 0;
    }

    body.join-us-page .join-hero-bg .join-hero__stat-item strong {
        font-size: clamp(1.45rem, 7vw, 1.9rem);
    }

    body.join-us-page .join-hero-bg .join-hero__stat-item > span {
        margin-top: 0;
    }
}

/* Responsive values section: compact cards + one readable detail panel */
@media (max-width: 980px) {
    body.join-us-page .join-values-section.containerW,
    body.join-us-page .join-values-section.containerW.is-visible {
        padding: 72px 20px;
        max-width: 100vw;
        overflow-x: hidden;
    }

    body.join-us-page .join-values-section .expertisesSection,
    body.join-us-page .join-values-section .valeurs-section {
        width: min(100%, 720px);
        max-width: 100%;
        box-sizing: border-box;
    }

    body.join-us-page .join-values-section .expertisesSection {
        margin-bottom: 30px;
    }

    body.join-us-page .join-values-section .section-subtitle {
        margin-bottom: 14px;
        font-size: 12px;
        letter-spacing: 0.18em;
    }

    body.join-us-page .join-values-section .section-title {
        max-width: 640px;
        font-size: clamp(2rem, 5.6vw, 3rem);
        line-height: 1.08;
    }

    body.join-us-page .join-values-section .valeurs-section {
        grid-template-columns: 1fr;
        gap: 20px;
        overflow: hidden;
    }

    body.join-us-page .join-values-section .valeurs-gauche {
        gap: 12px;
    }

    body.join-us-page .join-values-section .valeurs-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    body.join-us-page .join-values-section .valeur-box {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        min-height: 76px;
        padding: 14px 16px 14px 58px;
        border-radius: 12px;
        font-size: 14px;
        overflow-wrap: anywhere;
    }

    body.join-us-page .join-values-section .valeur-box::before {
        left: 16px;
        font-size: 11px;
    }

    body.join-us-page .join-values-section .valeur-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    body.join-us-page .join-values-section .valeur-icon svg {
        width: 19px !important;
        height: 19px !important;
    }

    body.join-us-page .join-values-section .valeurs-droite {
        position: relative;
        display: none !important;
    }

    body.join-us-page .join-values-section .valeurs-droite.is-inline.active {
        display: block !important;
        width: 100%;
        max-width: 100%;
        min-height: 0;
        margin: 0;
        padding: 22px;
        overflow: hidden;
        border-radius: 16px;
        box-sizing: border-box;
    }

    body.join-us-page .join-values-section .values-panel-toggle {
        position: absolute;
        top: 14px;
        right: 14px;
        z-index: 2;
        width: 36px;
        height: 36px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        cursor: pointer;
        transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }

    body.join-us-page .join-values-section .values-panel-toggle:hover {
        border-color: rgba(39, 212, 213, 0.5);
        background: rgba(39, 212, 213, 0.12);
    }

    body.join-us-page .join-values-section .values-panel-toggle svg {
        width: 18px;
        height: 18px;
        fill: currentColor;
        transition: transform 0.2s ease;
    }

    body.join-us-page .join-values-section .valeurs-droite.is-collapsed .values-panel-toggle svg {
        transform: rotate(180deg);
    }

    body.join-us-page .join-values-section .valeurs-droite.is-collapsed {
        padding-bottom: 18px;
    }

    body.join-us-page .join-values-section .valeurs-droite.is-collapsed .valeurs-soustitre,
    body.join-us-page .join-values-section .valeurs-droite.is-collapsed .valeurs-texte,
    body.join-us-page .join-values-section .valeurs-droite.is-collapsed .btn-box {
        display: none;
    }

    body.join-us-page .join-values-section .valeurs-droite.is-inline .valeurs-titre {
        max-width: calc(100% - 48px);
        margin-bottom: 10px;
        font-size: clamp(1.55rem, 4.8vw, 2.25rem);
        overflow-wrap: anywhere;
    }

    body.join-us-page .join-values-section .valeurs-droite.is-inline .valeurs-soustitre {
        margin-bottom: 14px;
        font-size: 14px;
        line-height: 1.45;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    body.join-us-page .join-values-section .valeurs-droite.is-inline .valeurs-texte {
        margin-bottom: 18px;
        font-size: 14px;
        line-height: 1.65;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    body.join-us-page .join-values-section .mobile-content-overlay {
        display: none !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin-top: 4px;
        padding: 22px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 16px;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04));
        color: #fff;
        box-shadow: 0 20px 56px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(14px);
    }

    body.join-us-page .join-values-section .mobile-content-overlay.show {
        display: none !important;
    }

    body.join-us-page .join-values-section .close-btn {
        display: none;
    }

    body.join-us-page .join-values-section .mobile-valeurs-titre {
        margin-bottom: 8px;
        max-width: 100%;
        color: #fff;
        font-family: "PoppinsBold", "Poppins", Arial, sans-serif;
        font-size: clamp(1.55rem, 4.6vw, 2.1rem);
        line-height: 1.08;
        letter-spacing: -0.025em;
        overflow-wrap: anywhere;
    }

    body.join-us-page .join-values-section .mobile-valeurs-soustitre {
        margin-bottom: 14px;
        max-width: 100%;
        color: #ff6a6f;
        font-family: "PoppinsSemiBold", "Poppins", Arial, sans-serif;
        font-size: 14px;
        line-height: 1.45;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    body.join-us-page .join-values-section .mobile-valeurs-texte {
        max-width: 100%;
        color: rgba(255, 255, 255, 0.74);
        font-size: 14px;
        line-height: 1.72;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    body.join-us-page .join-values-section .mobile-btn-box {
        margin-top: 18px;
    }

    body.join-us-page .join-values-section .mobile-btn-box .thm-btn,
    body.join-us-page .join-values-section .mobile-btn-box .atirao-button {
        width: auto;
        min-height: 48px;
    }
}

@media (max-width: 620px) {
    body.join-us-page .join-values-section.containerW,
    body.join-us-page .join-values-section.containerW.is-visible {
        padding: 52px 18px;
    }

    body.join-us-page .join-values-section .expertisesSection,
    body.join-us-page .join-values-section .valeurs-section {
        width: 100%;
    }

    body.join-us-page .join-values-section .expertisesSection {
        margin-bottom: 24px;
    }

    body.join-us-page .join-values-section .section-subtitle {
        gap: 10px;
        font-size: 11px;
        letter-spacing: 0.14em;
    }

    body.join-us-page .join-values-section .section-subtitle::before {
        width: 24px;
    }

    body.join-us-page .join-values-section .section-title {
        font-size: clamp(1.75rem, 8vw, 2.35rem);
        line-height: 1.12;
    }

    body.join-us-page .join-values-section .section-title br {
        display: none;
    }

    body.join-us-page .join-values-section .valeurs-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    body.join-us-page .join-values-section .valeur-box {
        min-height: 64px;
        padding: 12px 14px 12px 54px;
        font-size: 13px;
        border-radius: 12px;
    }

    body.join-us-page .join-values-section .valeur-box::before {
        left: 14px;
        font-size: 10px;
    }

    body.join-us-page .join-values-section .valeur-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        border-radius: 9px;
    }

    body.join-us-page .join-values-section .valeur-icon svg {
        width: 17px !important;
        height: 17px !important;
    }

    body.join-us-page .join-values-section .mobile-content-overlay {
        width: 100%;
        max-width: 100%;
        padding: 18px 16px;
        border-radius: 14px;
    }

    body.join-us-page .join-values-section .valeurs-droite.is-inline.active {
        padding: 18px 16px;
        border-radius: 14px;
    }

    body.join-us-page .join-values-section .values-panel-toggle {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
    }

    body.join-us-page .join-values-section .values-panel-toggle svg {
        width: 16px;
        height: 16px;
    }

    body.join-us-page .join-values-section .valeurs-droite.is-inline .valeurs-titre {
        font-size: clamp(1.35rem, 6vw, 1.75rem);
    }

    body.join-us-page .join-values-section .mobile-valeurs-titre {
        font-size: clamp(1.35rem, 6.2vw, 1.75rem);
        line-height: 1.12;
    }

    body.join-us-page .join-values-section .mobile-valeurs-soustitre,
    body.join-us-page .join-values-section .mobile-valeurs-texte {
        font-size: 13px;
        line-height: 1.55;
    }

    body.join-us-page .join-values-section .mobile-btn-box .thm-btn,
    body.join-us-page .join-values-section .mobile-btn-box .atirao-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body.join-us-page .join-values-section.containerW,
    body.join-us-page .join-values-section.containerW.is-visible {
        padding-right: 18px;
        padding-left: 18px;
    }

    body.join-us-page .join-values-section .valeurs-section,
    body.join-us-page .join-values-section .valeurs-gauche,
    body.join-us-page .join-values-section .valeurs-row,
    body.join-us-page .join-values-section .mobile-content-overlay {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    body.join-us-page .join-values-section .mobile-content-overlay {
        padding: 18px 16px;
        box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    body.join-us-page .join-values-section .mobile-valeurs-soustitre,
    body.join-us-page .join-values-section .mobile-valeurs-texte {
        word-break: normal;
        overflow-wrap: anywhere;
    }
}

body.join-us-page .join-values-section .values-panel-toggle {
    display: none;
}

/* Join page cleanup: no pictures, modern form-first application UI */
body.join-us-page .join-team-section .solutions.Auto {
    grid-template-columns: minmax(0, 920px);
    justify-content: center;
}

body.join-us-page .join-team-section .SAContent {
    max-width: 920px;
    text-align: left;
}

body.join-us-page .join-team-section .img,
body.join-us-page .spontaneous-portrait,
body.join-us-page .portrait-card,
body.join-us-page .portrait-skills {
    display: none !important;
}

body.join-us-page #application-form.spontaneous-application-section {
    width: 100%;
    margin: 0;
    padding: 82px 20px 92px;
    background:
        linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
        radial-gradient(60% 70% at 18% 4%, rgba(105, 193, 189, 0.16), transparent 62%),
        radial-gradient(56% 64% at 88% 14%, rgba(229, 55, 63, 0.12), transparent 64%),
        #f6f7f8;
    background-size: 58px 58px, 58px 58px, auto, auto, auto;
}

body.join-us-page #application-form.spontaneous-application-section::before {
    content: none;
}

body.join-us-page #application-form .expertisesSection {
    width: min(840px, 100%);
}

body.join-us-page #application-form .section-title {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
}

body.join-us-page #application-form .section-description {
    margin-bottom: 28px;
}

body.join-us-page .spontaneous-application-layout,
body.join-us-page .spontaneous-application-layout--form-only {
    display: block;
    width: min(760px, 100%);
    margin: 0 auto;
}

body.join-us-page #application-form .spontaneous-form-container {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    padding: clamp(22px, 3vw, 32px);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 54px rgba(17, 17, 17, 0.09);
}

body.join-us-page #application-form .spontaneous-form-container::before {
    content: none;
}

body.join-us-page .spontaneous-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

body.join-us-page .spontaneous-form > .form-group,
body.join-us-page .spontaneous-form > .form-row,
body.join-us-page .spontaneous-form > .btn-box {
    min-width: 0;
}

body.join-us-page .spontaneous-form > .form-group,
body.join-us-page .spontaneous-form > .btn-box {
    grid-column: 1 / -1;
}

body.join-us-page .spontaneous-form > .form-group:first-of-type,
body.join-us-page .spontaneous-form > .form-group:nth-of-type(2) {
    grid-column: span 1;
}

body.join-us-page .spontaneous-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column: 1 / -1;
    gap: 16px;
}

body.join-us-page .spontaneous-form .form-group {
    gap: 7px;
    animation: none;
}

body.join-us-page .spontaneous-form .form-group label {
    color: #1d2026;
    font-size: 11px;
    letter-spacing: 0.02em;
}

body.join-us-page .spontaneous-form select,
body.join-us-page .spontaneous-form input[type="text"],
body.join-us-page .spontaneous-form input[type="email"],
body.join-us-page .spontaneous-form input[type="tel"],
body.join-us-page .spontaneous-form input[type="file"],
body.join-us-page .spontaneous-form textarea {
    min-height: 54px;
    padding: 12px 14px;
    border: 1px solid rgba(17, 17, 17, 0.10);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(17, 17, 17, 0.03);
}

body.join-us-page .spontaneous-form textarea {
    min-height: 118px;
}

body.join-us-page .spontaneous-form .form-group--file {
    padding: 14px;
    border: 1px dashed rgba(105, 193, 189, 0.45);
    border-radius: 10px;
    background: rgba(105, 193, 189, 0.06);
}

body.join-us-page .spontaneous-form .form-group--file input[type="file"] {
    min-height: 46px;
    padding: 10px;
    border-color: rgba(105, 193, 189, 0.34);
    background: rgba(255, 255, 255, 0.9);
}

body.join-us-page .spontaneous-form input[type="file"]::file-selector-button {
    padding: 7px 10px;
    border-radius: 8px;
}

body.join-us-page .spontaneous-form .form-group--file small {
    font-size: 11px;
}

body.join-us-page .spontaneous-form .form-group--terms label {
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(17, 17, 17, 0.035);
    font-size: 12px;
}

body.join-us-page .spontaneous-form .btn-box {
    display: flex;
    justify-content: flex-end;
    margin-top: 2px;
}

body.join-us-page .spontaneous-form .thm-btn {
    min-width: 230px;
    min-height: 52px;
    border-radius: 8px !important;
}

@media (max-width: 760px) {
    body.join-us-page #application-form.spontaneous-application-section {
        padding: 62px 16px 72px;
    }

    body.join-us-page .spontaneous-form {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    body.join-us-page .spontaneous-form > .form-group:first-of-type,
    body.join-us-page .spontaneous-form > .form-group:nth-of-type(2) {
        grid-column: 1 / -1;
    }

    body.join-us-page .spontaneous-form .form-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    body.join-us-page #application-form .spontaneous-form-container {
        padding: 18px;
        border-radius: 14px;
    }

    body.join-us-page .spontaneous-form .btn-box,
    body.join-us-page .join-team-section .btn-box {
        justify-content: stretch;
    }

    body.join-us-page .spontaneous-form .thm-btn,
    body.join-us-page .join-team-section .thm-btn {
        width: 100%;
    }
}

/* Join page responsive overflow guard */
body.join-us-page {
    max-width: 100vw;
    overflow-x: hidden;
}

body.join-us-page *,
body.join-us-page *::before,
body.join-us-page *::after {
    box-sizing: border-box;
}

body.join-us-page .atirao-home,
body.join-us-page .atirao-shared-header,
body.join-us-page .footer,
body.join-us-page main,
body.join-us-page section {
    max-width: 100%;
}

body.join-us-page .join-hero-bg .development-hero__container,
body.join-us-page .join-hero-bg .development-hero__content,
body.join-us-page .join-hero-bg .development-hero__copy,
body.join-us-page .join-hero-bg .join-hero__stats-panel,
body.join-us-page .join-values-section,
body.join-us-page .join-values-layout,
body.join-us-page .valeurs-gauche,
body.join-us-page .valeurs-droite,
body.join-us-page #application-form,
body.join-us-page #application-form .expertisesSection,
body.join-us-page #application-form .spontaneous-form-container {
    min-width: 0;
    max-width: 100%;
}

body.join-us-page .join-hero-bg .expertise-hero__title {
    width: min(100%, 798px);
    /* min-width: 0 !important; */
    max-width: 100%;
    overflow-wrap: break-word;
}

@media (max-width: 900px) {
    body.join-us-page .join-hero-bg .development-hero__container {
        width: min(100% - 32px, 920px) !important;
        margin-inline: auto;
    }
}

@media (max-width: 560px) {
    body.join-us-page .join-hero-bg .development-hero__container {
        width: min(100% - 24px, 100%) !important;
        padding-inline: 0;
    }

    body.join-us-page .join-hero-bg .expertise-hero__title,
    body.join-us-page .join-hero-bg .development-hero__intro {
        width: 100%;
    }

    body.join-us-page #application-form.spontaneous-application-section {
        padding-right: 12px;
        padding-left: 12px;
    }
}

/* Join page section polish */
body.join-us-page .join-offers-section.containerW,
body.join-us-page .join-team-section.containerW,
body.join-us-page #application-form.spontaneous-application-section {
    --join-section-width: min(1120px, calc(100% - 40px));
}

body.join-us-page .join-offers-section .expertisesSection,
body.join-us-page .join-team-section .solutions.Auto,
body.join-us-page #application-form .expertisesSection {
    width: var(--join-section-width);
    margin-inline: auto;
}

body.join-us-page .join-offers-section .expertisesSection,
body.join-us-page #application-form .expertisesSection {
    text-align: left;
}

body.join-us-page .join-offers-section .section-subtitle,
body.join-us-page #application-form .section-subtitle,
body.join-us-page .join-team-section .section-subtitleleft {
    width: fit-content;
    margin: 0 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "PoppinsSemiBold", "Poppins", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.2;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.62) !important;
}

body.join-us-page .join-offers-section .section-subtitle::before,
body.join-us-page #application-form .section-subtitle::before,
body.join-us-page .join-team-section .section-subtitleleft::before {
    content: "";
    width: 34px;
    height: 2px;
    flex: 0 0 34px;
    border-radius: 999px;
    background: var(--red);
}

body.join-us-page .join-team-section .section-subtitleleft {
    color: rgba(255, 255, 255, 0.66) !important;
}

body.join-us-page .join-offers-section .section-title,
body.join-us-page #application-form .section-title,
body.join-us-page .join-team-section .pageTitles {
    max-width: 760px;
    margin: 0;
    font-family: "PoppinsBold", "Poppins", Arial, sans-serif;
    font-size: clamp(34px, 4.3vw, 58px);
    line-height: 1.04;
    letter-spacing: 0;
}

body.join-us-page .join-offers-section.containerW,
body.join-us-page .join-offers-section.containerW.is-visible {
    padding: 88px 0;
    background: #fff;
}

body.join-us-page .join-offers-section .jobs-grid {
    margin-top: 38px;
    gap: 20px;
}

body.join-us-page .join-team-section.containerW,
body.join-us-page .join-team-section.containerW.is-visible {
    padding: 86px 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(125deg, #09090a 0%, #141416 54%, #0a0a0b 100%);
    background-size: 58px 58px, 58px 58px, auto;
}

body.join-us-page .join-team-section::before {
    opacity: 0.55;
}

body.join-us-page .join-team-section .solutions.Auto {
    grid-template-columns: minmax(0, 1fr);
    justify-content: start;
    gap: 0;
}

body.join-us-page .join-team-section .SAContent {
    width: min(820px, 100%);
    max-width: 820px;
}

body.join-us-page .join-team-section .pageTitles {
    margin-bottom: 22px;
    color: #fff;
}

body.join-us-page .join-team-section .context {
    max-width: 760px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.75;
}

body.join-us-page .join-team-section .thm-btn,
body.join-us-page .spontaneous-form .thm-btn {
    min-height: 50px;
    border-radius: 8px !important;
}

body.join-us-page #application-form.spontaneous-application-section {
    margin: 0;
    padding: 86px 0 96px;
    background:
        linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
        radial-gradient(62% 68% at 12% 6%, rgba(105, 193, 189, 0.14), transparent 58%),
        #f6f7f8;
    background-size: 58px 58px, 58px 58px, auto, auto;
}

body.join-us-page #application-form .section-title {
    max-width: 820px;
    margin-inline: 0;
}

body.join-us-page #application-form .section-description {
    width: min(620px, 100%);
    margin: 18px 0 30px;
    color: #62656b;
    text-align: left;
}

body.join-us-page .spontaneous-application-layout,
body.join-us-page .spontaneous-application-layout--form-only {
    width: 100%;
    margin: 0;
}

body.join-us-page #application-form .spontaneous-form-container {
    width: min(820px, 100%);
    margin: 0;
    padding: clamp(18px, 2.6vw, 28px);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 44px rgba(17, 17, 17, 0.08);
}

body.join-us-page .spontaneous-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

body.join-us-page .spontaneous-form .form-row {
    gap: 14px;
}

body.join-us-page .spontaneous-form .form-group {
    gap: 6px;
}

body.join-us-page .spontaneous-form .form-group label {
    font-size: 11px;
    line-height: 1.25;
}

body.join-us-page .spontaneous-form select,
body.join-us-page .spontaneous-form input[type="text"],
body.join-us-page .spontaneous-form input[type="email"],
body.join-us-page .spontaneous-form input[type="tel"],
body.join-us-page .spontaneous-form input[type="file"],
body.join-us-page .spontaneous-form textarea {
    min-height: 46px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
}

body.join-us-page .spontaneous-form textarea {
    min-height: 104px;
}

body.join-us-page .spontaneous-form .form-group--file {
    padding: 12px;
    border-radius: 8px;
}

body.join-us-page .spontaneous-form .form-group--terms label {
    padding: 11px 12px;
    border-radius: 8px;
}

body.join-us-page .spontaneous-form .btn-box {
    margin-top: 0;
}

@media (max-width: 900px) {
    body.join-us-page .join-offers-section.containerW,
    body.join-us-page .join-team-section.containerW,
    body.join-us-page #application-form.spontaneous-application-section {
        --join-section-width: min(100% - 32px, 720px);
    }

    body.join-us-page .join-offers-section.containerW,
    body.join-us-page .join-team-section.containerW,
    body.join-us-page #application-form.spontaneous-application-section {
        padding-top: 68px;
        padding-bottom: 76px;
    }
}

@media (max-width: 640px) {
    body.join-us-page .join-offers-section.containerW,
    body.join-us-page .join-team-section.containerW,
    body.join-us-page #application-form.spontaneous-application-section {
        --join-section-width: min(100% - 24px, 100%);
    }

    body.join-us-page .join-offers-section .section-title,
    body.join-us-page #application-form .section-title,
    body.join-us-page .join-team-section .pageTitles {
        font-size: clamp(29px, 10vw, 38px);
    }

    body.join-us-page .spontaneous-form,
    body.join-us-page .spontaneous-form .form-row {
        grid-template-columns: 1fr;
    }

    body.join-us-page .spontaneous-form .thm-btn,
    body.join-us-page .join-team-section .thm-btn {
        width: 100%;
    }
}
