:root{

    --primary:#75a1f0;
    --primary-dark:#022b75;

    --secondary:#9ddef2;

    --dark:#0f172a;

    --light:#f8fafc;

    --white:#ffffff;

    --text:#475569;

    --border:#e2e8f0;

    --shadow:0 15px 35px rgba(15,23,42,.08);

    --radius:18px;

}

body{

    font-family:Inter,sans-serif;

    color:var(--text);

    background:#9abded;

    line-height:1.7;

}

.container{

    width:min(1200px,92%);

    margin:0 auto;

}
.site-header{

    position:sticky;

    top:0;

    background:#9ddef2;

    border-bottom:1px solid rgba(255,255,255,.15);

    z-index:1000;

}
.site-header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:80px;

}

.main-nav ul{

    display:flex;

    gap:2rem;

    list-style:none;

}
.main-nav a{

    color:#fff;

    text-decoration:none;

    font-weight:500;

    transition:.3s;

}

.main-nav a:hover{

    color:var(--accent);

}
.site-footer{
    margin-top: 5rem;
    background: var(--secondary);
    color: #fff;
}
.footer-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 3rem;
    padding: 4rem 0;
}
.footer-column h3{
    margin-bottom: 1rem;
    font-size: 1.2rem;
}
.footer-column p,
.footer-column li{
    margin-bottom: .75rem;
    color: rgba(255,255,255,.75);
}
.footer-column ul{
    list-style: none;
    padding: 0;
}
.footer-column a{
    color: rgba(255,255,255,.75);
    text-decoration: none;
    transition: color .2s ease;
}

.footer-column a:hover{
    color: #fff;
}
.footer-bottom{
    border-top: 1px solid rgba(255,255,255,.15);
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255,255,255,.6);
    font-size: .9rem;
}
.logo img {
    display: block;
    height: 40px;
    width: auto;
    opacity: 1;
}
.site-header {
    position: sticky;
    top: 0;
    background: #54b1eb;
    border-bottom: 1px solid rgba(255,255,255,.15);
    z-index: 1000;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
}

.main-nav a:hover {
    color: #0956e3;
}
.logo {
    display:flex;
    align-items:center;
}

.logo img {
    display:block;
    height:80px;
    width:auto;
    background:white;
}

.honeypot{
    display:none;
}

.hero{

    background:
    linear-gradient(135deg,#0f172a,#164e63);

    color:white;

    padding:120px 0;

    overflow:hidden;

}

.hero-grid{

    display:grid;

    grid-template-columns:1.2fr 1fr;

    gap:70px;

    align-items:center;

}

.hero-label{

    display:inline-block;

    background:rgba(255,255,255,.15);

    padding:8px 18px;

    border-radius:30px;

    letter-spacing:2px;

    font-size:12px;

    margin-bottom:25px;

}

.hero h1{

    font-size:58px;

    line-height:1.1;

    margin-bottom:30px;

}

.hero .lead{

    font-size:22px;

    color:#d6e3eb;

    line-height:1.8;

    margin-bottom:45px;

}
.hero-illustration{
    width: 650px;
    max-width: 100%;
    height: auto;
}
.btn{

    display:inline-block;

    padding:16px 34px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.btn-primary{

    background:#0956e3;

    color:white;

}

.btn-primary:hover{

    transform:translateY(-4px);

}

.btn-secondary{

    background:white;

    color:var(--dark);

    margin-left:15px;

}
.features h2 {
    text-align: center;
    color: #0f172a;
    margin-bottom: 50px;
}
.feature{
    background:white;
    border-radius:16px;
    padding:25px;
    box-shadow:0 8px 25px rgba(15,23,42,.08);
    transition:.3s;
    text-align:center;
}

.feature:hover{
    transform:translateY(-6px);
}
.feature h3{
    font-size:22px;
    margin-bottom:12px;
    color:#0f172a;
}

.feature p{
    font-size:15px;
    line-height:1.6;
    color:#64748b;
    margin:0;
}
.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}
.icon{
    width:55px;
    height:55px;
    margin:0 auto 18px;
    background:#e6fffb;
    color:var(--primary);
    border-radius:14px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:26px;
}
.benefit-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, 320px);
    justify-content:center;
    gap:30px;
    margin-top:50px;
}
.benefits h2 {
    text-align: center;
    color: #0f172a;
    margin-bottom: 50px;
}
.benefit{
    background:#fff;
    border-radius:16px;
    padding:24px;
    box-shadow:var(--shadow);
}
.process {
    padding: 90px 0;
    background: #f8fafc;
}

.process h2 {
    text-align: center;
    color: #0f172a;
    margin-bottom: 60px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step {
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    text-align: center;
}

.step-number {
    width: 65px;
    height: 65px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #0f766e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
}

.step h3 {
    margin: 0 0 15px;
    font-size: 22px;
    color: #0f172a;
}

.step p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
    font-size: 16px;
}
.services h2{
    text-align:center;
    margin-bottom:50px;
    color:var(--dark);
}
footer{

    background:#0f172a;

    color:#cbd5e1;

    padding:70px 0;

}

footer h3{

    color:white;

}

footer a{

    color:#cbd5e1;

    text-decoration:none;

}
.feature,
.card,
.benefit{

    animation:fadeUp .7s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:none;

    }

}


/* =====================================
   WEBAPPLICATIES PAGINA
===================================== */


/* Hero */

.webapps-header {
    padding: 90px 0;
    background: linear-gradient(135deg, #eef4ff, #ffffff);
     
    text-align: center;
}

.hero-content {
    
    max-width: 750px;
    margin: 0 auto;
}


.hero-content h1 {

    font-size: 48px;
    margin-bottom: 20px;

}


.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 35px;
}



/* Intro */

.webapp-intro {

    padding: 80px 0;

}


.two-columns {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;

}


.two-columns h2 {

    font-size: 36px;
    margin-bottom: 20px;

}


.two-columns p {

    line-height: 1.8;
    color: #555;

}



/* Info box */

.info-box {

    background: #ffffff;
    padding: 35px;

    border-radius: 18px;

    box-shadow:
        0 10px 35px rgba(0,0,0,0.08);

}


.info-box h3 {

    margin-bottom: 20px;

}


.info-box ul {

    list-style: none;
    padding: 0;

}


.info-box li {

    padding: 12px 0;
    border-bottom: 1px solid #eee;

}


.info-box li:last-child {

    border-bottom: none;

}


.info-box li::before {

    content: "✓";
    color: #2563eb;
    font-weight: bold;
    margin-right: 12px;

}



/* Oplossingen */

.solutions {

    padding: 90px 0;
    background: #f8fafc;

}


.solutions h2 {

    text-align: center;
    font-size: 38px;

}


.section-intro {

    text-align: center;
    color: #666;
    margin-bottom: 50px;

}



.solution-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}



.solution-card {

    background: white;

    padding: 35px;

    border-radius: 18px;

    text-align: center;

    transition: 
        transform .3s ease,
        box-shadow .3s ease;

}


.solution-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.12);

}



.solution-card .icon {

    font-size: 42px;

    margin-bottom: 20px;

}


.solution-card h3 {

    margin-bottom: 15px;

}


.solution-card p {

    color: #666;

    line-height: 1.6;

}



/* CTA */

.cta {

    padding: 80px 0;

    text-align: center;

}


.cta h2 {

    font-size: 36px;

    margin-bottom: 20px;

}


.cta p {

    max-width: 650px;

    margin: 0 auto 35px;

    color: #555;

}



/* =====================================
   RESPONSIVE
===================================== */


@media(max-width:900px){


    .two-columns {

        grid-template-columns: 1fr;

    }


    .solution-grid {

        grid-template-columns: 1fr 1fr;

    }


    .hero-content h1 {

        font-size: 38px;

    }

}



@media(max-width:600px){


    .solution-grid {

        grid-template-columns: 1fr;

    }


    .hero-content h1 {

        font-size: 32px;

    }


    .hero-content p {

        font-size: 17px;

    }

}

/* =========================
   INTRO WERKWIJZE
========================= */

.intro {
    padding: 90px 0;
}


.intro-grid {

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;

}


.intro-text h2 {

    font-size: 36px;
    color: #0f172a;
    margin-bottom: 25px;

}


.intro-text p {

    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;

}


.intro-card {

    background: #f8fafc;
    padding: 35px;

    border-radius: 20px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.08);

}


.intro-card h3 {

    font-size: 24px;
    margin-bottom: 25px;

}


.intro-item {

    padding: 18px 0;
    border-bottom: 1px solid #e2e8f0;

}


.intro-item:last-child {

    border-bottom: none;

}


.intro-item strong {

    color: #2563eb;
    font-size: 17px;

}


.intro-item p {

    margin: 8px 0 0;
    color: #64748b;

}


/* mobiel */

@media(max-width:900px){

    .intro-grid {

        grid-template-columns: 1fr;

    }

}

/* =========================
   COLLABORATION
========================= */

.collaboration {

    padding: 90px 0;
    background: #f8fafc;

}


.collaboration-header {

    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;

}


.collaboration-header h2 {

    font-size: 36px;
    color: #0f172a;
    margin-bottom: 20px;

}


.collaboration-header p {

    color: #64748b;
    line-height: 1.8;
    font-size: 18px;

}



.collaboration-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

}



.collaboration-card {

    background: white;

    padding: 35px;

    border-radius: 20px;

    text-align: center;

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);

    transition: transform .3s ease;

}


.collaboration-card:hover {

    transform: translateY(-8px);

}


.collaboration-icon {

    font-size: 40px;
    margin-bottom: 20px;

}


.collaboration-card h3 {

    margin-bottom: 15px;
    color: #0f172a;

}


.collaboration-card p {

    color: #64748b;
    line-height: 1.7;

}



@media(max-width:900px){

    .collaboration-grid {

        grid-template-columns: 1fr;

    }

}

/* ==========================
   404 PAGINA
========================== */

.error-page{

    padding:120px 0 80px;

    text-align:center;

}

.error-content{

    max-width:760px;

    margin:0 auto;

}

.error-label {

    display: inline-block;

    padding: 12px 26px;

    border-radius: 40px;

    background: #2563eb;

    color: #ffffff;

    font-size: 20px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 30px;

}

.error-content h1{

    font-size:52px;

    margin-bottom:25px;

    color:#0f172a;

}

.error-content p{

    font-size:19px;

    color:#64748b;

    line-height:1.8;

    margin-bottom:40px;

}

.error-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}



.error-links{

    padding:40px 0 100px;

}



.error-links h2{

    text-align:center;

    margin-bottom:50px;

}



.error-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}



.error-card{

    background:white;

    border-radius:18px;

    padding:30px;

    text-decoration:none;

    color:inherit;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.3s;

}



.error-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}



.error-card h3{

    color:#0f172a;

    margin-bottom:15px;

}



.error-card p{

    color:#64748b;

    line-height:1.7;

}



@media(max-width:900px){

    .error-grid{

        grid-template-columns:repeat(2,1fr);

    }

}



@media(max-width:600px){

    .error-content h1{

        font-size:38px;

    }

    .error-grid{

        grid-template-columns:1fr;

    }

}