/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:   #1a3a5c;
    --navy2:  #0f2540;
    --blue:   #2563eb;
    --green:  #059669;
    --light:  #f4f7fb;
    --gray:   #6b7280;
    --border: #e5e7eb;
    --text:   #111827;
    --radius: 10px;
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    line-height: 1.65;
    font-size: 16px;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: .9375rem;
    cursor: pointer;
    border: none;
    transition: filter .15s, transform .1s;
    text-decoration: none;
}
.btn:hover { filter: brightness(.92); transform: translateY(-1px); }

.btn-primary   { background: var(--blue);  color: #fff; }
.btn-outline   { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-outline:hover { border-color: #fff; filter: none; }
.btn-dark      { background: var(--navy); color: #fff; }
.btn-green     { background: var(--green); color: #fff; }

/* ── Nav ──────────────────────────────────────────────────────── */
#nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--navy2);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.5px;
}
.nav-logo span { color: #60a5fa; }
#nav img { filter: brightness(0) invert(1); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    color: rgba(255,255,255,.75);
    font-size: .9375rem;
    transition: color .15s;
}
.nav-links a:hover { color: #fff; }

.nav-cta { margin-left: 1.5rem; }

/* ── Hero ─────────────────────────────────────────────────────── */
#hero {
    background:
        linear-gradient(135deg, rgba(15,37,64,.72) 0%, rgba(26,58,92,.68) 55%, rgba(30,77,140,.65) 100%),
        url('../images/productie-naamplaatjes-controleren.jpg') center/cover no-repeat;
    padding: 100px 0 80px;
    color: #fff;
    position: relative;
    overflow: hidden;
}


.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(96,165,250,.15);
    border: 1px solid rgba(96,165,250,.3);
    color: #93c5fd;
    font-size: .8125rem;
    font-weight: 600;
    padding: .375rem .875rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.5px;
    margin-bottom: 1.25rem;
}
.hero-title em { color: #fff; font-style: normal; }

.hero-sub {
    font-size: 1.125rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
}
.hero-stat-label {
    font-size: .8125rem;
    color: rgba(255,255,255,.6);
    margin-top: .125rem;
}

.hero-visual {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.mock-header {
    background: rgba(255,255,255,.08);
    border-radius: 8px;
    padding: .875rem 1.25rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.25rem;
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-title { color: rgba(255,255,255,.9); font-weight: 600; font-size: .9375rem; margin-left: .25rem; }

.mock-row {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    padding: .75rem 1rem;
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .875rem;
}
.mock-row-label { color: rgba(255,255,255,.8); }
.mock-badge {
    font-size: .75rem;
    font-weight: 600;
    padding: .2rem .6rem;
    border-radius: 20px;
}
.badge-green  { background: rgba(5,150,105,.25); color: #34d399; }
.badge-blue   { background: rgba(37,99,235,.3);  color: #93c5fd; }
.badge-orange { background: rgba(245,158,11,.2); color: #fbbf24; }

/* ── Section base ─────────────────────────────────────────────── */
section { padding: 88px 0; }
.section-label {
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: .75rem;
}
.section-title {
    font-size: clamp(1.625rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -.5px;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--navy2);
}
.section-sub {
    font-size: 1.0625rem;
    color: var(--gray);
    max-width: 580px;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── Hoe het werkt ────────────────────────────────────────────── */
#hoe { background: var(--light); }

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(16.67% + 28px);
    right: calc(16.67% + 28px);
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.step {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    position: relative;
    z-index: 1;
    text-align: center;
}
.step-num {
    width: 56px;
    height: 56px;
    background: var(--navy);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}
.step-title { font-size: 1.125rem; font-weight: 700; margin-bottom: .625rem; color: var(--navy2); }
.step-text  { color: var(--gray); font-size: .9375rem; }

/* ── Showcase ─────────────────────────────────────────────────── */
#showcase { background: var(--light); }

.showcase-frame {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-main,
.showcase-float {
    position: absolute;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: transform .6s cubic-bezier(.22,.68,0,1.2), box-shadow .6s ease, z-index 0s;
}

.showcase-main:hover,
.showcase-float:hover {
    transition: transform .22s cubic-bezier(.34,1.4,.64,1), box-shadow .22s ease, z-index 0s;
}

.showcase-main {
    width: 62%;
    z-index: 3;
    box-shadow: 0 28px 64px rgba(15,37,64,.22), 0 6px 20px rgba(15,37,64,.1);
    transform: rotate(0deg);
}

.showcase-float--left {
    width: 56%;
    z-index: 1;
    left: 0;
    transform: rotate(-7deg) translateY(24px);
    box-shadow: 0 16px 40px rgba(15,37,64,.15);
}

.showcase-float--right {
    width: 56%;
    z-index: 2;
    right: 0;
    transform: rotate(6deg) translateY(16px);
    box-shadow: 0 16px 40px rgba(15,37,64,.15);
}

.showcase-float--left:hover {
    transform: rotate(0deg) translateY(-18px) scale(1.08) !important;
    z-index: 10 !important;
    box-shadow: 0 40px 72px rgba(15,37,64,.3), 0 10px 28px rgba(15,37,64,.15) !important;
    cursor: pointer;
}

.showcase-float--right:hover {
    transform: rotate(0deg) translateY(-18px) scale(1.08) !important;
    z-index: 10 !important;
    box-shadow: 0 40px 72px rgba(15,37,64,.3), 0 10px 28px rgba(15,37,64,.15) !important;
    cursor: pointer;
}

.showcase-main:hover {
    transform: translateY(-14px) scale(1.05) !important;
    z-index: 10 !important;
    box-shadow: 0 48px 88px rgba(15,37,64,.32), 0 12px 32px rgba(15,37,64,.16) !important;
    cursor: pointer;
}

/* ── Pijnpunten ───────────────────────────────────────────────── */
#herkenbaar { background: var(--light); }

.pain-label {
    display: inline-block;
    background: #fee2e2;
    color: #b91c1c;
    padding: .25rem .875rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: .875rem;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.pain-card {
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: var(--radius);
    padding: 1.5rem;
    border-top: 3px solid #fee2e2;
}
.pain-icon {
    width: 44px;
    height: 44px;
    background: #fee2e2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #dc2626;
}
.pain-icon svg { width: 22px; height: 22px; }
.pain-title { font-size: .9375rem; font-weight: 700; color: var(--navy2); margin-bottom: .5rem; text-align: center; }
.pain-text  { font-size: .875rem; color: var(--gray); line-height: 1.65; text-align: center; }

.pain-card--solution {
    background: linear-gradient(135deg, var(--navy2), var(--navy));
    border: none;
    border-top: 3px solid #60a5fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.pain-solution-label {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .75rem;
}
.pain-solution-text {
    font-size: .875rem;
    color: rgba(255,255,255,.75);
    line-height: 1.65;
}

/* ── Functies ─────────────────────────────────────────────────── */
#functies { background: #fff; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: box-shadow .2s, border-color .2s;
    text-align: center;
}
.feature-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
    border-color: #bfdbfe;
}
.feature-icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #2563eb;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-title { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: var(--navy2); }
.feature-text  { font-size: .9375rem; color: var(--gray); }

/* ── Voor wie ─────────────────────────────────────────────────── */
#voor-wie { background: var(--navy2); color: #fff; }
#voor-wie .section-title { color: #fff; }
#voor-wie .section-sub   { color: rgba(255,255,255,.65); }
#voor-wie .section-label { color: #60a5fa; }

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.audience-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    transition: background .2s;
    text-align: center;
}
.audience-card:hover { background: rgba(255,255,255,.1); }
.audience-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: #fff;
}
.audience-icon svg { width: 26px; height: 26px; }
.audience-title { font-size: 1.125rem; font-weight: 700; margin-bottom: .625rem; color: #fff; }
.audience-text  { font-size: .9375rem; color: rgba(255,255,255,.65); }

/* ── USPs ─────────────────────────────────────────────────────── */
#usps { background: var(--light); }

.usps-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.usp-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.usp-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.usp-check {
    width: 28px;
    height: 28px;
    background: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green);
    margin-top: .1rem;
}
.usp-check svg { width: 14px; height: 14px; stroke-width: 2.5; }
.usp-text strong { display: block; font-size: 1rem; font-weight: 700; color: var(--navy2); margin-bottom: .25rem; }
.usp-text span   { font-size: .9375rem; color: var(--gray); }

.usps-visual {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 40px rgba(0,0,0,.07);
}
.usps-visual-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy2);
    margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--border);
}
.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .875rem 0;
    border-bottom: 1px solid var(--border);
    font-size: .9375rem;
}
.stat-row:last-child { border: none; }
.stat-row-label { color: var(--gray); }
.stat-row-val   { font-weight: 700; color: var(--navy2); }
.stat-bar-wrap  { width: 80px; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.stat-bar       { height: 100%; background: var(--blue); border-radius: 3px; }

/* ── Productie ────────────────────────────────────────────────── */
#productie { background: #fff; }

.productie-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.prod-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--light);
}
.prod-num {
    width: 36px;
    height: 36px;
    background: var(--navy);
    color: #fff;
    font-size: .875rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.prod-title { font-weight: 700; font-size: .9375rem; color: var(--navy2); margin-bottom: .25rem; }
.prod-text  { font-size: .875rem; color: var(--gray); }

/* ── Foto banner strip ────────────────────────────────────────── */
.photo-banner {
    background: var(--navy2);
    padding: 72px 0;
    text-align: center;
}
.photo-banner-inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.photo-banner-quote {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    margin-bottom: .75rem;
    letter-spacing: -.25px;
}
.photo-banner-sub {
    font-size: .9375rem;
    color: rgba(255,255,255,.6);
    letter-spacing: .25px;
}


/* ── FAQ ──────────────────────────────────────────────────────── */
.faq-item {
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--border);
}
.faq-question {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy2);
    margin-bottom: .75rem;
}
.faq-answer {
    font-size: .9375rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* ── Contact ──────────────────────────────────────────────────── */
#contact { background: var(--light); }

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

.contact-info-title { font-size: 1.5rem; font-weight: 800; color: var(--navy2); margin-bottom: 1rem; }
.contact-info-sub   { color: var(--gray); margin-bottom: 2rem; font-size: .9375rem; }

.contact-detail {
    display: flex;
    gap: .875rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}
.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--navy); }
.contact-detail-label { font-size: .75rem; color: var(--gray); margin-bottom: .125rem; }
.contact-detail-val   { font-weight: 600; color: var(--navy2); font-size: .9375rem; }

.contact-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.form-title { font-size: 1.25rem; font-weight: 700; color: var(--navy2); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.125rem; }
.form-label { font-size: .875rem; font-weight: 600; color: var(--navy2); display: block; margin-bottom: .4rem; }
.form-input {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: .9375rem;
    font-family: inherit;
    transition: border-color .15s, box-shadow .15s;
    color: var(--text);
    background: #fff;
}
.form-input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
textarea.form-input { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .8125rem; color: var(--gray); margin-top: 1rem; }

/* ── Footer ───────────────────────────────────────────────────── */
footer {
    background: var(--navy2);
    color: rgba(255,255,255,.65);
    padding: 48px 0 32px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 28px;
}
.footer-brand { font-size: 1.125rem; font-weight: 800; color: #fff; margin-bottom: .75rem; }
.footer-brand span { color: #60a5fa; }
footer img { filter: brightness(0) invert(1); }
.footer-desc { font-size: .9375rem; line-height: 1.6; max-width: 280px; }
.footer-col-title { font-size: .875rem; font-weight: 700; color: #fff; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .5px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .625rem; }
.footer-links a { font-size: .9375rem; transition: color .15s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: .8125rem; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 960px) {
    .hero-inner       { grid-template-columns: 1fr; }
    .hero-visual      { display: none; }
    .steps            { grid-template-columns: 1fr; }
    .steps::before    { display: none; }
    .pain-grid        { grid-template-columns: 1fr 1fr; }
    .features-grid    { grid-template-columns: 1fr 1fr; }
    .audience-grid    { grid-template-columns: 1fr 1fr; }
    .usps-inner       { grid-template-columns: 1fr; }
    .productie-grid   { grid-template-columns: 1fr; }
    .contact-inner    { grid-template-columns: 1fr; }
    .footer-inner     { grid-template-columns: 1fr 1fr; }
    .nav-links        { display: none; }
}

@media (max-width: 600px) {
    section           { padding: 64px 0; }
    .pain-grid        { grid-template-columns: 1fr; }
    .features-grid    { grid-template-columns: 1fr; }
    .audience-grid    { grid-template-columns: 1fr; }
    .form-row         { grid-template-columns: 1fr; }
    .footer-inner     { grid-template-columns: 1fr; }
    .hero-stats       { flex-direction: column; gap: 1.25rem; }
}
