:root {
    --showcase-bg: #F4F8FC;
    --showcase-card: #FFFFFF;
    --showcase-primary: #2563EB;
    --showcase-primary-hover: #1D4ED8;
    --showcase-secondary: #5F9EA0;
    --showcase-text: #1F2937;
    --showcase-text-light: #64748B;
    --showcase-border: #D6E4F5;
    --showcase-shadow: 0 8px 30px rgba(37,99,235,.06);
    --showcase-radius:16px;
    --showcase-max-width:1280px;
}

*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    background:var(--showcase-bg);
    color:var(--showcase-text);
}

html{
    scroll-behavior:smooth;
}

a{
    color:inherit;
    text-decoration:none;
}

.showcase-container{
    width:min(100% - 64px, var(--showcase-max-width));
    margin:auto;
}

.showcase-section{
    padding: 100px 0;
}

.showcase-title{
    font-size:48px;
    line-height:1.1;
    font-weight:700;
}

.showcase-subtitle{
    font-size:20px;
    line-height:1.6;
    color:var(--showcase-text-light);
    max-width:700px;
}

.showcase-button{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding: 14px 24px;
    border-radius:12px;
    background: var(--showcase-primary);
    color:white !important;
    font-weight:600;
    transition:.2s;
}

.showcase-button:hover{
    background: var(--showcase-primary-hover);
    transform:translateY(-2px);
}

.showcase-button.secondary{
    background:white;
    color:var(--showcase-primary);
    border: 1px solid var(--showcase-border);
}

.showcase-grid{
    display:grid;
    gap:32px;
}

.showcase-flex{
    display:flex;
}

.showcase-center{
    align-items:center;
    justify-content:center;
}

.showcase-between{
    justify-content:space-between;
}

.showcase-column{
    flex-direction:column;
}

.showcase-between{
    justify-content:space-between;
}

.showcase-align-center{
    align-items:center;
}

.showcase-gap-small{
    gap:16px;
}

.showcase-gap{
    gap:32px;
}

.showcase-gap-large{
    gap:64px;
}

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

.showcase-width-full{
    width:100%;
}

.showcase-hidden{
    display:none;
}


.showcase-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.showcase-hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 12px;
}

.showcase-hero-image img{
    width:100%;
    border-radius:20px;
    border:1px solid var(--showcase-border);
    box-shadow:var(--showcase-shadow);
}

.showcase-hero-image{
    position:relative;
}

.showcase-hero-image::before{
    content:"";
    position:absolute;
    width:80%;
    aspect-ratio:1;
    background:
        radial-gradient(
        rgba(37,99,235,.08),
        transparent 70%
        );
    filter:blur(30px);
    z-index:-1;
}

.showcase-section {
    padding: 120px 0;
}

.showcase-section-small {
    padding: 80px 0;
}

.showcase-section-header {
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

.showcase-section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.showcase-section-description {
    text-align: left;
    font-size: 20px;
    color: var(--showcase-text-light);
    line-height: 1.8;
}

.showcase-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.showcase-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.showcase-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.showcase-card {
    background: white;
    border: 1px solid var(--showcase-border);
    border-radius: var(--showcase-radius);
    padding: 32px;
    box-shadow: var(--showcase-shadow);
}

.showcase-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.showcase-card-text {
    color: var(--showcase-text-light);
    line-height: 1.8;
}

.showcase-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    border-radius: var(--showcase-radius);
    border: 2px dashed var(--showcase-border);
    background: white;
    color: var(--showcase-text-light);
    font-size: 20px;
}

.showcase-navigation{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(255,255,255,.94);
    backdrop-filter:blur(14px);
    border-bottom:1px solid var(--showcase-border);
}

.showcase-navigation-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:84px;
}

.showcase-logo{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:28px;
    font-weight:700;
    color:var(--showcase-text);
}

.showcase-logo-square{
    width:14px;
    height:14px;
    background:var(--showcase-primary);
    border-radius:4px;
}

.showcase-menu{
    display:flex;
    align-items:center;
    gap:42px;
    margin-left: auto;
    margin-right: 60px;
}

.showcase-menu a{
    position:relative;
    font-size:17px;
    font-weight:500;
    color:var(--showcase-text-light);
    transition:.2s;
}

.showcase-menu a:hover{
    color:var(--showcase-primary);
}

.showcase-menu a.active{
    color:var(--showcase-primary)
}

.showcase-menu a.active::after{
    content:"";
    position:absolute;
    bottom:-8px;
    left:0;
    width:100%;
    height:2px;
    background:var(--showcase-primary);
    border-radius:4px;
}

.showcase-footer{
    margin-top:140px;
    padding:90px 0 40px;
    background:white;
    border-top:1px solid var(--showcase-border);
}

.showcase-footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:80px;
}

.showcase-footer-grid h3{
    margin:0 0 24px;
    font-size:18px;
    font-weight:700;
}

.showcase-footer-grid a{
    display:block;
    margin-bottom:14px;
    color:var(--showcase-text-light);
    transition:.2s;
}

.showcase-footer-grid a:hover{
    color:var(--showcase-primary);
}

.showcase-footer-description{
    margin-top:24px;
    max-width:420px;
    color:var(--showcase-text-light);
    line-height:1.9;
}

.showcase-footer-bottom{
    margin-top:70px;
    padding-top:28px;
    border-top:1px solid var(--showcase-border);
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:var(--showcase-text-light);
    font-size:14px;
}

@media (max-width: 768px) {
    .showcase-footer {
        margin-top: 80px;
        padding: 60px 0 30px;
    }

    .showcase-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }

    .showcase-footer-grid > div:first-child {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 10px;
    }

    .showcase-footer-grid > div:first-child .showcase-logo {
        justify-content: center;
    }

    .showcase-footer-description {
        margin: 20px auto 0;
        max-width: 340px;
    }

    .showcase-footer-bottom {
        margin-top: 50px;
        padding-top: 24px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.showcase-kicker{
    color:var(--showcase-primary);
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.showcase-hero{
    display:flex;
    align-items:center;
    min-height: calc(100vh - 80px);
    padding: 80px 0;
}

.showcase-hero-content{
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.showcase-hero-image img{
    width:100%;
    border-radius:20px;
    border:1px solid var(--showcase-border);
    box-shadow:var(--showcase-shadow);
}

.showcase-main > section{
    padding:60px 0;
}

.showcase-contact{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.showcase-contact-actions{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:40px;
}
.showcase-hero-image{
    display:flex;
    justify-content:center;
    align-items:center;
    perspective:1800px;
}

.showcase-hero-image img{
    width:115%;
    border-radius:20px;
    border:1px solid var(--showcase-border);
    transform:
        rotateY(-12deg)
        rotateX(3deg)
        rotateZ(1deg);
    transform-origin:center;
    box-shadow:
        0 30px 60px rgba(37,99,235,.08),
        0 10px 25px rgba(0,0,0,.05);
    transition:
        transform .45s ease,
        box-shadow .45s ease;
}

.showcase-hero-image img{
    overflow:visible;
    width:100%;
    border-radius:20px;
    border:1px solid var(--showcase-border);
    transform:
        perspective(2200px)
        rotateY(-18deg)
        rotateX(5deg)
        rotateZ(1deg);
    transform-origin:left center;
    box-shadow:
        0 18px 35px rgba(0,0,0,.08),
        0 35px 60px rgba(37,99,235,.06);

}

.showcase-contact-layout{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:80px;
    align-items:center;
}

.showcase-contact{
    text-align:left;
}

.showcase-contact-person{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:16px;
}

.showcase-contact-photo{
    max-width:180px;
    aspect-ratio:1;
    object-fit:cover;
    border-radius:24px;
    border:1px solid var(--showcase-border);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.showcase-contact-person h3{
    margin:8px 0 0;
    font-size:28px;
}

.showcase-contact-person p{
    margin:0;
    color:var(--showcase-text-light);
    line-height:1.8;
}

.showcase-contact-person a{
    color:var(--showcase-primary);
    font-weight:500;
}

.showcase-contact-person small{
    color:var(--showcase-text-light);
    margin-top:12px;
}

.showcase-contact-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:96px;
    align-items:center;
}

.showcase-contact{
    max-width:640px;
}

.showcase-contact-person{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    text-align:left;
    gap:18px;
}

.showcase-contact-photo{
    width:340px;
    aspect-ratio:1;
    object-fit:cover;
    border-radius:24px;
    border:1px solid var(--showcase-border);
    box-shadow:
        0 10px 30px rgba(0,0,0,.08);
}

.showcase-contact-person h3{
    margin:12px 0 0;
    font-size:28px;
    font-weight:700;
    line-height:1.2;
}

.showcase-contact-person p{
    margin:0;
    color:var(--showcase-text-light);
    line-height:1.9;
}

.showcase-contact-person a{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--showcase-primary);
    font-weight:500;
}

.showcase-contact-person small{
    margin-top:12px;
    color:var(--showcase-text-light);
}

.showcase-menu-toggle{
    display:none;
    align-items:center;
    justify-content:center;
    width:48px;
    height:48px;
    border:none;
    border-radius:12px;
    background:white;
    cursor:pointer;
    font-size:30px;
    color:var(--showcase-text);
    transition:.2s;
}

.showcase-menu-toggle:hover{
    background:var(--showcase-bg);
}

.showcase-mobile-button{
    display:none;
    width:100%;
    justify-content:center;
    margin-top:20px;
}

@media (max-width:950px){

    .showcase-navigation-inner{
        position:relative;
    }

    .showcase-desktop-button{
        display:none;
    }

    .showcase-menu-toggle{
        display:flex;
    }

    .showcase-menu{
        display:none;
        position:absolute;
        top:calc(100% + 12px);
        right:0;
        width:300px;
        padding:20px;
        background:white;
        border:1px solid var(--showcase-border);
        border-radius:18px;
        box-shadow:var(--showcase-shadow);
        flex-direction:column;
        align-items:flex-start;
        gap:0;
    }

    .showcase-menu.open{
        display:flex;
    }

    .showcase-menu a{
        width:100%;
        padding:14px 0;
    }

    .showcase-mobile-button{
        display:flex;
    }
}

.showcase-navbar-icon{
    color: var(--primary)
}

.fas{
    font-style: normal;
}

.showcase-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 100px 0;
}

.showcase-feature.reverse {
    direction: rtl;
}

.showcase-feature.reverse > * {
    direction: ltr;
}

.showcase-feature-content h3 {
    margin: 10px 0 20px;

    font-size: 32px;
    line-height: 1.2;
}

.showcase-feature-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.showcase-feature-kicker {
    display: flex;
    width: fit-content;
    align-items: center;
    padding: 6px 24px 6px 6px;
    border-radius: 999px;
    background: white;
    color: var(--showcase-primary);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 24px;
    gap: 10px;
    box-shadow: 0 6px 18px rgba(30,41,59,.08);
}

.showcase-feature ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.showcase-feature li {
    margin-bottom: 10px;
    color: var(--text);
}

.showcase-feature-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,.10);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.showcase-feature-image img:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(0,0,0,.14);
}



.showcase-stack {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    user-select: none;
}

.showcase-stack img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    transition:
        transform .6s ease,
        opacity .6s ease,
        box-shadow .6s ease;

    box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

.stack-front{
    z-index:3;
    transform: translate(0px,0px) scale(1);
    opacity:1;
}

.stack-middle {
    transform:
        translate(28px, -22px)
        scale(.98);
}

.stack-back {
    transform:
        translate(56px, -44px)
        scale(.96);
}

.stack-front {
    rotate: -0.2deg;
}

.stack-middle {
    rotate: 0.8deg;
}

.stack-back {
    rotate: -0.8deg;
}

.stack-front {
    box-shadow: 0 28px 70px rgba(0,0,0,.18);
}

.stack-middle {
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

.stack-back {
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.home-card-icon{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    flex-shrink:0;
}

.home-card-title{
    font-size:24px;
    font-weight:600;
    color:var(--text);
    margin:0;
}

.home-card-text{
    color:#666;
    font-size:13px;
    line-height:1.7;
}

.home-card-icon.rogp{
    background:#eef4ff;
    color:#2f63e1;
}

.home-card-icon.nomodules{
    background:  #F39C1233;
    color : var(--orange);
}

.home-card-icon.blocked{
    background:  #E74C3C33;
    color : var(--red);
}

.home-card-icon.absenties{
    background:#fff6e8;
    color:#f39c12;
}

.home-card-icon.cijfers{
    background:#eef8ef;
    color:#2e9d58;
}

.home-card-icon.observaties{
    background:#f6efff;
    color:#8e44ad;
}

.home-card-icon.pta{
    background:#eef7ff;
    color:#2980b9;
}

.home-card-icon.indicatoren{
    background:#fcebeb;
    color:#e12f2f;
}


.showcase-testimonial {
    max-width: 1050px;
    margin: 0 auto;
}

.showcase-testimonial-content {
    display: flex;
    justify-content: space-between;
    gap: 70px;
}

.showcase-testimonial-text {
    flex: 1;
}

.showcase-testimonial-quote {
    margin: 28px 0 36px;
    font-size: 1.9rem;
    line-height: 1.6;
    font-weight: 400;
    color: #1F2937;
    position: relative;
}

.showcase-testimonial-quote::before {
    content: "“";
    position: absolute;
    left: -30px;
    top: -25px;
    font-size: 5rem;
    color: rgba(37,99,235,.12);
    font-family: Georgia, serif;
    line-height: 1;
}

.showcase-testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.showcase-testimonial-author span {
    color: #64748B;
    line-height: 1.6;
}

.showcase-testimonial-image {
    padding-top: 50px;
    flex: 0 0 250px;
    display: flex;
    justify-content: center;
}

.showcase-testimonial-image img {
    background: white;
    width: 100%;
    height: fit-content;
    border-radius: 20px;
    object-fit: contain;
    border: none;
    box-shadow: 0 18px 45px rgba(15,23,42,.12);
}


/* ==========================================================
   TABLETS & SMALL LAPTOPS
   ========================================================== */

@media (max-width: 900px) {

    .showcase-container{
        width:min(100% - 32px, var(--showcase-max-width));
    }

    .showcase-main > section{
        padding:50px 0;
    }

    .showcase-title{
        font-size:38px;
    }

    .showcase-section-title{
        font-size:32px;
    }

    .showcase-subtitle,
    .showcase-section-description{
        font-size:18px;
    }

    /* Hero */

    .showcase-hero{
        min-height:auto;
        padding:40px 0;
    }

    .showcase-hero-grid{
        display:grid;
        align-items:center;
        grid-template-columns:1fr;
        gap:50px;
    }

    /* Feature blocks */

    .showcase-feature{
        grid-template-columns:1fr;
        gap:40px;
        margin:70px 0;
    }

    .showcase-feature.reverse{
        direction:ltr;
    }

    /* Cards */

    .showcase-grid-4{
        grid-template-columns:repeat(2,1fr);
    }

    /* Contact */

    .showcase-contact-layout{
        grid-template-columns:1fr;
        gap:60px;
    }

    .showcase-contact{
        max-width:none;
        text-align:center;
    }

    .showcase-contact-person{
        align-items:center;
        text-align:center;
    }

    .showcase-contact-photo{
        width:260px;
    }

    /* Testimonial */

    .showcase-testimonial-content{
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:40px;
    }

    .showcase-testimonial-image{
        padding-top:0;
    }

    .showcase-testimonial-quote::before{
        display:none;
    }

    /* Screenshot stacks */

    .showcase-stack{
        max-width:650px;
        margin:auto;
    }

    .stack-middle{
        transform:
            translate(18px,-14px)
            scale(.98);
    }

    .stack-back{
        transform:
            translate(36px,-28px)
            scale(.96);
    }

}

/* ==========================================================
   PHONES
   ========================================================== */

@media (max-width: 600px) {

    .showcase-container{
        width:min(100% - 24px, var(--showcase-max-width));
    }

    .showcase-title{
        font-size:30px;
        line-height:1.2;
    }

    .showcase-section-title{
        font-size:26px;
    }

    .showcase-subtitle,
    .showcase-section-description{
        font-size:17px;
    }

    .showcase-feature-content h3{
        font-size:26px;
    }

    /* Cards */

    .showcase-grid-4{
        grid-template-columns:1fr;
    }

    /* Buttons */

    .showcase-hero-buttons{
        flex-direction:column;
    }

    .showcase-button{
        width:100%;
        justify-content:center;
    }

    /* Contact */

    .showcase-contact-photo{
        width:200px;
    }

    /* Screenshot stack */

    .stack-middle{
        transform:
            translate(12px,-10px)
            scale(.98);
    }

    .stack-back{
        transform:
            translate(24px,-20px)
            scale(.96);
    }

    .showcase-feature{
        margin:50px 0;
    }

}