﻿
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --teal-50:  #F5E6FF;
    --teal-100: #D9A8FF;
    --teal-500: #A020F0;
    --teal-700: #6A0DAD;
    --teal-900: #3A0068;
    --warm-50:  #FDF8FF;
    --warm-100: #F5EAFF;
    --warm-200: #E8D0FF;
    --text:     #1C0A2B;
    --muted:    #5A4A6B;
    --border:   #D4B8EE;
    --white:    #FFFFFF;
    --radius:   12px;
    --font-head: 'Lora', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 300;
  }

  /* ── NAV ── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 0 clamp(1.5rem, 5vw, 4rem);
  }
  .nav-inner {
    max-width: 1140px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px; gap: 2rem;
  }
  .nav-logo {
    font-family: var(--font-head);
    font-size: 1.25rem; font-weight: 600;
    color: var(--teal-700); text-decoration: none;
    display: flex; align-items: center; gap: 10px;
  }
  .nav-logo span {
    display: inline-block; width: 36px; height: 36px;
    background: var(--teal-500); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .nav-logo span svg { width: 20px; height: 20px; fill: white; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    text-decoration: none; font-size: 0.875rem; font-weight: 400;
    color: var(--muted); letter-spacing: 0.01em;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--teal-700); }
  .nav-cta {
    background: var(--teal-500); color: white !important;
    padding: 0.5rem 1.25rem; border-radius: 50px;
    font-weight: 500 !important; transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--teal-700) !important; color: white !important; }
  .hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 4px;
  }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--teal-700); border-radius: 2px; transition: 0.3s; }
  .mobile-menu {
    display: none; flex-direction: column; gap: 0;
    background: white; border-top: 1px solid var(--border);
    padding: 1rem clamp(1.5rem, 5vw, 4rem);
  }
  .mobile-menu a {
    display: block; padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none; color: var(--text); font-size: 0.95rem;
  }
  .mobile-menu.open { display: flex; }

  /* ── HERO ── */
  .hero {
    background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 100%);
    min-height: 88vh;
    display: flex; align-items: center;
    padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .hero-inner {
    max-width: 1140px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    position: relative; z-index: 1; width: 100%;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.12); color: var(--teal-100);
    font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0.35rem 0.9rem; border-radius: 50px; margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
  }
  .hero-badge::before { content: '●'; font-size: 0.6rem; color: var(--teal-100); animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
  .hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 600; line-height: 1.2; color: white;
    margin-bottom: 1.25rem;
  }
  .hero h1 em { font-style: italic; color: var(--teal-100); }
  .hero p {
    font-size: 1.05rem; color: rgba(255,255,255,0.78);
    max-width: 480px; margin-bottom: 2.5rem; font-weight: 300;
  }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: white; color: var(--teal-700);
    padding: 0.875rem 2rem; border-radius: 50px;
    font-weight: 500; font-size: 0.95rem; text-decoration: none;
    transition: all 0.2s; border: 2px solid white; display: inline-block;
  }
  .btn-primary:hover { background: var(--teal-50); }
  .btn-outline {
    background: transparent; color: white;
    padding: 0.875rem 2rem; border-radius: 50px;
    font-weight: 400; font-size: 0.95rem; text-decoration: none;
    border: 2px solid rgba(255,255,255,0.5); transition: all 0.2s; display: inline-block;
  }
  .btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }
  .hero-visual {
    display: flex; flex-direction: column; gap: 1rem; align-items: flex-end;
  }
  .stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; width: 100%; max-width: 360px; }
  .stat-card {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius); padding: 1.25rem 1rem; text-align: center;
    backdrop-filter: blur(4px);
  }
  .stat-card .num {
    font-family: var(--font-head); font-size: 2.25rem; font-weight: 600;
    color: white; line-height: 1;
  }
  .stat-card .label { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 0.25rem; }
  .hero-guarantee {
    background: rgba(255,255,255,0.08); border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 1rem 1.25rem; width: 100%; max-width: 360px;
    display: flex; align-items: center; gap: 0.75rem;
  }
  .hero-guarantee svg { width: 28px; height: 28px; flex-shrink: 0; fill: var(--teal-100); }
  .hero-guarantee p { font-size: 0.85rem; color: rgba(255,255,255,0.82); }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: var(--warm-100); border-bottom: 1px solid var(--warm-200);
    padding: 1.25rem clamp(1.5rem, 5vw, 4rem);
  }
  .trust-inner {
    max-width: 1140px; margin: 0 auto;
    display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; align-items: center;
  }
  .trust-item {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.85rem; color: var(--muted); font-weight: 400;
  }
  .trust-item svg { width: 18px; height: 18px; fill: var(--teal-500); flex-shrink: 0; }

  /* ── SECTIONS ── */
  section { padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem); }
  .section-inner { max-width: 1140px; margin: 0 auto; }
  .section-label {
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--teal-500); margin-bottom: 0.75rem;
  }
  .section-title {
    font-family: var(--font-head); font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 600; line-height: 1.25; color: var(--teal-900); margin-bottom: 1.25rem;
  }
  .section-lead {
    font-size: 1.05rem; color: var(--muted); max-width: 560px; line-height: 1.75;
  }

  /* ── ZORGAANBOD ── */
  #zorgaanbod { background: var(--warm-50); }
  .zorg-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem; margin-top: 2.5rem;
  }
  .zorg-card {
    background: white; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.5rem 1.25rem;
    transition: all 0.25s; cursor: default;
  }
  .zorg-card:hover { border-color: var(--teal-500); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(15,110,86,0.1); }
  .zorg-icon {
    width: 44px; height: 44px; background: var(--teal-50);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
  }
  .zorg-icon svg { width: 24px; height: 24px; fill: var(--teal-700); }
  .zorg-card h3 { font-size: 0.95rem; font-weight: 500; color: var(--text); line-height: 1.4; }

  /* ── HOE WERKT HET ── */
  #hoe-werkt-het { background: var(--warm-100); }
  .steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 3rem; position: relative; }
  .steps::before {
    content: '';
    position: absolute; top: 30px; left: 0; right: 0; height: 2px;
    background: repeating-linear-gradient(90deg, var(--teal-100) 0, var(--teal-100) 40px, transparent 40px, transparent 60px);
    z-index: 0;
  }
  .step { position: relative; z-index: 1; }
  .step-num {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--teal-500); color: white;
    font-family: var(--font-head); font-size: 1.4rem; font-weight: 600;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem; border: 3px solid white;
    box-shadow: 0 4px 12px rgba(29,158,117,0.25);
  }
  .step h3 { font-size: 1.05rem; font-weight: 500; margin-bottom: 0.5rem; color: var(--teal-900); }
  .step p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

  /* ── KOSTPRIJS ── */
  #kostprijs { background: white; }
  .cost-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2.5rem; align-items: start; }
  .cost-text p { color: var(--muted); margin-bottom: 1rem; line-height: 1.75; }
  .cost-text strong { color: var(--teal-700); }
  .cost-box {
    background: var(--teal-50); border: 1.5px solid var(--teal-100);
    border-radius: var(--radius); padding: 2rem;
  }
  .cost-box h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; color: var(--teal-900); margin-bottom: 1.25rem; }
  .cost-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
  .cost-list li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    font-size: 0.9rem; color: var(--muted); line-height: 1.55;
  }
  .cost-list li::before { content: '✓'; font-weight: 700; color: var(--teal-500); flex-shrink: 0; margin-top: 1px; }

  /* ── TEAM ── */
  #team { background: var(--warm-50); }
  .team-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 3rem; }
  .team-desc { color: var(--muted); line-height: 1.75; }
  .team-desc p + p { margin-top: 0.75rem; }
  .team-feature {
    background: var(--teal-700); border-radius: var(--radius);
    padding: 1.75rem; color: white;
  }
  .team-feature h4 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 0.75rem; color: white; }
  .team-feature p { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.65; }
  .team-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.25rem;
  }
  .team-card {
    background: white; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.25rem 1rem;
    text-align: center; transition: all 0.2s;
  }
  .team-card:hover { box-shadow: 0 6px 20px rgba(15,110,86,0.1); transform: translateY(-2px); }
  .avatar {
    width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 0.75rem;
    border: 2px solid var(--teal-100); object-fit: cover; display: block;
    background: var(--teal-50);
  }
  .avatar.lead { border-color: var(--teal-700); }
  .team-card h3 { font-size: 0.875rem; font-weight: 500; color: var(--text); margin-bottom: 0.2rem; }
  .team-card p { font-size: 0.775rem; color: var(--muted); }
  .team-card a { font-size: 0.775rem; color: var(--teal-500); text-decoration: none; }

  /* ── REGIO ── */
  #regio { background: var(--teal-900); padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem); }
  #regio .section-title { color: white; }
  #regio .section-label { color: var(--teal-100); }
  #regio .section-lead { color: rgba(255,255,255,0.7); }
  .regio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0.75rem; margin-top: 2rem; }
  .regio-item {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius); padding: 1rem 1.25rem;
    display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
  }
  .regio-item svg { width: 18px; height: 18px; fill: var(--teal-100); flex-shrink: 0; }

  /* ── CONTACT ── */
  #contact { background: white; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2.5rem; align-items: start; }
  .contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
  .contact-item {
    display: flex; align-items: flex-start; gap: 1rem;
    background: var(--warm-50); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.25rem;
  }
  .contact-item svg { width: 22px; height: 22px; fill: var(--teal-500); flex-shrink: 0; margin-top: 2px; }
  .contact-item h4 { font-size: 0.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 0.25rem; }
  .contact-item a, .contact-item p { font-size: 0.95rem; color: var(--text); text-decoration: none; }
  .contact-item a:hover { color: var(--teal-500); }
  .contact-form { display: flex; flex-direction: column; gap: 1rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-group label { font-size: 0.82rem; font-weight: 500; color: var(--muted); }
  .form-group input, .form-group textarea, .form-group select {
    padding: 0.75rem 1rem; border: 1.5px solid var(--border);
    border-radius: 8px; font-family: var(--font-body); font-size: 0.9rem;
    color: var(--text); background: white; transition: border-color 0.2s; outline: none;
    appearance: none;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--teal-500); }
  .form-group textarea { min-height: 110px; resize: vertical; }
  .btn-submit {
    background: var(--teal-500); color: white; padding: 0.875rem 2.5rem;
    border: none; border-radius: 50px; font-family: var(--font-body);
    font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: background 0.2s;
    align-self: flex-start;
  }
  .btn-submit:hover { background: var(--teal-700); }

  /* ── FOOTER ── */
  footer {
    background: var(--teal-900); color: rgba(255,255,255,0.65);
    padding: 2.5rem clamp(1.5rem, 5vw, 4rem) 1.5rem;
  }
  .footer-inner {
    max-width: 1140px; margin: 0 auto;
    display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between;
    padding-bottom: 1.5rem; margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-brand .nav-logo { color: white; margin-bottom: 0.75rem; }
  .footer-brand p { font-size: 0.85rem; max-width: 280px; color: rgba(255,255,255,0.55); }
  .footer-links h4 { color: white; font-size: 0.85rem; font-weight: 500; margin-bottom: 0.75rem; letter-spacing: 0.04em; }
  .footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
  .footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--teal-100); }
  .footer-bottom {
    max-width: 1140px; margin: 0 auto;
    display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
    font-size: 0.8rem;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .cost-grid, .team-intro, .contact-grid { grid-template-columns: 1fr; }
    .steps::before { display: none; }
    .form-row { grid-template-columns: 1fr; }
  }

  @media (max-width: 540px) {
    .hero h1 { font-size: 1.9rem; }
    .section-title { font-size: 1.6rem; }
    .stat-cards { grid-template-columns: 1fr 1fr; }
  }
