/* --- Lang Switcher --- */
.lang-switcher {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 5px 10px;
    border-radius: 4px;
    transition: 0.3s;
}

.lang-switcher:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--primary-color);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    min-width: 120px;
    z-index: 2000;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    overflow: hidden;
}
.lang-switcher:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}
.dropdown-content a {
    color: var(--white);
    padding: 10px 15px;
    display: block;
    text-align: left;
    transition: 0.3s;
    font-size: 0.8rem;
}
.dropdown-content a:hover {
    background: var(--accent-color);
    color: var(--bg-dark);
}

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

/* --- Navigation updates --- */
.main-nav ul {
    gap: 1.5rem;
}
.main-nav a {
    font-size: 0.85rem;
}

/* --- Insights section --- */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.insight-card {
    background: var(--secondary-color);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
}
.insight-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}
.insight-img {
    height: 200px;
    background: #151e2e;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    font-size: 2rem;
    border-bottom: 2px solid var(--accent-color);
}
.insight-body {
    padding: 1.5rem;
}
.insight-cat {
    color: var(--accent-color);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}
.insight-title {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.4;
}
.insight-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* --- Global Offices --- */
.office-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.office-card {
    background: rgba(255,255,255,0.02);
    padding: 2.5rem;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    text-align: center;
    transition: 0.3s;
}
.office-card:hover {
    background: rgba(205, 164, 52, 0.05);
}
.office-city {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}
.office-details {
    color: var(--text-color);
    line-height: 1.8;
}

/* --- Careers --- */
.career-hero {
    background: linear-gradient(rgba(10, 17, 40, 0.9), rgba(10, 17, 40, 0.95)), url('london-office.jpg') center/cover;
    padding: 10rem 2rem 6rem;
    text-align: center;
}
.jobs-list {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.job-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    transition: 0.3s;
}
.job-item:hover {
    background: rgba(255,255,255,0.05);
}
@media (max-width: 768px) {
    .job-item { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* --- Legal text --- */
.legal-text {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-color);
    line-height: 1.8;
}
.legal-text h3 {
    margin-top: 2rem;
    color: var(--accent-color);
}
