/* Glow Your Company — Main Stylesheet v2 */


    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --glow: #4ECDC4;
      --glow-dim: rgba(78,205,196,0.15);
      --glow-mid: rgba(78,205,196,0.4);
      --bg: #080808;
      --bg2: #0f0f0f;
      --bg3: #141414;
      --text: #f0f0f0;
      --muted: #888;
      --border: rgba(78,205,196,0.2);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--glow); border-radius: 3px; }

    /* ── GLOW TEXT LOGO ── */
    .logo-text {
      font-family: 'Dancing Script', cursive;
      font-size: 1.8rem;
      color: #fff;
      text-shadow:
        0 0 6px var(--glow),
        0 0 14px var(--glow),
        0 0 28px var(--glow),
        0 0 50px rgba(78,205,196,0.6);
      letter-spacing: 0.02em;
      line-height: 1;
    }
    .logo-sub {
      font-family: 'Inter', sans-serif;
      font-size: 0.6rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
      margin-top: 1px;
      display: block;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 1.2rem 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
    }
    nav.scrolled {
      background: rgba(8,8,8,0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 1px 0 var(--border);
    }
    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--glow); }
    .nav-cta {
      background: transparent;
      border: 1px solid var(--glow);
      color: var(--glow) !important;
      padding: 0.45rem 1.2rem;
      border-radius: 4px;
      transition: background 0.2s, color 0.2s !important;
    }
    .nav-cta:hover {
      background: var(--glow) !important;
      color: #000 !important;
    }

    /* hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }
    .hamburger span {
      display: block; width: 24px; height: 2px;
      background: var(--glow);
      border-radius: 2px;
      transition: all 0.3s;
    }
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(8,8,8,0.97);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      color: var(--text);
      text-decoration: none;
      font-size: 1.5rem;
      font-weight: 600;
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--glow); }
    .mobile-close {
      position: absolute; top: 1.5rem; right: 1.5rem;
      background: none; border: none;
      color: var(--glow); font-size: 1.8rem; cursor: pointer;
    }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 7rem 5% 5rem;
      position: relative;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(78,205,196,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 80% 80%, rgba(78,205,196,0.06) 0%, transparent 60%);
      pointer-events: none;
    }
    .hero-logo {
      margin-bottom: 2.5rem;
    }
    .hero-logo-text {
      font-family: 'Dancing Script', cursive;
      font-size: clamp(4rem, 12vw, 9rem);
      color: #fff;
      text-shadow:
        0 0 10px var(--glow),
        0 0 25px var(--glow),
        0 0 55px var(--glow),
        0 0 100px rgba(78,205,196,0.5);
      line-height: 1;
      display: block;
      animation: pulse-glow 3s ease-in-out infinite alternate;
    }
    @keyframes pulse-glow {
      from { text-shadow: 0 0 10px var(--glow), 0 0 25px var(--glow), 0 0 55px var(--glow), 0 0 100px rgba(78,205,196,0.4); }
      to   { text-shadow: 0 0 15px var(--glow), 0 0 35px var(--glow), 0 0 75px var(--glow), 0 0 130px rgba(78,205,196,0.65); }
    }
    .hero-logo-sub {
      font-family: 'Inter', sans-serif;
      font-size: clamp(0.75rem, 2vw, 1.1rem);
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      display: block;
      margin-top: 0.5rem;
    }
    #hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 3.2rem);
      font-weight: 700;
      line-height: 1.25;
      max-width: 720px;
      margin: 0 auto 1.2rem;
    }
    #hero h1 span { color: var(--glow); }
    #hero p {
      font-size: clamp(1rem, 2vw, 1.15rem);
      color: var(--muted);
      max-width: 540px;
      margin: 0 auto 2.5rem;
      line-height: 1.7;
    }
    .btn-primary {
      display: inline-block;
      padding: 0.9rem 2.4rem;
      background: var(--glow);
      color: #000;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.05em;
      text-decoration: none;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 0 20px rgba(78,205,196,0.4);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 35px rgba(78,205,196,0.65);
    }
    .btn-outline {
      display: inline-block;
      padding: 0.9rem 2.4rem;
      background: transparent;
      color: var(--glow);
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: 0.05em;
      text-decoration: none;
      border-radius: 4px;
      border: 1px solid var(--glow);
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
    }
    .btn-outline:hover { background: var(--glow); color: #000; }

    .scroll-hint {
      margin-top: 4rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      opacity: 0.4;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .scroll-hint::after {
      content: '';
      display: block;
      width: 1px;
      height: 50px;
      background: linear-gradient(to bottom, var(--glow), transparent);
      animation: drop 1.5s ease-in-out infinite;
    }
    @keyframes drop {
      0%,100% { transform: translateY(-8px); opacity: 0; }
      50% { opacity: 1; transform: translateY(0); }
    }

    /* ── SECTIONS SHARED ── */
    section { padding: 6rem 5%; }
    .section-label {
      display: inline-block;
      font-size: 0.72rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--glow);
      margin-bottom: 1rem;
      font-weight: 600;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1.2rem;
    }
    .section-desc {
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.8;
      max-width: 600px;
    }
    .divider {
      width: 60px;
      height: 2px;
      background: var(--glow);
      box-shadow: 0 0 8px var(--glow);
      margin: 1.5rem 0;
    }

    /* fade in animation */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-in.visible { opacity: 1; transform: translateY(0); }

    /* ── WIE ZIJN WIJ ── */
    #over {
      background: var(--bg2);
    }
    .over-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      max-width: 1100px;
      margin: 0 auto;
    }
    .over-img-wrap {
      position: relative;
    }
    .over-img-placeholder {
      background: linear-gradient(135deg, #111 0%, #1a2a2a 100%);
      border: 2px solid var(--border);
      box-shadow: 0 0 30px rgba(78,205,196,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 1rem;
      color: var(--muted);
      font-size: 0.85rem;
    }
    .over-img-placeholder svg { opacity: 0.3; }
    .over-img-glow {
      position: absolute;
      inset: -20px;
      background: radial-gradient(ellipse at center, rgba(78,205,196,0.08) 0%, transparent 70%);
      pointer-events: none;
      border-radius: 12px;
    }
    .over-corner {
      position: absolute;
      width: 60px;
      height: 60px;
      border-color: var(--glow);
      border-style: solid;
      box-shadow: 0 0 10px var(--glow);
    }
    .over-corner.tl { top: -10px; left: -10px; border-width: 2px 0 0 2px; }
    .over-corner.br { bottom: -10px; right: -10px; border-width: 0 2px 2px 0; }

    /* ── DIENSTEN ── */
    #diensten { background: var(--bg); }
    .diensten-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1100px;
      margin: 3rem auto 0;
    }
    .dienst-card {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 2.5rem;
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
      position: relative;
      overflow: hidden;
    }
    .dienst-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--glow);
      box-shadow: 0 0 12px var(--glow);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .dienst-card:hover {
      border-color: var(--glow);
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(78,205,196,0.1);
    }
    .dienst-card:hover::before { opacity: 1; }

    .dienst-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      margin-bottom: 0.8rem;
      margin-top: 0;
    }
    .dienst-card p {
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }
    .dienst-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin-bottom: 1.8rem;
    }
    .dienst-features li {
      font-size: 0.85rem;
      color: rgba(240,240,240,0.7);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .dienst-features li::before {
      content: '→';
      color: var(--glow);
      font-size: 0.8rem;
    }
    .badge {
      display: inline-block;
      padding: 0.3rem 0.8rem;
      border-radius: 20px;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .badge-glow { background: var(--glow-dim); color: var(--glow); border: 1px solid var(--border); }
    .badge-popular { background: var(--glow); color: #000; }

    /* ── PORTFOLIO ── */
    #portfolio {
      background: var(--bg2);
      text-align: center;
    }
    .portfolio-coming {
      max-width: 600px;
      margin: 3rem auto 0;
      padding: 4rem 2rem;
      border: 1px dashed var(--border);
      border-radius: 12px;
      background: var(--bg3);
    }
    .portfolio-coming .big-icon { font-size: 3rem; margin-bottom: 1.5rem; opacity: 0.5; }
    .portfolio-coming h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      margin-bottom: 0.8rem;
    }
    .portfolio-coming p {
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.7;
    }
    .portfolio-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 2rem;
    }
    .portfolio-dots span {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--border);
      animation: blink 1.5s infinite;
    }
    .portfolio-dots span:nth-child(2) { animation-delay: 0.3s; }
    .portfolio-dots span:nth-child(3) { animation-delay: 0.6s; }
    @keyframes blink {
      0%,100% { background: var(--border); }
      50% { background: var(--glow); box-shadow: 0 0 6px var(--glow); }
    }

    /* ── CONTACT ── */
    #contact { background: var(--bg); }
    .contact-wrap {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }
    .contact-info { padding-top: 1rem; }
    .contact-detail {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.2rem;
      color: rgba(240,240,240,0.75);
      font-size: 0.95rem;
    }
    .contact-detail-icon {
      width: 40px; height: 40px;
      background: var(--glow-dim);
      border: 1px solid var(--border);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .contact-detail a {
      color: var(--glow);
      text-decoration: none;
    }
    .contact-detail a:hover { text-decoration: underline; }
    .lang-toggle {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 2rem;
    }
    .lang-btn {
      padding: 0.35rem 0.9rem;
      border-radius: 20px;
      border: 1px solid var(--border);
      background: none;
      color: var(--muted);
      font-size: 0.8rem;
      cursor: pointer;
      transition: all 0.2s;
    }
    .lang-btn.active {
      background: var(--glow);
      color: #000;
      border-color: var(--glow);
      font-weight: 600;
    }

    /* ── FORMS ── */
    .form-group {
      margin-bottom: 1.2rem;
    }
    .form-group label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: rgba(240,240,240,0.6);
      margin-bottom: 0.5rem;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 0.8rem 1rem;
      color: var(--text);
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
      -webkit-appearance: none;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--glow);
      box-shadow: 0 0 0 3px rgba(78,205,196,0.1);
    }
    .form-group textarea { resize: vertical; min-height: 110px; }
    .form-group select option { background: #1a1a1a; }

    /* tabs for contact / wensen */
    .tab-nav {
      display: flex;
      border-bottom: 1px solid var(--border);
      margin-bottom: 2rem;
    }
    .tab-btn {
      padding: 0.75rem 1.2rem;
      background: none;
      border: none;
      color: var(--muted);
      font-size: 0.88rem;
      font-weight: 600;
      cursor: pointer;
      position: relative;
      transition: color 0.2s;
    }
    .tab-btn::after {
      content: '';
      position: absolute;
      bottom: -1px; left: 0; right: 0;
      height: 2px;
      background: var(--glow);
      box-shadow: 0 0 6px var(--glow);
      transform: scaleX(0);
      transition: transform 0.2s;
    }
    .tab-btn.active { color: var(--glow); }
    .tab-btn.active::after { transform: scaleX(1); }
    .tab-panel { display: none; }
    .tab-panel.active { display: block; }

    /* checkbox group */
    .checkbox-group {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.6rem;
    }
    .checkbox-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.85rem;
      color: rgba(240,240,240,0.8);
      cursor: pointer;
    }
    .checkbox-item input[type="checkbox"] {
      width: 16px; height: 16px;
      accent-color: var(--glow);
      cursor: pointer;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      padding: 3rem 5%;
      text-align: center;
    }
    .footer-logo { margin-bottom: 1.5rem; }
    .footer-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      margin-bottom: 1.5rem;
    }
    .footer-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--glow); }
    .footer-copy {
      color: rgba(136,136,136,0.5);
      font-size: 0.8rem;
    }

    /* ── MODAL ── */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.85);
      z-index: 2000;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }
    .modal-overlay.open { display: flex; }
    .modal {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 2.5rem;
      max-width: 550px;
      width: 100%;
      max-height: 85vh;
      overflow-y: auto;
      position: relative;
    }
    .modal-close {
      position: absolute;
      top: 1rem; right: 1rem;
      background: none;
      border: none;
      color: var(--muted);
      font-size: 1.4rem;
      cursor: pointer;
      transition: color 0.2s;
    }
    .modal-close:hover { color: var(--glow); }
    .modal h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      margin-bottom: 0.5rem;
    }
    .modal p.sub {
      color: var(--muted);
      font-size: 0.9rem;
      margin-bottom: 2rem;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .over-grid { grid-template-columns: 1fr; gap: 3rem; }
      .over-img-wrap { max-width: 380px; }
      .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
    }
    @media (max-width: 680px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      section { padding: 4.5rem 5%; }
      .checkbox-group { grid-template-columns: 1fr; }
    }
  