/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-3) var(--sp-7, 1.75rem);
    font-weight: 700;
    font-size: var(--fs-sm);
    letter-spacing: 0.02em;
    transition: background var(--ease-fast), transform var(--ease-fast);
    white-space: nowrap;
    border-radius: 9999px;
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.btn--lg { padding: var(--sp-4) var(--sp-8); font-size: var(--fs-base); }
.btn--sm { padding: var(--sp-2) var(--sp-5); font-size: var(--fs-xs); }

.btn--green {
    background: var(--color-green);
    color: #fff;
}
.btn--green::after { content: ' \2192'; }
.btn--green:hover { background: var(--color-green-h); }

.btn--dark {
    background: var(--color-dark);
    color: #fff;
}
.btn--dark::after { content: ' \2192'; }
.btn--dark:hover { background: var(--color-dark-2); }

.btn--outline {
    background: transparent;
    color: var(--color-dark);
    border: 1.5px solid var(--color-grey-300);
}
.btn--outline:hover {
    border-color: var(--color-dark);
}

.btn--outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--outline-white:hover {
    border-color: #fff;
}

/* ===== OVERLINE LABEL ===== */
.overline {
    display: none;
}

/* ===== SERVICE CARD ===== */
.svc-card {
    background: var(--color-white);
    display: flex;
    flex-direction: column;
}

.svc-card__img {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--color-grey-100);
    position: relative;
    overflow: hidden;
}

.svc-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.svc-card__img-inner {
    position: absolute;
    inset: 0;
    background: var(--color-grey-200);
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-card__body {
    padding: var(--sp-6);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.svc-card__title {
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: var(--sp-2);
}

.svc-card__text {
    font-size: var(--fs-sm);
    color: var(--color-muted);
    line-height: 1.75;
    max-width: none;
    margin-bottom: var(--sp-6);
}

.svc-card__link {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    padding-top: var(--sp-5);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: 0.01em;
    border: 1.5px solid var(--color-grey-300);
    padding: var(--sp-3) var(--sp-5);
    transition: border-color var(--ease-fast), background var(--ease-fast);
    align-self: flex-start;
    margin-top: auto;
    text-decoration: none;
}
.svc-card__link::after { content: '\2192'; margin-left: var(--sp-3); }
.svc-card__link:hover {
    border-color: var(--color-dark);
    background: var(--color-grey-100);
}

/* ===== PRODUCT CARD ===== */
.prod-card {
    display: block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
}

.prod-card__img {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--color-grey-100);
    position: relative;
    overflow: hidden;
    transition: transform var(--ease-slow);
}

.prod-card__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    padding: var(--sp-4);
}

.prod-card:hover .prod-card__img {
    transform: scale(1.03);
}

.prod-card__overlay {
    display: none;
}

.prod-card__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--sp-4) var(--sp-5) var(--sp-5);
    background: rgba(240,240,238,0.97);
}

.prod-card__title {
    font-size: var(--fs-lg);
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: var(--sp-1);
}

.prod-card__sub {
    font-size: var(--fs-xs);
    color: var(--color-muted);
    font-weight: 500;
    letter-spacing: 0.03em;
}

/* ===== USP ROW ===== */
.usp-row {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-4);
}

.usp-row__check {
    width: 20px;
    height: 20px;
    background: var(--color-green);
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usp-row__check::after {
    content: '';
    display: block;
    width: 6px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg) translateY(-1px);
}

.usp-row__text {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.5;
}

.usp-row__sub {
    font-size: var(--fs-sm);
    color: var(--color-muted);
    margin-top: 2px;
    font-weight: 400;
}

/* ===== STEP ===== */
.step {
    display: flex;
    gap: var(--sp-5);
    align-items: flex-start;
}

.step__num {
    flex-shrink: 0;
    font-size: var(--fs-5xl);
    font-weight: 900;
    color: var(--color-grey-300);
    line-height: 1;
    letter-spacing: -0.04em;
    min-width: 3rem;
    margin-top: -8px;
}

.step__title {
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: var(--sp-2);
}

.step__text {
    font-size: var(--fs-sm);
    color: var(--color-muted);
    line-height: 1.75;
    max-width: none;
}

/* ===== TESTIMONIAL ===== */
.review {
    background: var(--color-white);
    border: 1px solid var(--color-grey-200);
    padding: var(--sp-8);
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
}

.review__stars {
    display: flex;
    gap: 2px;
}

.review__star {
    width: 14px;
    height: 14px;
    background: #D4A017;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.review__text {
    font-size: var(--fs-base);
    color: var(--color-text);
    line-height: 1.75;
    font-style: italic;
    max-width: none;
}

.review__author {
    padding-top: var(--sp-4);
    border-top: 1px solid var(--color-grey-200);
    margin-top: auto;
}

.review__name {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--color-dark);
}

.review__role {
    font-size: var(--fs-xs);
    color: var(--color-muted);
    margin-top: 2px;
}

/* ===== CONTACT CARD ===== */
.cta-card {
    background: var(--color-grey-100);
    border: 1px solid var(--color-grey-200);
    border-top: 3px solid var(--color-green);
    padding: var(--sp-8);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-3);
    text-decoration: none;
    transition: box-shadow var(--ease-base);
}
.cta-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }

.cta-card__label {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-grey-400);
}

.cta-card__value {
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
}

.cta-card__desc {
    font-size: var(--fs-sm);
    color: var(--color-muted);
    max-width: none;
}

/* ===== FORM ===== */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }

.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }

.form-label {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-dark);
}

.form-input,
.form-textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--color-grey-300);
    border-radius: 0;
    font-family: inherit;
    font-size: var(--fs-base);
    color: var(--color-text);
    background: var(--color-white);
    transition: border-color var(--ease-fast);
    outline: none;
    -webkit-appearance: none;
}
.form-input:focus,
.form-textarea:focus { border-color: var(--color-green); }

.form-textarea { resize: vertical; min-height: 130px; }

/* ===== JETFORMBUILDER → wireframe form stijl ===== */
.jet-form-builder__form { display: flex; flex-direction: column; gap: var(--sp-4); }

/* Twee velden naast elkaar: voornaam+achternaam, email+telefoon */
.jet-form-builder__form .jet-form-builder-row:nth-child(1),
.jet-form-builder__form .jet-form-builder-row:nth-child(2) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
}
@media (max-width: 640px) {
    .jet-form-builder__form .jet-form-builder-row:nth-child(1),
    .jet-form-builder__form .jet-form-builder-row:nth-child(2) {
        grid-template-columns: 1fr;
    }
}

.jet-form-builder-row { display: flex; flex-direction: column; gap: var(--sp-2); }

.jet-form-builder__label,
.jet-form-builder-row > label { font-size: var(--fs-sm); font-weight: 600; color: var(--color-dark); }

.jet-form-builder__field input,
.jet-form-builder__field select,
.jet-form-builder__field textarea,
.jet-form-builder-row input[type="text"],
.jet-form-builder-row input[type="email"],
.jet-form-builder-row input[type="tel"],
.jet-form-builder-row select,
.jet-form-builder-row textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--color-grey-300);
    border-radius: 0;
    font-family: inherit;
    font-size: var(--fs-base);
    color: var(--color-text);
    background: var(--color-white);
    transition: border-color var(--ease-fast);
    outline: none;
    -webkit-appearance: none;
    width: 100%;
    box-sizing: border-box;
}
.jet-form-builder__field input:focus,
.jet-form-builder__field select:focus,
.jet-form-builder__field textarea:focus,
.jet-form-builder-row input:focus,
.jet-form-builder-row select:focus,
.jet-form-builder-row textarea:focus { border-color: var(--color-green); }

.jet-form-builder__field textarea,
.jet-form-builder-row textarea { resize: vertical; min-height: 130px; }

/* Submit knop */
.jet-form-builder__submit button,
.jet-form-builder__submit input[type="submit"],
.jet-form-builder-row button[type="submit"] {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    background: var(--color-green);
    color: #fff;
    font-family: inherit;
    font-size: var(--fs-base);
    font-weight: 700;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background var(--ease-fast);
}
.jet-form-builder__submit button:hover,
.jet-form-builder__submit input[type="submit"]:hover,
.jet-form-builder-row button[type="submit"]:hover { background: var(--color-green-dark, #235230); }

/* Success/error messages */
.jet-form-builder__success { color: var(--color-green); font-weight: 600; margin-top: var(--sp-4); }
.jet-form-builder__error,
.field-error { color: #c0392b; font-size: var(--fs-sm); margin-top: 0.25rem; }
