/* =====================================================
   AI Werkplaats — Gedeelde stijlen
   Kleurenpalet: #1B2A4A (donkerblauw) | #E8A23A (amber)
   Font: Inter
   ===================================================== */

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #374151;
    background: #fff;
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

/* ----- CSS Variables ----- */
:root {
    --blue:        #1B2A4A;
    --blue-mid:    #243557;
    --blue-light:  #2e4370;
    --orange:      #E8A23A;
    --orange-dark: #d08f28;
    --orange-bg:   rgba(232,162,58,0.12);
    --grey-bg:     #f7f8fa;
    --grey-border: #e5e7eb;
    --grey-mid:    #6b7280;
    --grey-dark:   #374151;
    --white:       #ffffff;
    --text:        #374151;
    --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
    --shadow-md:   0 4px 20px rgba(0,0,0,0.10);
    --shadow-lg:   0 8px 32px rgba(0,0,0,0.14);
    --radius:      8px;
    --radius-lg:   12px;
}

/* ----- Typography ----- */
h1, h2, h3, h4 {
    line-height: 1.2;
    color: var(--blue);
    font-weight: 700;
    letter-spacing: -0.3px;
}
h1 { font-size: clamp(1.9rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 1rem; }
p  { margin-bottom: 1rem; color: var(--grey-dark); }
p:last-child { margin-bottom: 0; }
a { color: var(--orange-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { color: var(--blue); }

/* ----- Layout ----- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
section    { padding: 5rem 0; }

/* ----- Accent decoraties ----- */
.accent-line {
    width: 44px; height: 4px;
    background: var(--orange);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--orange-dark);
    margin-bottom: 0.75rem;
}

/* =====================================================
   NAVIGATIE
   ===================================================== */
nav {
    background: var(--blue);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.nav-logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.nav-logo span { color: var(--orange); }
.nav-links {
    display: flex;
    gap: 1.75rem;
    list-style: none;
    align-items: center;
}
.nav-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
    text-decoration: none;
}
.nav-links a:hover { color: var(--white); text-decoration: none; }
.nav-links a.active { color: var(--white); }
.nav-links .nav-cta a {
    background: var(--orange);
    color: var(--blue);
    padding: 0.5rem 1.1rem;
    border-radius: 5px;
    font-weight: 700;
    transition: background 0.2s;
}
.nav-links .nav-cta a:hover { background: var(--orange-dark); color: var(--white); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}
.mobile-menu {
    display: none;
    background: var(--blue-mid);
    padding: 0.5rem 1.5rem 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
    display: block;
    color: rgba(255,255,255,0.85);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--orange); text-decoration: none; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    border: none;
    font-family: inherit;
    line-height: 1;
}
.btn:hover { text-decoration: none; }

.btn-primary {
    background: var(--orange);
    color: var(--blue);
}
.btn-primary:hover {
    background: var(--orange-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(232,162,58,0.4);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--blue);
    border-color: var(--white);
}
.btn-dark {
    background: var(--blue);
    color: var(--white);
}
.btn-dark:hover {
    background: var(--blue-mid);
    transform: translateY(-1px);
}
.btn-lg {
    padding: 1rem 2.2rem;
    font-size: 1.05rem;
}
.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

/* =====================================================
   HERO — HOMEPAGE
   ===================================================== */
.hero {
    background: var(--blue);
    background-image:
        radial-gradient(ellipse at 75% 40%, rgba(232,162,58,0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 80%, rgba(46,67,112,0.8) 0%, transparent 50%),
        linear-gradient(150deg, #1B2A4A 0%, #1e3055 100%);
    padding: 6.5rem 0 5rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(27,42,74,0.15));
    pointer-events: none;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(232,162,58,0.15);
    border: 1px solid rgba(232,162,58,0.35);
    color: var(--orange);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.hero h1 {
    color: var(--white);
    max-width: 700px;
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 5vw, 3.2rem);
}
.hero h1 em {
    font-style: normal;
    color: var(--orange);
}
.hero-lead {
    color: rgba(255,255,255,0.78);
    font-size: 1.15rem;
    max-width: 540px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 3rem;
}
.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
}
.hero-trust-item .check { color: var(--orange); font-weight: 700; }

/* =====================================================
   SECTIE: WAT IS AI-IMPULS
   ===================================================== */
.sectie-uitleg {
    background: var(--grey-bg);
}
.uitleg-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.uitleg-inner .accent-line { margin: 0 auto 1.5rem; }
.uitleg-inner h2 { margin-bottom: 1.5rem; }
.uitleg-inner p { font-size: 1.05rem; color: var(--grey-dark); }
.uitleg-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: 6px;
    padding: 0.7rem 1.2rem;
    margin-top: 2rem;
    font-size: 0.92rem;
    color: var(--grey-dark);
}
.uitleg-tag strong { color: var(--blue); }
.uitleg-tags { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* =====================================================
   HOE HET WERKT — 3 STAPPEN
   ===================================================== */
.stappen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
}
.stappen-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(16.66% + 24px);
    right: calc(16.66% + 24px);
    height: 2px;
    background: linear-gradient(to right, var(--orange), transparent, var(--orange));
    opacity: 0.3;
}
.stap {
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    text-align: center;
    position: relative;
    transition: box-shadow 0.25s, transform 0.25s;
}
.stap:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.stap-nr {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--blue);
    color: var(--orange);
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--blue);
    position: relative;
    z-index: 1;
}
.stap h3 {
    color: var(--blue);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}
.stap p { font-size: 0.95rem; }
.stap .stap-meta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--grey-border);
    font-size: 0.88rem;
    color: var(--grey-mid);
}
.stap .prijs-badge {
    display: inline-block;
    background: var(--orange-bg);
    color: var(--orange-dark);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.25rem 0.7rem;
    border-radius: 5px;
}
.stap .gratis-badge {
    display: inline-block;
    background: rgba(16,185,129,0.1);
    color: #059669;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.25rem 0.7rem;
    border-radius: 5px;
}
.stappen-cta { text-align: center; margin-top: 2.5rem; }

/* =====================================================
   VOOR WIE
   ===================================================== */
.voor-wie { background: var(--grey-bg); }
.voor-wie-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.beroepen-wrap h3 { margin-bottom: 1.25rem; color: var(--blue); }
.beroepen {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}
.beroep-tag {
    background: var(--blue);
    color: var(--white);
    padding: 0.45rem 0.9rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
}
.voor-wie-tekst p { font-size: 1rem; }
.voordelen { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.5rem; }
.voordeel {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--orange);
    box-shadow: var(--shadow-sm);
}
.voordeel-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1.4; }
.voordeel-text strong { display: block; color: var(--blue); margin-bottom: 0.2rem; font-size: 0.95rem; }
.voordeel-text span { font-size: 0.9rem; color: var(--grey-mid); }

/* =====================================================
   CASE STUDY
   ===================================================== */
.case-study {
    background: var(--blue);
    background-image:
        radial-gradient(ellipse at 80% 20%, rgba(232,162,58,0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 15% 80%, rgba(46,67,112,0.5) 0%, transparent 40%);
    color: var(--white);
}
.case-study h2 { color: var(--white); margin-bottom: 1rem; }
.case-study p { color: rgba(255,255,255,0.78); }
.case-inner { display: grid; grid-template-columns: 3fr 2fr; gap: 4rem; align-items: start; }
.case-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1rem;
}
.case-quote {
    border-left: 3px solid var(--orange);
    padding: 0.75rem 1.25rem;
    margin: 1.75rem 0;
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.04);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.case-cta { margin-top: 2rem; }
.case-results {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: sticky;
    top: 80px;
}
.case-results-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.25rem;
}
.result-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.88);
    font-size: 0.95rem;
    line-height: 1.4;
}
.result-item:last-child { border-bottom: none; padding-bottom: 0; }
.result-check { color: var(--orange); font-weight: 700; font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* =====================================================
   AFSLUITING / CTA SECTIE
   ===================================================== */
.afsluiting {
    background: var(--grey-bg);
    text-align: center;
}
.afsluiting h2 { max-width: 580px; margin: 0 auto 1rem; }
.afsluiting p { max-width: 500px; margin: 0 auto 2rem; font-size: 1.05rem; }
.afsluiting-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =====================================================
   FOOTER
   ===================================================== */
footer {
    background: #111827;
    color: rgba(255,255,255,0.55);
    padding: 2.5rem 0;
    font-size: 0.9rem;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 1.5rem;
}
.footer-logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    display: block;
}
.footer-logo span { color: var(--orange); }
.footer-tagline { color: rgba(255,255,255,0.45); font-size: 0.85rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-meta { font-size: 0.82rem; }
.footer-meta span { margin-right: 1rem; }

/* =====================================================
   PAGE HERO (binnenste pagina's)
   ===================================================== */
.page-hero {
    background: var(--blue);
    background-image: linear-gradient(135deg, #1B2A4A 0%, #1e3055 100%);
    padding: 4.5rem 0 3.5rem;
    color: var(--white);
}
.page-hero .section-label { color: var(--orange); margin-bottom: 0.75rem; display: block; }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; font-size: clamp(1.7rem, 4vw, 2.5rem); }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 580px; margin-bottom: 0; }

/* =====================================================
   OVER MIJ PAGINA
   ===================================================== */
.over-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}
.over-sidebar { }
.over-avatar {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
    border-radius: var(--radius-lg);
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    margin-bottom: 1.5rem;
}
.over-contact-mini {
    background: var(--grey-bg);
    border-radius: var(--radius);
    padding: 1.25rem;
}
.over-contact-mini h4 { color: var(--blue); margin-bottom: 1rem; font-size: 0.9rem; }
.mini-contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--grey-dark);
    margin-bottom: 0.6rem;
}
.mini-contact-item:last-child { margin-bottom: 0; }
.mini-icon { font-size: 1rem; }
.over-content h2 { margin-bottom: 1.5rem; }
.over-content p { font-size: 1rem; line-height: 1.75; margin-bottom: 1.25rem; }
.fact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}
.fact {
    background: var(--grey-bg);
    border-radius: var(--radius);
    padding: 1.25rem;
    border-left: 3px solid var(--orange);
}
.fact strong { display: block; color: var(--blue); margin-bottom: 0.2rem; font-size: 0.9rem; }
.fact span { font-size: 0.88rem; color: var(--grey-mid); }
.aanleiding-block {
    background: var(--blue);
    background-image: radial-gradient(ellipse at 80% 50%, rgba(232,162,58,0.08) 0%, transparent 60%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin: 3rem 0;
}
.aanleiding-block .section-label { color: var(--orange); }
.aanleiding-block h2 { color: var(--white); margin-bottom: 1rem; }
.aanleiding-block p { color: rgba(255,255,255,0.78); }

/* =====================================================
   DIENSTEN PAGINA
   ===================================================== */
.diensten-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.dienst-card {
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    transition: box-shadow 0.25s;
}
.dienst-card:hover { box-shadow: var(--shadow-md); }
.dienst-card.featured {
    border: 2px solid var(--orange);
    background: linear-gradient(to bottom right, #fff 0%, #fffcf5 100%);
}
.featured-badge {
    display: inline-block;
    background: var(--orange);
    color: var(--blue);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 1rem;
}
.dienst-card h3 { color: var(--blue); font-size: 1.35rem; margin-bottom: 0.5rem; }
.dienst-duur { font-size: 0.88rem; color: var(--grey-mid); margin-bottom: 1rem; }
.dienst-prijs {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--blue);
    margin: 1rem 0;
    line-height: 1;
}
.dienst-prijs .prijs-sub {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--grey-mid);
}
.dienst-divider { border: none; border-top: 1px solid var(--grey-border); margin: 1.5rem 0; }
.dienst-list { list-style: none; margin-bottom: 2rem; }
.dienst-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.95rem;
    color: var(--grey-dark);
}
.dienst-list li:last-child { border-bottom: none; }
.dienst-list .check { color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.dienst-note {
    background: var(--grey-bg);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    font-size: 0.88rem;
    color: var(--grey-mid);
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}
.diensten-extra { margin-top: 4rem; }
.diensten-extra h2 { margin-bottom: 1rem; }
.faq { margin-top: 2rem; }
.faq-item {
    border: 1px solid var(--grey-border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.faq-vraag {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 1.1rem 1.5rem;
    text-align: left;
    font-family: inherit;
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}
.faq-vraag:hover { background: var(--grey-bg); }
.faq-chevron { transition: transform 0.3s; font-size: 1.1rem; color: var(--orange); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-antwoord {
    display: none;
    padding: 0 1.5rem 1.1rem;
    font-size: 0.95rem;
    color: var(--grey-dark);
    background: var(--white);
    line-height: 1.65;
}
.faq-item.open .faq-antwoord { display: block; }

/* =====================================================
   CONTACT PAGINA
   ===================================================== */
.contact-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 4rem; }
.contact-form-wrap { }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 0.45rem;
    font-size: 0.93rem;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232,162,58,0.18);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-opt { font-size: 0.82rem; color: var(--grey-mid); margin-left: 0.3rem; }
.form-submit { margin-top: 0.5rem; }
.form-note { font-size: 0.83rem; color: var(--grey-mid); margin-top: 0.6rem; }
.contact-sidebar { }
.contact-block {
    background: var(--grey-bg);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
}
.contact-block:last-child { margin-bottom: 0; }
.contact-block h3 { color: var(--blue); font-size: 1rem; margin-bottom: 1rem; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    font-size: 0.95rem;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-icon { font-size: 1.15rem; flex-shrink: 0; }
.contact-item-text strong { display: block; color: var(--blue); font-size: 0.88rem; margin-bottom: 0.1rem; }
.contact-item-text span { color: var(--grey-dark); }
.contact-item-text a { color: var(--orange-dark); }
.success-msg {
    display: none;
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.3);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    color: #065f46;
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
    .stappen-grid { grid-template-columns: 1fr; }
    .stappen-grid::before { display: none; }
    .case-inner { grid-template-columns: 1fr; gap: 2rem; }
    .voor-wie-grid { grid-template-columns: 1fr; gap: 2rem; }
    .over-grid { grid-template-columns: 1fr; gap: 2rem; }
    .over-avatar { width: 120px; height: 120px; font-size: 3.5rem; }
    .diensten-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .fact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    section { padding: 3.5rem 0; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero { padding: 4.5rem 0 3.5rem; }
    .hero-btns { flex-direction: column; align-items: flex-start; }
    .hero-trust { flex-direction: column; gap: 0.5rem; }
    .afsluiting-btns { flex-direction: column; align-items: center; }
    .footer-top { flex-direction: column; gap: 1.5rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .footer-links { flex-wrap: wrap; gap: 1rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.4rem; }
    .container { padding: 0 1.25rem; }
    .hero { padding: 3.5rem 0 3rem; }
    .dienst-card { padding: 1.75rem; }
    .case-results { padding: 1.5rem; }
}

/* ============================== */
/* IK KEN JE WERK — trust section */
/* ============================== */
.ik-ken-je-werk {
    background: linear-gradient(180deg, #fff 0%, var(--grey-bg) 100%);
    padding: 5rem 0;
}
.ikw-inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 2.75rem 2.5rem;
    background: #fff;
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--orange);
    box-shadow: 0 8px 32px rgba(27, 42, 74, 0.08);
}
.ikw-inner .section-label {
    color: var(--orange);
}
.ikw-inner h2 {
    margin: 0.75rem 0 1.25rem;
    font-size: 1.85rem;
    line-height: 1.25;
    color: var(--navy);
}
.ikw-inner p {
    color: #3a4255;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}
.ikw-inner p:last-child {
    margin-bottom: 0;
}
@media (max-width: 720px) {
    .ik-ken-je-werk { padding: 3.5rem 0; }
    .ikw-inner { padding: 2rem 1.5rem; }
    .ikw-inner h2 { font-size: 1.5rem; }
    .ikw-inner p { font-size: 1rem; }
}

/* ============================== */
/* LANGUAGE SWITCHER               */
/* ============================== */
.lang-switcher {
    position: relative;
    margin-left: 1rem;
}
.lang-current {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    padding: 0.45rem 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: inherit;
}
.lang-current:hover {
    border-color: var(--orange);
}
.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 32px rgba(0,0,0,0.18);
    min-width: 200px;
    padding: 0.4rem;
    display: none;
    z-index: 1000;
}
.lang-dropdown.open {
    display: block;
}
.lang-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.75rem;
    cursor: pointer;
    border-radius: 5px;
    color: var(--navy);
    font-size: 0.92rem;
    text-align: left;
    width: 100%;
    background: none;
    border: none;
    font-family: inherit;
}
.lang-option:hover {
    background: var(--grey-bg);
}
.lang-option.active {
    background: var(--grey-bg);
    font-weight: 600;
}
.lang-flag {
    font-size: 1.1rem;
}
/* Mobile menu language switcher */
.mobile-menu .lang-switcher-mobile {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 0.5rem;
}
.mobile-menu .lang-switcher-mobile-title {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.mobile-menu .lang-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.mobile-menu .lang-row button {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    padding: 0.4rem 0.65rem;
    border-radius: 5px;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.mobile-menu .lang-row button.active {
    background: var(--orange);
    border-color: var(--orange);
}
/* RTL support for Arabic */
html[dir="rtl"] body {
    text-align: right;
}
html[dir="rtl"] .nav-links,
html[dir="rtl"] .hero-trust,
html[dir="rtl"] .hero-btns,
html[dir="rtl"] .afsluiting-btns {
    flex-direction: row-reverse;
}
html[dir="rtl"] .ikw-inner {
    border-left: none;
    border-right: 5px solid var(--orange);
}
html[dir="rtl"] .section-label::before,
html[dir="rtl"] .section-label::after {
    display: none;
}
