/*
Theme Name: Nudges Theme
Theme URI: https://nudges.nl
Author: Nudges
Author URI: https://nudges.nl
Description: Professioneel thema voor Nudges – een onafhankelijk kennisbureau voor zorg, bestuur en onderwijs in het sociaal domein.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nudges-theme
Tags: custom-menu, custom-logo, custom-header, responsive-layout, translation-ready
*/

/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Lato:wght@300;400;700&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
    --green:        #0EA47A;
    --green-dark:   #0b8a67;
    --green-light:  #e6f7f2;
    --dark:         #2C3E50;
    --grey:         #666666;
    --light:        #f7f8fa;
    --white:        #ffffff;
    --border:       #e0e0e0;
    --shadow:       0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.14);
    --radius:       10px;
    --font-head:    'Montserrat', sans-serif;
    --font-body:    'Lato', sans-serif;
    --max-width:    1140px;
    --header-h:     90px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.75;
    background: var(--white);
    padding-top: var(--header-h);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--green-dark); }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: var(--grey); }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section { padding: 5rem 0; }

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { max-width: 680px; margin: 0 auto; font-size: 1.05rem; }

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--green);
    border-radius: 2px;
    margin: 0.75rem auto 1.5rem;
}

.bg-light { background: var(--light); }
.bg-white { background: var(--white); }
.bg-green { background: var(--green); }
.text-white { color: var(--white) !important; }
.text-center { text-align: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    text-decoration: none;
}
.btn-primary {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.btn-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14,164,122,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--green);
    transform: translateY(-2px);
}
.btn-outline-green {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}
.btn-outline-green:hover {
    background: var(--green);
    color: var(--white);
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    background: var(--green);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
/* Admin-bar offset (logged-in frontend users) */
.admin-bar .site-header {
    top: 32px;
}
@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}


.site-logo img,
.site-logo svg,
img.custom-logo {
    height: 44px;
    width: auto;
    max-width: none;
}
.site-logo .logo-text {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--white);
    letter-spacing: -0.5px;
}

/* Primary Menu */
.primary-menu {
    display: flex;
    align-items: center;
    gap: 0;
}
.primary-menu li { position: relative; list-style: none; }
.primary-menu a {
    display: block;
    padding: 0.4rem 1.1rem;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.3px;
    transition: color 0.2s;
    border-radius: 6px;
}
.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current-page-ancestor > a {
    color: var(--white);
    background: rgba(255,255,255,0.15);
}
.primary-menu .menu-cta a {
    background: var(--white);
    color: var(--green);
    margin-left: 0.5rem;
}
.primary-menu .menu-cta a:hover {
    background: rgba(255,255,255,0.9);
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    position: relative;
    z-index: 1;
}
.menu-toggle span {
    display: block;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.menu-toggle.is-active span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0b8a67 0%, #0EA47A 40%, #1dd3a0 100%);
    padding: 5rem 2rem;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11,138,103,0.75) 0%, rgba(44,62,80,0.65) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.4);
}
.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.hero p {
    color: rgba(255,255,255,0.9);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    max-width: 680px;
    margin: 0 auto 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    font-family: var(--font-head);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    animation: bounce 2s infinite;
}
.hero-scroll::after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255,255,255,0.7);
    border-bottom: 2px solid rgba(255,255,255,0.7);
    transform: rotate(45deg);
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

/* ============================================================
   HOME: KEY VALUES / INTRO STRIP
   ============================================================ */
.intro-strip {
    background: var(--dark);
    padding: 3rem 0;
}
.intro-strip .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}
.intro-strip-item { color: var(--white); }
.intro-strip-item .icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.intro-strip-item h4 {
    font-family: var(--font-head);
    color: var(--green);
    margin-bottom: 0.3rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
}
.intro-strip-item p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }

/* ============================================================
   HOME: ABOUT PREVIEW
   ============================================================ */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-split-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.about-split-text .tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green);
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 1.2rem;
}
.about-split-text h2 { margin-bottom: 1.2rem; text-align: left; }
.about-split-text p { margin-bottom: 1rem; }

/* ============================================================
   HOME: VISIE BLOCK (QUOTE STYLE)
   ============================================================ */
.visie-block {
    background: var(--green);
    color: var(--white);
    padding: 5rem 0;
}
.visie-block .container { max-width: 860px; text-align: center; }
.visie-block .quote-icon {
    font-size: 5rem;
    line-height: 1;
    color: rgba(255,255,255,0.25);
    font-family: Georgia, serif;
    margin-bottom: -1rem;
}
.visie-block blockquote {
    font-family: var(--font-head);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.6;
    margin: 0 0 1.5rem;
    font-style: normal;
}
.visie-block cite {
    color: rgba(255,255,255,0.75);
    font-style: normal;
    font-size: 0.9rem;
}

/* ============================================================
   HOME: DIENSTEN PREVIEW CARDS
   ============================================================ */
.diensten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.dienst-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2.5rem 2rem;
    transition: transform 0.25s, box-shadow 0.25s;
    border-top: 4px solid transparent;
}
.dienst-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--green);
}
.dienst-card .card-icon {
    width: 60px;
    height: 60px;
    background: var(--green-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}
.dienst-card h3 { margin-bottom: 0.75rem; color: var(--dark); }
.dienst-card p { font-size: 0.95rem; margin-bottom: 1.5rem; }
.dienst-card .card-link {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--green);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.dienst-card .card-link::after { content: '→'; }
.dienst-card .card-link:hover { gap: 0.6rem; }

/* ============================================================
   HOME: WERKWIJZE STEPS
   ============================================================ */
.werkwijze-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    counter-reset: steps;
}
.werkwijze-step {
    text-align: center;
    position: relative;
}
.werkwijze-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: var(--border);
}
.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}
.werkwijze-step h4 { margin-bottom: 0.5rem; }
.werkwijze-step p { font-size: 0.9rem; }

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}
.team-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.team-card-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--green-light);
    margin: 2rem auto 1.2rem;
}
.team-card-body { padding: 0 2rem 2rem; }
.team-card h3 { margin-bottom: 0.25rem; }
.team-card .role {
    color: var(--green);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.team-card p { font-size: 0.95rem; }
.team-card-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
    margin-top: 1rem;
}
.keyword-tag {
    background: var(--green-light);
    color: var(--green);
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

/* ============================================================
   MISSION / VISIE SECTION
   ============================================================ */
.missie-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.missie-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2.5rem;
}
.missie-card .card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.missie-card h3 { color: var(--green); margin-bottom: 1rem; }
.missie-card ul { list-style: none; padding: 0; }
.missie-card ul li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--grey);
}
.missie-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

/* ============================================================
   FULL PAGE: DIENSTEN
   ============================================================ */
.diensten-full .dienst-full-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border);
}
.diensten-full .dienst-full-item:last-child { border-bottom: none; }
.dienst-full-meta .dienst-number {
    font-family: var(--font-head);
    font-size: 4rem;
    font-weight: 800;
    color: var(--green-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.dienst-full-meta h3 { color: var(--dark); margin-bottom: 0.5rem; }
.dienst-full-meta .dienst-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.dienst-full-content p { font-size: 1rem; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 4rem;
    align-items: start;
}
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-info-item .ci-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--green-light);
    color: var(--green);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-item h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--green);
    font-family: var(--font-head);
    margin-bottom: 0.2rem;
}
.contact-info-item p { font-size: 0.95rem; }

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 3rem;
}
.contact-form-wrap h3 { margin-bottom: 2rem; }

/* WordPress CF7 / WPForms overrides */
.wpcf7-form,
.wpforms-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}
.form-group { display: flex; flex-direction: column; }
.form-group label {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.4rem;
    letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea,
.form-group select,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--dark);
    background: var(--white);
    transition: border-color 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(14,164,122,0.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    padding: 5rem 0 4rem;
    text-align: center;
    color: var(--white);
}
.page-hero .breadcrumb {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
    font-family: var(--font-head);
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background: var(--dark);
    padding: 4rem 0;
    text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--green);
    color: rgba(255,255,255,0.9);
    padding: 4rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand .logo-text {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}
.footer-brand p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.footer-col h4 {
    font-family: var(--font-head);
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin: 0; }

/* ============================================================
   WERKWIJZE KEYWORDS
   ============================================================ */
.keywords-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}
.keyword-pill {
    background: var(--white);
    color: var(--green);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    box-shadow: var(--shadow);
    border: 2px solid var(--green-light);
    transition: all 0.2s;
}
.keyword-pill:hover {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

/* ============================================================
   OVER ONS – VALUES
   ============================================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.value-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.25s;
}
.value-item:hover { transform: translateY(-4px); }
.value-item .v-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}
.value-item h4 { color: var(--green); margin-bottom: 0.5rem; }
.value-item p { font-size: 0.9rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .werkwijze-steps { grid-template-columns: repeat(2, 1fr); }
    .werkwijze-step:nth-child(2)::after { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .diensten-full .dienst-full-item { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --header-h: 74px; }

    section { padding: 3.5rem 0; }

    /* Mobile nav */
    .menu-toggle { display: flex; }
    .primary-menu {
        position: fixed;
        top: var(--header-h);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-h));
        background: var(--dark);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 2rem;
        gap: 0.5rem;
        transform: translateX(-100%);
        transition: transform 0.35s ease;
        overflow-y: auto;
    }
    .primary-menu.is-open { transform: translateX(0); }
    .primary-menu a { font-size: 1.1rem; padding: 0.7rem 1rem; width: 100%; }
    .primary-menu .menu-cta a { margin-left: 0; margin-top: 1rem; text-align: center; }

    /* Layouts */
    .about-split,
    .missie-grid,
    .contact-layout { grid-template-columns: 1fr; }
    .about-split-image { order: -1; }

    .intro-strip .container { grid-template-columns: 1fr; }
    .diensten-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    .values-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .werkwijze-steps { grid-template-columns: 1fr; }
    .werkwijze-step::after { display: none !important; }

    .contact-form-wrap { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .hero-actions { flex-direction: column; align-items: center; }
}
