:root {
    --hero-bg: #F2C300;
    --primary: #1a1a1a;
    --light-yellow: #f0f0f0;
    --white: #FFFFFF;
    --max-width: 1100px;
}
* { box-sizing: border-box; }
.page-wrapper {
    overflow-x: hidden;
    width: 100%;
}
html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    width: 100%;
}
body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--primary);
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
}
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}
.header {
    background: var(--white);
    padding: 40px 0;
}
.header .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.header-logo {
    height: 80px;
    width: auto;
    max-width: 100%;
}
.hero {
    background: var(--hero-bg);
    padding: 48px 0 56px;
    text-align: center;
}
.hero h1 {
    margin: 0 0 12px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}
.hero p {
    margin: 0 0 24px;
    font-size: 1.1rem;
    color: var(--primary);
    opacity: 0.9;
}
.hero-form {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 480px;
    margin: 0 auto 20px;
}
.hero-form input {
    flex: 1;
    min-width: 200px;
    padding: 14px 18px;
    min-height: 48px;
    border: 2px solid var(--primary);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}
.hero-form input:focus { outline: none; border-color: var(--primary); }
.hero-form button {
    padding: 14px 24px;
    min-height: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}
.hero-form button:hover { background: #0d0d0d; }
.hero small {
    display: block;
    font-size: 0.9rem;
    color: var(--primary);
    opacity: 0.85;
}
section { padding: 40px 0; }
section:nth-child(even) { background: var(--light-yellow); }
.section-title {
    margin: 0 0 20px;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary);
}
.number-list { list-style: none; margin: 0; padding: 0; }
.number-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.number-list li:last-child { border-bottom: none; }
.number-list a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}
.number-list a:hover { text-decoration: underline; }
.number-meta { font-size: 0.9rem; color: var(--primary); opacity: 0.8; }
.empty-state { color: var(--primary); opacity: 0.7; }
.netnummer-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.netnummer-grid a {
    display: inline-block;
    padding: 10px 18px;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    border: 2px solid var(--primary);
}
.netnummer-grid a:hover {
    background: var(--primary);
    color: var(--white);
}
.faq-related-section { background: var(--white); }
.faq-related-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.faq-column { flex: 1; min-width: 0; }
.faq-column .faq-list { max-width: 720px; }
.related-column {
    flex-shrink: 0;
    min-width: 0;
}
@media (min-width: 769px) {
    .faq-related-inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 48px;
    }
    .faq-column { flex: 1 1 55%; }
    .related-column {
        flex: 0 0 280px;
        min-width: 0;
    }
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    border-left: 4px solid var(--hero-bg, #F2C300);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border-left-color: var(--primary);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding-right: 36px;
    position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--primary);
    opacity: 0.6;
    transition: transform 0.2s;
}
.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(0deg);
}
.faq-item summary h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.4;
}
.faq-item p {
    margin: 10px 0 0;
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.06);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--primary);
    opacity: 0.9;
}
.seo-text { font-size: 1rem; line-height: 1.7; color: var(--primary); opacity: 0.95; }
.seo-text p { margin: 0 0 1em; }
.footer {
    background: #e8e8e8;
    color: var(--primary);
    padding: 32px 0;
    margin-top: 40px;
}
.footer a { color: var(--primary); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px 32px; }
.page-content { padding: 40px 0; min-height: 50vh; }
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--white) !important;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
}
.btn:hover { background: #0d0d0d; }
.rating-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}
.rating-storend { background: #ffe0e0; color: #b33; }
.rating-handig { background: #e0f5e0; color: #3a3; }
.rating-gevaarlijk { background: #ffe0e0; color: #c00; }
.review-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.review-item:last-child { border-bottom: none; }
.review-meta { font-size: 0.9rem; opacity: 0.8; margin-bottom: 8px; }
.stats-block { display: flex; gap: 24px; font-size: 1rem; margin-bottom: 16px; }
.stats-block span { opacity: 0.9; }

/* Nummerpagina – telefoonnummer prominent */
.number-hero {
    padding: 48px 0 40px;
    background: var(--light-yellow);
}
.number-hero-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 32px;
}
.number-hero-content {
    flex: 1;
    min-width: 0;
}
.number-type {
    margin: 0 0 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.number-main {
    margin: 0 0 16px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}
.number-sublabel {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: var(--primary);
    opacity: 0.75;
}
.number-variants {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}
.number-variants span {
    font-size: 0.95rem;
    color: var(--primary);
    opacity: 0.85;
}
.stats-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}
.stat-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    min-width: 200px;
    padding: 20px 28px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
}
.stat-icon svg {
    width: 24px;
    height: 24px;
}
.stat-icon-views {
    background: rgba(26, 26, 26, 0.08);
    color: var(--primary);
}
.stat-icon-reviews {
    background: rgba(242, 195, 0, 0.25);
    color: var(--primary);
}
.stat-body {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    flex-wrap: wrap;
}
.stat-times {
    font-weight: 400;
    opacity: 0.7;
    margin: 0 2px;
}
.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}
.stat-label {
    font-size: 0.9rem;
    color: var(--primary);
    opacity: 0.75;
}

/* Actiebalk */
.action-bar {
    padding: 16px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 24px;
}
.action-bar-warning {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.action-bar-positive {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.action-bar-caution {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

/* Rating summary */
.rating-summary {
    margin-bottom: 20px;
}
.rating-summary-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}
.rating-summary-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.rating-summary-label {
    min-width: 90px;
    font-size: 0.9rem;
    font-weight: 600;
}
.rating-summary-label.rating-betrouwbaar { color: #155724; }
.rating-summary-label.rating-normaal { color: #383d41; }
.rating-summary-label.rating-irritant { color: #856404; }
.rating-summary-label.rating-verdacht { color: #721c24; }
.rating-summary-label.rating-gevaarlijk { color: #721c24; }
.rating-summary-bar-wrap {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}
.rating-summary-bar {
    height: 100%;
    border-radius: 4px;
    min-width: 2px;
}
.rating-summary-bar.rating-betrouwbaar { background: #28a745; }
.rating-summary-bar.rating-normaal { background: #6c757d; }
.rating-summary-bar.rating-irritant { background: #e0a800; }
.rating-summary-bar.rating-verdacht { background: #dc3545; }
.rating-summary-bar.rating-gevaarlijk { background: #721c24; }
.rating-summary-count {
    min-width: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: right;
}

/* Reviews sort */
.reviews-sort {
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.reviews-sort button.sort-btn {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: var(--primary);
    text-decoration: none;
    margin-right: 16px;
    cursor: pointer;
}
.reviews-sort button.sort-btn:hover { text-decoration: underline; }
.reviews-sort button.sort-btn.active {
    font-weight: 700;
    text-decoration: underline;
}

/* Review cards */
.reviews-list { display: flex; flex-direction: column; gap: 16px; }
.reviews-list-more { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(0,0,0,0.08); }

/* Reviews uitklappen */
.reviews-expand {
    margin-top: 16px;
}
.reviews-expand summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 20px;
    background: var(--light-yellow);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.reviews-expand summary::-webkit-details-marker { display: none; }
.reviews-expand summary:hover {
    background: #ebebeb;
}
.reviews-expand-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--primary);
    transition: transform 0.2s;
}
.reviews-expand[open] .reviews-expand-arrow {
    transform: rotate(180deg);
}
.reviews-expand summary .summary-expanded { display: none; }
.reviews-expand[open] summary .summary-collapsed { display: none; }
.reviews-expand[open] summary .summary-expanded { display: inline; }
.review-card {
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.08);
}
.review-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.review-stars { font-size: 1.1rem; color: #e0b000; }
.review-score-label { font-size: 0.9rem; font-weight: 600; opacity: 0.9; }
.review-date { font-size: 0.85rem; opacity: 0.7; }
.review-comment { margin: 0; font-size: 1rem; line-height: 1.6; }
.empty-reviews {
    padding: 32px;
    text-align: center;
    background: var(--white);
    border-radius: 10px;
    border: 1px dashed rgba(0,0,0,0.15);
}
.empty-reviews p { margin: 0 0 8px; }

/* Review form */
.review-form-section { background: var(--light-yellow); }
.section-intro { margin: -8px 0 24px; opacity: 0.9; }
.review-form { max-width: 680px; }
.review-form .form-group input,
.review-form .form-group textarea { max-width: 100%; }
.form-group-review .form-hint {
    margin: -4px 0 12px;
    font-size: 0.9rem;
    opacity: 0.8;
}
.rating-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.rating-chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    background: var(--white);
    border: 2px solid rgba(0,0,0,0.12);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.rating-chip:hover { background: #fafafa; }
.rating-chip input { position: absolute; opacity: 0; pointer-events: none; }
.rating-chip-betrouwbaar { border-color: #c3e6cb; }
.rating-chip-betrouwbaar:has(input:checked) { background: #d4edda; border-color: #28a745; }
.rating-chip-normaal { border-color: #dee2e6; }
.rating-chip-normaal:has(input:checked) { background: #e2e3e5; border-color: #6c757d; }
.rating-chip-irritant { border-color: #ffeaa7; }
.rating-chip-irritant:has(input:checked) { background: #fff3cd; border-color: #e0a800; }
.rating-chip-verdacht { border-color: #f5c6cb; }
.rating-chip-verdacht:has(input:checked) { background: #f8d7da; border-color: #dc3545; }
.rating-chip-gevaarlijk { border-color: #f5c6cb; }
.rating-chip-gevaarlijk:has(input:checked) { background: #f5c6cb; border-color: #721c24; }
.review-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}
.review-badge.rating-betrouwbaar { background: #d4edda; color: #155724; }
.review-badge.rating-normaal { background: #e2e3e5; color: #383d41; }
.review-badge.rating-irritant { background: #fff3cd; color: #856404; }
.review-badge.rating-verdacht { background: #f8d7da; color: #721c24; }
.review-badge.rating-gevaarlijk { background: #f5c6cb; color: #721c24; }
.btn-submit { margin-top: 8px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    max-width: 400px;
    padding: 12px;
    border: 2px solid var(--primary);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}
.form-group textarea { min-height: 100px; resize: vertical; }
.alert { padding: 12px 16px; border-radius: 8px; margin-bottom: 20px; }
.alert-success { background: #e0f5e0; }
.alert-error { background: #ffe0e0; }
@media (max-width: 768px) {
    .nummer-page {
        overflow-x: hidden;
    }
    .nummer-page .page-wrapper {
        overflow-x: hidden;
        position: relative;
        width: 100%;
    }
    .nummer-page .hero .container,
    .nummer-page .number-hero,
    .nummer-page .review-form-section,
    .nummer-page .rating-chips {
        overflow-x: hidden;
    }
    .nummer-page .number-hero .container {
        overflow-x: hidden;
        max-width: 100%;
    }
    .nummer-page .number-hero-inner {
        overflow-x: hidden;
    }
    .nummer-page .number-hero-content {
        max-width: 100%;
        overflow-wrap: break-word;
    }
    .nummer-page .number-main {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-all;
    }
    .header .container { overflow-x: hidden; }
    main { overflow-x: hidden; max-width: 100%; }
    .container { max-width: 100%; padding-left: 16px; padding-right: 16px; overflow-x: hidden; }
    section { max-width: 100%; }
    .number-hero-inner {
        flex-direction: column;
        gap: 24px;
        max-width: 100%;
    }
    .number-hero-content { flex: 1 1 auto; max-width: 100%; }
    .stats-cards { width: 100%; min-width: 0; }
    .stat-card {
        min-width: 0;
        padding: 14px 16px;
    }
    .number-main {
        font-size: 1.75rem;
        letter-spacing: 1px;
        word-break: break-all;
        overflow-wrap: break-word;
    }
    .number-variants span { word-break: break-all; }
    .number-hero { padding: 32px 0 28px; }
    .review-form .form-group textarea { max-width: 100%; }
    .header { padding: 32px 0; }
    .header-logo { height: 64px; }
    .hero { padding: 32px 0 40px; }
    .hero h1 { font-size: 1.5rem; }
    .hero p { font-size: 1rem; margin-bottom: 20px; }
    .hero-form { flex-direction: column; max-width: none; }
    .hero-form input { min-width: 0; width: 100%; }
    .hero-form button { width: 100%; }
    section { padding: 28px 0; }
    .section-title { font-size: 1.2rem; margin-bottom: 16px; }
    .number-list li { padding: 14px 0; }
    .number-list a { display: block; margin-bottom: 4px; }
    .number-meta { display: block; font-size: 0.85rem; }
    .netnummer-grid a { flex: 1 1 calc(50% - 6px); min-width: 80px; text-align: center; }
}
@media (max-width: 480px) {
    .number-main { font-size: 1.5rem; letter-spacing: 0.5px; }
    .header { padding: 28px 0; }
    .header-logo { height: 56px; }
    .hero h1 { font-size: 1.35rem; }
    .footer-links { flex-direction: column; gap: 12px; }
}
