/* =========================================================================
   V11 LANDING PAGE - ENERGETIC CONTRAST AESTHETIC
   Driven by the Emilio Movement Logo
   ========================================================================= */

:root {
    /* Colors */
    --color-bg-dark: #1c1914;      /* warm dark brown-black */
    --color-bg-black: #0f0d0b;     /* deepest warm black */
    --color-bg-light: #f7f4ef;     /* warm off-white cream */
    --color-bg-warm: #eeebe4;      /* deeper warm cream for alternating sections */

    --color-text-dark: #1a1714;
    --color-text-light: #faf8f5;
    --color-text-gray: #6b6560;    /* warm gray, not blue-gray */

    /* The Signature Neon Green from the Logo */
    --color-neon: #11df11;
    --color-neon-hover: #0ed00e;
    --color-neon-dim: rgba(17, 223, 17, 0.12);

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
}

/* =========================================================================
   RESET & BASE
   ========================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body.landing-page {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.geometric-header {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

/* Utility Classes */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.narrow-container {
    max-width: 800px;
}

.section-dark {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.section-black {
    background-color: var(--color-bg-black);
    color: var(--color-text-light);
}

.section-light {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    padding: var(--space-xl) 0;
}

.section-warm {
    background-color: var(--color-bg-warm);
    color: var(--color-text-dark);
}

.text-white {
    color: var(--color-text-light);
}

.text-gray {
    color: var(--color-text-gray);
}

.text-neon {
    color: var(--color-neon);
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-6 {
    margin-top: 3rem;
}

.mb-8 {
    margin-bottom: 4rem;
}

.pt-8 {
    padding-top: 4rem;
}

.pb-8 {
    padding-bottom: 4rem;
}

.pb-4 {
    padding-bottom: 2rem;
}

.p-6 {
    padding: 1.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.italic {
    font-style: italic;
}

.font-bold {
    font-weight: 700;
}

@media (max-width: 768px) {
    .mt-mobile-8 {
        margin-top: 4rem;
    }
}

/* Buttons & Links */
.btn-neon {
    display: inline-block;
    background-color: var(--color-neon);
    color: var(--color-bg-black);
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 1rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

.btn-neon:hover {
    background-color: var(--color-text-dark);
    color: var(--color-neon);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(17, 223, 17, 0.2);
}

.link-neon {
    color: var(--color-neon);
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
}

.link-neon:hover {
    color: var(--color-bg-light);
}

/* =========================================================================
   NAVIGATION
   ========================================================================= */
.body-no-scroll {
    overflow: hidden;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    background: rgba(28, 25, 20, 0.97);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

/* Mobile: flex, logo left / hamburger right */
.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Desktop: 3-column grid — logo | links | cta */
@media (min-width: 768px) {
    .site-nav {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-logo span {
    color: var(--color-neon);
}

.site-header.scrolled .nav-logo {
    opacity: 1;
    pointer-events: auto;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2.5rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-neon);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
}

.nav-cta {
    padding: 0.55rem 1.4rem;
    clip-path: none !important;
    font-size: 0.72rem;
}

/* Desktop-only CTA (in nav-right) */
.nav-desktop-cta {
    display: none;
}

@media (min-width: 768px) {
    .nav-desktop-cta {
        display: inline-flex;
    }
}

/* Overlay-only CTA (inside nav-links) — hidden in desktop row */
.nav-overlay-cta {
    display: none;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--color-text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0.5rem;
    position: relative;
    z-index: 101;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--color-bg-dark);
    justify-content: center;
    align-items: center;
    gap: 3rem;
    z-index: 99;
}

.nav-links.open .nav-link {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.85);
}

/* Show CTA in mobile overlay */
.nav-links.open .nav-overlay-cta {
    display: inline-flex;
}

/* =========================================================================
   SCROLL ANIMATIONS
   ========================================================================= */
.reveal-text,
.slide-up,
.slide-up-delay,
.slide-up-delay-2,
.slide-up-delay-3,
.block-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-up-delay {
    transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}

.slide-up-delay-2 {
    transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}

.slide-up-delay-3 {
    transition: opacity 0.7s ease 0.45s, transform 0.7s ease 0.45s;
}

.reveal-text.active,
.slide-up.active,
.slide-up-delay.active,
.slide-up-delay-2.active,
.slide-up-delay-3.active,
.block-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.logo-container {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    width: 250px;
    padding: 1rem;
    background: transparent;
    mix-blend-mode: screen;
    /* Applied to parent instead of image to fix stacking context issues with z-index */
}

.main-logo {
    width: 100%;
    height: auto;
    display: block;
    filter: invert(1) hue-rotate(180deg) brightness(1.2);
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, transparent 60%, rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 1rem;
    margin-top: 4rem;
    /* Push down below logo */
}

.hero-title {
    font-size: clamp(3rem, 7vw, 6rem);
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.9), 0 0 80px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 20px rgba(0, 0, 0, 0.95);
}

.scroll-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--color-neon);
}

.pulse {
    animation: pulseArrow 2s infinite;
}

@keyframes pulseArrow {
    0% {
        transform: translate(-50%, 0);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, 10px);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 0);
        opacity: 0.5;
    }
}

/* =========================================================================
   SECTION BACKGROUNDS — ALTERNATING RHYTHM
   ========================================================================= */
/* background set by section-dark class */

.section-bewijs {
    background-color: #ffffff;
}

.section-services {
    background-color: var(--color-bg-light);
}

.section-faq {
    background-color: #ffffff;
}

.section-contact {
    background-color: var(--color-bg-warm);
}

/* Neon underline accent on centered section headings */
.section-header .section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    background-color: var(--color-neon);
    margin: 1.25rem auto 0;
}

/* Left-aligned section headings (FAQ, etc.) */
.section-faq .section-title::after,
.section-locations .section-title::after {
    margin-left: 0;
    margin-right: 0;
}

/* Section subtitle — always muted */
.section-subtitle {
    color: var(--color-text-gray);
    font-size: 1.05rem;
    margin-top: 0.75rem;
}

/* =========================================================================
   INTRO SECTION
   ========================================================================= */
.dual-col-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .dual-col-layout {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

.sticky-element {
    position: sticky;
    top: 6rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.accent-block {
    width: 80px;
    height: 8px;
    background-color: var(--color-neon);
    margin-top: 1.5rem;
}

.lead-text {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 2rem;
}

.neon-quote {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    padding-left: 1.5rem;
    border-left: 4px solid var(--color-neon);
    margin-top: 2.5rem;
    color: var(--color-bg-dark);
}

/* =========================================================================
   PROBLEEMHERKENNING SECTION
   ========================================================================= */
.section-probleem {
    padding: var(--space-lg) 0 calc(var(--space-lg) + 1rem);
    background-color: var(--color-bg-warm);
}

.probleem-subtitle {
    color: var(--color-text-gray);
}

.probleem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 3.5rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

@media (min-width: 768px) {
    .probleem-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.probleem-card {
    position: relative;
    padding: 2.5rem 2rem 2.5rem 2.25rem;
    border-left: 3px solid var(--color-neon);
    background: transparent;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    transition: background 0.35s ease;
}

@media (min-width: 768px) {
    .probleem-card {
        border-bottom: none;
        border-right: 1px solid rgba(0,0,0,0.08);
    }
    .probleem-card:last-child {
        border-right: none;
    }
}

.probleem-card:hover {
    background: rgba(255, 255, 255, 0.55);
}

.probleem-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--color-neon);
    margin-bottom: 1.25rem;
}

.probleem-card .geometric-header {
    font-size: 1.05rem;
    color: var(--color-text-dark);
    margin-bottom: 0.9rem;
    letter-spacing: -0.01em;
}

.probleem-card p {
    color: var(--color-text-gray);
    margin-top: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.probleem-footer-text {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--color-text-gray);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.8;
    font-style: italic;
}

/* =========================================================================
   BEWIJSBLOK SECTION
   ========================================================================= */

.bewijs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .bewijs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 3rem;
    }
}

.bewijs-item {
    position: relative;
    padding-left: 3.5rem;
}

.neon-number {
    position: absolute;
    left: 0;
    top: 0.1rem;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-neon);
    line-height: 1;
}

.bewijs-item p {
    margin-top: 0.5rem;
}

/* =========================================================================
   VIDEO SHOWCASE SECTION
   ========================================================================= */
.section-video {
    padding: var(--space-xl) 0;
}

.video-showcase-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.video-showcase {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background-color: var(--color-bg-black);
}

/* =========================================================================
   SERVICES SECTION
   ========================================================================= */
.section-services {
    padding: var(--space-xl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.service-card {
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,0.09);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background-color: var(--color-neon);
    transition: width 0.4s ease;
}

.service-card:hover {
    border-color: rgba(0,0,0,0.14);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.service-card:hover::after {
    width: 100%;
}

.service-media {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}

.hover-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-card:hover .hover-media {
    transform: scale(1.03);
}

.service-content {
    padding: 2.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.service-desc {
    color: var(--color-text-gray);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-details {
    list-style: none;
    border-top: 1px solid rgba(0,0,0,0.07);
    padding-top: 1rem;
}

.service-details li {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.service-details li span {
    font-family: var(--font-heading);
    color: var(--color-neon);
    font-weight: 700;
}

/* =========================================================================
   LOCATIONS SECTION
   ========================================================================= */
.location-address {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-neon);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.box-border {
    border: 1px solid rgba(0,0,0,0.12);
    border-left: 3px solid var(--color-text-dark);
    padding: 1.75rem 2rem;
    background: rgba(255,255,255,0.5);
    transition: all 0.25s ease;
}

.box-border:hover {
    border-left-color: var(--color-neon);
    background: rgba(255,255,255,0.85);
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.sharp-image-wrapper {
    width: 100%;
    max-width: 500px;
    border-bottom: 8px solid var(--color-neon);
    overflow: hidden;
    position: relative;
}

.sharp-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}


/* =========================================================================
   FAQ & SOCIAL PROOF
   ========================================================================= */
.section-faq {
    padding: var(--space-xl) 0;
}

.social-proof-block {
    padding: 2rem 0;
}

.social-proof-block blockquote {
    font-size: 1.2rem;
    line-height: 1.6;
}

.neon-list {
    list-style: none;
}

.neon-list li {
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.neon-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background-color: var(--color-neon);
    border-radius: 50%;
}

/* FAQ Accordion */
.faq-accordion {
    border-top: 1px solid rgba(0,0,0,0.09);
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.09);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .faq-question {
        font-size: 1.1rem;
    }
}

.faq-question:hover {
    color: var(--color-neon);
}

.faq-icon {
    color: var(--color-neon);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}

.faq-answer p {
    color: var(--color-text-gray);
    padding-bottom: 1.5rem;
}

/* =========================================================================
   CONTACT / FORM SECTION
   ========================================================================= */
.section-contact {
    padding: var(--space-xl) 0;
}

.box-border-neon {
    border: 1px solid rgba(0,0,0,0.08);
    padding: 3rem;
    background-color: #ffffff;
    position: relative;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.box-border-neon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, var(--color-neon), transparent);
    z-index: -1;
    opacity: 0.3;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-row .form-group {
    flex: 1 1 calc(50% - 1rem);
    min-width: 200px;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 2rem;
}

.stark-form label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--color-neon);
    margin-bottom: 0.5rem;
}

.stark-form input,
.stark-form select,
.stark-form textarea {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #c8c5c0;
    padding: 1rem 0;
    color: var(--color-text-dark);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.stark-form input:focus,
.stark-form select:focus,
.stark-form textarea:focus {
    outline: none;
    border-bottom-color: var(--color-neon);
    box-shadow: 0 1px 0 var(--color-neon);
}

.stark-form textarea {
    resize: vertical;
    min-height: 120px;
}

.select-wrapper {
    position: relative;
}

.stark-form select {
    appearance: none;
    cursor: pointer;
}

.stark-form select option {
    background-color: #ffffff;
    color: var(--color-text-dark);
}

.form-submit {
    width: 100%;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.landing-footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0,0,0,0.09);
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.landing-footer .footer-tagline {
    color: rgba(255,255,255,0.45);
}

.landing-footer .footer-social-link {
    color: rgba(255,255,255,0.55);
}

.landing-footer .footer-social-link:hover {
    color: var(--color-neon);
}

.landing-footer .footer-links a {
    color: rgba(255,255,255,0.45);
}

.landing-footer .footer-links a:hover {
    color: var(--color-text-light);
}

.landing-footer .footer-contact-item {
    color: rgba(255,255,255,0.45);
}

.landing-footer .footer-grid {
    border-bottom-color: rgba(255,255,255,0.08);
}

.landing-footer .footer-copyright,
.landing-footer .footer-kvk {
    color: rgba(255,255,255,0.3);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 4rem;
    }
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    font-weight: 800;
}

.footer-logo span {
    color: var(--color-neon);
}

.footer-tagline {
    color: var(--color-text-gray);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social-link {
    color: var(--color-text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.footer-social-link:hover {
    color: var(--color-neon);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--color-neon);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: var(--color-text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-text-dark);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-gray);
    font-size: 0.9rem;
}

.footer-contact-item svg {
    width: 15px;
    height: 15px;
    color: var(--color-neon);
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 1.5rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--color-text-gray);
}

.footer-kvk {
    font-size: 0.85rem;
    color: var(--color-text-gray);
}

/* =========================================================================
   MISSING UTILITY CLASSES
   ========================================================================= */
.col-left,
.col-right,
.text-content,
.media-content {
    min-width: 0;
}

.text-content {
    line-height: 1.75;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.subtitle {
    color: var(--color-text-gray);
    font-size: 1.05rem;
    margin-top: 0.5rem;
}

.direct-contact {
    margin-top: 2rem;
}

.mt-8 {
    margin-top: 4rem;
}

.pb-2 {
    padding-bottom: 1rem;
}

/* MID-PAGE CTA STRIP */
.midcta {
    padding: 5rem 0;
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    text-align: center;
}

.midcta__eyebrow {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--color-neon);
    margin-bottom: 1.25rem;
}

.midcta__heading {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
}

.midcta__sub {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.65;
}