:root {
    --accent: #6366f1;
    --accent-2: #a855f7;
    --accent-soft: rgba(99, 102, 241, 0.22);
    --text: #f9fafb;
    --text-soft: #cbd5f5;
    --border-glass: rgba(148, 163, 184, 0.65);
    --radius-xl: 1.25rem;
    --radius-2xl: 1.75rem;
}

/* RESET */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    -webkit-font-smoothing: antialiased;

    /* Kleurrijke achtergrond voor glassmorphism */
    min-height: 100vh;
    background:
        radial-gradient(circle at 0% 0%, #1d4ed8 0, transparent 50%),
        radial-gradient(circle at 100% 0%, #7c3aed 0, transparent 50%),
        radial-gradient(circle at 0% 100%, #22c55e 0, transparent 55%),
        radial-gradient(circle at 100% 100%, #06b6d4 0, transparent 55%),
        linear-gradient(135deg, #020617, #020617 60%, #020617);
    background-attachment: fixed;
}

body.nav-open {
    overflow: hidden;
}

/* links standaard niet blauw/onderstreept */
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}

/* Telefoon / mail als pill-knoppen */
.pill-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.9);
    font-size: 0.85rem;
    color: #f9fafb;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.85);
}

.pill-link:hover {
    background: rgba(15, 23, 42, 0.98);
}


/* Algemene glass stijl als mixin via selectors */
.glass,
.header,
.footer,
.card,
.hero-card-inner,
.contact-form,
.info-box,
.section-highlight {
    background: rgba(15, 23, 42, 0.4);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-glass);
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.8),
        0 0 0 1px rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
}

/* LAYOUT */
.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* HEADER / NAV */
.header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-radius: 0 0 1.2rem 1.2rem;
    border-top: none;
    margin-bottom: 0.75rem;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.5rem;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0%, #a855f7, #4f46e5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 0 18px rgba(79, 70, 229, 0.75);
}

.logo-text {
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 1.05rem;
}

.logo-tag {
    font-size: 0.75rem;
    color: var(--text-soft);
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(15, 23, 42, 0.5);
}

/* ================= HEADER & NAVIGATIE ================= */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  flex-wrap: wrap;
}

.brand-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  width: 100%;
}

/* Gebruik je bestaande logo-styles binnen .brand */
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* topnav desktop */
.topnav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.topnav a {
  margin: 0;
  font-weight: 500;
  color: var(--text-soft);
  transition: transform 0.2s;
}

.topnav a:hover {
  transform: translateY(-2px);
}

/* Kleine knop in navbar */
.topnav .btn-small {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.8);
}
.topnav .btn-small:hover {
  filter: brightness(1.08);
}

/* ---------- Hamburger ---------- */
/* ---------- Hamburger knop (desktop standaard VERBORGEN) ---------- */
.hamburger {
  display: none;                 /* BELANGRIJK: niet tonen op desktop */
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 999px;

  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow:
    0 8px 28px rgba(0,0,0,0.45),
    inset 0 0 25px rgba(255,255,255,0.05);

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;

  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
  z-index: 99999;
}

.hamburger:hover {
  background: rgba(255,255,255,0.18);
}

/* Balkjes van hamburger */
.hamburger__bar {
  width: 22px;
  height: 2.4px;
  background: rgba(255,255,255,0.95);
  border-radius: 2px;
  transition: transform .35s ease, opacity .35s ease, width .25s ease;
}

/* Mooi X-icoon */
.hamburger.is-active .hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 24px;
}
.hamburger.is-active .hamburger__bar:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 24px;
}

/* X boven het menu houden als het open is */
body.nav-open .hamburger {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
}



/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 1.3rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 16px 35px rgba(79, 70, 229, 0.6);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.8);
}

.btn-outline {
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(148, 163, 184, 0.8);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.7);
    color: var(--text);
}

.btn-outline:hover {
    background: rgba(15, 23, 42, 0.9);
}

.btn-small {
    padding: 0.45rem 0.9rem;
    font-size: 0.85rem;
    box-shadow: none;
}

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

/* HERO */
.hero {
    padding: 4rem 0 3.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 2.8rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.4rem, 4vw, 3.1rem);
    line-height: 1.05;
    margin: 1.1rem 0 0.8rem;
}

.hero-text p {
    color: var(--text-soft);
    max-width: 34rem;
    line-height: 1.7;
    margin-bottom: 1.4rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.8rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
}

.hero-meta > div {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.meta-number {
    font-size: 1.4rem;
    font-weight: 600;
}

.meta-label {
    font-size: 0.8rem;
    color: var(--text-soft);
}

/* HERO CARD */
.hero-card {
    position: relative;
}

.hero-card-inner {
    border-radius: var(--radius-2xl);
    padding: 1.8rem 1.7rem;
}

/* Chip boven hero card */
.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.55);
    font-size: 0.75rem;
    color: #bbf7d0;
    margin-bottom: 1.1rem;
}

.hero-card-inner h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.hero-card-inner p {
    color: var(--text-soft);
    font-size: 0.9rem;
    margin-bottom: 1.1rem;
}

.hero-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
    display: grid;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: #e5e7eb;
}

.hero-list i {
    color: #22c55e;
    margin-right: 0.35rem;
}

.hero-contact-highlight {
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.6);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.hero-contact-highlight i {
    font-size: 0.9rem;
}

.hero-contact-highlight .pill-link {
    box-shadow: none;
    border: none;
    background: transparent;
    padding-inline: 0;
}


/* BADGE */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: var(--accent-soft);
    border: 1px solid rgba(79, 70, 229, 0.8);
    font-size: 0.75rem;
    color: #e0e7ff;
}

.badge-soft {
    background: rgba(15, 23, 42, 0.4);
    border-color: rgba(148, 163, 184, 0.7);
}

/* SECTION */
.section {
    padding: 2.5rem 0 3.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.2rem;
}

.section-header h2 {
    font-size: 1.7rem;
    margin-bottom: 0.4rem;
}

.section-header p {
    color: var(--text-soft);
}

/* GRID & CARDS */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.7rem;
}

.grid-scroll{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.7rem;
}

.card {
    padding: 1.4rem 1.4rem 1.5rem;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 70, 229, 0.16);
    border: 1px solid rgba(79, 70, 229, 0.7);
    margin-bottom: 0.85rem;
    font-size: 1.1rem;
    color: #c7d2fe;
}

.card h3 {
    margin: 0 0 0.4rem;
    font-size: 1.1rem;
}

.card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* SERVICE CARDS */
.card-service {
    position: relative;
    overflow: hidden;
}

.card-service::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.25), transparent 55%);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.card-service:hover::after {
    opacity: 1;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0 0;
    color: var(--text-soft);
    font-size: 0.9rem;
    display: grid;
    gap: 0.25rem;
}

.service-list i {
    font-size: 0.45rem;
    margin-right: 0.35rem;
}

/* SUB HERO (DIENSTEN & CONTACT) */
.sub-hero {
    padding: 3rem 0 1.5rem;
}

.sub-hero h1 {
    font-size: clamp(2rem, 3.2vw, 2.5rem);
    margin: 1rem 0 0.5rem;
}

.sub-hero p {
    color: var(--text-soft);
    max-width: 36rem;
}

/* HIGHLIGHT BANNER */
.section-highlight {
    margin-top: 2.5rem;
    padding: 1.4rem 1.5rem;
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
}

/* CONTACT GRID */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 2rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
    display: grid;
    gap: 0.6rem;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.contact-list i {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.9);
}

.info-box {
    border-radius: 1.1rem;
    padding: 1.1rem 1.3rem;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.7);
    margin-bottom: 1rem;
}

.info-box h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
}

.info-box p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.6;
}


/* FORMULIER */
.contact-form {
    padding: 1.4rem 1.4rem 1.6rem;
}

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

label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

input,
textarea,
select {
    width: 100%;
    border-radius: 0.7rem;
    border: 1px solid rgba(148, 163, 184, 0.75);
    padding: 0.55rem 0.75rem;
    background: rgba(15, 23, 42, 0.55);
    color: var(--text);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

input::placeholder,
textarea::placeholder {
    color: rgba(203, 213, 225, 0.8);
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.6);
    background: rgba(15, 23, 42, 0.85);
}

textarea {
    resize: vertical;
}

.form-note {
    margin-top: 0.6rem;
    font-size: 0.75rem;
    color: var(--text-soft);
}

/* FOOTER */
.footer {
    border-top: 1px solid rgba(148, 163, 184, 0.5);
    padding: 1.8rem 0 1rem;
    margin-top: 1rem;
    border-radius: 1.2rem 1.2rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 1.5rem;
    font-size: 0.9rem;
}

.footer-grid h3,
.footer-grid h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.footer-grid p {
    margin: 0;
    color: var(--text-soft);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.35rem;
}

.footer-list a:not(.pill-link) {
    color: var(--text-soft);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-list a:not(.pill-link):hover {
    color: #e5e7eb;
}

.footer-list .pill-link {
    padding: 0.3rem 0.9rem;
    font-size: 0.85rem;
    background: rgba(15, 23, 42, 0.9);
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.9);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.8);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-list .pill-link:hover {
    background: rgba(15, 23, 42, 1);
}


.footer-bottom {
    margin-top: 1.6rem;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-soft);
}


/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1.2fr);
    }

    .hero-card {
        margin-top: 1.5rem;
    }

    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .section-highlight {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
}

/* ---------- Hamburger menu overlay ---------- */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    cursor: pointer;
  }

  .topnav {
    position: fixed;
    inset: 0;

    /* Dubbel glas + diepe schaduw + vignette */
    background:
      radial-gradient(circle at 30% 10%, rgba(255,255,255,0.10), transparent 60%),
      radial-gradient(circle at 70% 90%, rgba(255,255,255,0.08), transparent 55%),
      rgba(2, 6, 23, 0.60);

    backdrop-filter: blur(45px) saturate(240%);
    -webkit-backdrop-filter: blur(45px) saturate(240%);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.6rem;

    min-height: 100vh;

    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .45s cubic-bezier(.25, .85, .25, 1), opacity .35s;

    z-index: 9999;

    /* Rand + interne glow */
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow:
      0 25px 70px rgba(0,0,0,0.65),
      inset 0 0 80px rgba(255,255,255,0.04),
      inset 0 0 120px rgba(255,255,255,0.03),
      inset 0 0 260px rgba(255,255,255,0.02);
  }

  .topnav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* Liquid-knoppen */
   .topnav a {
    width: 78%;
    max-width: 380px;

    padding: 1.15rem 1.4rem;
    font-size: 1.20rem;
    font-weight: 500;

    text-align: center;

    color: rgba(255,255,255,0.97);

    background: rgba(255,255,255,0.11);

    border-radius: 1.7rem;
    border: 1px solid rgba(255,255,255,0.25);

    backdrop-filter: blur(40px) saturate(260%);
    -webkit-backdrop-filter: blur(40px) saturate(260%);

    box-shadow:
      0 14px 45px rgba(0,0,0,0.45),
      0 0 22px rgba(255,255,255,0.12),
      inset 0 0 40px rgba(255,255,255,0.08),
      inset 0 0 60px rgba(255,255,255,0.05);

    transition: transform .2s ease, box-shadow .3s ease, background .3s ease;
  }

  .topnav a:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(255,255,255,0.18);

    box-shadow:
      0 18px 55px rgba(0,0,0,0.55),
      0 0 35px rgba(255,255,255,0.14),
      inset 0 0 65px rgba(255,255,255,0.10);
  }

  .topnav a:active {
    transform: scale(0.94);
    background: rgba(255,255,255,0.25);
  }

  /* laatste knop = CTA gradient glas */
  .topnav a:last-child {
    background: linear-gradient(
      135deg,
      rgba(99,102,241,0.55),
      rgba(168,85,247,0.55)
    );

    border: 1px solid rgba(255,255,255,0.30);

    box-shadow:
      0 20px 60px rgba(99,102,241,0.75),
      0 0 50px rgba(168,85,247,0.55),
      inset 0 0 60px rgba(255,255,255,0.12),
      inset 0 0 90px rgba(255,255,255,0.08);

    color: #fff;
    font-weight: 650;
  }
}

@media (max-width: 700px) {
    .grid-scroll {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1rem;
        margin: 0 -1.5rem;        /* tot aan schermrand */
        padding-inline: 1.5rem;
    }

    .grid-scroll > .card {
        min-width: 80%;
        scroll-snap-align: center;
    }
}
