    :root {
        --header-primary: #84B78F;
        --header-primary-hover: #96c6a0;
        --header-secondary: #0B1F1A;
        --header-secondary-light: #142e26;
        --header-white: #ffffff;
        --header-gray: #64748b;
        --header-light-bg: #f8fafc;
        --header-border: #e5e7eb;
    }

    /* ==========================================
       HEADER WRAPPER
    ========================================== */
    .lc-header {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
    }

    .lc-header--transparent {
        background: transparent;
    }

    .lc-header--scrolled {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    }

    .lc-header--scrolled .lc-topbar {
        display: none;
    }

    .lc-header--scrolled .lc-header__logo-text {
        color: var(--header-secondary);
    }

    .lc-header--scrolled .lc-header__nav-link {
        color: var(--header-secondary);
    }

    .lc-header--scrolled .lc-header__nav-link:hover {
        color: var(--header-primary);
        background: rgba(132, 183, 143, 0.08);
    }

    .lc-header--scrolled .lc-header__icon-btn {
        color: var(--header-secondary);
    }

    /* ==========================================
       TRANSPARENT STATE
    ========================================== */
    .lc-header--transparent .lc-header__logo-text {
        color: var(--header-secondary);
    }

    .lc-header--transparent .lc-header__nav-link {
        color: var(--header-secondary);
    }

    .lc-header--transparent .lc-header__nav-link:hover {
        color: var(--header-primary);
        background: rgba(132, 183, 143, 0.08);
    }

    .lc-header--transparent .lc-header__nav-link--active::after {
        background: var(--header-primary);
    }

    .lc-header--transparent .lc-header__icon-btn {
        color: var(--header-secondary);
    }

    .lc-header--transparent .lc-header__icon-btn:hover {
        background: rgba(132, 183, 143, 0.08);
        color: var(--header-primary);
    }

    .lc-header--transparent .lc-topbar__usp {
        color: var(--header-gray);
    }

    .lc-header--transparent .lc-topbar__usp--link:hover {
        color: var(--header-primary);
    }

    .lc-header--transparent .lc-topbar__usp-icon {
        color: var(--header-primary);
    }

    .lc-header--transparent .lc-topbar__divider {
        background: var(--header-border);
    }

    /* ==========================================
       TOP BAR
    ========================================== */
    .lc-topbar {
        padding: 8px 0;
        transition: all 0.3s ease;
    }

    .lc-topbar__container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 30px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 24px;
    }

    .lc-topbar__usps {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    /* ==========================================
       LANGUAGE SWITCHER — Custom UI on top of GTranslate
    ========================================== */

    /* Kill Google Translate's banner that pushes the body down */
    .skiptranslate,
    .goog-te-banner-frame,
    iframe.goog-te-banner-frame.skiptranslate,
    .goog-te-balloon-frame,
    #goog-gt-tt {
        display: none !important;
    }
    body { top: 0 !important; position: static !important; }
    html { margin-top: 0 !important; }
    .goog-tooltip, .goog-tooltip:hover { display: none !important; }
    .goog-text-highlight {
        background: transparent !important;
        box-shadow: none !important;
        position: static !important;
    }

    /* Hide GTranslate's own UI — we drive it via JS */
    .lc-lang__plumbing,
    .dc-gt-element {
        position: absolute !important;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
        pointer-events: none;
        opacity: 0;
        left: -9999px;
        top: -9999px;
    }

    .lc-lang {
        position: relative;
        flex-shrink: 0;
        z-index: 100;
    }

    .lc-lang__trigger {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        height: 28px;
        padding: 0 10px;
        background: transparent;
        border: 1px solid rgba(28, 26, 30, 0.12);
        border-radius: 999px;
        color: var(--header-gray);
        font-family: inherit;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        cursor: pointer;
        transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
    }
    .lc-lang__trigger:hover,
    .lc-lang.is-open .lc-lang__trigger {
        border-color: var(--header-primary);
        background: rgba(132, 183, 143, 0.08);
        color: var(--header-secondary);
    }
    .lc-lang__icon {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
        color: var(--header-gray);
        transition: color 0.2s ease;
    }
    .lc-lang__trigger:hover .lc-lang__icon,
    .lc-lang.is-open .lc-lang__icon {
        color: var(--header-primary);
    }
    .lc-lang__current {
        font-variant-numeric: tabular-nums;
    }
    .lc-lang__chevron {
        width: 10px;
        height: 10px;
        margin-left: 1px;
        opacity: 0.5;
        transition: transform 0.25s ease, opacity 0.2s ease;
    }
    .lc-lang.is-open .lc-lang__chevron {
        transform: rotate(180deg);
        opacity: 1;
    }

    /* Dropdown menu */
    .lc-lang__menu {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        min-width: 200px;
        background: var(--header-white);
        border: 1px solid rgba(28, 26, 30, 0.06);
        border-radius: 14px;
        box-shadow: 0 16px 48px rgba(11, 31, 26, 0.14), 0 4px 12px rgba(11, 31, 26, 0.06);
        padding: 6px;
        list-style: none;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-6px) scale(0.98);
        transform-origin: top right;
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
        pointer-events: none;
    }
    .lc-lang.is-open .lc-lang__menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .lc-lang__item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 14px;
        border-radius: 10px;
        font-size: 13px;
        font-weight: 500;
        color: var(--header-secondary);
        cursor: pointer;
        transition: background 0.15s ease, color 0.15s ease;
        outline: none;
    }
    .lc-lang__item:hover,
    .lc-lang__item:focus-visible {
        background: rgba(132, 183, 143, 0.1);
        color: var(--header-primary);
    }
    .lc-lang__item.is-active {
        background: rgba(132, 183, 143, 0.14);
        color: var(--header-primary);
        font-weight: 600;
    }
    .lc-lang__flag {
        font-size: 18px;
        line-height: 1;
        flex-shrink: 0;
    }
    .lc-lang__name { flex: 1; }
    .lc-lang__check {
        width: 14px;
        height: 14px;
        color: var(--header-primary);
        flex-shrink: 0;
        opacity: 0;
        transition: opacity 0.15s ease;
    }
    .lc-lang__item.is-active .lc-lang__check { opacity: 1; }

    .lc-topbar__usp {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 12.5px;
        font-weight: 500;
        color: var(--header-gray);
    }

    .lc-topbar__usp--link {
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .lc-topbar__usp--link:hover {
        color: var(--header-primary);
    }

    .lc-topbar__usp-icon {
        width: 14px;
        height: 14px;
        color: var(--header-primary);
    }

    .lc-topbar__divider {
        width: 1px;
        height: 12px;
        background: var(--header-border);
    }

    /* ==========================================
       MAIN HEADER
    ========================================== */
    .lc-header__main {
        padding: 16px 0;
        transition: padding 0.3s ease;
    }

    .lc-header--scrolled .lc-header__main {
        padding: 10px 0;
    }

    .lc-header__container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Logo */
    .lc-header__logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        z-index: 10;
    }

    .lc-header__logo img {
        height: 55px;
        width: auto;
        transition: all 0.3s ease;
    }

    .lc-header--scrolled .lc-header__logo img {
        height: 44px;
    }

    .lc-header__logo-text {
        font-size: 22px;
        font-weight: 800;
        color: var(--header-secondary);
        letter-spacing: -0.5px;
        transition: color 0.3s ease;
        line-height: 1.1;
    }

    .lc-header__logo-accent {
        color: var(--header-primary);
    }

    .lc-header__logo-sub {
        display: block;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--header-gray);
        margin-top: 2px;
    }

    /* Navigation */
    .lc-header__nav {
        display: flex;
        align-items: center;
        gap: 4px;
        margin-left: auto;
    }

    .lc-header__nav-item {
        position: relative;
    }

    .lc-header__nav-link {
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 10px 16px;
        font-size: 14.5px;
        font-weight: 600;
        color: var(--header-secondary);
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.3s ease;
        position: relative;
    }

    .lc-header__nav-link:hover {
        color: var(--header-primary);
        background: rgba(132, 183, 143, 0.08);
    }

    .lc-header__nav-link svg {
        width: 11px;
        height: 11px;
        transition: transform 0.3s ease;
    }

    .lc-header__nav-item:hover .lc-header__nav-link svg {
        transform: rotate(180deg);
    }

    .lc-header__nav-link--active::after {
        content: '';
        position: absolute;
        bottom: 3px;
        left: 50%;
        transform: translateX(-50%);
        width: 18px;
        height: 2px;
        background: var(--header-primary);
        border-radius: 2px;
    }

    /* Actions */
    .lc-header__actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .lc-header__icon-btn {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        border-radius: 10px;
        color: var(--header-secondary);
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        position: relative;
    }

    .lc-header__icon-btn:hover {
        background: rgba(132, 183, 143, 0.08);
        color: var(--header-primary);
    }

    .lc-header__icon-btn svg {
        width: 20px;
        height: 20px;
    }

    .lc-header__cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        font-size: 13.5px;
        font-weight: 700;
        color: #ffffff;
        background: #84B78F;
        border-radius: 10px;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 4px 16px rgba(132, 183, 143, 0.25);
    }

    .lc-header__cta:hover {
        background: #0B1F1A;
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(11, 31, 26, 0.3);
    }

    .lc-header__cta svg {
        width: 15px;
        height: 15px;
        transition: transform 0.3s ease;
    }

    .lc-header__cta:hover svg {
        transform: translateX(3px);
    }

    .lc-header__cta--ghost {
        background: transparent;
        color: var(--header-secondary);
        border: 1.5px solid rgba(11, 31, 26, 0.15);
        box-shadow: none;
        padding: 10.5px 20px;
    }

    .lc-header--scrolled .lc-header__cta--ghost,
    .lc-header--transparent .lc-header__cta--ghost {
        color: var(--header-secondary);
    }

    .lc-header__cta--ghost:hover {
        background: var(--header-secondary);
        color: var(--header-white);
        border-color: var(--header-secondary);
        box-shadow: 0 8px 28px rgba(11, 31, 26, 0.18);
    }

    /* Mobile Toggle */
    .lc-header__mobile-toggle {
        display: none;
        width: 46px;
        height: 46px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        background: var(--header-light-bg);
        border: 1px solid var(--header-border);
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .lc-header__mobile-toggle span {
        width: 20px;
        height: 2px;
        background: var(--header-secondary);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .lc-header__mobile-toggle.is-active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .lc-header__mobile-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .lc-header__mobile-toggle.is-active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* ==========================================
       MEGA MENU — Diensten (wide with sidebar)
    ========================================== */
    .lc-megamenu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        width: 820px;
        background: var(--header-white);
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(10, 22, 40, 0.12), 0 0 0 1px rgba(10, 22, 40, 0.04);
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        pointer-events: none;
        z-index: 100;
        overflow: hidden;
    }

    .lc-header__nav-item:hover .lc-megamenu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }

    .lc-megamenu--wide {
        width: 760px;
    }

    .lc-megamenu__inner {
        display: grid;
        grid-template-columns: 280px 1fr;
    }

    /* Categories sidebar */
    .lc-megamenu__categories {
        background: var(--header-light-bg);
        padding: 20px;
        border-right: 1px solid var(--header-border);
    }

    .lc-megamenu__category-title {
        font-size: 10px;
        font-weight: 700;
        color: var(--header-gray);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 12px;
        padding: 0 12px;
    }

    .lc-megamenu__category-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .lc-megamenu__category-item {
        margin-bottom: 2px;
    }

    .lc-megamenu__category-link {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
        font-size: 13px;
        font-weight: 600;
        color: var(--header-secondary);
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.25s ease;
    }

    .lc-megamenu__category-link:hover,
    .lc-megamenu__category-link.is-active {
        background: var(--header-white);
        color: var(--header-secondary);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    }

    .lc-megamenu__category-icon {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--header-white);
        border-radius: 8px;
        color: var(--header-primary);
        transition: all 0.25s ease;
        flex-shrink: 0;
    }

    .lc-megamenu__category-link:hover .lc-megamenu__category-icon,
    .lc-megamenu__category-link.is-active .lc-megamenu__category-icon {
        background: var(--header-secondary);
        color: var(--header-primary);
    }

    .lc-megamenu__category-icon svg {
        width: 18px;
        height: 18px;
    }

    .lc-megamenu__category-arrow {
        margin-left: auto;
        width: 14px;
        height: 14px;
        color: #cbd5e1;
        transition: all 0.25s ease;
    }

    .lc-megamenu__category-link:hover .lc-megamenu__category-arrow,
    .lc-megamenu__category-link.is-active .lc-megamenu__category-arrow {
        color: var(--header-primary);
        transform: translateX(3px);
    }

    /* Content area */
    .lc-megamenu__content {
        padding: 24px;
    }

    .lc-megamenu__featured-panel {
        display: none;
    }

    .lc-megamenu__featured-panel.is-active {
        display: block;
        animation: fadeInPanel 0.25s ease;
    }

    @keyframes fadeInPanel {
        from { opacity: 0; transform: translateY(6px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .lc-megamenu__section-title {
        font-size: 10px;
        font-weight: 700;
        color: var(--header-gray);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 14px;
    }

    .lc-megamenu__panel-desc {
        font-size: 13.5px;
        line-height: 1.7;
        color: var(--header-gray);
        margin: 0 0 18px;
    }

    .lc-megamenu__panel-highlights {
        list-style: none;
        margin: 0 0 20px;
        padding: 0;
        display: grid;
        gap: 8px;
    }

    .lc-megamenu__panel-highlight {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 500;
        color: var(--header-secondary);
    }

    .lc-megamenu__panel-highlight-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--header-primary);
        flex-shrink: 0;
    }

    .lc-megamenu__footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 16px;
        border-top: 1px solid var(--header-border);
    }

    .lc-megamenu__footer-text {
        font-size: 12.5px;
        color: var(--header-gray);
    }

    .lc-megamenu__footer-text strong {
        color: var(--header-secondary);
    }

    .lc-megamenu__footer-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        font-weight: 600;
        color: var(--header-primary);
        text-decoration: none;
        transition: gap 0.3s ease;
    }

    .lc-megamenu__footer-link:hover {
        gap: 10px;
    }

    .lc-megamenu__footer-link svg {
        width: 14px;
        height: 14px;
    }

    /* ==========================================
       MEGA MENU — Expertise (grid layout)
    ========================================== */
    .lc-megamenu--expertise {
        width: 680px;
    }

    .lc-megamenu--expertise .lc-megamenu__inner {
        display: block;
        padding: 24px;
    }

    .lc-megamenu__expertise-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .lc-megamenu__expertise-group-title {
        font-size: 10px;
        font-weight: 700;
        color: var(--header-gray);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 10px;
        padding-bottom: 8px;
        border-bottom: 1px solid var(--header-border);
    }

    .lc-megamenu__expertise-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .lc-megamenu__expertise-link {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 7px 10px;
        font-size: 13px;
        font-weight: 500;
        color: var(--header-secondary);
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.2s ease;
    }

    .lc-megamenu__expertise-link:hover {
        background: var(--header-light-bg);
        color: var(--header-primary);
    }

    .lc-megamenu__expertise-link svg {
        width: 15px;
        height: 15px;
        color: var(--header-primary);
        flex-shrink: 0;
        opacity: 0.7;
    }

    .lc-megamenu__expertise-link:hover svg {
        opacity: 1;
    }

    /* ==========================================
       SIMPLE MEGA MENU (Over ons dropdown)
    ========================================== */
    .lc-megamenu--simple {
        width: 260px;
        padding: 12px;
    }

    .lc-megamenu--simple .lc-megamenu__inner {
        display: block;
    }

    .lc-megamenu__simple-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .lc-megamenu__simple-link {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
        font-size: 13.5px;
        font-weight: 600;
        color: var(--header-secondary);
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.2s ease;
    }

    .lc-megamenu__simple-link:hover {
        background: var(--header-light-bg);
        color: var(--header-primary);
    }

    .lc-megamenu__simple-link svg {
        width: 17px;
        height: 17px;
        color: var(--header-primary);
    }

    /* ==========================================
       MOBILE MENU
    ========================================== */
    .lc-mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: var(--header-white);
        z-index: 10000;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

    .lc-mobile-menu.is-active {
        right: 0;
    }

    .lc-mobile-menu__overlay {
        position: fixed;
        inset: 0;
        background: rgba(10, 22, 40, 0.5);
        backdrop-filter: blur(4px);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .lc-mobile-menu__overlay.is-active {
        opacity: 1;
        visibility: visible;
    }

    .lc-mobile-menu__header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 20px;
    }

    .lc-mobile-menu__logo {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
    }

    .lc-mobile-menu__logo img {
        display: block;
        width: auto;
        height: 40px;
    }

    .lc-mobile-menu__logo-accent {
        color: var(--header-primary);
    }

    .lc-mobile-menu__close {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--header-light-bg);
        border: none;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .lc-mobile-menu__close:hover {
        background: var(--header-secondary);
        color: var(--header-white);
    }

    .lc-mobile-menu__close svg {
        width: 18px;
        height: 18px;
    }

    .lc-mobile-menu__nav {
        padding: 20px;
    }

    .lc-mobile-menu__item {
        border-bottom: 1px solid #f1f5f9;
    }

    .lc-mobile-menu__link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 0;
        font-size: 15px;
        font-weight: 600;
        color: var(--header-secondary);
        text-decoration: none;
        transition: color 0.3s ease;
        cursor: pointer;
    }

    .lc-mobile-menu__link:hover {
        color: var(--header-primary);
    }

    .lc-mobile-menu__link svg {
        width: 16px;
        height: 16px;
        color: #cbd5e1;
        transition: all 0.3s ease;
    }

    .lc-mobile-menu__item.is-open .lc-mobile-menu__link svg {
        transform: rotate(180deg);
        color: var(--header-primary);
    }

    .lc-mobile-submenu {
        display: none;
        padding-bottom: 14px;
    }

    .lc-mobile-menu__item.is-open .lc-mobile-submenu {
        display: block;
    }

    .lc-mobile-submenu__link {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        font-size: 13.5px;
        font-weight: 500;
        color: var(--header-gray);
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.2s ease;
    }

    .lc-mobile-submenu__link:hover {
        background: var(--header-light-bg);
        color: var(--header-primary);
    }

    .lc-mobile-submenu__icon {
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--header-light-bg);
        border-radius: 8px;
        color: var(--header-primary);
        flex-shrink: 0;
    }

    .lc-mobile-submenu__icon svg {
        width: 16px;
        height: 16px;
    }

    .lc-mobile-menu__cta {
        margin: 20px;
        padding: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 700;
        color: #ffffff;
        background: #84B78F;
        border-radius: 12px;
        text-decoration: none;
        box-shadow: 0 4px 16px rgba(132, 183, 143, 0.25);
    }

    .lc-mobile-menu__cta svg {
        width: 16px;
        height: 16px;
    }

    .lc-mobile-menu__contact {
        margin: 4px 20px 24px;
        padding: 16px;
        background: var(--header-light-bg);
        border: 1px solid var(--header-border);
        border-radius: 16px;
    }

    .lc-mobile-menu__contact-title {
        margin-bottom: 10px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--header-gray);
    }

    .lc-mobile-menu__contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 9px;
        border-radius: 12px;
        text-decoration: none;
        transition: background 0.25s ease, transform 0.15s ease;
    }

    .lc-mobile-menu__contact-item + .lc-mobile-menu__contact-item {
        margin-top: 2px;
    }

    .lc-mobile-menu__contact-item:hover,
    .lc-mobile-menu__contact-item:active {
        background: var(--header-white);
        transform: translateX(2px);
    }

    .lc-mobile-menu__contact-icon {
        flex: 0 0 auto;
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(132, 183, 143, 0.14);
        color: var(--header-primary);
        border-radius: 10px;
    }

    .lc-mobile-menu__contact-icon--wa {
        background: rgba(37, 211, 102, 0.14);
        color: #25D366;
    }

    .lc-mobile-menu__contact-icon svg {
        width: 18px;
        height: 18px;
    }

    .lc-mobile-menu__contact-text {
        display: flex;
        flex-direction: column;
        line-height: 1.3;
        min-width: 0;
    }

    .lc-mobile-menu__contact-label {
        font-size: 11px;
        font-weight: 600;
        color: var(--header-gray);
    }

    .lc-mobile-menu__contact-value {
        font-size: 14px;
        font-weight: 700;
        color: var(--header-secondary);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: color 0.25s ease;
    }

    .lc-mobile-menu__contact-item:hover .lc-mobile-menu__contact-value {
        color: var(--header-primary);
    }

    /* ==========================================
       RESPONSIVE
    ========================================== */
    @media (max-width: 1200px) {
        .lc-megamenu--expertise {
            width: 560px;
        }
        .lc-megamenu__expertise-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 1024px) {
        .lc-header__nav {
            display: none;
        }

        .lc-header__mobile-toggle {
            display: flex;
        }

        .lc-topbar {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .lc-header__container {
            padding: 0 16px;
        }

        .lc-header__cta {
            display: none;
        }

        .lc-mobile-menu {
            max-width: 100%;
        }

        /* Topbar on mobile: hide USPs to make room for language switcher */
        .lc-topbar__container {
            padding: 0 16px;
            justify-content: flex-end;
        }
        .lc-topbar__usps {
            display: none;
        }
    }

    @media (max-width: 480px) {
        .lc-header__logo img {
            height: 38px;
        }

        .lc-header__logo-text {
            font-size: 18px;
        }

        .lc-header__container {
            padding: 0 12px;
            gap: 8px;
        }
        .lc-header__actions { gap: 6px; }
        .lc-header__icon-btn { width: 38px; height: 38px; }
        .lc-mobile-menu__header { padding: 16px; }
        .lc-mobile-menu__nav { padding: 8px 16px; }
        .lc-mobile-menu__link { font-size: 16px; padding: 10px 0; }
        .lc-mobile-submenu__link { padding: 8px 12px; font-size: 13px; }
        .lc-lang__trigger { height: 26px; padding: 0 8px; font-size: 11px; }
    }

    .lc-header-spacer {
        height: 110px;
    }

    @media (max-width: 1024px) {
        .lc-header-spacer {
            height: 75px;
        }
    }
