:root {
    --brand-gradient: linear-gradient(135deg, #2b0fd6 0%, #7b5cff 100%);
}

#menu {
    background: linear-gradient(135deg, #2b0fd6 0%, #7b5cff 100%) !important;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    height: 100dvh;
    background: var(--menu-bg);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    background: var(--bg);
    color: #0f172a;
}

header {
    background: white;
    position: sticky;
    top: 0;
    border-bottom: 1px solid #e5e7eb;
}

nav {
    max-width: 1200px;
    margin: auto;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
}

.hero {
    background: linear-gradient(135deg, var(--primary), #020617);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 56px)
}

.hero p {
    max-width: 600px;
    margin: 20px auto
}

.btn {
    background: var(--accent);
    color: white;
    padding: 14px 28px;
    border-radius: 6px;
    display: inline-block;
}

.features {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}


/* 📱 Mobile */

@media (max-width:768px) {
    nav ul {
        display: none
    }
    .hero {
        padding: 70px 20px
    }
}

.menu-btn {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    color: var(--primary);
}

@media(max-width:768px) {
    .menu-btn {
        display: block
    }
    nav ul {
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        display: none;
    }
    nav ul.open {
        display: flex
    }
}

.hero,
.features div {
    animation: fadeUp .8s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
}

.page-header {
    background: linear-gradient(135deg, var(--primary), #020617);
    color: white;
    padding: 90px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 12px;
}

.page-header p {
    max-width: 600px;
    margin: auto;
    opacity: .9;
}

.content h2 {
    margin-top: 60px;
    font-size: 28px;
    color: var(--primary);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    transition: .3s;
}

.card:hover {
    transform: translateY(-5px);
}

.contact-form {
    max-width: 600px;
    margin: 40px auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    display: grid;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    font-size: 15px;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}


/* Hero / page header animatie */

.hero,
.page-header {
    animation: slideUp 0.9s ease-out both;
}

@keyframes slideUp {
    from {
        transform: translateY(60px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.center {
    text-align: center
}

.how-we-work {
    background: #f1f5f9;
    padding: 80px 20px;
    text-align: center
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px
}

.step span {
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    padding: 10px 16px
}

.site-footer {
    background: #020617;
    color: #cbd5f5;
    padding: 60px 20px
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px
}

.site-footer a {
    color: #cbd5f5;
    text-decoration: none;
    display: block
}

.copy {
    text-align: center;
    margin-top: 40px;
    opacity: .7
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.service-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    transition: .3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.service-content p {
    color: #475569;
    font-size: 15px;
    margin-bottom: 16px;
}

.service-content ul {
    padding-left: 18px;
    margin-bottom: 20px;
}

.service-content li {
    margin-bottom: 6px;
    font-size: 14px;
}

.service-link {
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
}

.how-we-work h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 14px;
}

.how-we-work .subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 110px;
}

.how-we-work {
    padding: 160px 20px 180px;
    background: radial-gradient(1200px 400px at 50% 0%, #eef2ff 0%, transparent 70%), linear-gradient(180deg, #f8faff 0%, #f9fafb 100%);
}

.subtitle {
    font-size: 18px;
    color: #475569;
    margin-bottom: 90px;
}

.process-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.process-card {
    position: relative;
}

.process-card:hover {
    transform: translateY(-8px);
}

.step-number {
    position: absolute;
    top: -22px;
    left: 32px;
    width: 44px;
    height: 44px;
    background: #2563eb;
    /* blauw bolletje */
    color: #ffffff;
    border-radius: 50%;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(37, 99, 235, .35);
}

.step-number {
    top: -26px;
    /* was -22px */
}

.icon-box {
    width: 56px;
    height: 56px;
    background: #e8efff;
    /* lichtblauw zoals Figma */
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #2563eb;
    margin: 22px auto 20px;
}

.process-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 56px 32px 44px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, .08);
    transition: .35s ease;
}

.process-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.process-card p {
    font-size: 15px;
    line-height: 1.65;
    max-width: 260px;
}

@media(max-width:1100px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 72px;
    }
    .how-we-work h2 {
        font-size: 36px;
    }
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, .12);
}


/* STATISTICS BAR */

.stats-bar {
    background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
    padding: 80px 20px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.stat-item span {
    font-size: 16px;
    color: rgba(255, 255, 255, .9);
}


/* Mobile */

@media(max-width: 900px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media(max-width: 500px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}


/* PAGE HERO (zoals Figma) */

.page-hero {
    background: radial-gradient(900px 300px at 20% 0%, #eef2ff 0%, transparent 70%), #ffffff;
    padding: 140px 20px 120px;
}

.page-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.page-hero-text h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-hero-text h1 span {
    color: #2563eb;
}

.page-hero-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
    max-width: 520px;
}

.page-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, .18);
}


/* Mobile */

@media(max-width: 900px) {
    .page-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .page-hero-text p {
        margin: 0 auto;
    }
    .page-hero-image {
        margin-top: 40px;
    }
    .page-hero-text h1 {
        font-size: 38px;
    }
}


/* HERO SPLIT */

.hero-split {
    background: radial-gradient(800px 300px at 0% 0%, #eef2ff 0%, transparent 60%), #f8fafc;
    padding: 160px 20px 140px;
}

.hero-content {
    max-width: 720px;
    margin-left: 120px;
}

.hero h1 {
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 22px;
    color: #0f172a;
}

.hero h1 span {
    color: #2563eb;
}

.hero p {
    font-size: 18px;
    color: #475569;
    max-width: 560px;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn.primary {
    background: #2563eb;
    color: white;
    padding: 14px 26px;
    border-radius: 8px;
    font-weight: 600;
}

.btn.secondary {
    background: #e5e7eb;
    color: #0f172a;
    padding: 14px 26px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}


/* Mobile */

@media(max-width:900px) {
    .hero-content {
        margin-left: 0;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}


/* HERO AFWERKING */

.hero {
    padding: 140px 20px 120px;
}

.hero h1 {
    margin-bottom: 18px;
}

.hero p {
    margin-bottom: 26px;
    /* dichter bij knoppen */
}


/* Knoppen exact onder tekst */

.hero-buttons {
    margin-top: 0;
    display: flex;
    gap: 14px;
}


/* Primary knop */

.btn.primary {
    background: #2563eb;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
}


/* Secondary knop */

.btn.secondary {
    background: #e5e7eb;
    color: #0f172a;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
}


/* Mobile fix */

@media(max-width:900px) {
    .hero {
        padding: 110px 20px 100px;
    }
    .hero-buttons {
        justify-content: center;
    }
}


/* Hero tekst centreren */

.hero {
    text-align: center;
}

.hero h1,
.hero p {
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    justify-content: center;
}

.hero a.btn {
    margin: 0 6px;
}

.hero p {
    max-width: 640px;
}


/* Footer tekst aanpassen */

.site-footer div:first-child p {
    font-size: 16px;
    line-height: 1.6;
    color: #cbd5f5;
    margin-top: 12px;
    max-width: 320px;
}


/* HERO DEFINITIEF CENTREREN */

.hero-split {
    display: flex;
    justify-content: center;
    text-align: center;
}

.hero-content {
    margin: 0 auto;
    /* 🔥 DIT WAS HET PROBLEEM */
    max-width: 720px;
}

.hero-buttons {
    justify-content: center;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 220px;
}

.services-grid {
    margin-top: 60px;
}

.subtitle {
    opacity: .8;
}


/* === WAT WIJ BIEDEN (FIGMA EXACT) === */

.offer-section {
    padding: 120px 20px;
    text-align: center;
}

.offer-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.offer-subtitle {
    font-size: 17px;
    color: #64748b;
    margin-bottom: 70px;
}

.offer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.offer-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 28px 36px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, .06);
    text-align: left;
    transition: .3s ease;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, .12);
}


/* Lichtblauwe balk bovenin */

.offer-icon {
    background: #e8f0ff;
    height: 48px;
    width: 100%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding-left: 16px;
    font-size: 20px;
    margin-bottom: 24px;
}

.offer-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.offer-card p {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
}


/* Responsive */

@media(max-width: 900px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }
    .offer-title {
        font-size: 32px;
    }
}


/* ===========================
   CONTACT PAGINA – FIGMA EXACT
=========================== */

.contact-section {
    padding: 140px 20px;
}

.contact-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-subtitle {
    text-align: center;
    font-size: 18px;
    color: #64748b;
    max-width: 640px;
    margin: 0 auto 90px;
}


/* Grid layout */

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: flex-start;
}


/* Linker kolom */

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.contact-item .icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #e8efff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 18px;
}


/* Paarse CTA */

.contact-cta {
    margin-top: 40px;
    padding: 36px;
    border-radius: 18px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #ffffff;
}

.contact-cta h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.contact-cta p {
    line-height: 1.6;
    opacity: .95;
}


/* Formulier rechts – override oude stijl */

.contact-form {
    max-width: none;
    margin: 0;
    background: #ffffff;
    padding: 44px;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, .08);
}


/* Mobile */

@media(max-width:900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }
    .contact-title {
        font-size: 36px;
    }
}

#menu {
    display: none;
}

#menu.active {
    display: block;
    color: black;
}

.menu-btn {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    display: block;
}

#menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: white;
    padding: 15px;
}

#menu.active {
    display: block;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.menu-btn {
    font-size: 26px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 14px;
    cursor: pointer;
    box-shadow: 0 8px 20px #1306A3;
}

.menu-btn:hover {
    background: #1e4fd8;
}

#menu {
    display: none;
    position: absolute;
    top: 80px;
    right: 40px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 20px 40px #1306A3;
}

#menu li {
    list-style: none;
    margin-bottom: 12px;
}

#menu li a {
    text-decoration: none;
    font-weight: 600;
    color: #ffffff;
}

#menu.active {
    display: block;
}

#menu {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.95);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 1000;
}

#menu.active {
    display: flex;
}

#menu a {
    color: white;
    font-size: 32px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
}

#menu a:hover {
    color: #60a5fa;
}

.menu-btn {
    position: fixed;
    top: 20px;
    right: 30px;
    z-index: 1100;
}

.menu-btn {
    background: #1306A3;
    color: #fff;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.35);
}

.menu-btn:hover {
    background: #1306A3;
}

#menu {
    background: #1306a3;
}

#menu a {
    color: #ecfdf5;
}

#menu a:hover {
    color: #1306a3;
}


/* Hamburger knop */

.menu-btn {
    background: linear-gradient(135deg, #1306A3, #9375FF);
    color: #fff;
    box-shadow: 0 10px 25px rgba(19, 6, 163, 0.35);
}

.menu-btn:hover {
    background: linear-gradient(135deg, #0f0590, #7f63ff);
}


/* Fullscreen menu */

#menu {
    background: linear-gradient(90deg, #1306A3, #9375FF);
}


/* Menu links */

#menu a {
    color: #ffffff;
}

#menu a:hover {
    opacity: 0.8;
}

.hero h1 span {
    background: linear-gradient(90deg, #1306A3, #9375FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.btn.primary {
    background: linear-gradient(135deg, #1306A3, #9375FF);
    color: #fff;
    border: none;
    box-shadow: 0 10px 25px rgba(19, 6, 163, 0.35);
}

.btn.primary:hover {
    background: linear-gradient(135deg, #0f0590, #7f63ff);
    transform: translateY(-1px);
}

.gradient-text {
    background: linear-gradient(90deg, #1306A3, #9375FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.contact-page .contact-section>h1 {
    text-align: center !important;
}

.site-footer {
    background: linear-gradient(135deg, #1306A3, #9375FF);
    color: #ffffff;
}

.site-footer a {
    color: #ffffff;
    text-decoration: none;
}

.site-footer a:hover {
    opacity: 0.8;
}

.socials {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    font-size: 22px;
}

.site-footer {
    background: linear-gradient(135deg, #1306A3, #9375FF);
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    align-items: start;
}

.footer-socials {
    display: flex;
    gap: 16px;
    font-size: 22px;
    justify-content: flex-end;
}

.footer-socials a {
    color: #fff;
    transition: transform .2s, opacity .2s;
}

.footer-socials a:hover {
    transform: translateY(-2px);
    opacity: .8;
}

.footer-socials.bottom-right {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 12px;
}

.copy {
    text-align: center;
}

.footer-bottom {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 0;
    text-align: center;
}

.footer-socials {
    position: absolute;
    right: 0;
    bottom: 100%;
    margin-bottom: 12px;
    display: flex;
    gap: 16px;
    font-size: 22px;
}

.footer-socials a {
    color: #fff;
    transition: transform 0.2s, opacity 0.2s;
}

.footer-socials a:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.copy {
    text-align: center;
    opacity: 0.85;
}

.hero-content {
    text-align: center;
    color: #fff;
}

.hero-buttons {
    margin-top: 32px;
    display: flex;
    gap: 16px;
    justify-content: center;
}


/* ==========================
   HERO – ÉCHT FULL SCREEN
========================== */

.hero.hero-split {
    width: 100vw;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url("achtergrond4.jpg") center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Inhoud */

.hero.hero-split .hero-content {
    max-width: 1100px;
    padding: 0 24px;
    text-align: center;
    color: #ffffff;
}


/* Knoppen */

.hero.hero-split .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.hero.hero-split p {
    color: #ffffff;
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 100px 16px;
    }
    .hero h1 {
        font-size: 34px;
        line-height: 1.2;
    }
    .hero p {
        font-size: 16px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 14px;
    }
    .hero-buttons a {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 400px) {
    #menu a {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .services-grid,
    .process-grid,
    .offer-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 28px 20px;
    }
    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
        /* voorkomt iOS zoom */
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-socials {
        position: static;
        justify-content: center;
        margin-bottom: 20px;
    }
}


/* === OFFERTE FORMULIER === */

.offer-section {
    padding: 90px 20px;
    background: #f8fafc;
}

.offer-section h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.offer-section .subtitle {
    max-width: 640px;
    margin: 0 auto 40px;
    color: #64748b;
}


/* FORM CONTAINER */

.offer-form {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}


/* GROUPS */

.offer-form .form-group {
    display: flex;
    flex-direction: column;
}

.offer-form .form-group.full {
    grid-column: span 2;
}


/* LABELS */

.offer-form label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: #0f172a;
}


/* INPUTS */

.offer-form input,
.offer-form textarea {
    padding: 14px 16px;
    font-size: 0.95rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    transition: border-color .2s, box-shadow .2s;
}

.offer-form input::placeholder,
.offer-form textarea::placeholder {
    color: #94a3b8;
}

.offer-form input:focus,
.offer-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}


/* SUBMIT BUTTON */

.offer-form button {
    grid-column: span 2;
    margin-top: 10px;
    padding: 16px;
    font-size: 1rem;
    border-radius: 14px;
}


/* RESPONSIVE */

@media (max-width: 640px) {
    .offer-form {
        grid-template-columns: 1fr;
        padding: 28px;
    }
    .offer-form button {
        grid-column: span 1;
    }
}


/* Intro tekst boven formulier – geen kader */

.cta-section {
    background: none;
    padding: 0;
    margin: 80px auto 30px;
    max-width: 700px;
}

.cta-section h2 {
    color: #0f172a;
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-section p {
    color: #64748b;
    font-size: 1rem;
}


/* Intro boven formulier */

.form-intro {
    margin: 90px auto 40px;
    max-width: 700px;
}


/* Gradient titel (zelfde vibe als contactpagina) */

.gradient-title {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}


/* Subtitel */

.form-intro .subtitle {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}


/* COOKIE BANNER – DEFINITIEF */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: (90deg, #2563eb, #7c3aed);
    color: #fff;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    z-index: 99999;
}

.cookie-banner p {
    font-size: 14px;
    margin: 0;
}

.cookie-actions button {
    background: white;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

@media(max-width:768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
}

@media(max-width:768px) {
    #menu {
        display: none;
        flex-direction: column;
        background: #08142c;
    }
    #menu.open {
        display: flex;
    }
}

.cookie-banner {
    box-shadow: 0 -10px 30px rgba(0, 0, 0, .4);
}

#cookie-banner,
#cookie-banner p {
    color: black!important;
}

#cookie-banner {
    display: flex;
}

#cookie-banner.hidden {
    display: none;
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
}

.footer-copy {
    margin-bottom: 8px;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #ffffff;
    text-decoration: none;
}

.footer-legal a:hover {
    text-decoration: underline;
}

.footer-legal span {
    opacity: 0.6;
}


/* ==========================
   📱 CONTACT FORM – MOBILE FIX
========================== */

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 16px;
    }
    .contact-grid {
        gap: 48px;
    }
    .contact-form {
        padding: 24px 20px;
        border-radius: 14px;
    }
    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 16px;
    }
    .contact-form textarea {
        min-height: 110px;
    }
}


/* ==========================
   📱 CONTACT FORM – MOBILE FIX
========================== */

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 16px;
    }
    .contact-grid {
        gap: 48px;
    }
    .contact-form {
        padding: 24px 20px;
        border-radius: 14px;
    }
    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 16px;
    }
    .contact-form textarea {
        min-height: 110px;
    }
}

.hero.hero-split {
    width: 100%;
    max-width: 100%;
}

.html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

@media (max-width: 768px) {
    .menu-btn {
        right: 16px;
        top: 16px;
    }
}


/* ==========================
   📱 GSM ONLY FIX
========================== */

@media (max-width: 480px) {
    /* Kill 100vw definitief */
    .hero.hero-split {
        width: 100% !important;
        max-width: 100% !important;
    }
    /* Veiligheidsnet */
    html,
    body {
        overflow-x: hidden;
    }
    /* Menu knop correct op gsm */
    .menu-btn {
        right: 14px;
        top: 14px;
    }
}


/* ==========================
   📱 COOKIE BANNER – GSM FIX
========================== */

@media (max-width: 480px) {
    .cookie-banner {
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        left: 0;
        right: 0;
        padding: 14px 16px;
    }
}


/* ==========================
   📱 FOOTER – GSM FIX
========================== */

@media (max-width: 480px) {
    .site-footer,
    .footer-bottom,
    .footer-grid {
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }
}


/* ==========================
   📱 GSM – OFFER FORM FIX
========================== */

@media (max-width: 480px) {
    .offer-form {
        display: grid;
        grid-template-columns: 1fr !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .offer-form .form-group {
        width: 100%;
    }
    .offer-form input,
    .offer-form textarea,
    .offer-form button {
        width: 100%;
        box-sizing: border-box;
    }
}


/* ==========================
   📱 GSM – OFFERTE BREEDER
========================== */

@media (max-width: 480px) {
    .offer-form {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 20px 16px;
        /* minder zijpadding */
        border-radius: 12px;
        /* iets strakker */
    }
    .container,
    .form-intro,
    .cta-section {
        padding-left: 16px;
        padding-right: 16px;
    }
}


/* ==========================
   📱 GSM – OFFERTE ECHT BREED
========================== */

@media (max-width: 480px) {
    /* Containers minder dominant */
    .container,
    .form-intro,
    .cta-section {
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }
    /* Formulier bijna fullscreen */
    .offer-form {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 20px 12px;
        border-radius: 10px;
    }
}


/* ==========================
   📱 GSM – OFFERTE DEFINITIEF
========================== */

@media (max-width: 480px) {
    /* Form zelf */
    form.offer-form {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 16px !important;
        margin: 0 !important;
    }
    /* Elke form group volle breedte */
    form.offer-form .form-group {
        width: 100% !important;
        margin: 0 0 16px 0;
    }
    /* Inputs en textarea echt breed */
    form.offer-form input,
    form.offer-form textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    /* Knop vol breed (belangrijk voor UX) */
    form.offer-form button {
        width: 100% !important;
    }
}


/* ==========================
   📱 GSM – LEGAL PAGES FIX
========================== */

@media (max-width: 480px) {
    .legal-page {
        padding: 40px 12px;
        /* minder paarse lucht */
    }
    .legal-container {
        max-width: 100%;
        width: 100%;
        padding: 24px 16px;
        border-radius: 10px;
    }
    .legal-container h1 {
        font-size: 26px;
        line-height: 1.2;
    }
    .legal-container h2 {
        font-size: 18px;
        margin-top: 24px;
    }
    .legal-container p,
    .legal-container li {
        font-size: 15px;
        line-height: 1.65;
    }
}


/* ==========================
   📱 MOBILE – LEGAL PAGE RESET
========================== */

@media (max-width: 480px) {
    section.legal-page {
        display: block !important;
        background: transparent !important;
        /* ⬅️ blauwe balken weg */
        padding: 24px 12px !important;
    }
    .legal-container {
        max-width: 100% !important;
        width: 100% !important;
        padding: 20px 14px !important;
        border-radius: 8px;
    }
}

.card ul {
    padding-left: 18px;
    margin-top: 14px;
}

.card ul li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #475569;
}

.card h3 {
    margin-bottom: 10px;
}

.card p strong {
    font-size: 22px;
    display: block;
    margin-bottom: 12px;
    color: #0f172a;
}

.offer-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.offer-icon i {
    font-size: 18px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav {
    display: flex;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: white;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

.hamburger {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

.pricing {
    padding: 6rem 1.5rem;
    background: #f9fbff;
}

.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.pricing-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: #6b7280;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-desc {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pricing-card ul li {
    margin-bottom: 0.75rem;
    color: #374151;
}

.pricing-card ul li::before {
    content: "✓";
    color: #2563eb;
    margin-right: 0.5rem;
}

.featured {
    border: 2px solid #2563eb;
    transform: translateY(-10px);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #2563eb;
    color: #fff;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}


/* =========================
   HEADER / NAV
========================= */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* Logo */

.logo {
    font-size: 20px;
    font-weight: 700;
    color: linear-gradient(135deg, #6366f1, #8b5cf6);
}


/* Links */

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a,
.dropdown-toggle {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #0f172a;
    background: none;
    border: none;
    cursor: pointer;
}


/* =========================
   DROPDOWN (DESKTOP)
========================= */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 110%;
    left: 0;
    min-width: 180px;
    background: #ffffff;
    border-radius: 12px;
    padding: 8px 0;
    box-shadow: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: #0f172a;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, #2b0fd6 0%, #7b5cff 100%);
    color: #ffffff;
}

.dropdown:hover .dropdown-menu {
    display: block;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 67px) {
    .nav-links {
        display: none;
    }
}

@media (max-width: 67px) {
    .hero.hero-split {
        padding: 100px 16px 80px;
    }
    .hero.hero-split h1 {
        font-size: 30px;
    }
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        /* geen inline menu */
    }
    .menu-btn {
        display: block;
    }
}

#menu {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #1306A3, #9375FF);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 2000;
}

#menu.active {
    display: flex;
}

.hero.hero-split {
    padding-top: 100px;
    /* ipv 120+ */
}

@media (max-width: 480px) {
    .hero.hero-split {
        padding-top: 80px;
    }
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: #0f172a;
    text-decoration: none;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 200px;
    background: #ffffff;
    border-radius: 12px;
    padding: 8px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
    z-index: 1100;
}

.dropdown.open .dropdown-menu {
    display: block;
}