.quote-flow-page {
    max-width: 680px;
    margin: 38px auto;
    padding: 0 24px;
}

.quote-card {
    background: #fff;
    border: 1px solid var(--border-light, #e5e8ef);
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 18px 50px rgba(16, 24, 40, 0.08);
}

.step-meta {
    display: flex;
    gap: 8px;
    color: var(--brand-blue, #2557f6);
    font-size: 15px;
    margin-bottom: 12px;
}

.progress-track {
    height: 3px;
    background: var(--border-light, #e5e8ef);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 28px;
}

.progress-fill {
    height: 100%;
    background: var(--brand-blue, #2557f6);
    border-radius: 999px;
}

.progress-step-1 { width: 16.6667%; }
.progress-step-2 { width: 33.3333%; }
.progress-step-3 { width: 50%; }
.progress-step-4 { width: 66.6667%; }
.progress-step-5 { width: 83.3333%; }
.progress-step-6 { width: 100%; }

.back-link {
    display: inline-block;
    color: var(--text-muted, #667085);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
}

.quote-card h1 {
    margin: 0 0 22px;
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.quote-progress-summary {
    display: grid;
    gap: 14px;
    padding: 16px 18px;
    margin: 22px 0 0;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #f8fafc;
}

.quote-progress-summary__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: #334155;
    font-size: 14px;
}

.quote-progress-summary__header span {
    font-weight: 700;
}

.quote-progress-summary__list {
    display: grid;
    gap: 12px;
    margin: 0;
}

.quote-progress-summary__group {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.quote-progress-summary__group dt {
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.quote-progress-summary__group dd {
    margin: 0;
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.quote-form {
    display: grid;
    gap: 14px;
}

/* BAG details block inside the thanks summary */
.summary-bag-info {
    padding-top: 4px;
}

/* Unit picker — shown when multiple verblijfsobjecten exist at one huisnummer */
.unit-picker {
    display: grid;
    gap: 8px;
}

.unit-picker__title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.unit-picker__intro {
    margin: 0 0 4px;
    font-size: 14px;
    color: #64748b;
}

.unit-option {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 2px solid var(--border-light, #e5e8ef);
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.1s, background 0.1s;
}

.unit-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.unit-option:has(input:checked) {
    border-color: var(--brand-blue, #2557f6);
    background: #f0f5ff;
}

.unit-picker.is-collapsed .unit-option:not(:has(input:checked)) {
    display: none;
}

.unit-picker.is-collapsed .unit-option:has(input:checked) {
    cursor: pointer;
}

.unit-option__body {
    display: grid;
    gap: 2px;
}

.unit-option__address {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.unit-option__meta {
    font-size: 13px;
    color: #64748b;
}

.unit-option__check {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-light, #e5e8ef);
    border-radius: 50%;
    flex-shrink: 0;
    transition: border-color 0.1s, background 0.1s;
}

.unit-option:has(input:checked) .unit-option__check {
    border-color: var(--brand-blue, #2557f6);
    background: radial-gradient(circle at center, var(--brand-blue, #2557f6) 45%, transparent 46%);
}

.unit-followup {
    display: grid;
    gap: 14px;
    padding-top: 8px;
}

.unit-followup__choices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.address-confirm-panel {
    background: #f7faff;
    border: 1px solid #d9e3f0;
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 20px;
}

.address-confirm-panel__label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #2557f6;
    margin-bottom: 8px;
}

.address-confirm-panel__address-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.address-confirm-panel__address {
    min-width: 0;
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.address-confirm-panel__address-edit {
    flex: 0 0 auto;
}

.address-confirm-panel__address-list {
    display: grid;
    gap: 12px;
}

.address-confirm-panel__address-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
}

.address-confirm-panel__address-tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.address-confirm-panel__address-tile {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 12px;
    border: 1px solid #d9e3f0;
    border-radius: 8px;
    background: #fff;
}

@media (max-width: 640px) {
    .address-confirm-panel__address-tiles {
        grid-template-columns: 1fr;
    }
}

.address-confirm-panel__address-type {
    margin-bottom: 3px;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.address-confirm-panel__address-meta {
    margin-top: 3px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
}

.address-confirm-panel__details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin: 0;
}

.address-confirm-panel__details > div {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.address-confirm-panel__details dt {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
}

.address-confirm-panel__details dd {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.field-label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
}

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form input[type="date"],
.quote-form input[type="number"],
.quote-form select,
.quote-form textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid #d8dde8;
    border-radius: 12px;
    padding: 13px 15px;
    font: inherit;
    background: #fff;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: var(--brand-blue, #2557f6);
    box-shadow: 0 0 0 4px rgba(37, 87, 246, 0.12);
}

/* Works for Django RadioSelect rendered as <div><div><label><input>... */
.choice-group > div {
    display: grid;
    gap: 10px;
}

.choice-group label {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #dfe3eb;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

/* Works for Django RadioSelect rendered as <ul><li><label><input>... */
.choice-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.choice-group li {
    margin: 0;
    padding: 0;
}

.choice-group label:has(input:checked) {
    border-color: var(--brand-blue, #2557f6);
    box-shadow: 0 0 0 2px rgba(37, 87, 246, 0.12);
}

.choice-group input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1.5px solid #c9ced8;
    border-radius: 999px;
    display: inline-grid;
    place-content: center;
    margin: 0;
    flex: 0 0 auto;
}

.choice-group input[type="radio"]::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    transform: scale(0);
    background: var(--brand-green, #18bd65);
    transition: transform 0.12s ease;
}

.choice-group input[type="radio"]:checked::before {
    transform: scale(1);
}

.form-text {
    margin-top: 6px;
    color: var(--text-muted, #667085);
    font-size: 14px;
}

.quote-step-intro {
    margin: -6px 0 22px;
    color: #5b667a;
    font-size: 15px;
    line-height: 1.65;
}

.field-error {
    margin-top: 6px;
    color: #b42318;
    font-size: 14px;
}

.primary-button {
    margin-top: 18px;
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        var(--brand-green, #18bd65),
        var(--brand-green-dark, #10934e)
    );
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    box-shadow: 0 12px 24px rgba(18, 152, 80, 0.22);
}

.primary-button:hover {
    filter: brightness(0.98);
}

.trust-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
    color: #475467;
    font-size: 15px;
}

@media (max-width: 640px) {
    .quote-flow-page {
        margin: 24px auto;
        padding: 0 16px;
    }

    .quote-card {
        padding: 24px 18px;
        border-radius: 18px;
    }
}

.elevator-choice-group.choice-group > div,
.elevator-choice-group.choice-group ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.elevator-choice-group.choice-group label {
    min-height: 44px;
}

.inventory-card {
    box-shadow: none;
}

.inventory-meta {
    display: flex;
    gap: 8px;
    margin: -8px 0 24px;
}

.inventory-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 2px 8px;
    border-radius: 999px;
    background: #f4f4f5;
    color: #3f3f46;
    font-size: 13px;
}

.inventory-meta span:last-child {
    background: #eef8ff;
    color: #0369a1;
}

.inventory-toggle-row {
    margin-bottom: 28px;
}

.inventory-switch {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #52525b;
    cursor: pointer;
}

.inventory-switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.inventory-switch-ui {
    width: 46px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid #d4d4d8;
    background: #fff;
    position: relative;
}

.inventory-switch-ui::before {
    content: "";
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #a1a1aa;
    position: absolute;
    top: 1px;
    left: 1px;
    transition: transform 0.15s ease, background 0.15s ease;
}

.inventory-switch input:checked + .inventory-switch-ui::before {
    transform: translateX(20px);
    background: var(--brand-green, #18bd65);
}

.inventory-accordion {
    display: grid;
    gap: 12px;
    margin-bottom: 32px;
}

.inventory-room {
    border: 1px solid #e0e0e0;
    background: #fff;
    overflow: hidden;
}

.inventory-room.is-open {
    border-color: var(--brand-blue, #2557f6);
    box-shadow: 0 0 0 1px var(--brand-blue, #2557f6);
}

.inventory-room-header {
    width: 100%;
    min-height: 68px;
    padding: 0 18px;
    border: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
}

.inventory-room.is-open .inventory-room-header {
    background: #eff6ff;
}

.inventory-room-left,
.inventory-room-right {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.inventory-room-icon {
    width: 30px;
    color: #262626;
    font-size: 26px;
    line-height: 1;
    text-align: center;
}

.inventory-room.is-open .inventory-room-icon {
    color: var(--brand-blue, #2557f6);
}

.inventory-room-title {
    font-size: 18px;
    color: #27272a;
}

.inventory-count {
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    background: #f0f9ff;
    color: #0369a1;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.inventory-count.has-count,
.inventory-room.is-open .inventory-count {
    background: var(--brand-blue, #2557f6);
    color: #fff;
}

.inventory-chevron {
    font-size: 26px;
    line-height: 1;
    color: #111827;
}

.inventory-room.is-open .inventory-chevron {
    transform: rotate(180deg);
}

.inventory-room-body {
    padding: 14px 12px 10px;
    background: #fff;
}

.inventory-search-wrap {
    height: 44px;
    border: 1px solid #d8d8dc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    margin-bottom: 12px;
}

.inventory-search-wrap span {
    font-size: 24px;
    line-height: 1;
    color: #27272a;
}

.inventory-search {
    border: 0;
    outline: 0;
    width: 100%;
    font: inherit;
}

.inventory-items {
    display: grid;
}

.inventory-item-row:last-child {
    border-bottom: 0;
}

.inventory-item-label {
    margin: 0;
    color: #27272a;
    font-size: 15px;
}

.inventory-qty-input::-webkit-outer-spin-button,
.inventory-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-minus {
    background: #fafafa;
    color: #c4c4c7;
}

.qty-plus {
    background: #d8fbe5;
    color: #087f3f;
}

.secondary-button {
    width: 100%;
    min-height: 44px;
    border: 1px solid #d4d4d8;
    border-radius: 4px;
    background: #fff;
    color: var(--brand-green, #18bd65);
    font-weight: 800;
    cursor: pointer;
}

.step-back-icon {
    color: var(--brand-blue, #2557f6);
    text-decoration: none;
    font-size: 28px;
    line-height: 1;
}

@media (max-width: 640px) {
    .inventory-room-header {
        padding: 0 14px;
    }

    .inventory-item-row {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
    }

    .inventory-item-label {
        font-size: 14px;
    }
}

.inventory-item-row {
    min-height: 52px;
    border-bottom: 1px solid #f0f0f1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 0 8px;
    border-radius: 6px;
}

.inventory-item-row.is-selected {
    background: #f4f4f5;
}

.inventory-item-row.is-selected .inventory-item-label,
.inventory-item-row.is-selected .inventory-qty-input {
    font-weight: 700;
    color: #18181b;
}

.inventory-qty-control {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 120px;
    justify-content: flex-end;
}

.inventory-qty-input {
    width: 28px;
    min-width: 28px;
    height: 34px;
    padding: 0;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0;
    text-align: center;
    color: #8a8a8f;
    background: transparent;
    font: inherit;
    line-height: 34px;
    appearance: textfield;
    -moz-appearance: textfield;
}

.inventory-qty-input:focus {
    border: 0 !important;
    box-shadow: none !important;
    outline: 0;
}

.inventory-qty-input::-webkit-outer-spin-button,
.inventory-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-button {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 999px;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.qty-minus {
    background: #fafafa;
    color: #c4c4c7;
}

.qty-plus {
    background: #d8fbe5;
    color: #087f3f;
}

.inventory-item-row.is-selected .qty-minus {
    background: #e4e4e7;
    color: #71717a;
}

.inventory-item-row.is-selected .qty-plus {
    background: #bbf7d0;
    color: #047857;
}

@media (min-width: 900px) {
    .quote-flow-page {
        max-width: 920px;
    }

    .inventory-card {
        padding-left: 56px;
        padding-right: 56px;
    }

    .inventory-accordion {
        display: grid;
        grid-template-columns: minmax(260px, 36%) minmax(0, 1fr);
        gap: 4px 6px;
        align-items: start;
    }

    .inventory-room {
        display: contents;
    }

    .inventory-room-header {
        grid-column: 1;
        min-height: 64px;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        margin: 0;
    }

    .inventory-room.is-open .inventory-room-header {
        border-color: var(--brand-blue, #2557f6);
        box-shadow: 0 0 0 1px var(--brand-blue, #2557f6);
        background: #eff6ff;
    }

    .inventory-room-body {
        grid-column: 2;
        grid-row: 1 / span 7;
        min-height: 472px;
        max-height: 472px;
        overflow-y: auto;
        border: 1px solid var(--brand-blue, #2557f6);
        box-shadow: 0 0 0 1px var(--brand-blue, #2557f6);
        border-radius: 4px;
        padding: 12px;
    }

    .inventory-room-body[hidden] {
        display: none;
    }

    .inventory-room.is-open {
        border: 0;
        box-shadow: none;
    }

    .inventory-room.is-open .inventory-room-body {
        background: #fff;
    }

    .inventory-room-title {
        font-size: 17px;
    }

    .inventory-item-row {
        min-height: 50px;
    }

    .inventory-search-wrap {
        margin-bottom: 8px;
    }
}
.verify-intro {
    margin: -8px 0 22px;
    color: #475467;
    font-size: 15px;
}

.verify-form {
    margin-top: 8px;
}

.verify-form input[type="text"],
.verify-form input[type="number"] {
    letter-spacing: 0.18em;
    font-weight: 700;
    text-align: center;
    max-width: 220px;
}

.resend-form {
    margin-top: 12px;
}

.resend-form .secondary-button {
    width: 100%;
}
Pas dit op 3 plekken aan. De bestaande flow blijft intact: `/` stuurt nog steeds naar `current-postcode`, en de bestaande JavaScript voor liftvelden en datumvelden blijft bruikbaar omdat de `data-field-name` structuur behouden blijft.  

## 1. Pas `views.py` aan

Vervang in `context()` deze regel:

```python
"button_label": "Verstuur code" if slug == "personal" else "Ga naar de volgende stap",
```

door:

```python
"button_label": self.button_label(slug),
```

Voeg daarna deze methode toe binnen `StepView`:

```python
    def button_label(self, slug):
        if slug == "current-postcode":
            return "Ontvang gratis verhuisoffertes"
        if slug == "personal":
            return "Verstuur code"
        return "Ga naar de volgende stap"
```

Resultaat:

```python
    def context(self, slug, index, title, form):
        prev_slug = FLOW[index - 1][0] if index > 0 else None
        return {
            "form": form,
            "title": title,
            "slug": slug,
            "step": step_number(slug),
            "total_steps": 4,
            "prev_slug": prev_slug,
            "button_label": self.button_label(slug),
        }

    def button_label(self, slug):
        if slug == "current-postcode":
            return "Ontvang gratis verhuisoffertes"
        if slug == "personal":
            return "Verstuur code"
        return "Ga naar de volgende stap"
```

---

## 2. Pas `step_form.html` aan

Vervang alleen het volledige `{% block content %}` in `step_form.html`. Laat de bestaande `{% block extra_js %}` staan, want die regelt de huidige scripting voor dynamische velden. 

```django
{% block content %}
{% if slug == "current-postcode" %}
<section class="homepage-hero">
    <div class="homepage-hero__content">
        <div class="homepage-eyebrow">Gratis en vrijblijvend vergelijken</div>

        <h1>Vergelijk verhuisoffertes en bespaar op je verhuizing</h1>

        <p class="homepage-hero__intro">
            Vul je huidige postcode in en ontvang offertes van verhuisbedrijven die passen bij jouw verhuizing.
            Vergelijk prijzen, beschikbaarheid en service voordat je kiest.
        </p>

        <ul class="homepage-trust-list">
            <li>Gratis offerteaanvraag</li>
            <li>Verhuisbedrijven uit jouw regio</li>
            <li>Geen verplichting</li>
        </ul>
    </div>

    <aside class="homepage-quote-panel" aria-label="Start offerteaanvraag">
        <div class="quote-card homepage-quote-card">
            <div class="step-meta">
                <span>Stap {{ step }} van {{ total_steps }}</span>
                <span class="step-divider">|</span>
                <strong>Start je aanvraag</strong>
            </div>

            <div class="progress-track" aria-hidden="true">
                <div class="progress-fill progress-step-{{ step }}"></div>
            </div>

            <h2>Wat is je huidige postcode?</h2>

            <form method="post" novalidate class="quote-form homepage-postcode-form">
                {% csrf_token %}
                {{ form.non_field_errors }}

                {% for field in form %}
                    <div
                        class="field-group{% if field.field.widget.input_type == 'radio' %} choice-group{% endif %}{% if field.name == 'current_has_elevator' or field.name == 'new_has_elevator' %} elevator-choice-group{% endif %}"
                        data-field-name="{{ field.name }}"
                    >
                        {% if field.field.widget.input_type != 'radio' %}
                            <label class="field-label" for="{{ field.id_for_label }}">
                                {{ field.label }}
                            </label>
                        {% else %}
                            <div class="field-label">
                                {{ field.label }}
                            </div>
                        {% endif %}

                        {{ field }}

                        {% if field.help_text %}
                            <div class="form-text">{{ field.help_text }}</div>
                        {% endif %}

                        {% for error in field.errors %}
                            <div class="field-error">{{ error }}</div>
                        {% endfor %}
                    </div>
                {% endfor %}

                <button type="submit" class="primary-button">
                    <span>{{ button_label }}</span>
                    <span aria-hidden="true">→</span>
                </button>
            </form>

            <div class="trust-line">
                <span aria-hidden="true">✓</span>
                <span>Gratis · Vrijblijvend · Binnen 2 minuten gestart</span>
            </div>
        </div>
    </aside>
</section>

<section class="homepage-proof-strip" aria-label="Voordelen">
    <div>
        <strong>Gratis</strong>
        <span>Offertes aanvragen</span>
    </div>
    <div>
        <strong>Vrijblijvend</strong>
        <span>Geen verplichting</span>
    </div>
    <div>
        <strong>Regionaal</strong>
        <span>Passende verhuisbedrijven</span>
    </div>
    <div>
        <strong>Snel</strong>
        <span>Bespaar zoektijd</span>
    </div>
</section>

<section class="homepage-section">
    <div class="homepage-section__header">
        <span class="homepage-eyebrow">Zo werkt het</span>
        <h2>Vraag in 3 stappen verhuisoffertes aan</h2>
        <p>Je hoeft niet zelf meerdere verhuisbedrijven te bellen. Start met je postcode en vul daarna je verhuizing aan.</p>
    </div>

    <div class="homepage-steps">
        <article>
            <span>1</span>
            <h3>Vul je postcode in</h3>
            <p>We starten met je huidige postcode om verhuisbedrijven in jouw regio te kunnen matchen.</p>
        </article>

        <article>
            <span>2</span>
            <h3>Beschrijf je verhuizing</h3>
            <p>Geef aan waar je naartoe verhuist, wanneer je wilt verhuizen en wat er mee moet.</p>
        </article>

        <article>
            <span>3</span>
            <h3>Vergelijk offertes</h3>
            <p>Ontvang voorstellen en bepaal zelf welk verhuisbedrijf het beste past.</p>
        </article>
    </div>
</section>

<section class="homepage-section homepage-split">
    <div>
        <span class="homepage-eyebrow">Waarom vergelijken?</span>
        <h2>Een verhuizer kiezen kost vaak meer tijd dan verwacht</h2>
        <p>
            Prijzen verschillen per verhuisbedrijf, beschikbaarheid wisselt per datum en niet ieder bedrijf past bij
            jouw type verhuizing. Door offertes te vergelijken krijg je sneller inzicht in prijs, planning en service.
        </p>

        <ul class="homepage-check-list">
            <li>Voorkom onnodig hoge kosten</li>
            <li>Vergelijk meerdere opties naast elkaar</li>
            <li>Kies zelf met wie je verdergaat</li>
        </ul>
    </div>

    <div class="homepage-cost-card">
        <h3>Wat kost jouw verhuizing?</h3>
        <p>
            De prijs hangt af van afstand, woningtype, aantal spullen, verdiepingen, lift, datum en extra diensten.
            Vraag offertes aan voor een realistischer beeld.
        </p>
        <a href="#top" class="homepage-secondary-cta">Start met je postcode →</a>
    </div>
</section>

<section class="homepage-section">
    <div class="homepage-section__header">
        <span class="homepage-eyebrow">Veelgestelde vragen</span>
        <h2>Vragen over verhuisoffertes</h2>
    </div>

    <div class="homepage-faq">
        <details>
            <summary>Is een offerteaanvraag gratis?</summary>
            <p>Ja, de aanvraag is gratis en vrijblijvend.</p>
        </details>

        <details>
            <summary>Ben ik verplicht om een verhuizer te kiezen?</summary>
            <p>Nee. Je vergelijkt de ontvangen offertes en bepaalt zelf of je met een verhuisbedrijf verdergaat.</p>
        </details>

        <details>
            <summary>Welke gegevens heb ik nodig?</summary>
            <p>Je postcode, verhuisadres of bestemming, woningtype, verhuisdatum en een globale inschatting van je spullen.</p>
        </details>

        <details>
            <summary>Waarom moet ik mijn postcode invullen?</summary>
            <p>De postcode helpt om verhuisbedrijven te vinden die actief zijn in jouw regio.</p>
        </details>
    </div>
</section>

<section class="homepage-final-cta">
    <h2>Klaar om verhuisoffertes te vergelijken?</h2>
    <p>Start met je postcode en ontvang gratis offertes van passende verhuisbedrijven.</p>
    <a href="#top" class="primary-button homepage-final-button">
        <span>Ontvang gratis verhuisoffertes</span>
        <span aria-hidden="true">→</span>
    </a>
</section>
{% else %}
<section class="quote-card">
    <div class="step-meta">
        <span>Stap {{ step }} van {{ total_steps }}</span>
        <span class="step-divider">|</span>
        <strong>{{ title }}</strong>
    </div>

    <div class="progress-track" aria-hidden="true">
        <div class="progress-fill progress-step-{{ step }}"></div>
    </div>

    {% if prev_slug %}
        <a class="back-link" href="{% url 'quotes:step' prev_slug %}">← Terug</a>
    {% endif %}

    <h1>{{ title }}</h1>

    <form method="post" novalidate class="quote-form">
        {% csrf_token %}
        {{ form.non_field_errors }}

        {% for field in form %}
            <div
                class="field-group{% if field.field.widget.input_type == 'radio' %} choice-group{% endif %}{% if field.name == 'current_has_elevator' or field.name == 'new_has_elevator' %} elevator-choice-group{% endif %}"
                data-field-name="{{ field.name }}"
            >
                {% if field.field.widget.input_type != 'radio' %}
                    <label class="field-label" for="{{ field.id_for_label }}">
                        {{ field.label }}
                    </label>
                {% else %}
                    <div class="field-label">
                        {{ field.label }}
                    </div>
                {% endif %}

                {{ field }}

                {% if field.help_text %}
                    <div class="form-text">{{ field.help_text }}</div>
                {% endif %}

                {% for error in field.errors %}
                    <div class="field-error">{{ error }}</div>
                {% endfor %}
            </div>
        {% endfor %}

        <button type="submit" class="primary-button">
            <span>{{ button_label }}</span>
            <span aria-hidden="true">→</span>
        </button>
    </form>

    <div class="trust-line">
        <span aria-hidden="true">✓</span>
        <span>Gratis · Vrijblijvend</span>
    </div>
</section>
{% endif %}
{% endblock %}
```

---

## 3. Voeg CSS toe aan `quote-flow.css`

Plaats dit onderaan het bestand. De bestaande styling voor `.quote-card`, `.quote-form`, `.primary-button`, radio’s, inventaris en verificatie blijft staan. 

```css
.homepage-hero {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 42px;
    align-items: center;
    padding: 34px 0 54px;
}

.homepage-hero__content h1 {
    margin: 0;
    max-width: 680px;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    color: #101828;
}

.homepage-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    padding: 4px 11px;
    border-radius: 999px;
    background: rgba(37, 87, 246, 0.08);
    color: var(--brand-blue, #2557f6);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 16px;
}

.homepage-hero__intro {
    max-width: 610px;
    margin: 22px 0 0;
    color: #475467;
    font-size: 18px;
    line-height: 1.65;
}

.homepage-trust-list,
.homepage-check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 10px;
    color: #344054;
    font-weight: 700;
}

.homepage-trust-list li,
.homepage-check-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.homepage-trust-list li::before,
.homepage-check-list li::before {
    content: "✓";
    color: var(--brand-green, #18bd65);
    font-weight: 900;
}

.homepage-quote-panel {
    position: relative;
}

.homepage-quote-card {
    padding: 30px;
}

.homepage-quote-card h2 {
    margin: 0 0 20px;
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.homepage-postcode-form .primary-button {
    margin-top: 10px;
}

.homepage-proof-strip {
    width: min(1180px, 100%);
    margin: 0 auto 68px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.homepage-proof-strip > div {
    background: #fff;
    border: 1px solid #e5e8ef;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
}

.homepage-proof-strip strong {
    display: block;
    color: #101828;
    font-size: 18px;
    margin-bottom: 4px;
}

.homepage-proof-strip span {
    color: #667085;
    font-size: 14px;
}

.homepage-section {
    width: min(1180px, 100%);
    margin: 0 auto 78px;
}

.homepage-section__header {
    max-width: 740px;
    margin: 0 auto 32px;
    text-align: center;
}

.homepage-section h2,
.homepage-final-cta h2 {
    margin: 0;
    color: #101828;
    font-size: clamp(30px, 3.4vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.homepage-section__header p,
.homepage-split p,
.homepage-cost-card p,
.homepage-final-cta p {
    color: #475467;
    font-size: 17px;
    line-height: 1.65;
}

.homepage-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.homepage-steps article,
.homepage-cost-card {
    background: #fff;
    border: 1px solid #e5e8ef;
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 14px 40px rgba(16, 24, 40, 0.06);
}

.homepage-steps article span {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-blue, #2557f6);
    color: #fff;
    font-weight: 900;
    margin-bottom: 18px;
}

.homepage-steps h3,
.homepage-cost-card h3 {
    margin: 0 0 10px;
    color: #101828;
    font-size: 21px;
    letter-spacing: -0.02em;
}

.homepage-steps p {
    margin: 0;
    color: #667085;
    line-height: 1.6;
}

.homepage-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.75fr);
    gap: 28px;
    align-items: center;
    padding: 42px;
    border-radius: 28px;
    background: #f5f8ff;
}

.homepage-secondary-cta {
    display: inline-flex;
    margin-top: 12px;
    color: var(--brand-blue, #2557f6);
    font-weight: 900;
    text-decoration: none;
}

.homepage-faq {
    max-width: 840px;
    margin: 0 auto;
    display: grid;
    gap: 10px;
}

.homepage-faq details {
    background: #fff;
    border: 1px solid #e5e8ef;
    border-radius: 14px;
    padding: 18px 20px;
}

.homepage-faq summary {
    cursor: pointer;
    font-weight: 800;
    color: #101828;
}

.homepage-faq p {
    margin: 12px 0 0;
    color: #667085;
    line-height: 1.6;
}

.homepage-final-cta {
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 54px 24px;
    border-radius: 28px;
    background: #101828;
    text-align: center;
}

.homepage-final-cta h2,
.homepage-final-cta p {
    color: #fff;
}

.homepage-final-cta p {
    opacity: 0.78;
}

.homepage-final-button {
    width: auto;
    min-width: 280px;
    margin-top: 16px;
    padding-inline: 26px;
    text-decoration: none;
}

@media (min-width: 900px) {
    .quote-flow-page:has(.homepage-hero) {
        max-width: none;
        margin: 0;
        padding: 0 24px 72px;
    }
}

@media (max-width: 900px) {
    .homepage-hero,
    .homepage-split {
        grid-template-columns: 1fr;
    }

    .homepage-proof-strip,
    .homepage-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .homepage-hero {
        padding-top: 16px;
        gap: 24px;
    }

    .homepage-proof-strip,
    .homepage-steps {
        grid-template-columns: 1fr;
    }

    .homepage-split {
        padding: 24px;
    }

    .homepage-quote-card {
        padding: 24px 18px;
    }

    .homepage-final-button {
        width: 100%;
        min-width: 0;
    }
}

/* Homepage consistency pass */

@media (min-width: 900px) {
    .quote-flow-page:has(.homepage-hero) {
        max-width: none;
        margin: 0;
        padding: 0 24px 80px;
    }
}

.quote-flow-page:has(.homepage-hero) {
    background:
        radial-gradient(circle at top left, rgba(37, 87, 246, 0.07), transparent 340px),
        #f5f7fb;
}

/* Shared homepage container width */
.homepage-hero,
.homepage-proof-strip,
.homepage-section,
.homepage-final-cta {
    width: min(1080px, 100%);
}

/* Hero */
.homepage-hero {
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 40px;
    align-items: center;
    padding: 56px 0 34px;
}

.homepage-hero__content {
    max-width: 540px;
}

.homepage-hero__content h1 {
    margin: 0;
    font-size: clamp(42px, 5.2vw, 68px);
    line-height: 0.97;
    letter-spacing: -0.06em;
    color: #111827;
}

.homepage-hero__intro {
    max-width: 520px;
    margin: 22px 0 0;
    color: #5b667a;
    font-size: 17px;
    line-height: 1.65;
}

.homepage-eyebrow {
    min-height: 26px;
    padding: 4px 11px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(37, 87, 246, 0.09);
    color: var(--brand-blue, #2557f6);
    font-size: 13px;
    font-weight: 800;
}

/* Trust list */
.homepage-trust-list,
.homepage-check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 10px;
    color: #344054;
    font-size: 15px;
    font-weight: 700;
}

.homepage-trust-list li,
.homepage-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.homepage-trust-list li::before,
.homepage-check-list li::before {
    content: "✓";
    color: var(--brand-green, #18bd65);
    font-weight: 900;
}

/* Quote card in hero */
.homepage-quote-panel {
    width: 100%;
}

.homepage-quote-card {
    width: 100%;
    padding: 30px;
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(16, 24, 40, 0.10);
}

.homepage-quote-card h2 {
    margin: 0 0 20px;
    font-size: 26px;
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.homepage-postcode-form {
    gap: 12px;
}

.homepage-postcode-form .primary-button {
    margin-top: 8px;
}

/* Proof cards aligned with page rhythm */
.homepage-proof-strip {
    margin: 0 auto 76px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.homepage-proof-strip > div {
    min-height: 92px;
    padding: 20px;
    border: 1px solid #e5e8ef;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(16, 24, 40, 0.05);
}

.homepage-proof-strip strong {
    display: block;
    margin-bottom: 6px;
    color: #111827;
    font-size: 17px;
    line-height: 1.2;
}

.homepage-proof-strip span {
    color: #667085;
    font-size: 14px;
    line-height: 1.45;
}

/* General sections */
.homepage-section {
    margin: 0 auto 84px;
}

.homepage-section__header {
    max-width: 690px;
    margin: 0 auto 34px;
    text-align: center;
}

.homepage-section h2,
.homepage-final-cta h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(32px, 3.3vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.homepage-section__header p,
.homepage-split p,
.homepage-cost-card p,
.homepage-final-cta p {
    margin: 12px 0 0;
    color: #5b667a;
    font-size: 16px;
    line-height: 1.65;
}

/* Step cards */
.homepage-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.homepage-steps article,
.homepage-cost-card {
    min-height: 210px;
    padding: 26px;
    border: 1px solid #e5e8ef;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(16, 24, 40, 0.06);
}

.homepage-steps article span {
    width: 38px;
    height: 38px;
    margin-bottom: 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-blue, #2557f6);
    color: #fff;
    font-weight: 900;
}

.homepage-steps h3,
.homepage-cost-card h3 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.homepage-steps p {
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.6;
}

/* Why section */
.homepage-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: center;
    padding: 44px;
    border: 1px solid #e5e8ef;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 16px 44px rgba(16, 24, 40, 0.05);
}

.homepage-split > div:first-child {
    max-width: 610px;
}

.homepage-cost-card {
    min-height: auto;
    box-shadow: none;
    background: #f7f9fc;
}

.homepage-secondary-cta {
    display: inline-flex;
    margin-top: 18px;
    color: var(--brand-blue, #2557f6);
    font-weight: 900;
    text-decoration: none;
}

/* FAQ */
.homepage-faq {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    gap: 10px;
}

.homepage-faq details {
    padding: 18px 20px;
    border: 1px solid #e5e8ef;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.035);
}

.homepage-faq summary {
    cursor: pointer;
    color: #111827;
    font-size: 15px;
    font-weight: 800;
}

.homepage-faq p {
    margin: 12px 0 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.6;
}

/* Final CTA */
.homepage-final-cta {
    margin: 0 auto;
    padding: 58px 28px;
    border-radius: 28px;
    background: #101828;
    text-align: center;
}

.homepage-final-cta h2 {
    color: #fff;
}

.homepage-final-cta p {
    color: rgba(255, 255, 255, 0.74);
}

.homepage-final-button {
    width: auto;
    min-width: 290px;
    margin-top: 22px;
    padding-inline: 28px;
    text-decoration: none;
}

/* Buttons more consistent */
.primary-button {
    border-radius: 12px;
}

/* Mobile */
@media (max-width: 980px) {
    .homepage-hero {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 34px;
    }

    .homepage-hero__content {
        max-width: 720px;
    }

    .homepage-hero__content h1 {
        max-width: 720px;
    }

    .homepage-hero__intro {
        max-width: 680px;
    }

    .homepage-proof-strip,
    .homepage-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .homepage-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .quote-flow-page:has(.homepage-hero) {
        padding: 0 16px 56px;
    }

    .homepage-hero {
        padding-top: 24px;
    }

    .homepage-hero__content h1 {
        font-size: 42px;
    }

    .homepage-proof-strip,
    .homepage-steps {
        grid-template-columns: 1fr;
    }

    .homepage-quote-card,
    .homepage-split,
    .homepage-final-cta {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .homepage-section {
        margin-bottom: 64px;
    }

    .homepage-final-button {
        width: 100%;
        min-width: 0;
    }
}



/* Premium B2C homepage additions */
.homepage-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.homepage-hero-cta,
.homepage-secondary-button {
    width: auto;
    min-width: 210px;
    margin-top: 0;
    padding: 0 22px;
    text-decoration: none;
}

.homepage-secondary-button {
    min-height: 54px;
    border: 1px solid #cfd7e6;
    border-radius: 12px;
    background: #fff;
    color: #1d2939;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
}

.homepage-intro-section .homepage-section__header,
.homepage-situation-section .homepage-section__header {
    max-width: 820px;
}

.homepage-comparison-grid,
.homepage-situation-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.homepage-comparison-grid article,
.homepage-situation-grid article {
    min-height: 156px;
    padding: 22px;
    border: 1px solid #e5e8ef;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(16, 24, 40, 0.05);
}

.homepage-comparison-grid article span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--brand-blue, #2557f6);
    font-size: 13px;
    font-weight: 900;
}

.homepage-comparison-grid h3,
.homepage-situation-grid h3 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 18px;
    line-height: 1.25;
}

.homepage-comparison-grid p,
.homepage-situation-grid p {
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.58;
}

.homepage-assurance-section {
    align-items: stretch;
}

.homepage-assurance-section .homepage-cost-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 980px) {
    .homepage-comparison-grid,
    .homepage-situation-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .homepage-hero__actions {
        flex-direction: column;
    }

    .homepage-hero-cta,
    .homepage-secondary-button {
        width: 100%;
        min-width: 0;
    }

    .homepage-comparison-grid article,
    .homepage-situation-grid article {
        min-height: 0;
        padding: 20px 18px;
        border-radius: 16px;
    }
}

/* Prevent conditional fields from flashing before JavaScript runs */
.field-group[hidden],
[hidden] {
    display: none !important;
}

/* Keep form section labels visually aligned */
.field-label {
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 700;
}

.date-mode-toggle {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.date-mode-toggle__button {
    min-height: 46px;
    border: 1px solid #d8dde8;
    border-radius: 8px;
    background: #fff;
    color: #0f172a;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.date-mode-toggle__button.is-active {
    border-color: var(--brand-blue, #0d6efd);
    background: var(--brand-blue, #0d6efd);
    color: #fff;
    box-shadow: inset 0 0 0 999px #0d6efd, 0 0 0 2px rgba(13, 110, 253, 0.22);
}

.date-selection-summary {
    border: 1px solid #d9e3f0;
    border-radius: 8px;
    background: #f8fafc;
    color: #0f172a;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 700;
}

.address-confirm-panel--after-calendar {
    margin: 6px 0 0;
}

.address-confirm-panel--after-form {
    margin: 12px 0 0;
}

.quote-summary-panel {
    margin: 18px 0 0;
}

.quote-summary-panel__details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 12px 0 0;
}

.quote-summary-panel__details > div {
    padding: 12px;
    border: 1px solid #d9e3f0;
    border-radius: 8px;
    background: #fff;
}

.quote-summary-panel__details dt {
    margin-bottom: 4px;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.quote-summary-panel__details dd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0;
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.quote-summary-panel__details a {
    flex: 0 0 auto;
    color: #2557f6;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.quote-summary-panel__details a.icon-action-btn {
    color: #111827;
    font-size: inherit;
}

.quote-summary-panel__details a.icon-action-btn:hover,
.quote-summary-panel__details a.icon-action-btn:focus {
    color: #fff;
    text-decoration: none;
}

.quote-summary-panel__details a:hover,
.quote-summary-panel__details a:focus {
    text-decoration: underline;
}

@media (max-width: 520px) {
    .quote-summary-panel__details {
        grid-template-columns: 1fr;
    }
}

.address-confirm-panel__address-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.address-confirm-panel__address-meta-grid span {
    display: block;
    margin-bottom: 4px;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.address-confirm-panel__address-meta-grid strong {
    display: block;
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

@media (max-width: 520px) {
    .address-confirm-panel__address-meta-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.date-pressure-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: center;
    margin: 2px 0 0;
    color: #475569;
    font-size: 13px;
    font-weight: 700;
}

.date-pressure-legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.date-pressure-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid currentColor;
}

.date-pressure-dot--low {
    background: #dcfce7;
    color: #16a34a;
}

.date-pressure-dot--medium {
    background: #ffedd5;
    color: #f97316;
}

.date-pressure-dot--high {
    background: #fee2e2;
    color: #dc2626;
}

.date-pressure-help {
    margin-top: -6px;
}

.date-calendar {
    display: flex;
    gap: 16px;
    margin-top: 4px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.date-calendar__month {
    flex: 0 0 calc((100% - 16px) / 2);
    border: 1px solid #e5e8ef;
    border-radius: 8px;
    padding: 14px;
    background: #fff;
    scroll-snap-align: start;
}

.date-calendar__month h2 {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.25;
    color: #0f172a;
}

.date-calendar__weekdays,
.date-calendar__days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
}

.date-calendar__weekdays {
    margin-bottom: 6px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.date-calendar__day {
    width: 100%;
    aspect-ratio: 1;
    border: 1px solid transparent;
    border-radius: 6px;
    background: #f8fafc;
    color: #0f172a;
    font: inherit;
    font-size: 13px;
    cursor: pointer;
}

/*
 * Availability colors apply only to unselected, enabled days.
 * .is-selected / .is-in-range are declared after availability + hover on
 * purpose, so a day's selection state always wins over its availability
 * color and over :hover, without needing !important or inline styles.
 */
.date-calendar__day--low:not(.is-selected):not(.is-in-range):not(.is-disabled):not(:disabled) {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.date-calendar__day--medium:not(.is-selected):not(.is-in-range):not(.is-disabled):not(:disabled) {
    background: #fff7ed;
    border-color: #fed7aa;
}

.date-calendar__day--high:not(.is-selected):not(.is-in-range):not(.is-disabled):not(:disabled) {
    background: #fef2f2;
    border-color: #fecaca;
}

.date-calendar__day:hover:not(.is-disabled):not(:disabled):not(.is-selected):not(.is-in-range) {
    border-color: #0d6efd;
    background: #eef4ff;
}

.date-calendar__day.is-disabled {
    background: #f8fafc;
    border-color: transparent;
    color: #cbd5e1;
    cursor: not-allowed;
}

.date-calendar__day.is-in-range {
    background: #cfe2ff;
    border-color: #9ec5fe;
    color: #084298;
}

.date-calendar__day.is-selected {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
    font-weight: 700;
}

.date-calendar__day.is-outside-month {
    visibility: hidden;
}

/* Real (server-rendered) disabled buttons stay grey even if a selection
 * class is ever left on them — this is the one thing allowed to win. */
.date-calendar__day:disabled {
    background: #f8fafc;
    border-color: transparent;
    color: #cbd5e1;
    cursor: not-allowed;
}

@media (max-width: 720px) {
    .date-calendar__month {
        flex-basis: 100%;
    }
}

.privacy-confirmation-text {
    margin: 18px 0 12px;
    padding: 14px 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    background: #f8fafc;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Compact postcode + huisnummer row */
.quote-form .postcode-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 14px;
    align-items: start;
}

.quote-form .postcode-row .field-group {
    margin: 0;
}

.quote-form .postcode-row .field-label {
    white-space: nowrap;
}

.quote-form .postcode-help-text {
    margin-top: -2px;
    margin-bottom: 2px;
}

.homepage-postcode-form,
.quote-form {
    gap: 10px;
}

.homepage-postcode-form .primary-button,
.quote-form .primary-button {
    margin-top: 10px;
}

@media (max-width: 520px) {
    .quote-form .postcode-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .quote-form .postcode-row .field-label {
        white-space: normal;
    }
}
.housing-field-label {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.housing-address-meta {
    color: #64748b;
    font-weight: 600;
}

.thanks-summary {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.thanks-summary h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.15;
}

.thanks-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.thanks-summary-grid--addresses {
    align-items: stretch;
}

.thanks-summary-section {
    display: grid;
    gap: 14px;
    min-width: 0;
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f8fafc;
}

.thanks-summary-section h3 {
    margin: 0;
    color: #334155;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.thanks-summary-address {
    display: grid;
    gap: 3px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e8ef;
}

.thanks-summary-address strong,
.thanks-summary-address span {
    color: #0f172a;
    overflow-wrap: anywhere;
}

.thanks-summary-list {
    display: grid;
    gap: 9px;
    margin: 0;
}

.thanks-summary-list div {
    display: grid;
    grid-template-columns: minmax(130px, 0.85fr) minmax(0, 1fr);
    gap: 12px;
    align-items: baseline;
}

.thanks-summary-list dt {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.thanks-summary-list dd {
    margin: 0;
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.thanks-card {
    display: grid;
    gap: 18px;
}

.thanks-card .progress-track {
    margin-bottom: 8px;
}

.thanks-page-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.thanks-page-header h1 {
    margin: 0;
}

.success-icon {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #e8f7ee;
    color: #0f8a48;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    font-size: 16px;
    font-weight: 700;
}

.thanks-intro {
    max-width: 680px;
    margin: -4px 0 0;
    color: #3f4652;
    line-height: 1.6;
}

.thanks-summary {
    gap: 14px;
    margin-top: 4px;
}

.thanks-summary h2 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0;
}

.thanks-summary-grid,
.thanks-summary-grid--addresses {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.thanks-summary-section {
    align-content: start;
    gap: 12px;
    padding: 16px 18px;
    border-color: #dde3eb;
    background: #fbfcfe;
}

.thanks-summary-section h3 {
    color: #253044;
    font-size: 14px;
    letter-spacing: 0;
}

.thanks-summary-address {
    gap: 4px;
    padding-bottom: 12px;
}

.thanks-summary-address strong {
    font-size: 16px;
    font-weight: 700;
}

.thanks-summary-address span {
    font-size: 15px;
}

.thanks-summary-list {
    gap: 10px;
}

.thanks-summary-list div {
    grid-template-columns: minmax(145px, 0.9fr) minmax(0, 1fr);
    gap: 16px;
}

.thanks-summary-list dt {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.thanks-summary-list dd {
    color: #111827;
    font-size: 14px;
    font-weight: 700;
}

.thanks-button {
    margin-top: 2px;
    text-decoration: none;
}

.thanks-button:hover,
.thanks-button:focus {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 760px) {
    .thanks-summary-grid {
        grid-template-columns: 1fr;
    }

    .thanks-summary h2 {
        font-size: 26px;
    }
}

@media (max-width: 460px) {
    .thanks-summary-section {
        padding: 15px;
    }

    .thanks-summary-list div {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .thanks-page-header {
        align-items: flex-start;
    }
}

/* Calm quote flow layout: keep attention on the address inputs. */
.quote-flow-page,
.quote-flow-page * {
    font-family: inherit;
}

.quote-flow-page {
    max-width: 880px;
}

.quote-card {
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(16, 24, 40, 0.05);
}

.step-meta,
.step-meta strong,
.back-link,
.trust-line {
    font-weight: 400;
}

.step-meta {
    color: #3159e8;
}

.quote-card h1 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0;
}

.field-label,
.quote-form .postcode-row .field-label {
    color: #202124;
    font-weight: 500;
}

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form input[type="date"],
.quote-form input[type="number"],
.quote-form select,
.quote-form textarea {
    min-height: 56px;
    border-color: #cfd7e6;
    border-radius: 12px;
    font-weight: 400;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: var(--brand-blue, #2557f6);
    box-shadow: 0 0 0 4px rgba(37, 87, 246, 0.14);
}

.form-text {
    color: #758195;
}

.primary-button {
    min-height: 52px;
    border-radius: 10px;
    background: var(--brand-green-dark, #10934e);
    font-weight: 600;
    box-shadow: none;
}

.quote-progress-summary {
    gap: 10px;
    margin-top: 20px;
    padding: 0;
    border-color: #e7ebf1;
    background: #fbfcfe;
    box-shadow: none;
    overflow: hidden;
}

.quote-progress-summary__header,
.quote-progress-summary__header strong,
.quote-progress-summary__header span {
    color: #e5e7eb;
    font-weight: 700;
}

.quote-progress-summary__header {
    padding: 12px 16px;
    background: #6b7280;
    font-size: 15px;
}

.quote-progress-summary__list {
    padding: 14px 16px 16px;
}

.quote-progress-summary__group dt {
    color: #334155;
    font-size: 15px;
    font-weight: 700;
    text-transform: none;
}

.quote-progress-summary__group dd {
    color: #253044;
    font-size: 14px;
    font-weight: 400;
}

.trust-line {
    color: #667085;
    font-size: 14px;
}

@media (max-width: 640px) {
    .quote-flow-page {
        max-width: 100%;
    }
}

.thanks-card .thanks-page-header h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0;
}

.thanks-card .thanks-button {
    color: #fff;
    text-decoration: none;
}

.thanks-card {
    gap: 16px;
}

.thanks-summary {
    gap: 12px;
}

.thanks-summary-grid,
.thanks-summary-grid--addresses {
    grid-template-columns: 1fr;
    gap: 10px;
}

.thanks-summary-section {
    gap: 10px;
    padding: 15px 17px;
    border-color: #e6ebf2;
    background: #fcfdff;
    box-shadow: none;
}

.thanks-summary-section h3 {
    color: #334155;
    font-size: 13px;
    font-weight: 700;
}

.thanks-summary-address {
    padding-bottom: 10px;
    border-bottom-color: #edf1f6;
}

.thanks-summary-address strong {
    font-size: 15px;
}

.thanks-summary-address span,
.thanks-summary-list dd {
    font-size: 14px;
}

.thanks-summary-list {
    gap: 8px;
}

.thanks-summary-list div {
    grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
    gap: 16px;
}

.thanks-summary-list dt {
    color: #738096;
    font-weight: 500;
}

.thanks-summary-list dd {
    color: #253044;
    font-weight: 500;
}

@media (max-width: 560px) {
    .thanks-summary-list div {
        grid-template-columns: 1fr;
        gap: 2px;
    }
}

/* Move inventory step */
.move-inventory-card {
    max-width: 760px;
    margin: 0 auto;
}

.move-inventory-form {
    gap: 18px;
}

.move-inventory-section {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid #d9e3f0;
    border-radius: 10px;
    background: #fff;
}

.move-inventory-section h2 {
    margin: 0;
    color: #0f172a;
    font-size: 18px;
    line-height: 1.25;
}

.section-title-with-tooltip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.info-tooltip {
    position: relative;
    display: inline-flex;
}

.info-tooltip__trigger {
    width: 22px;
    height: 22px;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    background: #fff;
    color: #2557f6;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    cursor: help;
}

.info-tooltip__content {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    z-index: 10;
    width: min(320px, 78vw);
    padding: 10px 12px;
    border: 1px solid #d9e3f0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.14);
    color: #334155;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 4px);
    transition: opacity 0.12s ease, transform 0.12s ease;
}

.info-tooltip:focus-within .info-tooltip__content,
.info-tooltip:hover .info-tooltip__content {
    opacity: 1;
    transform: translate(-50%, 0);
}

.quote-summary-panel__details .summary-estimate-value {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2px;
}

.summary-confidence-line {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
    color: #0f172a;
    font-size: inherit;
    font-weight: inherit;
}

.summary-provisional-badge {
    display: inline-block;
    padding: 1px 7px;
    border-radius: 999px;
    background: #fef3c7;
    color: #b45309;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.summary-confidence-tooltip .info-tooltip__trigger {
    width: 18px;
    height: 18px;
    font-size: 11px;
}

.summary-confidence-tooltip .info-tooltip__content {
    left: 0;
    transform: translate(0, 4px);
}

.summary-confidence-tooltip:hover .info-tooltip__content,
.summary-confidence-tooltip:focus-within .info-tooltip__content {
    transform: translate(0, 0);
}

.bag-area-panel,
.m3-result-panel {
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid #cfe0f7;
    border-radius: 10px;
    background: #f7faff;
}

.bag-area-panel span,
.m3-result-panel span {
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.bag-area-panel strong,
.m3-result-panel strong {
    color: #0f172a;
    font-size: 26px;
    line-height: 1.15;
}

.m3-result-panel {
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.m3-result-panel dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 10px 0 0;
}

.m3-result-panel dt {
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.m3-result-panel dd {
    margin: 0;
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
}

.area-input-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
}

.area-input-row span {
    color: #475467;
    font-weight: 800;
}

.move-inventory-note {
    margin-top: 0;
}

.move-inventory-todo {
    padding: 10px 12px;
    border: 1px solid #f8d7a4;
    border-radius: 8px;
    background: #fff8eb;
    color: #854d0e;
}

.uploaded-photo-count {
    color: #166534;
    font-size: 14px;
    font-weight: 700;
}

.checkbox-choice-group ul {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.checkbox-choice-group label {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #dfe3eb;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
}

.checkbox-choice-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.checkbox-choice-group label:has(input:checked) {
    border-color: var(--brand-blue, #2557f6);
    box-shadow: 0 0 0 2px rgba(37, 87, 246, 0.12);
}

.service-preference-options {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.service-option-label .service-option-tooltip {
    margin-left: auto;
}

.service-option-label .info-tooltip__content {
    left: auto;
    right: 0;
    transform: translate(0, 4px);
}

.service-option-label .info-tooltip:hover .info-tooltip__content,
.service-option-label .info-tooltip:focus-within .info-tooltip__content {
    transform: translate(0, 0);
}

@media (max-width: 640px) {
    .move-inventory-section {
        padding: 14px;
    }

    .m3-result-panel dl {
        grid-template-columns: 1fr;
    }
}

.packing-service-question {
    padding: 18px;
    border: 1px solid #9ee6b3;
    border-radius: 10px;
    background: #f0fdf4;
    box-shadow: 0 10px 24px rgba(22, 163, 74, 0.10);
}

.packing-service-question__eyebrow {
    margin-bottom: 6px;
    color: #15803d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.packing-service-question__title {
    color: #0f172a;
    font-size: 17px;
    line-height: 1.35;
}

.packing-service-question__title-end {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.packing-service-tooltip .info-tooltip__content {
    display: grid;
    gap: 6px;
    top: calc(100% + 8px);
    right: 0;
    bottom: auto;
    left: auto;
    width: min(300px, calc(100vw - 48px));
    color: #334155;
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
    transform: translateY(-4px);
}

.packing-service-tooltip:hover .info-tooltip__content,
.packing-service-tooltip:focus-within .info-tooltip__content {
    transform: translateY(0);
}

.packing-service-question__text {
    margin: 8px 0 12px;
    color: #166534;
    font-size: 14px;
}

.packing-service-question.choice-group ul {
    margin-top: 10px;
}

.packing-service-question.choice-group label {
    border-color: #bbf7d0;
    background: #fff;
}

.packing-service-question.choice-group label:has(input:checked) {
    border-color: #16a34a;
    box-shadow: 0 0 0 1px #16a34a;
}


/* Analysis step */
.analysis-card {
    max-width: 860px;
    margin: 0 auto;
}

.analysis-form {
    gap: 18px;
}

.analysis-section {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid #d9e3f0;
    border-radius: 10px;
    background: #fff;
}

.analysis-section h2,
.analysis-option-card h3 {
    margin: 0;
    color: #0f172a;
}

.analysis-grid {
    display: grid;
    gap: 14px;
}

.analysis-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.analysis-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.analysis-info-card,
.analysis-option-card,
.analysis-price-card,
.analysis-choice-card {
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid #d9e3f0;
    border-radius: 10px;
    background: #f8fafc;
}

.analysis-info-card--accent,
.analysis-price-card {
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.analysis-info-card span,
.analysis-price-card span {
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.analysis-info-card strong,
.analysis-price-card strong {
    color: #0f172a;
    font-size: 26px;
    line-height: 1.15;
}

.analysis-info-card p,
.analysis-price-card p,
.analysis-option-card p,
.analysis-note,
.analysis-choice-card__body {
    margin: 0;
    color: #475467;
    font-size: 14px;
    line-height: 1.6;
}

.analysis-check-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.analysis-check-list li {
    display: flex;
    gap: 8px;
    color: #0f172a;
    font-size: 14px;
    line-height: 1.5;
}

.analysis-check-list li::before {
    content: "✓";
    color: var(--brand-green, #18bd65);
    font-weight: 900;
}

.analysis-choice-group {
    display: grid;
    gap: 10px;
}

.analysis-choice-card {
    grid-template-columns: auto 1fr;
    align-items: start;
    column-gap: 12px;
    cursor: pointer;
    background: #fff;
}

.analysis-choice-card input[type="radio"] {
    margin-top: 3px;
}

.analysis-choice-card__title {
    color: #0f172a;
    font-size: 16px;
    font-weight: 800;
}

.analysis-choice-card__body,
.analysis-choice-card > .analysis-check-list,
.analysis-choice-card > .analysis-note {
    grid-column: 2;
}

.analysis-choice-card:has(input:checked) {
    border-color: var(--brand-blue, #2557f6);
    box-shadow: 0 0 0 2px rgba(37, 87, 246, 0.12);
    background: #f8fbff;
}

@media (max-width: 720px) {
    .analysis-grid--two,
    .analysis-grid--three {
        grid-template-columns: 1fr;
    }
}
