:root {
    --brand: #800080;
    --brand-dark: #560056;
    --brand-soft: #f6eff8;
    --ink: #1b2333;
    --ink-soft: #4f5b70;
    --line: #e7eaf1;
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --radius: 16px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: 'Manrope', sans-serif;
    color: var(--ink);
    background: var(--surface);
}

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

.container.shell {
    max-width: var(--container);
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; }
.topbar {
    background: linear-gradient(90deg, #250025, #560056);
    color: #ece6f2;
    font-size: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.topbar .shell { height: 34px; }
.topbar-text { letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }
.topbar-links { display: flex; gap: 16px; }
.topbar-links a { text-decoration: none; opacity: 0.9; }

.main-nav {
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
    position: relative;
}
.nav-row {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo-wrap {
    width: 44px; height: 44px; border-radius: 12px;
    border: 1px solid #d8c6df; background: #fff; overflow: hidden;
}
.brand-logo { width: 100%; height: 100%; object-fit: cover; }
.brand-title { display: block; font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; }
.brand-subtitle { display: block; font-size: 10px; letter-spacing: 0.12em; color: var(--ink-soft); text-transform: uppercase; }

.nav-desktop { display: flex; align-items: center; gap: 8px; }
.nav-link, .nav-link-button {
    text-decoration: none;
    border: 0;
    background: transparent;
    color: var(--ink-soft);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.nav-link:hover, .nav-link-button:hover { color: var(--brand); background: #f6f0f8; }
.nav-link-button .chev { width: 14px; height: 14px; transition: transform .25s; }
.nav-link-button[aria-expanded='true'] .chev { transform: rotate(180deg); }

.nav-cta {
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    padding: 11px 16px;
    border-radius: 12px;
}
.nav-cta:hover { filter: brightness(1.08); }

.mobile-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: #283244; margin: 5px auto; }

.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 45px rgba(18, 32, 56, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .25s ease;
    pointer-events: none;
}
.mega-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 18px;
    padding: 24px 0 30px;
}
.mega-col {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px;
    background: #fff;
}
.mega-title {
    margin: 0 0 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #6f7c93;
    font-weight: 700;
}
.mega-link {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    text-decoration: none;
    border-radius: 10px;
    padding: 10px;
}
.mega-link:hover { background: #f7f4fa; }
.mega-link > span:first-child { width: 18px; height: 18px; color: var(--brand); }
.mega-link strong { display: block; font-size: 14px; }
.mega-link small { display: block; color: var(--ink-soft); font-size: 12px; line-height: 1.45; }

.mega-highlight { background: linear-gradient(145deg, #f7f2fa, #f2f7ff); }
.mega-card {
    text-decoration: none;
    border: 1px solid #dcd7e6;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    background: #fff;
}
.mega-card img { width: 100%; height: 146px; object-fit: cover; }
.mega-card span { display: block; padding: 12px; }
.mega-card strong { display: block; font-size: 14px; margin-bottom: 4px; }
.mega-card small { color: var(--ink-soft); line-height: 1.4; }
.mega-mini-cta {
    margin-top: 12px;
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    color: var(--brand-dark);
}

.mobile-menu {
    display: none;
    border-top: 1px solid var(--line);
    background: #fff;
}
.mobile-menu.is-open { display: block; }
.mobile-menu-inner {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
    padding: 16px 0 24px;
    display: grid;
    gap: 6px;
}
.mobile-nav-link {
    text-decoration: none;
    padding: 12px 10px;
    border-radius: 10px;
    color: #2f3c55;
    font-weight: 600;
}
.mobile-nav-link:hover { background: #f6f2fa; color: var(--brand); }
.mobile-mini { color: var(--brand); text-decoration: none; font-weight: 700; margin-top: 6px; }

/* Hero */
.hero {
    position: relative;
    min-height: calc(100vh - 112px);
    overflow: hidden;
    padding: 74px 24px 58px;
    background: linear-gradient(180deg, #fff 0%, #f6f8fc 72%, #fff 100%);
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(128, 0, 128, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(128, 0, 128, .06) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(circle at center, #000 0%, #000 36%, transparent 76%);
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .32;
}
.hero-orb--1 { width: 420px; height: 420px; left: -90px; top: -80px; background: #d9b8e6; }
.hero-orb--2 { width: 360px; height: 360px; right: -120px; top: 120px; background: #c0d5ff; }
.hero-orb--3 { width: 300px; height: 300px; left: 48%; bottom: -130px; background: #efd6ef; }

.hero-content { position: relative; z-index: 2; max-width: 920px; margin: 0 auto; text-align: center; }
.hero-logo-container { display: inline-flex; position: relative; margin-bottom: 24px; }
.hero-logo {
    width: 108px; height: 108px; border-radius: 26px;
    border: 2px solid #d6b7e0; background: #fff; object-fit: cover;
    box-shadow: 0 18px 44px rgba(80, 41, 92, .15);
    position: relative; z-index: 2;
}
.hero-logo-ring {
    position: absolute;
    inset: -16px;
    border-radius: 999px;
    border: 1px solid rgba(128, 0, 128, .25);
    animation: orbit 18s linear infinite;
}
.hero-logo-ring--outer { inset: -34px; opacity: .6; animation-duration: 28s; animation-direction: reverse; }
@keyframes orbit { to { transform: rotate(360deg); } }

.hero-kicker { margin: 0; text-transform: uppercase; letter-spacing: .12em; color: #6f7c93; font-size: 12px; font-weight: 700; }
.hero-title {
    margin: 14px 0 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.2rem, 7vw, 5.4rem);
    line-height: .96;
}
.text-filled { color: #1f2b42; }
.text-outline {
    color: transparent;
    -webkit-text-stroke: 1px rgba(128, 0, 128, .45);
}
.hero-subtitle {
    margin: 12px 0 0;
    color: var(--brand-dark);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 600;
}
.hero-description {
    max-width: 700px;
    margin: 16px auto 0;
    color: var(--ink-soft);
    line-height: 1.75;
    font-size: 1.03rem;
}

.hero-ctas { margin-top: 26px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary,
.btn-secondary {
    text-decoration: none;
    border-radius: 12px;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid transparent;
}
.btn-primary {
    color: #fff;
    background: linear-gradient(130deg, var(--brand), var(--brand-dark));
}
.btn-primary:hover { filter: brightness(1.07); }
.btn-secondary {
    color: #33425d;
    background: #fff;
    border-color: #d8deeb;
}
.btn-secondary:hover { border-color: #b6bfd1; }

.hero-metrics {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.hero-metrics div {
    background: rgba(255,255,255,.76);
    border: 1px solid #dde2ee;
    border-radius: 12px;
    padding: 14px;
}
.hero-metrics strong {
    display: block;
    color: var(--brand);
    font-family: 'Sora', sans-serif;
    font-size: 26px;
}
.hero-metrics span { color: #5f6d84; font-size: 13px; }

/* Sections */
.section { padding: 86px 24px; }
.section-tight { padding: 30px 24px; }
.section-soft { background: var(--surface-soft); }
.section-inner { max-width: var(--container); margin: 0 auto; }
.section-head { margin-bottom: 26px; }
.section-head.center { text-align: center; }
.section-eyebrow {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: #6f7c93;
}
.section-title-xl {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.1;
    color: #1f2b42;
}
.section-title-xl span { color: var(--brand); }

.trust-title {
    margin: 0 0 14px;
    text-align: center;
    color: #6a7486;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}
.trust-grid span {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 12px;
    text-align: center;
    font-size: 13px;
    color: #5f6c80;
    background: #fff;
}

.about-layout {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 24px;
}
.about-lead { margin: 0; line-height: 1.85; color: #3f4e65; font-size: 1.02rem; }
.about-quote {
    margin: 20px 0 0;
    padding: 16px 18px;
    border-left: 3px solid var(--brand);
    background: #f8f3fb;
    color: #4f5f76;
    border-radius: 0 12px 12px 0;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.stat-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px;
    background: #fff;
}
.stat-card h3 {
    margin: 0 0 6px;
    color: var(--brand);
    font-family: 'Sora', sans-serif;
    font-size: 30px;
}
.stat-card p { margin: 0; color: #607089; font-size: 13px; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}
.sector-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 16px;
}
.sector-card h3 { margin: 0 0 8px; font-size: 17px; font-family: 'Sora', sans-serif; }
.sector-card p { margin: 0; color: #5e6d85; line-height: 1.65; font-size: 14px; }
.service-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
    background: #fff;
}
.service-icon { width: 22px; height: 22px; color: var(--brand); }
.service-card h3 { margin: 12px 0 8px; font-family: 'Sora', sans-serif; font-size: 18px; }
.service-card p { margin: 0 0 12px; color: #5a6880; line-height: 1.65; font-size: 14px; }
.service-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 7px; }
.service-card li { display: flex; gap: 8px; align-items: center; font-size: 13px; color: #4d5c75; }
.service-card li span { width: 14px; height: 14px; color: var(--brand); }

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}
.process-step {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
    background: #fff;
}
.process-step span {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    color: var(--brand);
    font-weight: 700;
    margin-bottom: 8px;
}
.process-step h3 { margin: 0 0 7px; font-size: 16px; }
.process-step p { margin: 0; font-size: 14px; color: #5d6b81; line-height: 1.6; }

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.project-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 20px;
    background: #fff;
    overflow: hidden;
}
.project-index {
    position: absolute;
    top: 10px;
    right: 16px;
    color: #ede6f2;
    font-family: 'Sora', sans-serif;
    font-size: 48px;
    font-weight: 700;
}
.project-meta { margin: 0 0 8px; color: #73819a; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.project-card h3 { margin: 0 0 8px; font-size: 21px; font-family: 'Sora', sans-serif; }
.project-card p { margin: 0; color: #56647d; line-height: 1.7; }

.kantoor-promo { background: linear-gradient(160deg, #f9f4fb 0%, #f4f8ff 100%); }
.kantoor-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}
.kantoor-copy { color: #51607a; line-height: 1.75; font-size: 15px; }
.kantoor-bullets { display: grid; gap: 8px; margin: 16px 0 20px; }
.kantoor-bullets span { display: inline-flex; gap: 8px; color: #44546f; font-size: 14px; }
.kantoor-bullets svg { width: 16px; color: var(--brand); }
.kantoor-images {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 10px;
}
.kantoor-images img {
    border-radius: 12px;
    border: 1px solid #dfe4ef;
    object-fit: cover;
    height: 170px;
}
.kantoor-images img:first-child { grid-column: 1 / -1; height: 236px; }

.horeca-route {
    background: var(--surface-soft);
}
.horeca-route-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
    align-items: center;
}
.horeca-route-copy { margin: 0; color: #596983; line-height: 1.74; max-width: 700px; }
.horeca-route-ctas { justify-content: flex-start; margin-top: 18px; }
.horeca-route-note { margin: 10px 0 0; color: #61708a; font-size: 13px; }
.horeca-route-points {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    padding: 16px;
    display: grid;
    gap: 10px;
}
.horeca-route-points article {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px;
}
.horeca-route-points strong {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #3a4a67;
    margin-bottom: 4px;
}
.horeca-route-points span { color: #5f6d84; font-size: 14px; line-height: 1.55; }

/* horeca page */
.horeca-hero {
    position: relative;
    overflow: hidden;
    min-height: 72vh;
    padding: 84px 24px 64px;
}
.horeca-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.horeca-hero-content {
    position: relative;
    z-index: 2;
    max-width: 940px;
    color: #fff;
}
.horeca-eyebrow { color: rgba(233, 239, 251, 0.92); }
.horeca-hero-title {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 5.2vw, 4.2rem);
    line-height: 1.05;
}
.horeca-hero-title span { color: #e9c8f0; }
.horeca-hero-sub {
    max-width: 760px;
    margin: 16px 0 0;
    line-height: 1.75;
    color: rgba(237, 242, 251, 0.94);
}
.horeca-hero-ctas { justify-content: flex-start; margin-top: 22px; }
.horeca-hero-note { margin: 10px 0 0; color: rgba(229, 237, 252, 0.88); font-size: 13px; }
.horeca-hero-trust {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.horeca-hero-trust span {
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    letter-spacing: .04em;
    background: rgba(18, 24, 36, 0.26);
}

.horeca-pains-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}
.horeca-pain-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 14px;
    color: #4f5e77;
    line-height: 1.62;
    font-size: 14px;
}

.horeca-tracks-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.horeca-track-card {
    border: 1px solid #dfe6f2;
    border-radius: 14px;
    background: #fff;
    padding: 16px;
}
.horeca-track-card h3 { margin: 0 0 10px; font-size: 18px; font-family: 'Sora', sans-serif; }
.horeca-track-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.horeca-track-card li { display: flex; gap: 8px; color: #52617a; line-height: 1.6; font-size: 14px; }
.horeca-track-card svg { width: 14px; color: var(--brand); flex-shrink: 0; margin-top: 3px; }

.horeca-deliverables-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}
.horeca-deliverable {
    border: 1px solid #e2e7f2;
    border-radius: 12px;
    background: #fff;
    padding: 14px;
    color: #566680;
    line-height: 1.64;
    font-size: 14px;
}

.horeca-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.horeca-case-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    padding: 18px;
}
.horeca-case-card h3 { margin: 0 0 8px; font-size: 20px; font-family: 'Sora', sans-serif; }
.horeca-case-card p { margin: 0; color: #56657e; line-height: 1.7; }
.horeca-quote {
    margin: 16px 0 0;
    border-left: 3px solid var(--brand);
    background: #fff;
    border-radius: 0 12px 12px 0;
    padding: 14px 16px;
    color: #4f5f78;
    line-height: 1.75;
}

.horeca-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.horeca-beurs {
    background: linear-gradient(145deg, #171f31 0%, #2b1733 100%);
}
.horeca-beurs .section-title-xl,
.horeca-beurs .kantoor-copy,
.horeca-beurs .section-eyebrow { color: #f1f5ff; }
.horeca-beurs .section-title-xl span { color: #dcb0ea; }
.horeca-beurs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}
.horeca-beurs-list { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 8px; }
.horeca-beurs-list li { display: inline-flex; gap: 8px; color: #d4ddf1; }
.horeca-beurs-list svg { width: 15px; color: #e3c2ee; }
.horeca-beurs .contact-form-wrap { background: #fff; border-color: #cfdaeb; }

.horeca-sticky-cta {
    position: fixed;
    right: 20px;
    bottom: 74px;
    z-index: 95;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border-radius: 999px;
    padding: 12px 16px;
    background: linear-gradient(130deg, var(--brand), var(--brand-dark));
    box-shadow: 0 10px 26px rgba(64, 12, 74, 0.28);
}
.horeca-sticky-cta:hover { filter: brightness(1.08); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.faq-list { display: grid; gap: 10px; }
.faq-item {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 10px 12px;
}
.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: #2b3953;
}
.faq-item p {
    margin: 8px 0 2px;
    color: #5a6982;
    line-height: 1.7;
    font-size: 14px;
}
.testimonial-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
    background: #fff;
}
.quote { margin: 0 0 14px; color: #4f5d76; line-height: 1.75; }
.author { display: flex; align-items: center; gap: 10px; }
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
}
.author strong { display: block; font-size: 14px; }
.author small { display: block; color: #6a788f; font-size: 12px; }

.contact-intro { margin: 10px 0 0; max-width: 700px; color: #5c6a80; }
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 16px;
    margin-top: 20px;
}
.contact-form-wrap,
.contact-cards article {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}
.contact-form-wrap { padding: 18px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-bottom: 10px; }
.contact-form-wrap label { display: block; margin-bottom: 10px; }
.contact-form-wrap label > span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #65738b;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .07em;
}
.form-input {
    width: 100%;
    border: 1px solid #d6dce8;
    border-radius: 10px;
    padding: 11px 12px;
    font: inherit;
    color: #1f2f49;
    background: #fff;
}
.form-input:focus { outline: 2px solid #d8c0e2; border-color: #bda0cb; }
.form-textarea { min-height: 140px; resize: vertical; }
.btn-submit { border: 0; cursor: pointer; }
.form-note { margin: 10px 0 0; font-size: 12px; color: #6c7991; }
.form-note a { color: var(--brand); }

.contact-cards { display: grid; gap: 10px; }
.contact-cards article { padding: 14px; display: flex; gap: 10px; }
.contact-cards article > span { width: 18px; color: var(--brand); }
.contact-cards h3 { margin: 0 0 3px; font-size: 14px; }
.contact-cards p { margin: 0; color: #607089; font-size: 14px; }
.contact-cards a { color: #3f4f67; text-decoration: none; }

/* kantoor page */
.kantoor-hero { padding-top: 72px; }
.center { text-align: center; }
.kantoor-hero-text { max-width: 700px; margin: 12px auto 0; color: #57657d; }
.kantoor-hero-gallery {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
}
.kantoor-hero-gallery img {
    height: 190px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #dde2ee;
}
.kantoor-overview-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 16px;
}
.kantoor-list { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 8px; }
.kantoor-list li { display: flex; gap: 8px; color: #55647d; }
.kantoor-list svg { width: 15px; color: var(--brand); }
.kantoor-overview-images { display: grid; gap: 10px; }
.kantoor-overview-images img { border-radius: 12px; border: 1px solid #dde3ef; height: 220px; object-fit: cover; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.pricing-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.pricing-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    padding: 18px;
}
.pricing-card.featured {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff;
    border-color: transparent;
}
.pricing-label { margin: 0 0 8px; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.pricing-card h3 { margin: 0; font-size: 20px; }
.pricing-price { margin: 8px 0 2px; font-family: 'Sora', sans-serif; font-size: 29px; }
.pricing-period { margin: 0 0 10px; font-size: 12px; opacity: .8; }
.pricing-card ul { margin: 0 0 14px; padding: 0; list-style: none; display: grid; gap: 7px; }
.pricing-card li { display: flex; gap: 8px; align-items: center; font-size: 13px; }
.pricing-card li svg { width: 14px; }
.pricing-card.featured .btn-primary { background: #fff; color: var(--brand); }

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}
.amenity-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 14px;
}
.amenity-card span { width: 18px; height: 18px; color: var(--brand); display: inline-block; }
.amenity-card h3 { margin: 10px 0 6px; font-size: 15px; }
.amenity-card p { margin: 0; font-size: 13px; color: #5e6d84; line-height: 1.6; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.gallery-grid img {
    border-radius: 12px;
    border: 1px solid #dde3ef;
    object-fit: cover;
    height: 210px;
}

.gallery-item {
    position: relative;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: zoom-in;
}
.gallery-item img {
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.gallery-item::after {
    content: 'Bekijk groter';
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(19, 26, 41, 0.82);
    color: #fff;
    font-size: 11px;
    letter-spacing: .05em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 6px 10px;
    opacity: 0;
    transform: translateY(4px);
    transition: all .2s ease;
}
.gallery-item:hover img {
    transform: scale(1.02);
    box-shadow: 0 10px 28px rgba(22, 30, 46, 0.2);
    filter: saturate(1.08);
}
.gallery-item:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(11, 15, 24, 0.92);
    display: none;
    z-index: 120;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.lightbox.is-open {
    display: flex;
}
.lightbox-figure {
    margin: 0;
    width: min(100%, 1120px);
    text-align: center;
}
.lightbox-figure img {
    width: 100%;
    max-height: min(78vh, 900px);
    object-fit: contain;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: #0f1521;
}
.lightbox-figure figcaption {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    letter-spacing: .02em;
}
.lightbox-close,
.lightbox-nav {
    border: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: background .2s ease;
}
.lightbox-close:hover,
.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.22);
}
.lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    font-size: 30px;
    line-height: 1;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 999px;
    font-size: 24px;
    line-height: 1;
}
.lightbox-nav--prev { left: 18px; }
.lightbox-nav--next { right: 18px; }
.kantoor-cta {
    background: linear-gradient(145deg, #f6eff9, #f0f6ff);
}

.inbegrepen-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.inbegrepen-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 16px;
}
.inbegrepen-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-family: 'Sora', sans-serif;
}
.inbegrepen-card p {
    margin: 0;
    color: #5a6a82;
    line-height: 1.65;
    font-size: 14px;
}

/* Legal */
.legal-hero { padding: 72px 24px 18px; }
.legal-content { max-width: 900px; margin: 0 auto 70px; padding: 0 24px; }
.legal-card {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 16px;
    padding: 24px;
}
.legal-back {
    display: inline-block;
    text-decoration: none;
    color: #5d6980;
    margin-bottom: 12px;
    font-weight: 700;
}
.legal-updated { color: #75839b; margin-top: 8px; }
.legal-content h1 { margin-top: 0; font-family: 'Sora', sans-serif; }
.legal-content h2 { margin-top: 28px; font-family: 'Sora', sans-serif; color: #243048; font-size: 22px; }
.legal-content h3 { margin-top: 18px; color: #2c3a55; }
.legal-content p,
.legal-content li { color: #4d5d76; line-height: 1.75; }
.legal-content ul { padding-left: 18px; }
.legal-content a { color: var(--brand); }

/* Footer */
.site-footer { background: #131a29; color: #d4d9e5; }
.footer-top { padding: 54px 0 30px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .8fr .8fr .8fr;
    gap: 16px;
}
.footer-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; }
.footer-brand img { border-radius: 10px; border: 1px solid #3b4457; }
.footer-brand strong { display: block; font-family: 'Sora', sans-serif; font-size: 14px; }
.footer-brand small { display: block; color: #9ca8c0; font-size: 11px; }
.footer-text { color: #aeb7ca; line-height: 1.7; margin: 14px 0; max-width: 420px; }

.footer-grid h4 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-grid li,
.footer-grid a { font-size: 14px; color: #b4bed0; text-decoration: none; }
.footer-grid a:hover { color: #fff; }

.footer-bottom { border-top: 1px solid #252f43; padding: 14px 0; }
.footer-bottom-row { display: flex; justify-content: space-between; gap: 14px; font-size: 12px; color: #95a2bb; }

/* Cookie and utils */
.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 90;
}
.cookie-banner-inner {
    max-width: 760px;
    margin-left: auto;
    background: #1e2635;
    color: #d5dceb;
    border: 1px solid #3a455d;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.cookie-banner-inner a { color: #cfaae0; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-btn {
    border: 1px solid transparent;
    border-radius: 9px;
    padding: 8px 12px;
    cursor: pointer;
    font-weight: 700;
}
.cookie-btn--accept { background: var(--brand); color: #fff; }
.cookie-btn--decline { background: transparent; color: #d3daea; border-color: #4f5d78; }

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 10px;
    background: var(--brand);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; }

.form-message { display: none; margin-bottom: 12px; padding: 10px 12px; border-radius: 10px; font-size: 14px; }
.form-message.is-success { display: block; background: #e7f7eb; color: #166b35; border: 1px solid #bde4ca; }
.form-message.is-error { display: block; background: #fdecec; color: #b33b3b; border: 1px solid #f2c8c8; }
.hnpt { position: absolute; left: -9999px; top: -9999px; }

.reveal { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1080px) {
    .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sector-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .horeca-pains-grid,
    .horeca-deliverables-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .horeca-tracks-grid,
    .horeca-cases-grid,
    .horeca-steps-grid { grid-template-columns: 1fr; }
    .pricing-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .amenities-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .inbegrepen-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .mega-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
    .topbar { display: none; }
    .nav-desktop { display: none; }
    .mobile-toggle { display: inline-block; }
    .hero { min-height: auto; }
    .hero-metrics { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .about-layout,
    .horeca-route-grid,
    .sector-grid,
    .horeca-beurs-grid,
    .kantoor-promo-grid,
    .contact-layout,
    .kantoor-overview-grid,
    .pricing-grid,
    .projects-grid,
    .testimonials-grid,
    .process-grid,
    .gallery-grid,
    .kantoor-hero-gallery,
    .form-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .kantoor-images img,
    .kantoor-hero-gallery img,
    .gallery-grid img,
    .kantoor-overview-images img { height: 210px; }
    .horeca-sticky-cta {
        right: 14px;
        left: 14px;
        bottom: 14px;
        text-align: center;
    }
    .lightbox { padding: 12px; }
    .lightbox-nav { width: 40px; height: 40px; font-size: 22px; }
    .lightbox-close { width: 40px; height: 40px; font-size: 28px; }
    .footer-bottom-row { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}
