/* 
 * Kennisbank Components - COMPLEET
 * Alle herbruikbare componenten voor kennisbank artikelen
 * Gebruikt in 10+ kennisbank pagina's
 */

/* ============================================
   INLINE CTA BUTTON
   ============================================ */
.inline-cta {
    text-align: center;
    margin: 15px 0;
}

.inline-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.inline-cta-button:hover {
    background-color: var(--primary);
    color: white !important;
    transform: translateY(-2px);
    text-decoration: none;
}

.inline-cta-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.inline-cta-button:hover svg {
    transform: translateX(4px);
}

/* ============================================
   INTRO SECTION (gebruikt in 12 bestanden)
   ============================================ */
.intro-section {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid var(--border);
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.intro-card {
    text-align: center;
    padding: 25px;
    background-color: var(--light);
    border-radius: 12px;
    border: 1px solid var(--light-grey);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro-card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: rgba(210, 105, 30, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 24px;
}

.intro-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.intro-card p {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ============================================
   HIGHLIGHT BOXES (gebruikt in 16 bestanden)
   ============================================ */
.highlight-box {
    background-color: rgba(210, 105, 30, 0.1);
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box strong {
    color: var(--secondary);
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.highlight-box--center {
    text-align: center;
}

.highlight-button {
    display: inline-block;
    background-color: var(--primary);
    color: white !important;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.highlight-button:hover {
    background-color: #b85c1a;
    transform: translateY(-2px);
    text-decoration: none;
}

.warning-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.warning-box strong {
    color: #856404;
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.info-box {
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
}

.info-box.warning {
    background-color: #fff3cd;
    border-color: #ffeaa7;
}

.info-box.success {
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.info-box h4 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-weight: 600;
}

/* ============================================
   GENERIC GRID PATTERN (gebruikt in 15 bestanden)
   ============================================ */
.generic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.grid-item {
    background-color: var(--light);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 0 12px 12px 0;
    transition: all 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-3px);
}

.grid-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.grid-item-icon {
    width: 35px;
    height: 35px;
    background-color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.grid-item-title {
    font-weight: 600;
    color: var(--secondary);
    margin: 0;
    font-size: 1rem;
}

.grid-item-desc {
    color: var(--grey);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   PROCESS STEPS - OUDE STIJL (single box met lijst)
   ============================================ */
.process-steps {
    background-color: var(--light);
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
}

.process-steps h4 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.process-steps ol {
    margin: 0;
    padding-left: 20px;
}

.process-steps li {
    margin-bottom: 10px;
    color: var(--grey);
}

.process-steps li strong {
    color: var(--secondary);
}

/* ============================================
   STEPS GRID - NIEUWE STIJL (grid met cards)
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.step-item {
    background-color: var(--light);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 0 12px 12px 0;
    position: relative;
}

.step-item:hover {
    transform: translateY(-3px);
}

.step-number {
    position: absolute;
    top: -10px;
    left: -10px;
    background-color: var(--primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(210, 105, 30, 0.3);
}

.step-title {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1rem;
    margin-top: 10px;
}

.step-desc {
    color: var(--grey);
    font-size: 0.9rem;
    line-height: 1.4;
}

        .step-description {
            color: var(--grey);
            line-height: 1.6;
            margin-bottom: 15px;
        }

.step-details {
    background-color: rgba(210, 105, 30, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

.step-details h4 {
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 600;
}

.step-details p {
    color: var(--grey);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   PROCESS GRID (gebruikt in meerdere artikelen)
   ============================================ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.process-item {
    background-color: var(--light);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 0 12px 12px 0;
    transition: all 0.3s ease;
    position: relative;
}

.process-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(210, 105, 30, 0.1);
}

.process-number {
    position: absolute;
    top: -10px;
    left: -10px;
    background-color: var(--primary);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(210, 105, 30, 0.3);
}

.process-title {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.process-desc {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 10px;
}


/* ============================================
   COSTS TABLE
   ============================================ */
.costs-table {
    background: var(--light);
    border-radius: 12px;
    overflow: hidden;
    border-left: 4px solid var(--primary);
    margin-top: 25px;
}

.costs-table table {
    width: 100%;
    border-collapse: collapse;
}

.costs-table th {
    background: var(--primary);
    color: white;
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.costs-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
}

.costs-table tr:last-child td {
    border-bottom: none;
}

.costs-table tr:hover {
    background: rgba(210, 105, 30, 0.05);
}

.cost-label {
    font-weight: 600;
    color: var(--secondary);
}

.cost-value {
    color: var(--grey);
}

/* ============================================
   EXAMPLE BOX
   ============================================ */
.example-box {
    background-color: rgba(23, 55, 82, 0.05);
    border-left: 4px solid var(--secondary);
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.example-box strong {
    color: var(--secondary);
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.example-box p {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   STATS GRID (gebruikt in 8 bestanden)
   ============================================ */
.stats-section {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--grey);
}

.timeline-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
    text-align: center;
}

.stats-section h2 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-grey);
    display: flex;
    align-items: center;
    gap: 15px;
}

.stats-section .section-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(210, 105, 30, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex: 0 0 40px;
}

/* ============================================
   COMPARISON TABLES (gebruikt in 6 bestanden)
   ============================================ */
.comparison-table {
    margin: 25px 0;
    overflow-x: auto;
    border: none !important; /* Force geen border */
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: none !important;
}

.comparison-table thead {
    border: none !important;
}

.comparison-table th {
    background: var(--primary);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border: none !important;
}

.comparison-table tbody {
    border: none !important;
}

.comparison-table tr {
    border: none !important;
    border-left: none !important;
    border-right: none !important;
}

.comparison-table td {
    padding: 15px;
    border: none !important;
    border-bottom: 1px solid #e9ecef !important;
    color: var(--grey);
    vertical-align: top;
}

.comparison-table tr:last-child td {
    border-bottom: none !important;
}

.comparison-table tr:hover {
    background: rgba(210, 105, 30, 0.02);
}

/* Eerste kolom lichte achtergrond */
.comparison-table td:first-child {
    background-color: #f8f9fa;
    font-weight: 600;
    color: var(--secondary);
}

.comparison-table tr:hover td:first-child {
    background-color: rgba(248, 249, 250, 0.9);
}

.comparison-table .highlight-cell {
    background-color: rgba(210, 105, 30, 0.1);
    font-weight: 600;
    color: var(--secondary);
}

/* ============================================
   FEATURE BADGES
   ============================================ */
.feature-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 5px;
}

.feature-badge.green {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.feature-badge.blue {
    background-color: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
}

.feature-badge.orange {
    background-color: rgba(210, 105, 30, 0.1);
    color: var(--primary);
}

.check-icon {
    color: #28a745;
    font-size: 0.9rem;
    font-weight: bold;
}

/* ============================================
   RESOURCES SECTION
   ============================================ */
.resources-section {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid var(--border);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.resource-item {
    background-color: var(--light);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 0 12px 12px 0;
    text-align: center;
}

.resource-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    margin: 0 auto 15px;
}

.resource-title {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1rem;
}

.resource-desc {
    color: var(--grey);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.resource-link {
    display: inline-block;
    background-color: var(--primary);
    color: white !important;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.resource-link:hover {
    background-color: #b85c1a;
    text-decoration: none;
}

/* ============================================
   BENEFITS GRID
   ============================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.benefit-item {
    background-color: var(--light);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 0 12px 12px 0;
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.benefit-icon {
    width: 35px;
    height: 35px;
    background-color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.benefit-title {
    font-weight: 600;
    color: var(--secondary);
    margin: 0;
    font-size: 1rem;
}

.benefit-desc {
    color: var(--grey);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.service-item {
    background-color: var(--light);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 0 12px 12px 0;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.service-icon {
    width: 35px;
    height: 35px;
    background-color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.service-title {
    font-weight: 600;
    color: var(--secondary);
    margin: 0;
    font-size: 1rem;
}

.service-desc {
    color: var(--grey);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.service-badge {
    display: inline-block;
    padding: 3px 8px;
    background-color: var(--primary);
    color: white;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 8px;
}

.service-badge.optional {
    background-color: var(--grey);
}

/* ============================================
   PROVIDER GRID
   ============================================ */
.provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.provider-item {
    background-color: var(--light);
    border-left: 4px solid var(--primary);
    padding: 25px;
    border-radius: 0 12px 12px 0;
    position: relative;
}

.provider-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.provider-icon {
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.provider-title {
    font-weight: 600;
    color: var(--secondary);
    margin: 0;
    font-size: 1.2rem;
}

.provider-desc {
    color: var(--grey);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.provider-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.provider-features li {
    color: var(--grey);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

/* ============================================
   TASKS GRID
   ============================================ */
.tasks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.task-item {
    background-color: var(--light);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 0 12px 12px 0;
}

.task-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.task-icon {
    width: 35px;
    height: 35px;
    background-color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.task-title {
    font-weight: 600;
    color: var(--secondary);
    margin: 0;
    font-size: 1rem;
}

.task-desc {
    color: var(--grey);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   AUTHORITIES GRID
   ============================================ */
.authorities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.authority-item {
    background-color: var(--light);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 0 12px 12px 0;
    text-align: center;
}

.authority-flag {
    width: 40px;
    height: 30px;
    background-color: var(--primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.authority-name {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 1rem;
}

.authority-org {
    color: var(--grey);
    font-size: 0.85rem;
    line-height: 1.3;
}

/* ============================================
   LINK BOX
   ============================================ */
.link-box {
    background-color: rgba(210, 105, 30, 0.1);
    border-left: 4px solid var(--primary);
    padding: 25px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
    text-align: center;
}

.link-box strong {
    color: var(--secondary);
    display: block;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.link-box p {
    margin-bottom: 20px;
    color: var(--grey);
}

.link-button {
    display: inline-block;
    background-color: var(--primary);
    color: white !important;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.link-button:hover {
    background-color: #b85c1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(210, 105, 30, 0.3);
    text-decoration: none;
}

/* ============================================
   QUICK OVERVIEW
   ============================================ */
.quick-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.quick-item {
    background-color: var(--light);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 0 12px 12px 0;
    text-align: center;
}

.quick-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(210, 105, 30, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    margin: 0 auto 15px;
}

.quick-label {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 5px;
    font-size: 1rem;
}

.quick-desc {
    color: var(--grey);
    font-size: 0.9rem;
}

/* ============================================
   SITUATION GRID
   ============================================ */
.situation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.situation-card {
    background-color: var(--light);
    border-left: 4px solid var(--primary);
    padding: 25px;
    border-radius: 0 12px 12px 0;
    transition: all 0.3s ease;
}

.situation-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(210, 105, 30, 0.1);
}

.situation-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.situation-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.situation-title {
    font-weight: 600;
    color: var(--secondary);
    margin: 0;
    font-size: 1.1rem;
}

.situation-desc {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.situation-best-for {
    background-color: rgba(210, 105, 30, 0.1);
    border-radius: 8px;
    padding: 12px;
    margin-top: 10px;
}

.situation-best-for strong {
    color: var(--secondary);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}

.situation-best-for p {
    color: var(--grey);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   CHECKLIST GRID
   ============================================ */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.checklist-item {
    background-color: var(--light);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 0 12px 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checklist-icon {
    width: 35px;
    height: 35px;
    background-color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.checklist-content h4 {
    color: var(--secondary);
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 600;
}

.checklist-content p {
    color: var(--grey);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* ============================================
   OVERVIEW GRID (Aan de slag artikelen)
   ============================================ */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.overview-card {
    background: linear-gradient(135deg, var(--light) 0%, white 100%);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.overview-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.overview-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview-icon.peppol {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.overview-icon.bsp {
    background-color: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
}

.overview-icon.edi {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.overview-icon.api {
    background-color: rgba(210, 105, 30, 0.1);
    color: var(--primary);
}

.overview-title {
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 600;
}

/* ============================================
   LEAD TEXT & HOW IT WORKS (Peppol artikelen)
   ============================================ */
.lead-text {
    font-size: 1.1rem;
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    text-align: center;
    padding: 20px;
    background-color: var(--light);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.how-it-works {
    background-color: rgba(210, 105, 30, 0.1);
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.how-it-works h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.how-it-works p {
    color: var(--grey);
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    background-color: var(--light);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 0 12px 12px 0;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.feature-icon {
    width: 35px;
    height: 35px;
    background-color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.feature-title {
    font-weight: 600;
    color: var(--secondary);
    margin: 0;
    font-size: 1rem;
}

.feature-desc {
    color: var(--grey);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   AUDIENCE GRID
   ============================================ */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.audience-item {
    background-color: var(--light);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 0 12px 12px 0;
    text-align: center;
}

.audience-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    margin: 0 auto 15px;
}

.audience-title {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1rem;
}

.audience-desc {
    color: var(--grey);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* ============================================
   COMPONENTS GRID (EN 16931)
   ============================================ */
.components-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.component-item {
    background-color: var(--light);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 0 12px 12px 0;
    transition: all 0.3s ease;
}

.component-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(210, 105, 30, 0.1);
}

.component-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.component-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.component-title {
    font-weight: 600;
    color: var(--secondary);
    margin: 0;
    font-size: 1.1rem;
}

.component-desc {
    color: var(--grey);
    font-size: 0.95rem;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.component-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.component-features li {
    color: var(--grey);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
    position: relative;
    padding: 20px 0;
    margin: 30px 0;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-marker {
    width: 50px;
    min-width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.timeline-marker::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 50px;
    background-color: var(--border);
}

.timeline-item:last-child .timeline-marker::after {
    display: none;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 0px 0px 0px 20px;
    border-radius: 10px;
    border: 1px solid var(--border);
    margin-top: 20px 0 0 0;
}

.timeline-duration {
    display: inline-block;
    padding: 3px 10px;
    background-color: rgba(210, 105, 30, 0.1);
    color: var(--primary);
    border-radius: 12px;
    font-size: 0.85rem;
    margin-top: 10px;
}

/* Timeline variant voor EN 16931 */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    transform: translateX(-50%);
}

.timeline-date {
    position: inherit;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    left: 50%;
    margin-left: -25px;
    z-index: 1;
    font-size: 0.85rem;
    box-shadow: 0 3px 10px rgba(210, 105, 30, 0.3);
}

.timeline-title {
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-description {
    color: var(--grey);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* ============================================
   RELATIONSHIP DIAGRAM (EN 16931)
   ============================================ */
.relationship-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.relationship-diagram {
    background: var(--light);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border-left: 4px solid var(--primary);
}

.diagram-box {
    background: var(--secondary);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 10px 0;
    font-weight: 600;
    font-size: 0.95rem;
}

.diagram-box.peppol {
    background: var(--primary);
}

.diagram-box.syntax {
    background: #6B46C1;
}

.diagram-arrow {
    text-align: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin: 5px 0;
}

/* ============================================
   SPECS TABLE (EN 16931)
   ============================================ */
.specs-table {
    background: var(--light);
    border-radius: 12px;
    overflow: hidden;
    border-left: 4px solid var(--primary);
    margin-top: 25px;
}

.specs-table table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th {
    background: var(--primary);
    color: white;
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.specs-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table tr:hover {
    background: rgba(210, 105, 30, 0.05);
}

.syntax-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(210, 105, 30, 0.1);
    color: var(--primary);
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 2px;
}

/* ============================================
   RESPONSIVE COMPONENTS
   ============================================ */
@media (max-width: 768px) {
    .intro-grid,
    .generic-grid,
    .process-steps,
    .benefits-grid,
    .services-grid,
    .provider-grid,
    .tasks-grid,
    .authorities-grid,
    .situation-grid,
    .checklist-grid,
    .overview-grid,
    .features-grid,
    .audience-grid,
    .components-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .quick-overview {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-marker::after {
        display: none;
    }

    .relationship-container {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }

    .timeline-date {
        left: 20px;
        margin-left: -10px;
    }

    .timeline-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Lijsten met alleen vinkjes (geen oranje bullets) */
.provider-features,
.checklist {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.provider-features li,
.checklist li {
    padding-left: 0;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.provider-features li::before,
.checklist li::before {
    display: none !important; /* Override entry-content bullets */
}

.check-icon {
    color: #28a745;
    font-weight: bold;
    font-size: 1rem;
    min-width: 16px;
    margin-top: 2px;
}