/* ===== LICENSES PAGE ===== */

.page-hero {
    background: linear-gradient(135deg, #377850 0%, #327457 100%);
    color: #fff;
    padding: 48px 0 56px;
}

.page-hero-content {
    max-width: 700px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
}

.breadcrumbs a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: #78AF69;
}

.page-hero h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.15;
}

.page-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    max-width: 560px;
}

/* Licenses Section */
.licenses-section {
    padding: 64px 0;
    background: #F8F9FA;
}

.licenses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.license-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    border: 1px solid #E9ECEF;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.license-card:hover {
    border-color: #78AF69;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}

.license-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #78AF69;
    background: rgba(120, 175, 105, 0.08);
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    width: fit-content;
}

.license-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 10px;
    line-height: 1.3;
}

.license-card p {
    font-size: 14px;
    color: #6C757D;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.license-status {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    width: fit-content;
}

.status-active {
    color: #2E7D32;
    background: rgba(46, 125, 50, 0.08);
}

/* Competencies Section */
.competencies-section {
    padding: 64px 0;
    background: #fff;
}

.competencies-section .section-title {
    font-size: 28px;
    font-weight: 700;
    color: #212529;
    text-align: center;
    margin-bottom: 40px;
}

.competencies-list {
    max-width: 800px;
    margin: 0 auto;
}

.competency-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #E9ECEF;
}

.competency-item:last-child {
    border-bottom: none;
}

.competency-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(120, 175, 105, 0.1);
    color: #78AF69;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.competency-icon svg {
    width: 16px;
    height: 16px;
}

.competency-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 4px;
}

.competency-text p {
    font-size: 14px;
    color: #6C757D;
    line-height: 1.5;
}

/* Partners Section */
.partners-section {
    padding: 56px 0;
    background: #F8F9FA;
    border-top: 1px solid #E9ECEF;
}

.partners-section .section-title {
    font-size: 28px;
    font-weight: 700;
    color: #212529;
    text-align: center;
    margin-bottom: 32px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.partner-logo {
    background: #fff;
    border: 1px solid #E9ECEF;
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    font-weight: 700;
    color: #6C757D;
    font-size: 14px;
    transition: all 0.25s ease;
}

.partner-logo:hover {
    border-color: #78AF69;
    color: #78AF69;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.nav-link.active {
    background: #78AF69;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.15);
}

/* ===== ADAPTIVE ===== */
@media (max-width: 1024px) {
    .licenses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 32px 0 40px;
    }
    .page-hero h1 {
        font-size: 26px;
    }
    .licenses-section {
        padding: 40px 0;
    }
    .licenses-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .license-card {
        padding: 22px 20px;
    }
    .competencies-section {
        padding: 40px 0;
    }
    .competencies-section .section-title {
        font-size: 22px;
    }
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .partner-logo {
        padding: 18px 12px;
        font-size: 13px;
    }
}
