/* ================================================
   styles-main.css. RecruitrLAB master site
   Premium B2B consultancy layout · light theme
   ================================================ */

.main-body {
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}
/* Globale mobile safety — voorkom horizontal overflow */
html { overflow-x: clip; overflow-y: scroll; scrollbar-gutter: stable; }
img, svg, video { max-width: 100%; height: auto; }
h1, h2, h3, h4 { word-wrap: break-word; overflow-wrap: break-word; }
p { word-wrap: break-word; overflow-wrap: break-word; }

/* ========================================
   HEADER
   ======================================== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 250, 247, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.main-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    gap: 32px;
    min-height: 78px;
}
.main-logo {
    height: 72px;
    width: auto;
}
.main-logo-link { display: inline-block; line-height: 0; transition: opacity 0.2s ease; }
.main-logo-link:hover { opacity: 0.7; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
    margin-right: 24px;
}
.main-nav a {
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--text); }

/* Header-CTA verwijderd — sticky CTA neemt het over (zie .sticky-cta) */
.main-nav-cta { display: none !important; }
/* Mobile-menu CTA-knop ook weg — sticky CTA overal aanwezig, geen dubbeling */
.main-mobile-menu .btn { display: none !important; }

/* ========================================
   STICKY CTA (rechts, op alle pagina's)
   ======================================== */
.sticky-cta {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1B1845;
    color: #FFFFFF !important;
    padding: 12px 20px;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: -0.1px;
    box-shadow: 0 4px 16px rgba(27, 24, 69, 0.18), 0 2px 6px rgba(27, 24, 69, 0.12);
    border: 1px solid #1B1845;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}
.sticky-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.sticky-cta:hover {
    background: var(--accent);
    color: #1B1845 !important;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 24, 69, 0.22), 0 3px 8px rgba(27, 24, 69, 0.14);
}
.sticky-cta .sticky-cta-arrow {
    font-size: 16px;
    line-height: 1;
    transition: transform 0.2s ease;
}
.sticky-cta:hover .sticky-cta-arrow { transform: translateX(2px); }
@media (max-width: 540px) {
    .sticky-cta {
        right: 12px;
        bottom: 14px;
        padding: 11px 18px;
        font-size: 13.5px;
    }
}

.main-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.main-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.2s ease;
}
.main-mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    height: calc(100vh - 68px);
    background: #FAFAF7;
    padding: 32px 28px 40px;
    flex-direction: column;
    gap: 8px;
    z-index: 200;
    border-top: 1px solid var(--border);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.main-mobile-menu.open { display: flex; }
.main-mobile-menu a {
    padding: 18px 0;
    font-size: 18px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    font-weight: 500;
    letter-spacing: -0.2px;
}
.main-mobile-menu a:last-of-type { border-bottom: none; }
.main-mobile-menu .btn { margin-top: 16px; align-self: flex-start; }

/* LinkedIn icoon in header (globaal — verschijnt op alle pagina's) */
.main-nav-li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    text-decoration: none;
    margin-right: 8px;
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
    flex-shrink: 0;
}
.main-nav-li:hover {
    border-color: var(--text);
    color: var(--accent-deep);
    transform: translateY(-1px);
}

@media (max-width: 960px) {
    .main-header-flex { padding: 12px 24px; min-height: 68px; }
    .main-logo { height: 48px; }
    .main-nav { display: none; }
    .main-hamburger { display: flex; }
    .main-mobile-menu { inset-top: 68px; }
    .main-nav-li { display: none; }
}

/* ========================================
   HERO
   ======================================== */
.main-hero {
    padding: 120px 0 100px;
    background: var(--bg);
}
.main-hero-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 72px;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}
.main-hero-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-muted);
    margin-bottom: 28px;
    padding-left: 32px;
    position: relative;
}
.main-hero-eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 1px;
    background: var(--text-muted);
}
.main-hero-title {
    font-size: clamp(30px, 5.8vw, 72px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -2.2px;
    margin: 0 0 32px;
    color: var(--text);
    hyphens: none;
}
.page-h1, .main-section-title, .main-final-title {
    hyphens: none;
}
.main-hero-title em {
    font-size: 1em;
    letter-spacing: -1.8px;
    color: var(--accent);
}
.main-hero-sub {
    font-size: clamp(16px, 1.4vw, 19px);
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 0 40px;
    line-height: 1.6;
}
.main-hero-ctas {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 20px;
}
.main-hero-ctas .cta-mail-fallback {
    text-align: left;
    margin-top: 0;
}
.main-hero-micro {
    font-size: 13.5px;
    color: var(--muted);
    margin: 12px 0 0;
    font-family: var(--font-mono);
    letter-spacing: 0.2px;
}
.main-hero-visual {
    aspect-ratio: 4 / 5;
    background: var(--surface-2);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.main-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(0.95) brightness(0.96);
}
@media (max-width: 980px) {
    .main-hero-inner { grid-template-columns: 1fr; gap: 56px; }
    .main-hero-visual { aspect-ratio: 16 / 10; max-width: 540px; }
}
@media (max-width: 640px) {
    .main-hero { padding: 56px 0 40px; }
    .main-hero-inner { padding: 0 20px; gap: 40px; }
    .main-hero-title { font-size: 26px; line-height: 1.12; letter-spacing: -0.4px; }
    .main-hero-title em { letter-spacing: -0.3px; }
    .main-hero-sub { font-size: 15.5px; line-height: 1.6; margin-bottom: 32px; max-width: 100%; }
    .main-hero-eyebrow { margin-bottom: 18px; font-size: 10.5px; letter-spacing: 1.8px; padding-left: 28px; }
    .main-hero-eyebrow::before { width: 20px; }
    .main-hero-ctas { gap: 14px; width: 100%; }
    .main-hero-ctas .btn-primary { width: 100%; justify-content: center; }
}
@media (max-width: 380px) {
    .main-hero-title { font-size: 24px; }
    .main-hero-inner { padding: 0 16px; }
}

/* ========================================
   TRUSTLINE
   ======================================== */
.main-trustline {
    padding: 56px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}
.main-trustline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}
.main-trust-item {
    border-left: 2px solid var(--accent);
    padding-left: 20px;
}
.main-trust-item h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--text);
    letter-spacing: -0.2px;
}
.main-trust-item p {
    font-size: 14.5px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.55;
}
@media (max-width: 760px) {
    .main-trustline-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ========================================
   SECTIONS, generic — sweet spot witruimte (niet te veel)
   ======================================== */
.main-section {
    padding: 110px 0;
}
.main-section-dark {
    background: var(--bg-2);
}
.main-section-header {
    margin-bottom: 64px;
    max-width: 720px;
}
@media (max-width: 880px) {
    .main-section { padding: 64px 0; }
    .main-section-header { margin-bottom: 40px; }
}
.main-section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.main-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-left: 32px;
    position: relative;
}
.main-eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 1px;
    background: var(--text-muted);
}
.main-section-title {
    font-size: clamp(26px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.4px;
    margin: 0 0 24px;
    color: var(--text);
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.main-section-title em {
    font-size: 1em;
    letter-spacing: -1.2px;
    color: var(--accent);
}
.main-section-sub {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.6;
    max-width: 620px;
}
.main-section-header.center .main-section-sub {
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 880px) {
    .main-section { padding: 96px 0; }
    .main-section-header { margin-bottom: 48px; }
    .main-section-sub { font-size: 16px; }
}
@media (max-width: 640px) {
    .main-section { padding: 72px 0; }
    .main-section-title { letter-spacing: -0.6px; line-height: 1.18; }
    .main-section-title em { letter-spacing: -0.5px; }
    .main-section-header { margin-bottom: 40px; padding: 0 20px; }
    .main-section-sub { font-size: 15.5px; line-height: 1.6; }
}

/* ========================================
   OPLOSSINGEN, 3 cards
   ======================================== */
.main-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}
.main-service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 52px 44px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    box-shadow: 0 1px 2px rgba(27, 24, 69, 0.025), 0 4px 16px rgba(27, 24, 69, 0.02);
}
.main-service-card:hover {
    border-color: var(--text);
    transform: translateY(-4px);
    box-shadow: 0 4px 8px rgba(27, 24, 69, 0.04), 0 16px 40px rgba(27, 24, 69, 0.06);
}
.main-service-card--feature {
    border-color: var(--accent);
    background: linear-gradient(180deg, #FFFCF1 0%, var(--surface) 90%);
}
.main-service-card--feature::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 4px;
    background: var(--accent);
    border-radius: 20px 20px 0 0;
}
.main-service-tag {
    display: inline-block;
    align-self: flex-start;
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 28px;
    min-height: 28px;
}
.main-service-card--feature .main-service-tag {
    background: var(--accent);
    border-color: var(--accent);
    color: #1B1845;
}
.main-service-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 14px;
    color: var(--text);
    letter-spacing: -0.6px;
    line-height: 1.2;
}
.main-service-pitch {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0 0 28px;
    line-height: 1.55;
}
.main-service-list {
    margin: 0 0 36px;
    padding: 0;
    flex-grow: 1;
}
.main-service-list li {
    font-size: 14.5px;
    color: var(--text-soft);
    padding: 10px 0 10px 22px;
    position: relative;
    line-height: 1.4;
    border-bottom: 1px solid var(--border);
}
.main-service-list li:last-child { border-bottom: none; }
.main-service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 17px;
    width: 8px;
    height: 1px;
    background: var(--accent);
}
.main-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text);
    padding: 12px 0;
    border-top: 1px solid var(--border);
    transition: gap 0.2s ease;
    margin-top: auto;
}
.main-service-link:hover { gap: 14px; color: var(--accent-deep); }
@media (max-width: 980px) {
    .main-services-grid { grid-template-columns: 1fr; max-width: 540px; padding: 0 20px; }
}
@media (max-width: 640px) {
    .main-services-grid { gap: 20px; }
    .main-service-card { padding: 40px 28px; }
}

/* ========================================
   SOCIAL PROOF
   ======================================== */
.main-proof-quote {
    max-width: 1080px;
    margin: 0 auto 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 52px 56px 44px;
    text-align: center;
}
.main-proof-quote blockquote { margin: 0; position: relative; }
.main-proof-quote blockquote::before {
    content: "\201C";
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 76px;
    line-height: 0.8;
    color: var(--accent);
    position: absolute;
    top: -4px;
    left: -4px;
    pointer-events: none;
}
.main-proof-quote blockquote p {
    font-family: var(--font-sans);
    font-size: clamp(15px, 1.35vw, 17px);
    font-style: normal;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text);
    margin: 0 0 16px;
    letter-spacing: -0.05px;
    text-align: left;
}
.main-proof-quote blockquote p:last-of-type { margin-bottom: 32px; }
.main-proof-quote { text-align: left; padding: 56px 64px 48px; }
.main-proof-quote blockquote footer { justify-content: flex-start; }
.main-proof-quote blockquote footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.main-proof-quote-photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0.92;
    flex-shrink: 0;
}
.main-proof-quote-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    text-align: left;
}
.main-proof-quote blockquote footer strong {
    font-size: 14.5px;
    color: var(--text);
    font-weight: 600;
}
.main-proof-quote blockquote footer span {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.1px;
}

.main-logos-band { text-align: center; }
.main-logos-label {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-muted);
    margin: 0 0 40px;
}
.main-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 44px 64px;
    max-width: 1040px;
    margin: 0 auto;
}
.main-logo-item {
    height: 28px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    opacity: 0.65;
    transition: opacity 0.2s ease;
    filter: invert(1) brightness(0.4);
}
.main-logo-item:hover { opacity: 1; }
.main-logo-item--wide {
    height: 36px;
    max-width: 200px;
}
@media (max-width: 880px) {
    .main-logos { gap: 32px 44px; padding: 0 24px; }
    .main-proof-quote { padding: 40px 28px; margin-left: 20px; margin-right: 20px; }
    .main-logo-item { height: 24px; max-width: 120px; }
    .main-logo-item--wide { height: 28px; max-width: 150px; }
}
@media (max-width: 640px) {
    .main-trustline { padding: 48px 0; }
    /* 2-col met kleinere logos = rustig + leesbaar (8 logos passen niet 3-col) */
    .main-logos {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 36px 28px;
        max-width: 320px;
        align-items: center;
        justify-items: center;
        padding: 0;
    }
    .main-logo-item { height: 22px; max-width: 100px; opacity: 0.55; }
    .main-logo-item--wide { height: 26px; max-width: 110px; }
    .main-logos-label { font-size: 10.5px; letter-spacing: 2px; margin-bottom: 36px; }
}

/* ========================================
   AANPAK, 3 steps
   ======================================== */
.main-aanpak-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
}
.main-aanpak-item { padding: 8px 0; }
.main-aanpak-num {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-deep);
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    width: 48px;
}
.main-aanpak-item h3 {
    font-size: 21px;
    font-weight: 700;
    margin: 0 0 14px;
    color: var(--text);
    letter-spacing: -0.3px;
    line-height: 1.25;
}
.main-aanpak-item p {
    font-size: 15.5px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}
@media (max-width: 880px) {
    .main-aanpak-grid { grid-template-columns: 1fr; gap: 40px; max-width: 540px; padding: 0 20px; }
}

/* ========================================
   WAAROM, 4 blokjes in grid met borders
   ======================================== */
.main-waarom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    max-width: 1080px;
    margin: 0 auto;
}
.main-waarom-item {
    background: var(--surface);
    padding: 40px 44px;
}
.main-waarom-item h3 {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--text);
    letter-spacing: -0.3px;
}
.main-waarom-item p {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}
@media (max-width: 720px) {
    .main-waarom-grid { grid-template-columns: 1fr; margin: 0 20px; }
    .main-waarom-item { padding: 32px 28px; }
}

/* ========================================
   FINAL CTA, dark contrast block
   ======================================== */
.main-final {
    padding: 140px 0;
    background: #1B1845;
    color: #FFFFFF;
    text-align: center;
}
.main-final em { color: var(--accent); }
.main-final-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    margin-bottom: 28px;
}
.main-final-title {
    font-size: clamp(26px, 4.5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.4px;
    margin: 0 auto 28px;
    color: #FFFFFF;
    max-width: 800px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.main-final-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 580px;
    margin: 0 auto 44px;
    line-height: 1.6;
}
.main-final-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}
.main-final .btn-primary {
    background: var(--accent);
    color: #1B1845 !important;
    border-color: var(--accent);
}
.main-final .btn-primary:hover {
    background: #FFFFFF;
    color: #1B1845 !important;
    border-color: #FFFFFF;
}
.main-final .cta-mail-fallback { color: rgba(255, 255, 255, 0.6); }
.main-final .cta-mail-fallback a {
    color: #FFFFFF;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}
.main-final .cta-mail-fallback a:hover {
    border-bottom-color: #FFFFFF;
}
.main-final-micro {
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 24px;
    letter-spacing: 0.4px;
}
@media (max-width: 720px) {
    .main-final { padding: 96px 0; }
}
@media (max-width: 640px) {
    .main-final { padding: 80px 24px; }
    .main-final-title { letter-spacing: -0.6px; line-height: 1.15; }
    .main-final-sub { font-size: 15.5px; line-height: 1.6; }
}

/* ========================================
   CARRIERE, secondary, subtle
   ======================================== */
.main-career {
    padding: 96px 0;
    background: var(--bg);
}
.main-career-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
}
.main-career-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 14px;
    letter-spacing: -0.5px;
}
.main-career-content p {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0 0 28px;
    line-height: 1.6;
    max-width: 440px;
}
.main-career-photo {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.main-career-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(0.95) brightness(0.96);
}
@media (max-width: 880px) {
    .main-career-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ========================================
   FOOTER — premium, navy-on-cream, ruim ademend
   ======================================== */
.main-footer {
    padding: 96px 0 40px;
    background: var(--surface);
    border-top: 1px solid var(--border);
    position: relative;
}
/* Subtiele yellow accent-streep bovenaan — brand-anchor */
.main-footer::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 2px;
    background: var(--accent);
}
.main-footer-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 72px;
    padding: 0 40px 64px;
    border-bottom: 1px solid var(--border);
    max-width: 1240px;
    margin: 0 auto;
}
.main-footer-brand p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 24px 0 0;
    max-width: 320px;
}
.main-footer-brand p strong {
    color: var(--text);
    font-weight: 600;
}
.main-footer-logo {
    height: 56px;
    width: auto;
}
.main-footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.main-footer-col-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    color: var(--text-muted);
    margin: 0 0 12px;
    padding-left: 32px;
    position: relative;
}
.main-footer-col-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 1px;
    background: var(--accent);
}
.main-footer-col a {
    font-size: 14.5px;
    color: var(--text);
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    text-decoration: none;
}
.main-footer-col a:hover {
    color: var(--accent-deep);
    transform: translateX(2px);
}
/* Adres-blok onder brand: kleine vaste-breedte mono-stijl voor visuele rust */
.main-footer-brand-address {
    margin-top: 28px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--text-muted);
    line-height: 1.9;
}
.main-footer-legal {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--muted);
    letter-spacing: 0.5px;
    margin: 32px auto 0;
    max-width: 1240px;
    padding: 0 40px;
}
.main-footer-legal a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}
.main-footer-legal a:hover {
    color: var(--text);
    border-bottom-color: var(--accent);
}
@media (max-width: 980px) {
    .main-footer-row { grid-template-columns: 1fr 1fr 1fr; gap: 48px; }
    .main-footer-brand { grid-column: 1 / -1; }
}

/* ========================================
   PAGE FEATURE PHOTO — premium editorial integration
   Cinematic 21:9, subtle navy depth-shadow, yellow corner-accent (brand-anchor)
   ======================================== */
.page-feature-photo {
    max-width: 1280px;
    margin: 0 auto;
    padding: 112px 40px 16px;
    position: relative;
}
.page-feature-photo-inner {
    aspect-ratio: 21 / 9;
    border-radius: 8px;
    overflow: hidden;
    background: var(--surface);
    position: relative;
    box-shadow:
        0 2px 4px rgba(27, 24, 69, 0.04),
        0 24px 64px rgba(27, 24, 69, 0.10),
        0 8px 24px rgba(27, 24, 69, 0.04);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}
/* Yellow brand-anchor: 4px sliver linksonder, 80px breed — signature */
.page-feature-photo-inner::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: var(--accent);
    z-index: 2;
    pointer-events: none;
}
.page-feature-photo-inner:hover {
    box-shadow:
        0 2px 4px rgba(27, 24, 69, 0.06),
        0 32px 80px rgba(27, 24, 69, 0.14),
        0 12px 32px rgba(27, 24, 69, 0.06);
}
.page-feature-photo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.9) contrast(1.02);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.page-feature-photo-inner:hover img { transform: scale(1.015); }
.page-feature-photo-caption {
    margin: 20px 0 0;
    text-align: right;
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    padding-right: 4px;
}
.page-feature-photo-caption em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 13.5px;
    color: var(--accent);
    text-transform: none;
    letter-spacing: 0;
    margin: 0 4px;
}
@media (max-width: 880px) {
    .page-feature-photo { padding: 80px 24px 12px; }
    .page-feature-photo-inner { border-radius: 6px; aspect-ratio: 4 / 3; }
    .page-feature-photo-inner::after { width: 60px; height: 3px; }
}
@media (max-width: 640px) {
    .page-feature-photo { padding: 64px 16px 8px; }
    .page-feature-photo-caption { font-size: 10px; letter-spacing: 1.6px; text-align: left; }
    .page-feature-photo-caption em { font-size: 12.5px; }
}
@media (max-width: 640px) {
    .main-footer { padding: 72px 0 32px; }
    .main-footer-row { grid-template-columns: 1fr; gap: 40px; padding: 0 24px 48px; }
    .main-footer-logo { height: 48px; }
    .main-footer-brand p { max-width: 100%; }
    .main-footer-legal { font-size: 10.5px; padding: 0 24px; line-height: 1.6; }
}

/* ========================================
   INNER PAGES (service / about / contact)
   ======================================== */
.page-hero {
    padding: 96px 0 56px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}
.page-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 32px;
}
.page-h1 {
    font-size: clamp(26px, 4.5vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.4px;
    margin: 28px 0 24px;
    color: var(--text);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: none;
}
.page-h1 em { color: var(--accent); letter-spacing: -1.2px; }
.page-intro {
    font-size: clamp(16px, 1.4vw, 19px);
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0 0 36px;
    max-width: 640px;
    word-wrap: break-word;
}
@media (max-width: 640px) {
    .page-hero { padding: 64px 0 40px; }
    .page-hero-inner { padding: 0 20px; }
    .page-h1 { font-size: 24px; letter-spacing: -0.3px; margin: 20px 0 18px; line-height: 1.2; }
    .page-h1 em { letter-spacing: -0.2px; }
    .page-intro { font-size: 15.5px; line-height: 1.6; max-width: 100%; }
}
@media (max-width: 380px) {
    .page-h1 { font-size: 22px; }
    .page-hero-inner { padding: 0 16px; }
}
.page-hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 8px;
}
.page-hero-cta .cta-mail-fallback {
    text-align: left;
    margin-top: 0;
}
.page-hero-cta-micro {
    font-size: 13px;
    color: var(--muted);
    margin: 6px 0 0;
    font-family: var(--font-mono);
    letter-spacing: 0.3px;
}

.page-article { padding: 80px 0 96px; }
.page-article-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 32px;
}
.page-article h2 {
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.7px;
    margin: 72px 0 24px;
    color: var(--text);
}
.page-article h2:first-of-type { margin-top: 0; }
.page-article h2 em { color: var(--accent); }
.page-article h3 {
    font-size: 19px;
    font-weight: 700;
    margin: 40px 0 14px;
    color: var(--text);
    letter-spacing: -0.2px;
}
.page-article p {
    font-size: 16.5px;
    color: var(--text);
    line-height: 1.75;
    margin: 0 0 22px;
}
.page-article p strong { color: var(--text); font-weight: 700; }
.page-article a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 1px;
    transition: background-color 0.2s ease;
}
.page-article a:hover { background-color: var(--accent-dim); }
.page-article a.btn { border-bottom: none; }
.page-article ul, .page-article ol {
    margin: 8px 0 28px;
    padding: 0;
    list-style: none;
}
.page-article li {
    font-size: 16px;
    color: var(--text);
    line-height: 1.65;
    padding: 9px 0 9px 32px;
    position: relative;
}
.page-article ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 17px;
    width: 14px;
    height: 1px;
    background: var(--accent-deep);
}

.page-callout {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 12px;
    padding: 28px 32px;
    margin: 40px 0;
}
.page-callout p:last-child { margin-bottom: 0; }

.page-faq { margin: 64px 0 0; }
.page-faq h2 { margin-bottom: 28px; }
.page-faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}
.page-faq-item[open] { border-color: var(--text); }
.page-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 28px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    user-select: none;
}
.page-faq-item summary::-webkit-details-marker { display: none; }
.page-faq-item summary::after {
    content: "+";
    font-family: var(--font-mono);
    font-size: 22px;
    color: var(--text-muted);
    flex-shrink: 0;
    line-height: 1;
}
.page-faq-item[open] summary::after { content: "−"; }
.page-faq-item .faq-answer { padding: 0 28px 24px; }
.page-faq-item p {
    margin: 0 0 14px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.page-bottom-cta {
    margin: 72px 0 0;
    padding: 56px 48px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    text-align: center;
}
.page-bottom-cta h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--text);
    letter-spacing: -0.5px;
}
.page-bottom-cta p {
    color: var(--text-muted);
    margin: 0 auto 28px;
    font-size: 16px;
    line-height: 1.6;
    max-width: 480px;
}

.page-related {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}
.page-related-label {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 24px;
    padding-left: 32px;
    position: relative;
}
.page-related-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 1px;
    background: var(--text-muted);
}
.page-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.page-related-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 28px;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.2s ease, transform 0.2s ease;
    display: block;
    border-bottom: 1px solid var(--border) !important;
}
.page-related-card:hover {
    border-color: var(--text) !important;
    transform: translateY(-2px);
    background: var(--surface);
}
.page-related-card-title {
    font-size: 15.5px;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--text);
    line-height: 1.35;
}
.page-related-card-meta {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.4px;
    text-transform: lowercase;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    margin: 48px 0;
}
.team-card {
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
}
.team-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 18px;
    border: 1px solid var(--border);
}
.team-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 4px;
}
.team-role {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

.list-no li::before {
    background: #C44 !important;
    width: 6px !important;
    height: 6px !important;
    border-radius: 50%;
    top: 14px !important;
}

/* ================================================
   ---- PREMIUM REFINEMENTS ----
   ================================================ */

/* Subtiele schaduwen voor cards (premium feel) */
.main-service-card {
    box-shadow: 0 1px 2px rgba(26, 26, 26, 0.03), 0 4px 16px rgba(26, 26, 26, 0.02);
}
.main-service-card:hover {
    box-shadow: 0 12px 32px rgba(26, 26, 26, 0.06), 0 2px 4px rgba(26, 26, 26, 0.04);
    transform: translateY(-6px);
}
.main-service-card--feature {
    box-shadow: 0 12px 32px rgba(254, 188, 20, 0.12), 0 2px 4px rgba(26, 26, 26, 0.04);
}
.main-service-card--feature:hover {
    box-shadow: 0 24px 48px rgba(254, 188, 20, 0.18), 0 4px 8px rgba(26, 26, 26, 0.06);
}

.main-proof-quote {
    box-shadow: 0 1px 2px rgba(26, 26, 26, 0.04), 0 8px 32px rgba(26, 26, 26, 0.04);
}

.page-callout, .page-faq-item, .page-bottom-cta, .page-related-card, .team-card {
    box-shadow: 0 1px 2px rgba(26, 26, 26, 0.03);
}

/* Editorial serif voor key accent woorden (premium magazine feel) */
.main-hero-title em,
.main-section-title em,
.main-final-title em,
.page-h1 em {
    font-family: var(--font-serif);
    font-weight: 400;
    font-style: italic;
    font-size: 1.08em;
}

/* Subtle hairline divider between sections, premium structuur */
.section-divider {
    border: 0;
    height: 1px;
    background: var(--border);
    max-width: 1240px;
    margin: 0 auto;
}

/* Refined hero with subtle gradient overlay on image */
.main-hero-visual {
    position: relative;
    box-shadow: 0 24px 64px rgba(26, 26, 26, 0.12), 0 4px 8px rgba(26, 26, 26, 0.04);
}
.main-hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(254, 188, 20, 0.08) 100%);
    pointer-events: none;
}

/* Refined trustline */
.main-trustline {
    background: var(--surface);
    box-shadow: inset 0 1px 0 var(--border), inset 0 -1px 0 var(--border);
    border-top: none;
    border-bottom: none;
}

/* Career photo with premium shadow */
.main-career-photo {
    box-shadow: 0 16px 48px rgba(26, 26, 26, 0.10), 0 4px 8px rgba(26, 26, 26, 0.04);
}

/* Refined service tag, meer premium */
.main-service-tag {
    box-shadow: 0 1px 2px rgba(26, 26, 26, 0.04);
}
.main-service-card--feature .main-service-tag {
    box-shadow: 0 2px 8px rgba(254, 188, 20, 0.24);
}

/* Refined final CTA section, meer dramatic */
.main-final {
    background: linear-gradient(180deg, #1B1845 0%, #0F0F0F 100%);
    position: relative;
    overflow: hidden;
}
.main-final::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(254, 188, 20, 0.4), transparent);
}
.main-final::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

/* Premium hover on header logo */
.main-logo-link {
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.main-logo-link:hover {
    opacity: 0.85;
    transform: scale(0.98);
}

/* Buttons: refined transitions */
.btn {
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Refined service-list typography */
.main-service-list li {
    transition: color 0.2s ease;
}
.main-service-card:hover .main-service-list li {
    color: var(--text);
}

/* Subtle premium accent: section eyebrows with serif twist */
.main-eyebrow,
.main-hero-eyebrow,
.main-final-eyebrow {
    font-weight: 700;
}

/* Initialen-placeholder voor team-leden zonder foto */
.team-photo-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFFCF1 0%, #FCEFB8 100%);
    color: #1B1845;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 32px;
    letter-spacing: -0.5px;
    border: 1px solid var(--border);
}
