/* ============================================================
   Landing EMS — Standalone stylesheet
   Losstaan van de huidige website-styling
   ============================================================ */

:root {
    --lp-black:       #111111;
    --lp-white:       #ffffff;
    --lp-hero-bg:     #e8f0f6;
    --lp-card-1:      #dce8f2;
    --lp-card-2:      #e6f2ea;
    --lp-card-3:      #d8ede6;
    --lp-text:        #111111;
    --lp-text-muted:  #555555;
    --lp-max-width:   1200px;
    --lp-font:        "Mona Sans", urw-din, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.landing-ems {
    font-family: var(--lp-font);
    color: var(--lp-text);
    line-height: 1.55;
    background: #F9F9F9;
    -webkit-font-smoothing: antialiased;
}

/* ── Container ────────────────────────────────────────────── */
.lp-container {
    max-width: var(--lp-max-width);
    margin: 0 auto;
    padding: 0 32px;
}

.lp-container-fluid {
    max-width: 1444px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ── Header ───────────────────────────────────────────────── */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: #F9F9F9;
    border-bottom: 1px solid #ebebeb;
    padding: 28px 0;
}

.lp-header-inner {
    display: flex;
    align-items: center;
    height: 80px;
    gap: 40px;
}

.lp-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.lp-logo svg {
    height: 84px;
    width: 86px;
}

.lp-nav {
    flex: 1;
    display: flex;
    gap: 28px;
    justify-content: center;
    align-items: center;
}

.lp-nav a {
    text-decoration: none;
    color: #000;
    font-family: "Mona Sans", urw-din, sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.45px;
    white-space: nowrap;
    transition: opacity 0.15s;
}

.lp-nav a:hover {
    opacity: 0.6;
}

.lp-btn-webshop {
    display: inline-block;
    background: var(--lp-black);
    color: #FFF;
     font-family: "Mona Sans", urw-din, sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.45px;
    padding: 10px 22px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s;
    text-transform: uppercase;
    text-decoration: none;
}

.lp-btn-webshop:hover {
    background: #333;
    color: #fff;
    text-decoration: none;
}

/* ── Hero ─────────────────────────────────────────────────── */
.lp-hero {
    padding: 80px 0 88px;
    text-align: center;
}
.lp-hero .lp-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lp-hero h1 svg {
    display: inline;
    vertical-align: middle;
    margin: 0 4px;
    position: relative;
    top: -2px;
}

.lp-hero h1 {
    color: #000;
    text-align: center;
    font-family: "Mona Sans", urw-din, sans-serif;
    font-size: clamp(36px, 6vw, 62.203px);
    font-style: normal;
    font-weight: 800;
    line-height: 0.968;
    text-transform: uppercase;
    margin-bottom: 20px;
    word-break: break-word;
    padding: 0 180px;
}

.lp-hero-text {
    max-width: 460px;
    margin: 0 auto;
}

.lp-hero-text p,
.lp-hero-text {
    color: #000;
    text-align: center;
    font-family: "Mona Sans", urw-din, sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.17px;
    margin: 0;
}

/* ── Subsite-kaarten ──────────────────────────────────────── */
.lp-cards {
    padding: 48px 0 56px;
}

.lp-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.d-flex {
    display: flex;
}
.d-flex.space-between {
    justify-content: space-between;
}   
.lp-card {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: var(--lp-text);
    padding: 42px;
    position: relative;
    min-height: 300px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.lp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    text-decoration: none;
    color: var(--lp-text);
}

.lp-card:nth-child(1) { background: #E1F1FF; }
.lp-card:nth-child(2) { background: #FFEEE6; }
.lp-card:nth-child(3) { background: #E8F7E9; }

.lp-card-arrow {
    width: 44px;
    height: 44px;
    background: var(--lp-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    flex-shrink: 0;
    line-height: 1 !important;
}

/* Afbeelding rechtsboven met diagonale linkerrand */
.lp-card-image {
    overflow: hidden;
    clip-path: polygon(30% 0%, 70% 0%, 100% 0, 100% 70%, 100% 100%, 89% 100%, 0 40%, 0 0);
}

.lp-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;    
}

/* Logo + titel onderaan */
.lp-card-bottom {
    margin-top: -25px;
}

.lp-card-logo {
    height: auto;   
    width: 50px;
    display: block;
    margin-bottom: 19px;
}

.lp-card-title {
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
}

/* ── Tekst-blok (subsiteText) ─────────────────────────────── */
.lp-section-text {
    padding: 80px 0;
}

.lp-text-grid {
    display: flex;
    justify-content: center;
    gap: 158px;
    align-items: start;
}

.lp-text-label {
    color: #000;
    font-family: "Mona Sans", urw-din, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 35px;
}

.lp-text-content {
    color: #000;
    font-family: "Mona Sans", urw-din, sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px;
    letter-spacing: -0.28px;
    max-width: 580px;
}

.lp-text-content strong,
.lp-text-content b {
    font-weight: 700;
}

.lp-text-content p {
    margin: 0;
}

/* ── Tekst + Afbeelding-blok (subsiteTextImage) ───────────── */
.lp-section-textimage {
    padding: 56px 0;
}

.lp-textimage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.lp-section-textimage.lp-image-right .lp-textimage-grid {
    direction: rtl;
}

.lp-section-textimage.lp-image-right .lp-textimage-grid > * {
    direction: ltr;
}

.lp-textimage-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.lp-textimage-image img {
    width: 100%;
    height: 470x;
    object-fit: cover;
    display: block;
}

/* Wit kaartje over de afbeelding */
.lp-image-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #fff;
    border-radius: 14px;
    padding: 18px 22px;
    max-width: 240px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.lp-image-card-title {
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.lp-image-card-badge {
    display: inline-block;
    background: var(--lp-black);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 999px;
    letter-spacing: 0.03em;
}

.lp-textimage-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lp-textimage-text h2 {
    color: #000;
    font-family: "Mona Sans", urw-din, sans-serif;
    font-size: 35px;
    font-style: normal;
    font-weight: 800;
    line-height: 42px;
    text-transform: uppercase;
}

.lp-textimage-text p {
    color: #000;
    font-family: "Mona Sans", urw-din, sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.17px;
}

.lp-btn-readmore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--lp-black);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 24px;
    border-radius: 999px;
    align-self: flex-start;
    transition: background 0.2s;
}

.lp-btn-readmore:hover {
    background: #333;
    color: #fff;
    text-decoration: none;
}

/* ── Footer ───────────────────────────────────────────────── */
.lp-footer {
    color: #000;
    font-family: "Mona Sans", urw-din, sans-serif;
    margin-top: 66px;
}

.lp-footer-logo-section {
    padding: 56px 0 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-footer-logo-section svg {
    height: 139px;
    width: 142px;
}

.lp-footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 44px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-footer-col h4 {
    font-size: 17px;
    font-style: normal;
    font-weight: 800;
    line-height: 35px; /* 205.882% */
    text-transform: uppercase;
    margin-bottom: 18px;
}

.lp-footer-col address,
.lp-footer-col p {
   font-size: 17px;
    font-style: normal;
    font-weight: 500;
    color: #000;
}

.lp-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-footer-col ul a {
     color: #000;
    text-decoration: none;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    transition: color 0.15s;
}

.lp-footer-col ul a:hover {
    color: #000;
}

.lp-footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.lp-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: background 0.2s;
}

.lp-social-btn:hover {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
}

.lp-footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
     color: #000;
}

.lp-footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.lp-footer-bottom-links a {
     color: #000;
    text-decoration: none;
    transition: color 0.15s;
}

.lp-footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.75);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 992px) {
    .lp-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-cards-grid .lp-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 50%;
    }

    .lp-footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lp-hero h1 {
        padding:0;
    }

    .lp-container {
        padding: 0 20px;
    }

    .lp-header-inner {
        flex-wrap: wrap;
        height: auto;
        padding: 14px 0;
        gap: 12px;
    }

    .lp-nav {
        display: none;
    }

    .lp-hero {
        padding: 56px 0 64px;
    }

    .lp-card {
        padding: 24px;
    }

    .lp-cards-grid {
        grid-template-columns: 1fr;
    }

    .lp-cards-grid .lp-card:nth-child(3) {
        grid-column: auto;
        max-width: 100%;
    }

    .lp-text-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .lp-textimage-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: ltr !important;
    }

    .lp-textimage-image img {
        height: 300px;
    }

    .lp-footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .lp-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .lp-footer-columns {
        grid-template-columns: 1fr;
    }

    .lp-card {
        min-height: 260px;
    }
}
