/* ─── Services list ─── */
.service-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    padding: 3rem 0;
    border-bottom: 1px solid var(--color-border);
}
.service-row:last-child { border-bottom: none; }

.service-row__num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(1,151,175,0.18);
    line-height: 1;
    padding-top: 0.25rem;
    user-select: none;
}

.service-row__title { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 0.75rem; }
.service-row__text { color: rgba(13,13,13,0.7); margin-bottom: 1.25rem; }

.service-row__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1.5rem;
}
.service-row__list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(13,13,13,0.75);
}

/* ─── Add-ons cards ─── */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.addon-card {
    background: rgba(245,244,240,0.04);
    border: 1px solid rgba(245,244,240,0.1);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: border-color 0.3s;
}
.addon-card:hover { border-color: rgba(1,151,175,0.4); }
.addon-card__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 0.75rem; }
.addon-card__title { color: var(--color-white); font-size: 1.1rem; }
.addon-card__text { font-size: 0.875rem; color: rgba(245,244,240,0.6); margin-bottom: 1.25rem; }
.addon-card__price { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; color: var(--color-accent); }
.addon-card__price-note { font-family: var(--font-body); font-size: 0.7rem; font-weight: 400; color: var(--color-muted-on-dark); }
.addons-cta { text-align: center; }

@media (max-width: 768px) {
    .service-row { grid-template-columns: 1fr; gap: 0.75rem; }
    .service-row__num { font-size: 2rem; }
    .service-row__list { grid-template-columns: 1fr; }
    .addons-grid { grid-template-columns: 1fr; }
}

/* ─── Meer lucht op alle sections ─── */
.pijnpunten-section,
.services-section,
.addons-section,
.werkwijze-section {
    padding-block: clamp(6rem, 9vw, 9rem);
}

/* ─── Meer lucht in het final CTA blok ─── */
.cta-section .section__label     { margin-bottom: 1.5rem; }
.cta-section .cta-section__title { margin-bottom: 1.75rem; }
.cta-section .cta-section__text  { margin-bottom: 3rem; }

/* ─── Pijnpunten intro ─── */
.pijnpunten-intro {
    color: rgba(245,244,240,0.6);
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    max-width: 60ch;
    margin-inline: auto;
    margin-top: 1.25rem;
}

/* ─── Diensten CTA strip ─── */
.diensten-cta-strip {
    padding-block: clamp(3rem, 5vw, 4.5rem);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    text-align: center;
}
.diensten-cta-strip__title {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    margin-bottom: 0.75rem;
}
.diensten-cta-strip__text {
    color: rgba(13,13,13,0.65);
    font-size: 0.95rem;
    max-width: 60ch;
    margin-inline: auto;
    margin-bottom: 1.75rem;
}
.diensten-cta-strip__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Addons intro ─── */
.addons-intro {
    color: rgba(245,244,240,0.6);
    font-size: 0.95rem;
    max-width: 58ch;
    margin-top: 1rem;
}
.addon-card__note {
    font-size: 0.75rem;
    color: var(--color-muted-on-dark);
    margin-top: 0.5rem;
    max-width: none;
}

/* ─── Werkwijze ─── */
.werkwijze-stappen {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.werkwijze-stap__num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(1,151,175,0.2);
    line-height: 1;
    margin-bottom: 0.75rem;
    user-select: none;
}
.werkwijze-stap__titel {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}
.werkwijze-stap__tekst {
    font-size: 0.875rem;
    color: rgba(13,13,13,0.65);
    line-height: 1.65;
}

@media (max-width: 1024px) {
    .werkwijze-stappen { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .page-hero__actions { flex-direction: column; }
    .page-hero__actions .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; }
    .werkwijze-stappen { grid-template-columns: repeat(2, 1fr); }
    .diensten-cta-strip__actions { flex-direction: column; align-items: center; }
    .diensten-cta-strip__actions .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; }
}
@media (max-width: 480px) {
    .werkwijze-stappen { grid-template-columns: 1fr; }
}

/* ─── Custom vs Template vergelijking ─── */
.custom-vs-section {
    padding-block: clamp(5rem, 8vw, 7rem);
    border-top: 1px solid var(--color-border);
}
.cvt-intro {
    color: rgba(13,13,13,0.65);
    font-size: 0.95rem;
    max-width: 58ch;
    margin-top: 1rem;
}
.cvt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}
.cvt-col {
    border-radius: var(--radius-md);
    padding: 2rem 2.25rem;
    border: 1px solid var(--color-border);
}
.cvt-col--light { background: var(--color-white); }
.cvt-col--accent {
    background:
        linear-gradient(135deg, rgba(26,26,46,0) 0%, rgba(26,26,46,0.55) 100%),
        linear-gradient(135deg, #1A1A2E 0%, #1A1A2E 35%, #0197AF 100%);
    border-color: var(--color-accent);
}
.cvt-col__title {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid;
}
.cvt-col--light .cvt-col__title {
    color: var(--color-text);
    border-bottom-color: var(--color-border);
}
.cvt-col--accent .cvt-col__title {
    color: var(--color-accent);
    border-bottom-color: rgba(1,151,175,0.3);
}
.cvt-col__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.cvt-col__list li {
    font-size: 0.875rem;
    line-height: 1.6;
    padding-left: 1.1rem;
    position: relative;
}
.cvt-col__list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-size: 0.7rem;
    line-height: 1.95;
}
.cvt-col--light .cvt-col__list li { color: rgba(13,13,13,0.7); }
.cvt-col--accent .cvt-col__list li { color: rgba(245,244,240,0.75); }

@media (max-width: 768px) {
    .cvt-grid { grid-template-columns: 1fr; }
}

/* ─── Hero hoogte ─── */
.page-hero { min-height: 70vh; }

/* ─── Pijnpunten sectie ─── */
.pijnpunten-section { overflow: hidden; }

.pijnpunten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(2rem, 5vw, 5rem);
    margin-top: clamp(2.5rem, 5vw, 4rem);
}

.pijnpunt { text-align: center; }

.pijnpunt__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 2.25rem;
    background: rgba(1,151,175,0.12);
    border-radius: 50%;
    color: var(--color-accent);
}
.pijnpunt__icon svg {
    width: 32px;
    height: 32px;
}

.pijnpunt__kop {
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    color: var(--color-bg);
    margin-bottom: 1rem;
}

.pijnpunt__tekst {
    font-size: 0.9rem;
    color: rgba(245,244,240,0.68);
    line-height: 1.8;
    max-width: 28ch;
    margin-inline: auto;
}

@media (max-width: 768px) {
    .pijnpunten-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .pijnpunt__tekst { max-width: none; }
}
