/* ============================================
   INTERNATIONAL HOMEPAGE — ADDITIONAL STYLES
   Add this to the end of main.css or enqueue separately
   ============================================ */

/* --- Language Selector (header) --- */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
    margin-right: 16px;
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 2px;
    border: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}
.lang-selector__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    background: transparent;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Lato', sans-serif;
    line-height: 1;
}
.lang-selector__btn:hover {
    color: rgba(255,255,255,0.8);
}
.lang-selector__btn--active {
    color: #fff;
    background: rgba(255,255,255,0.12);
}

/* Responsive: hide on very small screens, show as row */
@media (max-width: 768px) {
    .lang-selector {
        margin-right: 0;
        margin-bottom: 12px;
    }
}

/* --- Dark Section (Actifs) --- */
.section--dark {
    background: #111318;
    color: #e8e8ec;
}
.section--dark .section__title {
    color: #fff;
}
.section--dark .section__eyebrow-text {
    color: rgba(255,255,255,0.5);
}
.section--dark .section__eyebrow-line {
    background: rgba(255,255,255,0.15);
}
.section--dark .section__description {
    color: rgba(255,255,255,0.6);
}

/* --- Actifs Grid --- */
.actifs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
@media (max-width: 1024px) {
    .actifs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .actifs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.actif-category {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 28px 24px;
    transition: all 0.3s ease;
}
.actif-category:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}
.actif-category__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    color: #c9a96e;
}
.actif-category__icon svg {
    width: 100%;
    height: 100%;
}
.actif-category__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}
.actif-category__text {
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

/* --- Prose Block (long-form text) --- */
.prose-block {
    margin-top: 40px;
}
.prose-block__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
@media (max-width: 768px) {
    .prose-block__columns {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
.prose-block__col p {
    margin-bottom: 16px;
    font-size: 0.97rem;
    line-height: 1.8;
    color: #4a4944;
}
.prose-block__col p:last-child {
    margin-bottom: 0;
}
.prose-block__subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 14px;
}

/* --- Actifs Complement (text under dark grid) --- */
.actifs-complement {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.actifs-complement p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.55);
    margin-bottom: 14px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.actifs-complement p:last-child {
    margin-bottom: 0;
}

/* --- Geo List (international coverage) --- */
.geo-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 20px 0;
}
@media (max-width: 560px) {
    .geo-list {
        grid-template-columns: 1fr;
    }
}
.geo-list__group {
    background: rgba(0,0,0,0.03);
    border-radius: 8px;
    padding: 14px 18px;
}
.geo-list__title {
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #78776f;
    margin-bottom: 4px;
}
.geo-list__group p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4a4944;
    margin: 0;
}

/* --- Case Studies Grid --- */
.cas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 40px;
}
@media (max-width: 768px) {
    .cas-grid {
        grid-template-columns: 1fr;
    }
}
.cas-card {
    background: #fff;
    border: 1px solid #e0dfdc;
    border-radius: 12px;
    padding: 32px 28px;
    transition: all 0.3s ease;
}
.cas-card:hover {
    border-color: #c9a227;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
.cas-card__tag {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #c9a227;
    background: rgba(201,162,39,0.08);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 14px;
}
.cas-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.35;
}
.cas-card__text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #4a4944;
    margin: 0;
}