/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --blue: #2563EB;
    --blue-dark: #1D4ED8;
    --blue-light: #EFF6FF;
    --orange: #F97316;
    --orange-light: #FFF7ED;
    --dark: #0f172a;
    --dark-soft: #1e293b;
    --text: #334155;
    --text-light: #64748b;
    --border: #e2e8f0;
    --bg: #f8fafc;
    --white: #ffffff;
    --green: #16a34a;
    --whatsapp: #25D366;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, .12);
    --transition: .2s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ============================================================
   UTILITY
   ============================================================ */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, .35);
}

.btn-secondary {
    background: var(--white);
    color: var(--blue);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--blue);
    background: var(--blue-light);
}

.btn-lg {
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: var(--radius);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-link {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: .85rem;
    cursor: pointer;
    text-decoration: underline;
    display: block;
    text-align: center;
    margin-top: 12px;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, .35);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
}

.section-header p {
    color: var(--text-light);
    margin-top: 8px;
    font-size: 1.05rem;
}

.section-header.light h2 {
    color: var(--white);
}

.section-header.light p {
    color: rgba(255, 255, 255, .75);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    height: 36px;
}

.logo-text {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .5px;
}

.accent {
    color: var(--blue);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--blue);
}

.nav-cta {
    background: var(--blue);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
}

.nav-cta:hover {
    background: var(--blue-dark) !important;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f0f7ff 0%, #fefefe 60%, #fff7ed 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 99px;
    padding: 6px 16px;
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--blue), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.trust-pilot {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    color: var(--text-light);
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 440px;
    width: 100%;
    filter: drop-shadow(0 16px 40px rgba(37, 99, 235, .15));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-14px)
    }
}

.float-animation {
    animation: float 5s ease-in-out infinite;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
    padding: 88px 0;
    background: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue);
}

.feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.feat-icon svg {
    width: 24px;
    height: 24px;
}

.feat-icon.blue {
    background: var(--blue-light);
    color: var(--blue);
}

.feat-icon.orange {
    background: var(--orange-light);
    color: var(--orange);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: .9rem;
}

/* ============================================================
   CALC SECTION
   ============================================================ */
.calc-section {
    padding: 96px 0;
    background: linear-gradient(160deg, var(--dark) 0%, var(--dark-soft) 100%);
    position: relative;
    overflow: hidden;
}

.calc-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, .15) 0%, transparent 70%);
    pointer-events: none;
}

.calc-wrapper {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
    align-items: start;
}

/* Info panel */
.calc-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-steps {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    opacity: .5;
}

.info-step.active {
    opacity: 1;
    background: rgba(255, 255, 255, .06);
}

.info-step-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    background: rgba(37, 99, 235, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93c5fd;
}

.info-step-icon svg {
    width: 18px;
    height: 18px;
}

.info-step strong {
    display: block;
    color: #f1f5f9;
    font-weight: 700;
    margin-bottom: 4px;
}

.info-step p {
    font-size: .82rem;
    color: #94a3b8;
    margin: 0;
}

.tarief-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    padding: 20px;
    color: #e2e8f0;
}

.tarief-card h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 14px;
}

.tarief-card h4 svg {
    width: 16px;
    height: 16px;
    color: #fbbf24;
}

.tarief-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tarief-card li {
    display: flex;
    justify-content: space-between;
    font-size: .82rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding-bottom: 8px;
}

.tarief-card li:last-child {
    border: none;
    padding-bottom: 0;
}

.tarief-card li span:last-child {
    font-weight: 700;
    color: #60a5fa;
}

.btw-row span:last-child {
    color: #a3e635 !important;
}

/* ============================================================
   CALC CARD / WIZARD
   ============================================================ */
.calc-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 16px 60px rgba(0, 0, 0, .25);
    overflow: hidden;
}

/* Step indicator */
.wizard-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 32px 0;
    gap: 0;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.step-item span {
    font-size: .72rem;
    font-weight: 600;
    color: var(--text-light);
}

.step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--border);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    transition: all var(--transition);
}

.step.active {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .2);
}

.step.done {
    background: var(--green);
    color: #fff;
}

.step-connector {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin: 0 4px;
    margin-bottom: 22px;
    min-width: 40px;
    transition: background var(--transition);
}

/* Step panels */
.step-panel {
    display: none;
    padding: 28px 32px 32px;
}

.step-panel.active {
    display: block;
    animation: fadeIn .25s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
}

.step-title svg {
    width: 20px;
    height: 20px;
    color: var(--blue);
}

/* Forms */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.input-icon-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--text-light);
    pointer-events: none;
}

.input-icon-wrap input {
    padding-left: 38px;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: .9rem;
    color: var(--dark);
    background: var(--bg);
    transition: all var(--transition);
}

input[type="text"]:focus,
input[type="email"]:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
    background: var(--white);
}

.dist-badge {
    background: var(--blue);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 99px;
    margin-left: 6px;
}

.range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: var(--border);
    border-radius: 99px;
    cursor: pointer;
    outline: none;
    margin: 8px 0 4px;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 2px 8px rgba(37, 99, 235, .35);
    cursor: pointer;
    border: 3px solid #fff;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: .73rem;
    color: var(--text-light);
    margin-top: 2px;
}

/* ============================================================
   WOONTYPE GRID
   ============================================================ */
.woon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 4px;
}

/* 5e knop (flat) vult de volle breedte */
.woon-grid .woon-btn:last-child {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    padding: 12px 16px;
}

.woon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 8px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    font-family: inherit;
}

.woon-btn:hover {
    border-color: var(--blue);
    background: var(--blue-light);
}

.woon-btn.active {
    border-color: var(--blue);
    background: var(--blue-light);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}

.woon-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.woon-label {
    font-size: .8rem;
    font-weight: 700;
    color: var(--dark);
}

.woon-sub {
    font-size: .7rem;
    color: var(--text-light);
}

.woon-btn.active .woon-label {
    color: var(--blue);
}

.woon-btn.active .woon-sub {
    color: var(--blue-dark);
}

/* ============================================================
   TAB SWITCHER
   ============================================================ */
.tab-switcher {
    display: flex;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 4px;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px;
    border: none;
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-light);
    transition: all var(--transition);
}

.tab-btn svg {
    width: 15px;
    height: 15px;
}

.tab-btn.active {
    background: var(--white);
    color: var(--blue);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

/* ============================================================
   UPLOAD ZONE
   ============================================================ */
.upload-dropzone {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    background: var(--bg);
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

.upload-dropzone:hover,
.upload-dropzone.drag-over {
    border-color: var(--blue);
    background: var(--blue-light);
}

.upload-idle,
.upload-scanning,
.upload-done {
    width: 100%;
    padding: 28px;
    text-align: center;
}

.upload-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.upload-icon-wrap svg {
    width: 40px;
    height: 40px;
    color: var(--blue);
}

.upload-main {
    font-size: .9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.upload-link {
    color: var(--blue);
    text-decoration: underline;
}

.upload-sub {
    font-size: .78rem;
    color: var(--text-light);
}

/* Scanning */
.upload-scanning {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.scan-spinner {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 4px solid var(--border);
    border-top-color: var(--blue);
    animation: spin .8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.scan-progress-bar {
    width: 100%;
    max-width: 260px;
    height: 6px;
    background: var(--border);
    border-radius: 99px;
    overflow: hidden;
    margin-top: 4px;
}

.scan-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--blue), var(--orange));
    border-radius: 99px;
    width: 0%;
    transition: width .15s ease;
}

.upload-scanning p {
    font-size: .85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Done */
.upload-done {
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.done-icon {
    width: 44px;
    height: 44px;
    color: var(--green);
}

.done-icon svg {
    width: 44px;
    height: 44px;
}

#upload-result-text {
    font-size: .9rem;
    color: var(--text);
}

#upload-result-text strong {
    color: var(--green);
}

/* Thumbnails */
.thumbnail-strip {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--border);
}

/* ============================================================
   MANUAL INVENTORY GRID
   ============================================================ */
.manual-hint {
    font-size: .82rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 4px;
    margin-bottom: 16px;
}

.mini-grid::-webkit-scrollbar {
    width: 4px;
}

.mini-grid::-webkit-scrollbar-track {
    background: transparent;
}

.mini-grid::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 99px;
}

.item-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 10px 6px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg);
    transition: all var(--transition);
    text-align: center;
}

.item-card.selected {
    border-color: var(--blue);
    background: var(--blue-light);
}

.item-emoji {
    font-size: 1.4rem;
}

.item-name {
    font-size: .72rem;
    font-weight: 600;
    color: var(--dark);
}

.item-vol {
    font-size: .65rem;
    color: var(--text-light);
}

.item-counter {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.ic-btn {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--text);
    font-size: .8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all var(--transition);
    padding: 0;
}

.ic-btn:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.ic-count {
    font-size: .8rem;
    font-weight: 700;
    color: var(--dark);
    min-width: 14px;
    text-align: center;
}

/* ============================================================
   BOX COUNTER
   ============================================================ */
.box-count-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-bottom: 20px;
    gap: 12px;
    flex-wrap: wrap;
}

.box-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.box-label svg {
    width: 18px;
    height: 18px;
    color: var(--orange);
}

.box-label label {
    font-size: .88rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.counter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.counter button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    line-height: 1;
}

.counter button:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.counter span {
    font-size: 1.1rem;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
}

.box-hint {
    font-size: .72rem;
    color: var(--text-light);
}

.btn-group {
    display: flex;
    gap: 10px;
}

.btn-group .btn {
    flex: 1;
}

/* ============================================================
   STEP 3 — RESULT
   ============================================================ */
.success-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.success-icon-wrap svg {
    width: 40px;
    height: 40px;
    color: var(--green);
}

.success-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 3px;
}

.result-sub {
    font-size: .82rem;
    color: var(--text-light);
    margin: 0;
}

.volume-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    background: var(--blue-light);
    border: 1.5px solid #bfdbfe;
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 20px;
}

.volume-badge svg {
    width: 16px;
    height: 16px;
}

.volume-badge span {
    font-weight: 700;
}

.vol-label {
    font-weight: 400;
    color: var(--text-light);
}

.sep {
    color: var(--border);
}

/* Breakdown table */
.breakdown-table {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 16px;
}

.bd-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    background: var(--bg);
    gap: 12px;
}

.bd-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .84rem;
    color: var(--text);
}

.bd-val {
    font-size: .9rem;
    font-weight: 700;
    color: var(--dark);
    white-space: nowrap;
}

/* Totals */
.total-block {
    border-top: 2px solid var(--border);
    margin-top: 4px;
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .9rem;
}

.total-row.subtotal {
    color: var(--text-light);
}

.total-row.btw {
    color: var(--text-light);
}

.total-row.grand {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
    background: var(--blue);
    color: #fff;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-top: 6px;
}

/* CTA */
.result-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 8px;
}

.email-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: .78rem;
}

.email-divider::before,
.email-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (min-width: 600px) {
    .lead-form {
        flex-direction: row;
    }
}

.lead-form input {
    flex: 1;
}

.lead-form .btn {
    padding: 11px 16px;
}

/* Email feedback */
.email-feedback {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: .85rem;
    font-weight: 500;
}

.email-feedback.success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.email-feedback.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* Inline spinner for send button */
.email-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, .4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .7s linear infinite;
    vertical-align: middle;
    margin-right: 4px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark);
    color: #94a3b8;
    padding: 56px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
}

.footer-brand p {
    font-size: .85rem;
    margin-top: 10px;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #94a3b8;
    font-size: .88rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    margin-bottom: 8px;
}

.footer-contact svg {
    width: 15px;
    height: 15px;
    color: var(--blue);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 20px 0;
    text-align: center;
    font-size: .8rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .calc-wrapper {
        grid-template-columns: 1fr;
    }

    .calc-info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-steps {
        flex: 1;
        min-width: 260px;
    }

    .tarief-card {
        flex: 1;
        min-width: 240px;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .trust-pilot {
        justify-content: center;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .woon-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .step-panel {
        padding: 20px 20px 24px;
    }

    .mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links {
        display: none;
    }
}

/* ============================================================
   POSTCODE LOOKUP
   ============================================================ */
.postcode-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.pc-input {
    flex: 0 0 145px;
}

.hn-input {
    flex: 0 0 72px;
}

.auto-fill-input {
    background: #f1f5f9 !important;
    color: var(--text) !important;
    cursor: default;
    border-color: var(--border) !important;
    font-style: italic;
    flex: 1;
}

.auto-fill-input:focus {
    box-shadow: none !important;
}

.postcode-status {
    margin-top: 6px;
    font-size: .78rem;
    min-height: 18px;
    color: var(--text-light);
}

.postcode-status.ok {
    color: var(--green);
}

.postcode-status.error {
    color: #dc2626;
}

.postcode-status.loading {
    color: var(--blue);
}

/* Distance result badge */
.distance-result {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-light);
    border: 1.5px solid #bfdbfe;
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: .88rem;
    color: var(--text);
    margin-bottom: 20px;
}

.distance-result svg {
    color: var(--blue);
    flex-shrink: 0;
}

.distance-result strong {
    color: var(--blue);
}

.btn-reset-upload {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--blue);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    margin-top: 10px;
}

.btn-reset-upload:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

/* ============================================================
   LIVE ESTIMATE & MOVER SELECTOR
   ============================================================ */
.live-estimate-card {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border-radius: var(--radius);
    padding: 24px;
    color: var(--white);
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, .2);
    position: relative;
    overflow: hidden;
}

.live-estimate-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.live-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.live-price {
    font-size: 2.2rem;
    font-weight: 800;
    margin-top: 4px;
    letter-spacing: -1px;
}

.live-details {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.ld-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.ld-item i {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.ld-item span {
    font-size: 0.85rem;
    font-weight: 600;
}

.ld-item {
    display: flex;
    flex-direction: column;
}

.ld-item span:first-child {
    font-size: 0.65rem;
    text-transform: uppercase;
    opacity: 0.7;
    font-weight: 700;
}

.ld-item span:last-child {
    font-size: 0.9rem;
    font-weight: 700;
}

.live-hint {
    margin-top: 12px;
    font-size: 0.7rem;
    opacity: 0.6;
    font-style: italic;
}

.mover-selector {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.mover-btn {
    flex: 1;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition);
}

.mover-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--blue);
}

.mover-btn.active {
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Animations */
@keyframes pulsePrice {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.price-bounce {
    animation: pulsePrice 0.3s ease-out;
}

/* ============================================================
   MONTAGE SECTION
   ============================================================ */
.montage-section {
    margin-top: 25px;
    padding: 20px;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.montage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.montage-label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.montage-label svg {
    width: 24px;
    height: 24px;
    color: var(--orange);
}

.montage-label strong {
    display: block;
    font-size: 1rem;
    color: var(--dark);
}

.montage-label p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

.montage-items-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.montage-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
}

.montage-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.m-btn {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid var(--border);
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
}

.m-count {
    font-weight: 700;
    min-width: 15px;
    text-align: center;
}

.montage-total-hours {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed var(--border);
    font-size: 0.9rem;
    color: var(--dark-soft);
    display: flex;
    align-items: center;
    gap: 8px;
}

.montage-total-hours strong {
    color: var(--orange);
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--orange);
}

input:checked+.slider:before {
    transform: translateX(24px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}