/* =============================================
   Index — Hero, Diensten, Accordion, Remote,
   Info Bar
   ============================================= */

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 720px;
    margin-top: -4.5rem;
    padding-top: 4.5rem;
    background-image: url(../img/shop-front-mobile.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        background-image: url(../img/shop-front-small.webp);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 21, 38, 0.75) 55%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: 7rem 0;
}

.hero-content h1 {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-actions a {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.25rem;
    border-radius: 8px;
    transition: background 0.2s, transform 0.15s, border-color 0.2s;
    display: inline-flex;
    align-items: center;
}

.btn-primary {
    background: #FFB61B;
    color: #1a1a2e;
}

.btn-primary:hover {
    background: #e6a314;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
    animation: heroFadeUp 0.7s ease both;
    animation-delay: 0.05s;
}

.hero-content p {
    animation: heroFadeUp 0.7s ease both;
    animation-delay: 0.22s;
}

.hero-actions {
    animation: heroFadeUp 0.7s ease both;
    animation-delay: 0.4s;
}

/* ---------- Diensten Section ---------- */
.diensten {
    padding: 5rem 0 6rem;
    background: #f7f8fc;
}

/* ---------- Services Accordion ---------- */
.diensten-accordion-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.accordion-list {
    border: 1.5px solid #eeeff5;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.acc-item {
    border-bottom: 1px solid #eeeff5;
}

.acc-item:last-child {
    border-bottom: none;
}

.acc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: none;
    border: none;
    padding: 1.1rem 1.3rem;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background 0.2s;
}

.acc-trigger:hover,
.acc-item.is-open .acc-trigger {
    background: #fffbf0;
}

.acc-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: #fff8e6;
    color: #FFB61B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    border: 1.5px solid #ffe9a0;
}

.acc-icon--img {
    padding: 0.3rem;
}

.acc-icon--img img {
    height: 18px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.acc-title {
    flex: 1;
    font-size: 0.97rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
}

.acc-chevron {
    color: #c0c0d0;
    font-size: 0.8rem;
    transition: transform 0.3s ease, color 0.2s;
    flex-shrink: 0;
}

.acc-item.is-open .acc-chevron {
    transform: rotate(180deg);
    color: #FFB61B;
}

.acc-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    padding: 0 1.3rem;
}

.acc-body p {
    font-size: 0.93rem;
    color: #5a5a7a;
    line-height: 1.75;
    padding: 0.75rem 0 1.2rem;
    border-top: 1px solid #f3f3f7;
    margin: 0;
}

.acc-item.is-open .acc-body {
    max-height: 999px;
}

.accordion-photo {
    position: sticky;
    top: 6rem;
}

.accordion-photo-stack {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.accordion-photo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.45s ease;
    will-change: opacity;
}

.accordion-photo-img.is-active {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .accordion-photo-img {
        transition: none;
    }
}

/* ---------- Remote / TeamViewer Section ---------- */
.remote {
    background: #0D1626;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.remote::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(145, 189, 255, 0.28) 0%, transparent 70%);
    pointer-events: none;
}

.remote-header {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 3rem;
}

.remote-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 182, 27, 0.15);
    color: #FFB61B;
    border: 1px solid rgba(255, 182, 27, 0.4);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.85rem;
    border-radius: 99px;
    margin-bottom: 1rem;
}

.remote-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.85rem;
    line-height: 1.25;
}

.remote-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    line-height: 1.7;
}

.remote-body {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.remote-call-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #FFB61B;
    color: #1a1a2e;
    border-radius: 16px;
    padding: 1.75rem 2rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 32px rgba(255, 182, 27, 0.25);
}

.remote-call-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(255, 182, 27, 0.4);
}

.remote-call-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.remote-call-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.7;
    margin-bottom: 0.2rem;
}

.remote-call-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.remote-call-sub {
    display: block;
    font-size: 0.82rem;
    margin-top: 0.3rem;
    opacity: 0.65;
}

.remote-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.remote-divider::before,
.remote-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.remote-dl-label {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: center;
}

.remote-dl-label strong {
    color: rgba(255, 255, 255, 0.85);
}

.remote-dl-alt {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.remote-dl-alt a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.remote-dl-alt a:hover {
    color: #fff;
}

.remote-dl-alt i {
    font-size: 0.8rem;
}

.remote-dl-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.remote-downloads {
    display: flex;
    flex-direction: column;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    max-width: 100%;
}

.download-btn i {
    font-size: 2rem;
    flex-shrink: 0;
}

.download-btn strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.download-btn small {
    opacity: 0.65;
    font-size: 0.8rem;
}

.download-btn.windows,
.download-btn.mac {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.download-btn.windows:hover,
.download-btn.mac:hover {
    background: rgba(255, 255, 255, 0.13);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* ---------- Info Bar ---------- */
.info-bar {
    background: #f7f8fc;
    padding: 3.5rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item > i {
    font-size: 1.5rem;
    color: #FFB61B;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.info-item h2 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.info-item p {
    font-size: 0.92rem;
    color: #5a5a7a;
    line-height: 1.6;
}

.info-item a {
    color: #8a6000;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 6px;
    margin: 0 -6px;
}

.info-item a:hover {
    text-decoration: underline;
}

/* =============================================
   Responsive — Index Page
   ============================================= */

@media (max-width: 1024px) {
    .remote-dl-buttons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Hero */
    .hero {
        margin-top: -3.75rem;
        padding-top: 3.75rem;
        padding-bottom: 1rem;
        min-height: auto;
    }

    .hero-overlay {
        background: linear-gradient(160deg, rgba(30, 22, 10, 0.88) 0%, rgba(30, 22, 10, 0.65) 100%);
    }

    .hero-content {
        padding: 4.5rem 0 4rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.7rem;
        margin-bottom: 1.1rem;
        padding-top: 1rem;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.75rem;
        color: rgba(255, 255, 255, 0.85);
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content p br {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        margin-bottom: 2rem;
    }

    .hero-actions a {
        text-align: center;
        justify-content: center;
        padding: 0.7rem 1.25rem;
        font-size: 0.9rem;
        width: 80%;
    }

    /* Diensten */
    .diensten {
        padding: 3rem 0;
    }

    .diensten-accordion-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .accordion-photo {
        position: static;
        order: -1;
    }

    .accordion-photo-stack {
        aspect-ratio: 16 / 9;
    }

    /* Remote */
    .remote {
        display: block;
        padding: 3rem 0;
    }

    .remote-header p,
    .remote-divider,
    .remote-downloads {
        display: none;
    }

    .remote-call-number {
        font-size: 1.6rem;
    }

    .remote-call-cta {
        padding: 1.5rem;
    }

    /* Info bar */
    .info-bar {
        padding: 2.5rem 0;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-item {
        padding-bottom: 1.25rem;
        border-bottom: 1px solid #e2e4ea;
        align-items: center;
        text-align: center;
    }

    .info-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 2.1rem;
    }

    .hero-actions a {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }

    .download-btn {
        padding: 1rem 1.25rem;
        gap: 1rem;
    }

    .download-btn i {
        font-size: 2rem;
    }

    .download-btn strong {
        font-size: 1rem;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
}

/* =============================================
   Ik wil graag — Tegel sectie
   ============================================= */

.ik-wil-graag {
    background: #ffffff;
    padding: 5rem 0;
    border-bottom: 1px solid #eeeff5;
}

.iwg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.iwg-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: #FFB61B;
    border: none;
    border-radius: 16px;
    padding: 2rem 1.5rem 1.75rem;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(255, 182, 27, 0.18);
    position: relative;
    min-height: 176px;
}

.iwg-tile:hover {
    background: #e6a314;
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(255, 182, 27, 0.32);
}

.iwg-tile:focus-visible {
    outline: 3px solid #1a1a2e;
    outline-offset: 3px;
}

.iwg-tile-label {
    font-size: 0.97rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.35;
    flex: 1;
}

/* =============================================
   Wizard Modal
   ============================================= */

.wizard-modal {
    border: none;
    border-radius: 20px;
    padding: 0;
    max-width: 680px;
    width: calc(100% - 2rem);
    margin: auto;
    background: #ffffff;
    color: #1a1a2e;
    box-shadow: 0 24px 64px rgba(13, 21, 38, 0.25);
    max-height: calc(100dvh - 2rem);
    overflow-y: auto;
    animation: wizardIn 0.22s ease-out;
}

.wizard-modal::backdrop {
    background: rgba(13, 21, 38, 0.6);
    backdrop-filter: blur(3px);
    animation: wizardBackdropIn 0.22s ease-out;
}

@keyframes wizardIn {
    from { opacity: 0; transform: translateY(14px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes wizardBackdropIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.wizard-modal-inner {
    display: flex;
    flex-direction: column;
}

/* Header */
.wizard-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem 1.25rem;
    border-bottom: 1px solid #eeeff5;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
    border-radius: 20px 20px 0 0;
}

.wizard-modal-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
}

.wizard-modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 0.15s, color 0.15s;
    flex-shrink: 0;
}

.wizard-modal-close:hover {
    background: #e5e7eb;
    color: #1a1a2e;
}

/* Step indicator */
.wizard-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid #eeeff5;
    background: #fafbfc;
}

.wizard-step-item {
    display: flex;
    align-items: center;
    gap: 0;
}

.wizard-step-bubble {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e9eaef;
    color: #9ca3af;
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s, color 0.25s;
}

.wizard-step-item.is-active .wizard-step-bubble {
    background: #FFB61B;
    color: #1a1a2e;
    box-shadow: 0 0 0 3px rgba(255, 182, 27, 0.25);
}

.wizard-step-item.is-done .wizard-step-bubble {
    background: #22c55e;
    color: #fff;
}

.wizard-step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #9ca3af;
    margin-left: 0.5rem;
    white-space: nowrap;
    transition: color 0.25s;
}

.wizard-step-item.is-active .wizard-step-label {
    color: #1a1a2e;
}

.wizard-step-item.is-done .wizard-step-label {
    color: #16a34a;
}

.wizard-step-connector {
    height: 2px;
    width: 2.5rem;
    background: #e9eaef;
    margin: 0 0.25rem;
    transition: background 0.25s;
    flex-shrink: 0;
}

.wizard-step-connector.is-done {
    background: #22c55e;
}

/* Body */
.wizard-body {
    padding: 1.75rem;
    min-height: 200px;
}

.wizard-intro {
    font-size: 0.92rem;
    color: #5a5a7a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    background: #f7f8fc;
    border-radius: 10px;
    border-left: 3px solid #FFB61B;
}

/* Form fields inside wizard */
.wizard-field-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0;
}

.wizard-field-group.single {
    grid-template-columns: 1fr;
}

.wizard-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.wizard-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
}

.wizard-field label .req {
    color: #ef4444;
    margin-left: 0.2rem;
}

.wizard-field input,
.wizard-field textarea,
.wizard-field select {
    font-family: inherit;
    font-size: 0.95rem;
    color: #1a1a2e;
    background: #fff;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
    transition: border-color 0.18s, box-shadow 0.18s;
    width: 100%;
}

.wizard-field input:focus,
.wizard-field textarea:focus,
.wizard-field select:focus {
    outline: none;
    border-color: #FFB61B;
    box-shadow: 0 0 0 3px rgba(255, 182, 27, 0.18);
}

.wizard-field input.field-error,
.wizard-field textarea.field-error,
.wizard-field select.field-error {
    border-color: #ef4444;
}

.wizard-field textarea {
    resize: vertical;
    min-height: 90px;
}

/* Radio groups */
.wizard-radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1rem;
    border: none;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    min-width: 0;
}

.wizard-radio-group legend {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    display: block;
}

.wizard-radio-label {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.4;
    transition: border-color 0.18s, background 0.18s;
}

.wizard-radio-label:hover {
    border-color: #FFB61B;
    background: #fffbf0;
}

.wizard-radio-label input[type="radio"],
.wizard-radio-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: #FFB61B;
    margin: 0;
    margin-top: 1px;
    border: none;
    padding: 0;
    flex-shrink: 0;
}

.wizard-radio-label:has(input:checked) {
    border-color: #FFB61B;
    background: #fffbf0;
}

/* Conditional sub-blocks */
.wizard-conditional {
    display: none;
    padding: 1rem 1.1rem;
    background: #fafbfc;
    border-radius: 10px;
    border: 1.5px solid #eeeff5;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.wizard-conditional.is-visible {
    display: block;
}

/* Date field */
.wizard-date-field {
    display: none;
    margin-top: 0.6rem;
}

.wizard-date-field.is-visible {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

/* Optional diensten (checkboxes) */
.wizard-dienst-card {
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.1rem 1.25rem;
    margin-bottom: 0.85rem;
    transition: border-color 0.18s, background 0.18s;
}

.wizard-dienst-card:has(input:checked) {
    border-color: #FFB61B;
    background: #fffbf0;
}

.wizard-dienst-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.wizard-dienst-header input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: #FFB61B;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}

.wizard-dienst-header label {
    font-size: 0.93rem;
    font-weight: 700;
    color: #1a1a2e;
    cursor: pointer;
    line-height: 1.3;
}

.wizard-dienst-body {
    font-size: 0.85rem;
    color: #5a5a7a;
    line-height: 1.65;
    margin-top: 0.6rem;
    padding-left: 2.05rem;
}

/* Privacy checkbox */
.wizard-privacy-row {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-top: 1rem;
    font-size: 0.87rem;
    color: #374151;
    line-height: 1.5;
}

.wizard-privacy-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: #FFB61B;
    margin-top: 2px;
    flex-shrink: 0;
}

.wizard-privacy-row a {
    color: #8a6000;
    font-weight: 500;
    text-decoration: underline;
}

/* Validation error message */
.wizard-error-msg {
    color: #ef4444;
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 0.75rem;
    display: none;
}

.wizard-error-msg.is-visible {
    display: block;
}

/* Success screen */
.wizard-success {
    text-align: center;
    padding: 2rem 1rem;
}

.wizard-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.wizard-success h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0.6rem;
}

.wizard-success p {
    font-size: 0.95rem;
    color: #5a5a7a;
    line-height: 1.65;
    max-width: 400px;
    margin: 0 auto;
}

/* Footer */
.wizard-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 1.5rem 1.75rem;
    border-top: 1px solid #eee;
}

.wizard-btn-back, .wizard-btn-next, .wizard-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.wizard-btn-back { background: #f0f0f0; color: #333; }
.wizard-btn-next { background: #000; color: #fff; }
.wizard-btn-submit { background: #FFC72C; color: #000; } /* Geel voor de actie */

.wizard-btn-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

/* Zorg dat iconen netjes meeschalen */
.wizard-footer svg.icon {
    display: block;
    fill: currentColor;
}

.wizard-btn-back {
    background: #f3f4f6;
    color: #374151;
    margin-right: auto;
}

.wizard-btn-back:hover {
    background: #e5e7eb;
}

.wizard-btn-back[hidden],
.wizard-btn-next[hidden],
.wizard-btn-submit[hidden] {
    display: none;
}

.wizard-btn-next {
    background: #1a1a2e;
    color: #fff;
}

.wizard-btn-next:hover {
    background: #2a2a42;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 26, 46, 0.2);
}

.wizard-btn-submit {
    background: #FFB61B;
    color: #1a1a2e;
}

.wizard-btn-submit:hover {
    background: #e6a314;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(255, 182, 27, 0.35);
}

.wizard-btn-submit:disabled,
.wizard-btn-next:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* =============================================
   Responsive — Ik wil graag & Wizard
   ============================================= */

@media (max-width: 1024px) {
    .iwg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ik-wil-graag {
        padding: 3rem 0;
    }

    .iwg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
        margin-top: 1.75rem;
    }

    .iwg-tile {
        padding: 1.5rem 1rem 1.35rem;
        min-height: 152px;
        gap: 0.75rem;
    }

    .iwg-tile-label {
        font-size: 0.88rem;
    }

    .wizard-steps {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 1rem 1.25rem;
    }

    .wizard-step-connector {
        width: 1.5rem;
    }

    .wizard-step-label {
        display: none;
    }

    .wizard-body {
        padding: 1.25rem;
    }

    .wizard-field-group {
        grid-template-columns: 1fr;
    }

    .wizard-footer {
        padding: 1rem 1.25rem;
        gap: 0.6rem;
    }

    .wizard-btn-back,
    .wizard-btn-next,
    .wizard-btn-submit {
        padding: 0.65rem 1.1rem;
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .iwg-grid {
        grid-template-columns: 1fr;
    }

    .iwg-tile {
        flex-direction: row;
        min-height: auto;
        padding: 1.1rem 1.25rem;
        text-align: left;
        justify-content: flex-start;
    }

    .iwg-tile-label {
        text-align: left;
        flex: 1;
    }

    .wizard-modal-header {
        padding: 1.25rem;
    }

    .wizard-modal-title {
        font-size: 1.1rem;
    }
}
/* Zorg dat de icoon-container inline-flex gebruikt om de SVG perfect te centreren */
.iwg-tile-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.04); /* Zachte achtergrondcirkel voor de look */
    color: #000000;
    margin-bottom: 1rem;
    transition: background-color 0.2s ease;
}

/* Fix: dwing de SVG binnen de tegel om exact 28x28px te zijn */
.iwg-tile-icon svg.icon {
    width: 28px;
    height: 28px;
    fill: currentColor; /* Zorgt dat het icoon de tekstkleur/kleur van de container overneemt */
    flex-shrink: 0;     /* Voorkomt dat het icoon vervormt of kleiner wordt */
    display: block;
}

/* Het pijltje aan de rechter-/onderkant */
.iwg-tile-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    margin-top: auto; /* Duwt het pijltje netjes naar de onderkant van de tegel */
}

/* Fix: dwing het pijltje naar 16x16px */
.iwg-tile-arrow svg.icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

/* Leuke subtiele animatie: schuif het pijltje iets naar rechts bij hover op de tegel */
.iwg-tile:hover .iwg-tile-arrow svg.icon {
    transform: translateX(4px);
}

/* Op smalle schermen staat de tegel in rij-layout (icoon - label - pijltje);
   de margins voor de kolom-layout moeten dan verticaal centreren i.p.v. onderaan duwen */
@media (max-width: 480px) {
    .iwg-tile-icon {
        margin-bottom: 0;
    }

    .iwg-tile-arrow {
        margin-top: 0;
        align-self: center;
    }
}
