:root {
    --accent: #4da8d8;
    --accent-dim: #2a6a8a;
    --bg: #080a0c;
    --bg2: #0d1117;
    --bg3: #111820;
    --text: #e8edf2;
    --text-muted: #7a8a96;
    --border: rgba(77,168,216,0.15);
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 72px;
    background: linear-gradient(to bottom, rgba(8,10,12,0.95), transparent);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(77,168,216,0.08);
  }

  .nav-logo {
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(77,168,216,0.5));
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--accent); }

  .nav-cta {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent) !important;
    padding: 8px 22px;
    font-family: 'Oswald', sans-serif !important;
    font-size: 13px !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, color 0.2s !important;
    text-decoration: none;
  }

  .nav-cta:hover {
    background: var(--accent) !important;
    color: #080a0c !important;
  }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-watermark {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
    z-index: 0;
  }

  .hero-watermark img {
    height: 110vh;
    max-width: 65vw;
    object-fit: contain;
    opacity: 0.13;
    filter: blur(1px) brightness(0.75) saturate(0.6);
    transform: translateX(8%);
  }

  .hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 70% at 20% 50%, rgba(13,17,23,0.0) 0%, rgba(8,10,12,0.85) 70%),
      radial-gradient(ellipse 40% 60% at 75% 50%, rgba(77,168,216,0.04) 0%, transparent 70%);
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 120px 48px 80px;
  }

  .hero-text { }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
  }

  .hero-badge::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--accent);
  }

  h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(40px, 5.5vw, 76px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 24px;
    text-wrap: balance;
  }

  h1 span {
    color: var(--accent);
  }

  .hero-sub {
    font-size: 17px;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 460px;
    margin-bottom: 40px;
    line-height: 1.7;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #080a0c;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    transition: background 0.2s, transform 0.15s;
  }

  .btn-primary:hover {
    background: #6cc0e8;
    transform: translateY(-1px);
  }

  .btn-ghost {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text);
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    transition: border-color 0.2s, color 0.2s;
  }

  .btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
  }

  .hero-logo-col {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-logo-wrap {
    position: relative;
  }

  .hero-logo-wrap::before {
    content: '';
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at center, rgba(77,168,216,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .hero-logo-img {
    width: 100%;
    max-width: 420px;
    filter: drop-shadow(0 0 40px rgba(77,168,216,0.3)) drop-shadow(0 0 80px rgba(77,168,216,0.15));
    animation: floatLogo 6s ease-in-out infinite;
  }

  @keyframes floatLogo {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }

  /* ── STATS BAR ── */
  .stats-bar {
    background: var(--bg3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 48px;
  }

  .stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
  }

  .stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
  }

  .stat-label {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-family: 'Oswald', sans-serif;
  }

  /* ── SECTION COMMON ── */
  section {
    padding: 100px 48px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-full {
    max-width: 100%;
    padding: 100px 0;
    background: var(--bg2);
  }

  .section-full .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
  }

  .section-label {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--accent);
  }

  h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    line-height: 1.1;
  }

  .section-intro {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 560px;
    margin-bottom: 60px;
    line-height: 1.75;
  }

  /* ── SERVICES ── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    margin-bottom: 32px;
  }

  .service-card {
    background: var(--bg2);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: default;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 0;
    background: var(--accent);
    transition: height 0.4s ease;
  }

  .service-card:hover { background: var(--bg3); }
  .service-card:hover::before { height: 100%; }

  .service-number {
    font-family: 'Oswald', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: rgba(77,168,216,0.08);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.3s;
  }

  .service-card:hover .service-number {
    color: rgba(77,168,216,0.15);
  }

  .service-title {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    color: var(--text);
  }

  .service-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* ── ONS WERK ── */
  .werk-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 4px;
  }

  .werk-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .werk-item.werk-tall {
    grid-row: span 2;
  }

  .werk-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.9);
  }

  .werk-item:hover img {
    transform: scale(1.06);
    filter: brightness(0.65);
  }

  .werk-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    background: linear-gradient(to top, rgba(8,10,12,0.75) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .werk-item:hover .werk-overlay {
    opacity: 1;
  }

  .werk-label {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
  }

  @media (max-width: 900px) {
    .werk-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
    .werk-item.werk-tall { grid-row: span 1; }
  }

  /* ── SPEC TAGS ── */
  .spec-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
  }

  .spec-tags span {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid var(--border);
    padding: 6px 14px;
    background: rgba(77,168,216,0.04);
    transition: background 0.2s, border-color 0.2s;
  }

  .spec-tags span:hover {
    background: rgba(77,168,216,0.1);
    border-color: var(--accent);
  }

  /* ── ABOUT ── */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-img {
    position: relative;
  }

  .about-img-inner {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--bg3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }

  .about-img-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.9;
    filter: brightness(0.85) contrast(1.1);
  }

  .about-img-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,10,12,0.6) 0%, transparent 50%);
  }

  .about-accent-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--accent);
    opacity: 0.4;
    z-index: -1;
  }

  .about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
  }

  .about-text p strong {
    color: var(--text);
  }

  .about-list {
    list-style: none;
    margin: 28px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-muted);
  }

  .about-list li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--accent);
    flex-shrink: 0;
    transform: rotate(45deg);
  }

  /* ── CTA STRIP ── */
  .cta-strip {
    background: linear-gradient(135deg, var(--bg3) 0%, #0a1520 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('uploads/wazjge versje logo.jpg');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.03;
    filter: blur(1px);
  }

  .cta-strip .inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
  }

  .cta-strip h2 {
    margin-bottom: 16px;
  }

  .cta-strip p {
    color: var(--text-muted);
    margin-bottom: 36px;
    font-size: 16px;
    line-height: 1.7;
  }

  /* ── CONTACT ── */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .contact-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 28px;
    color: var(--text-muted);
  }

  .contact-detail {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
  }

  .contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }

  .contact-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    font-size: 14px;
  }

  .contact-item-text {
    font-size: 15px;
    line-height: 1.5;
  }

  .contact-item-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    font-family: 'Oswald', sans-serif;
    margin-bottom: 2px;
  }

  /* ── FORM ── */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .form-field label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-family: 'Oswald', sans-serif;
  }

  .form-field input,
  .form-field textarea,
  .form-field select {
    background: var(--bg3);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    appearance: none;
  }

  .form-field input:focus,
  .form-field textarea:focus,
  .form-field select:focus {
    border-color: var(--accent);
  }

  .form-field textarea {
    resize: vertical;
    min-height: 120px;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 40px 48px;
    text-align: center;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-logo { height: 40px; opacity: 0.7; filter: drop-shadow(0 0 6px rgba(77,168,216,0.3)); }

  .footer-copy {
    font-size: 13px;
    color: var(--text-muted);
  }

  .footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
  }

  .footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--accent); }

  /* ── DIVIDER LINE ── */
  .divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin: 0;
    border: none;
  }

  /* ── TWEAKS PANEL ── */
  #tweaks-panel {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 280px;
    background: #0d1117;
    border: 1px solid var(--border);
    z-index: 999;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  }

  .tweaks-header {
    padding: 14px 16px;
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
  }

  .tweaks-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .tweak-row label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
  }

  .tweak-row input[type="color"] {
    width: 100%;
    height: 32px;
    background: none;
    border: 1px solid var(--border);
    cursor: pointer;
  }

  .tweak-row input[type="text"] {
    width: 100%;
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 13px;
    padding: 7px 10px;
    outline: none;
  }

  .tweak-row input[type="checkbox"] {
    accent-color: var(--accent);
    margin-right: 6px;
  }

  @media (max-width: 900px) {
    nav { padding: 0 20px; }
    nav .nav-links { display: none; }
    .hero-content { grid-template-columns: 1fr; gap: 40px; padding: 100px 20px 60px; }
    .hero-logo-col { display: none; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
    section { padding: 60px 20px; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: 1fr; }
    .cta-strip { padding: 60px 20px; }
    footer { padding: 32px 20px; }
    .footer-inner { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
  }