﻿.page-hero {
    padding: 100px 0 60px;
    text-align: center;
}

    .page-hero h1 {
        font-weight: 500;
        margin-bottom: 20px;
    }

.divider {
    width: 60px;
    height: 1px;
    background: var(--accent);
    margin: 24px auto;
}

.agencies-section {
    padding: 80px 0 20px;
    background: var(--bg);
}

.agency-card {
    border: 1px solid var(--border);
    padding: 28px 32px;
    background: transparent;
    transition: all 0.3s ease;
}

    .agency-card:hover {
        border-color: var(--accent);
    }

.agency-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.agency-city {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    color: var(--text);
}

.agency-country {
    font-size: 14px;
    color: var(--muted);
}

.agency-role {
    font-size: 13px;
    color: var(--accent);
    border: 1px solid rgba(183, 161, 106, 0.4);
    padding: 4px 10px;
    white-space: nowrap;
}

.agency-divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
}

.agency-actions {
    display: flex;
    gap: 18px;
}

    .agency-actions a {
        color: var(--muted);
        font-size: 16px;
        transition: color 0.2s ease;
    }

        .agency-actions a:hover {
            color: var(--accent);
        }

/* Responsive */
@media (max-width: 768px) {
    .agency-header {
        flex-direction: column;
        gap: 12px;
    }
}

.brand-note {
    max-width: 760px;
    margin: 120px auto 40px;
    padding: 28px 32px;
    text-align: center;
    font-size: 15px;
    line-height: 2.1;
    color: var(--text);
    border: 1px solid var(--border);
    position: relative;
}

    .brand-note::before {
        content: "";
        position: absolute;
        top: -1px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 1px;
        background: var(--accent);
    }

.expansion-cta {
    max-width: 720px;
    margin: 80px auto 140px;
    padding: 36px 40px;
    text-align: center;
    border: 1px solid var(--border);
    position: relative;
}

    .expansion-cta::before {
        content: "";
        position: absolute;
        top: -1px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 1px;
        background: var(--accent);
    }

.expansion-text {
    font-size: 15px;
    line-height: 2.1;
    color: var(--muted);
    margin-bottom: 28px;
}

.expansion-btn {
    display: inline-block;
    padding: 10px 28px;
    font-size: 14px;
    color: var(--text);
    border: 1px solid var(--accent);
    text-decoration: none;
    transition: all 0.25s ease;
}

    .expansion-btn:hover {
        background: var(--accent);
        color: #fff;
    }
