/* ============================================================
   VINCI Jobs — Landing Page Styles
   ============================================================ */

:root {
    --blue:       #003087;
    --navy:       #001f5b;
    --blue-mid:   #0050b3;
    --red:        #e2001a;
    --bg-light:   #f5f7fa;
    --bg-gray:    #eaecf0;
    --text:       #1a1a1a;
    --text-muted: #6b7280;
    --border:     #dde1e7;
    --white:      #ffffff;
    --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:  0 6px 20px rgba(0,0,0,0.12);
    --radius:     6px;
    --radius-lg:  10px;
}

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
}

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

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue-mid); border-color: var(--blue-mid); }

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

.btn-white-solid {
    background: var(--white);
    color: var(--blue);
    border-color: var(--white);
}
.btn-white-solid:hover { background: #e8eeff; }

.btn-outline-blue {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
    font-size: 13px;
    padding: 9px 20px;
}
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }

/* ── Warning Bar ── */
.warning-bar {
    background: #fff8e1;
    border-bottom: 1px solid #ffe082;
    padding: 7px 0;
    font-size: 12px;
    color: #7a5900;
    text-align: center;
}
.warning-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.warning-bar i { color: #f5a623; font-size: 13px; }

/* ── Header ── */
.main-header {
    background: var(--white);
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 200;
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 14px;
    padding-bottom: 14px;
}
.logo-link { flex-shrink: 0; }
.header-logo { height: 38px; width: auto; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
}
.main-nav a {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.main-nav a:hover { color: var(--blue); border-bottom-color: var(--blue); }

.header-actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }

.saved-jobs-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    transition: color 0.2s;
}
.saved-jobs-btn:hover { color: var(--blue); }
.saved-count {
    background: var(--red);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-selector { display: flex; align-items: center; gap: 4px; }
.lang-selector a {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    padding: 2px 5px;
    transition: color 0.2s;
}
.lang-selector a:hover { color: var(--blue); }
.lang-active { color: var(--blue) !important; }
.lang-sep { color: var(--border); font-size: 12px; }

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a3a5c 0%, #2d4a3e 100%);
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    inset: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 20, 60, 0.15) 0%,
        rgba(0, 20, 60, 0.65) 55%,
        rgba(0, 20, 60, 0.82) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
}
.hero-text {
    max-width: 480px;
    color: var(--white);
    text-align: right;
}
.hero-text h1 {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.hero-text h1 em {
    font-style: italic;
    font-weight: 300;
    display: block;
}
.hero-sub {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 28px;
    font-weight: 300;
}

/* ── Divisions Bar ── */
.divisions-bar {
    background: var(--navy);
    padding: 0;
}
.divisions-inner {
    display: flex;
    align-items: stretch;
    gap: 0;
    min-height: 66px;
}
.div-logo-wrap {
    display: flex;
    align-items: center;
    padding: 12px 28px 12px 0;
    border-right: 1px solid rgba(255,255,255,0.12);
    flex-shrink: 0;
}
.div-vinci-logo { height: 26px; filter: brightness(0) invert(1); }

.division-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-right: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    transition: background 0.2s;
    cursor: pointer;
    flex: 1;
    text-align: center;
}
.division-item:hover { background: rgba(255,255,255,0.08); }
.div-name { font-size: 11px; font-weight: 400; opacity: 0.75; line-height: 1.2; }
.div-sub  { font-size: 13px; font-weight: 700; line-height: 1.3; }

/* ── Search Section ── */
.search-section {
    background: var(--bg-light);
    padding: 52px 0 40px;
}
.section-title {
    font-size: 27px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 26px;
    text-align: center;
}

.search-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 24px;
}
.search-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}
.search-tab.active { color: var(--blue); border-bottom-color: var(--blue); }
.search-tab:hover:not(.active) { color: var(--text); }

.search-panel { display: none; }
.search-panel.active { display: block; }

.search-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 28px;
}

.form-row {
    display: flex;
    gap: 14px;
    align-items: flex-end;
    margin-bottom: 18px;
}
.form-row:last-child { margin-bottom: 0; }
.form-row-filters { padding-top: 4px; border-top: 1px solid var(--bg-gray); margin-top: 4px; }

.form-group { display: flex; flex-direction: column; gap: 5px; flex: 1; min-width: 0; }
.fg-1 { flex: 1; }
.fg-2 { flex: 2; }
.fg-3 { flex: 3; }
.fg-auto { flex: 0 0 auto; }

.form-group label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.form-group input,
.form-group select {
    height: 44px;
    padding: 0 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0,48,135,0.1);
}
.input-icon-wrap { position: relative; }
.input-icon-wrap input { padding-left: 38px; }
.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 13px;
    pointer-events: none;
}

.btn-search { height: 44px; padding: 0 28px; }

.form-check-group { justify-content: flex-end; }
.checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    height: 44px;
}
.checkbox-wrap input[type="checkbox"] { display: none; }
.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-radius: 3px;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.checkbox-wrap input:checked + .checkbox-custom {
    background: var(--blue);
    border-color: var(--blue);
}
.checkbox-wrap input:checked + .checkbox-custom::after {
    content: '';
    width: 10px;
    height: 6px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg) translateY(-1px);
}

.search-result-hint {
    margin-top: 16px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.search-result-hint a {
    color: var(--blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.search-result-hint a:hover { text-decoration: underline; }

/* ── Results Panel ── */
.results-panel {
    display: none;
    background: linear-gradient(135deg, #001f5b 0%, #003087 100%);
    padding: 36px 0;
    border-top: 3px solid var(--red);
}
.results-panel.visible { display: block; }

.results-card {
    display: flex;
    align-items: center;
    gap: 28px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    flex-wrap: wrap;
}
.results-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    flex-shrink: 0;
}
.results-card-body { flex: 1; min-width: 200px; }
.results-card-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 4px;
}
.results-card-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.results-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.chip {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.chip i { font-size: 10px; opacity: 0.75; }
.results-card-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.btn-ghost {
    background: transparent;
    border-color: rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.7);
    padding: 9px 16px;
    font-size: 13px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ── Engage Section ── */
.engage-section {
    background: var(--white);
    padding: 64px 0 48px;
    text-align: center;
}
.engage-section h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.engage-sub {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 44px;
}
.engage-icons {
    display: flex;
    justify-content: center;
    gap: 52px;
    flex-wrap: wrap;
}
.engage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    color: var(--text);
    transition: transform 0.2s;
}
.engage-item:hover { transform: translateY(-5px); }
.engage-circle {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 2px solid var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--blue);
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.engage-item:hover .engage-circle {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
    box-shadow: 0 8px 20px rgba(0,48,135,0.25);
}
.engage-item span { font-size: 13px; font-weight: 600; }

.next-arrow {
    margin-top: 40px;
}
.next-arrow a {
    color: var(--text-muted);
    font-size: 20px;
    animation: bounce 1.8s infinite;
    display: inline-block;
}
@keyframes bounce {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(7px); }
}

/* ── Talent Section ── */
.talent-section {
    background: var(--blue);
    padding: 64px 0;
    color: var(--white);
}
.talent-layout {
    display: flex;
    gap: 56px;
    align-items: flex-start;
}
.talent-info { flex: 1; min-width: 260px; }
.talent-info h2 { font-size: 30px; font-weight: 700; margin-bottom: 14px; }
.talent-info p  { font-size: 15px; opacity: 0.88; line-height: 1.7; margin-bottom: 24px; }
.talent-benefits { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.talent-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.9;
}
.talent-benefits li i { color: #7ecfff; font-size: 16px; }

.talent-form { flex: 2; }
.talent-form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}
.t-input {
    flex: 1;
    height: 44px;
    padding: 0 14px;
    background: rgba(255,255,255,0.14);
    border: 1.5px solid rgba(255,255,255,0.28);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 14px;
    font-family: inherit;
    transition: background 0.2s, border-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
}
.t-input::placeholder { color: rgba(255,255,255,0.6); }
.t-input option { background: var(--navy); color: var(--white); }
.t-input:focus {
    outline: none;
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.6);
}

.talent-form-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.t-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    opacity: 0.9;
    flex: 1;
    cursor: pointer;
    line-height: 1.5;
}
.t-checkbox input[type="checkbox"] { display: none; }
.t-checkbox-box {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 3px;
    margin-top: 2px;
    transition: background 0.2s, border-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.t-checkbox input:checked + .t-checkbox-box {
    background: rgba(255,255,255,0.9);
    border-color: white;
}
.t-checkbox input:checked + .t-checkbox-box::after {
    content: '';
    width: 9px;
    height: 5px;
    border-left: 2px solid var(--blue);
    border-bottom: 2px solid var(--blue);
    transform: rotate(-45deg) translateY(-1px);
}
.t-checkbox a { color: var(--white); text-decoration: underline; }

/* ── News Section ── */
.news-section { padding: 64px 0; background: var(--bg-light); }
.news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}
.news-header h2 { font-size: 26px; font-weight: 700; color: var(--navy); }

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.news-card-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.news-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.nc-image {
    background-size: cover;
    background-position: center;
    height: 185px;
    position: relative;
    flex-shrink: 0;
    background-color: var(--bg-gray);
}
.news-card-featured .nc-image { height: 310px; }
.nc-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--blue);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    padding: 4px 10px;
    border-radius: 3px;
}
.nc-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.nc-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
    flex: 1;
}
.news-card-featured .nc-body h3 { font-size: 19px; }
.nc-body p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.nc-link {
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
    margin-top: auto;
}
.nc-link:hover { gap: 10px; }

/* ── Commitments Section ── */
.commitments-section {
    padding: 64px 0;
    background: var(--white);
    text-align: center;
}
.commitments-section h2 { font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.commit-sub { color: var(--text-muted); font-size: 15px; margin-bottom: 44px; }
.commit-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.commit-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 30px 18px 24px;
    border: 1px solid var(--bg-gray);
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}
.commit-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.commit-icon {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 18px;
    transition: background 0.2s;
}
.commit-card:hover .commit-icon { background: var(--blue-mid); }
.commit-card h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.commit-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.55; flex: 1; }
.commit-link {
    margin-top: 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}
.commit-card:hover .commit-link { gap: 9px; }

/* ── Contact Section ── */
.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}
.contact-header {
    text-align: center;
    margin-bottom: 52px;
}
.contact-header h2 { font-size: 32px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.contact-header p  { color: var(--text-muted); font-size: 15px; }

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

/* Recruiter card */
.recruiter-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 90px;
}
.recruiter-photo-wrap { width: 100%; aspect-ratio: 4/5; overflow: hidden; }
.recruiter-photo      { width: 100%; height: 100%; object-fit: cover; display: block; }
.recruiter-info       { padding: 24px 26px 28px; }
.recruiter-role {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 5px;
}
.recruiter-name    { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.recruiter-company { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.recruiter-links   { display: flex; flex-direction: column; gap: 10px; }
.recruiter-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: 12.5px;
    transition: color 0.2s;
    word-break: break-all;
}
.recruiter-link:hover { color: var(--blue); }
.rlink-icon {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: var(--blue);
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}
.recruiter-link:hover .rlink-icon { background: var(--blue); color: #fff; }
.rlink-linkedin { background: #0a66c2; color: #fff; }
.recruiter-link:hover .rlink-linkedin { background: #004182; }

/* Contact form */
.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
}
.cf-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.cf-group { display: flex; flex-direction: column; gap: 6px; }
.cf-full  { margin-bottom: 16px; }
.cf-group label {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.6px;
    color: var(--text-muted);
}
.cf-input {
    width: 100%; height: 44px;
    padding: 0 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px; font-family: inherit;
    color: var(--text); background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none; -webkit-appearance: none;
}
.cf-input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,48,135,0.08); }
.cf-textarea { height: auto; padding: 12px 14px; resize: vertical; min-height: 110px; }

.upload-zone {
    display: block;
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    background: var(--bg-light);
}
.upload-zone:hover, .upload-zone.drag-over { border-color: var(--blue); background: #eef2ff; }
.upload-content {
    display: flex; flex-direction: column;
    align-items: center; gap: 6px;
    pointer-events: none;
}
.upload-content i  { font-size: 30px; color: var(--blue); }
.upload-main { font-weight: 600; font-size: 14px; color: var(--navy); }
.upload-sub  { font-size: 12px; color: var(--text-muted); }
.upload-filename {
    font-size: 13px; font-weight: 700;
    color: var(--blue); display: flex;
    align-items: center; gap: 6px;
}

.cf-footer {
    display: flex; justify-content: space-between;
    align-items: flex-start; gap: 20px;
    margin-top: 24px; flex-wrap: wrap;
}
.cf-footer .t-checkbox { flex: 1; min-width: 200px; }

/* ── Carousel ── */
.carousel-wrapper { position: relative; }

.carousel-btn {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    z-index: 10;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--border);
    box-shadow: 0 2px 10px rgba(0,0,0,0.14);
    color: var(--navy);
    font-size: 13px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    flex-shrink: 0;
}
.carousel-btn:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.carousel-btn-prev { left: -8px; }
.carousel-btn-next { right: -8px; }

.carousel-dots {
    display: none;
    justify-content: center;
    gap: 7px;
    margin-top: 18px;
}
.carousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none; padding: 0;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
}
.carousel-dot.active { background: var(--blue); transform: scale(1.4); }

/* ── Hamburger & Mobile Nav ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px; height: 19px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    width: 100%; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--bg-gray);
    padding: 0 28px 16px;
    animation: slideDown 0.2s ease;
}
.mobile-nav.open { display: flex; }
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.mobile-nav > a {
    padding: 14px 0;
    font-size: 14px; font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid var(--bg-gray);
    display: flex; align-items: center; gap: 8px;
    transition: color 0.2s;
}
.mobile-nav > a:hover { color: var(--blue); }
.mobile-nav-lang {
    display: flex; gap: 16px;
    padding-top: 14px;
}
.mobile-nav-lang a {
    font-size: 13px; font-weight: 700;
    color: var(--text-muted);
    transition: color 0.2s;
}
.mobile-nav-lang a:hover { color: var(--blue); }
.mobile-nav-lang .lang-active { color: var(--blue); }

/* ── Footer ── */
.main-footer { background: var(--navy); color: var(--white); padding: 52px 0 28px; }
.footer-top {
    display: flex;
    gap: 56px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.footer-brand { flex-shrink: 0; max-width: 220px; }
.footer-logo { height: 32px; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-tagline { font-size: 12px; opacity: 0.55; font-style: italic; line-height: 1.5; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--blue-mid); color: var(--white); }

.footer-cols { display: flex; gap: 48px; flex: 1; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; min-width: 130px; }
.footer-col h5 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; opacity: 0.5; margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.85); }
.footer-copy { font-size: 12px; opacity: 0.4; }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1100px) {
    .commit-grid { grid-template-columns: repeat(3, 1fr); }
    .news-grid   { grid-template-columns: repeat(2, 1fr); }
    .news-card-featured { grid-column: span 2; }
}

@media (max-width: 900px) {
    .talent-layout  { flex-direction: column; }
    .footer-top     { flex-direction: column; }
    .footer-brand   { max-width: 100%; }
    .divisions-inner { flex-wrap: wrap; min-height: auto; }
    .contact-layout { grid-template-columns: 1fr; }
    .recruiter-card { position: static; display: flex; flex-direction: row; }
    .recruiter-photo-wrap { width: 180px; flex-shrink: 0; aspect-ratio: auto; }
}

@media (max-width: 768px) {
    .cf-row { grid-template-columns: 1fr; }
    .hero-text h1  { font-size: 38px; }
    .hero-text     { text-align: left; max-width: 100%; padding: 0; }
    .hero-content  { justify-content: flex-start; }
    .hero-overlay  { background: rgba(0,20,60,0.6); }

    .form-row       { flex-direction: column; }
    .form-row-filters { flex-direction: column; }

    .header-inner   { flex-wrap: wrap; gap: 12px; }
    .main-nav       { display: none; }
    .lang-selector  { display: none; }
    .hamburger      { display: flex; }

    .talent-form-row { flex-direction: column; }

    .footer-bottom  { flex-direction: column; align-items: flex-start; }
    .footer-cols    { gap: 28px; }

    /* Activate carousels */
    .carousel-btn   { display: flex; }
    .carousel-dots  { display: flex; }

    .carousel-track {
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }
    .carousel-track::-webkit-scrollbar { display: none; }

    .news-grid.carousel-track {
        display: flex !important;
        gap: 14px;
        padding-bottom: 6px;
    }
    .news-grid.carousel-track .news-card {
        flex-shrink: 0;
        scroll-snap-align: start;
        width: 80vw;
        max-width: 340px;
        grid-column: unset;
        grid-row: unset;
    }
    .news-grid.carousel-track .news-card-featured .nc-image { height: 200px; }

    .commit-grid.carousel-track {
        display: flex !important;
        gap: 14px;
        padding-bottom: 6px;
    }
    .commit-grid.carousel-track .commit-card {
        flex-shrink: 0;
        scroll-snap-align: start;
        width: 65vw;
        max-width: 240px;
    }

    .engage-icons.carousel-track {
        flex-wrap: nowrap !important;
        gap: 20px !important;
        justify-content: flex-start !important;
    }
    .engage-icons.carousel-track .engage-item {
        flex-shrink: 0;
        scroll-snap-align: start;
        min-width: 90px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 30px; }
    .hero         { min-height: 380px; }
    .saved-jobs-btn span:not(.saved-count) { display: none; }
    .container    { padding: 0 16px; }
    .search-form  { padding: 18px; }
    .contact-form { padding: 20px; }
}
