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

    :root {
      --red: #e60012;
      --red-soft: #ff2b3a;
      --bg: #0c0c0f;
      --bg-2: #121218;
      --card: #17171e;
      --card-2: #1c1c24;
      --border: #26262f;
      --border-hi: #34343f;
      --text: #ececf1;
      --muted: #9b9ba6;
      --radius: 14px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    ::selection { background: rgba(230,0,18,.35); }

    /* ---------- Nav ---------- */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(12,12,15,.78);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }

    .nav-inner {
      max-width: 68rem;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 1.25rem;
      flex-wrap: wrap;
    }

    .logo {
      color: #fff;
      font-size: 1.3rem;
      font-weight: 800;
      letter-spacing: -.03em;
      padding: 1rem 0;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: .55rem;
    }

    .logo svg { width: 1.5rem; height: 1.5rem; flex: none; }
    .logo span { color: var(--red-soft); }

    .tabs { display: flex; gap: .25rem; flex-wrap: wrap; }

    .tabs button {
      background: none;
      border: none;
      color: var(--muted);
      font-family: inherit;
      font-size: .93rem;
      font-weight: 600;
      padding: 1.15rem .95rem;
      cursor: pointer;
      position: relative;
      transition: color .18s;
    }

    .tabs button::after {
      content: "";
      position: absolute;
      left: .95rem; right: .95rem; bottom: 0;
      height: 2px;
      background: var(--red);
      border-radius: 2px;
      transform: scaleX(0);
      transition: transform .22s ease;
    }

    .tabs button:hover { color: #fff; }
    .tabs button.active { color: #fff; }
    .tabs button.active::after { transform: scaleX(1); }

    /* ---------- Panels ---------- */
    .panel { display: none; }
    .panel.active { display: block; animation: fade .3s ease; }
    @keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

    /* ---------- Hero ---------- */
    .hero {
      position: relative;
      text-align: center;
      padding: 6.5rem 1.5rem 6rem;
      overflow: hidden;
      border-bottom: 1px solid var(--border);
      background:
        radial-gradient(ellipse 60% 50% at 50% -10%, rgba(230,0,18,.16), transparent 70%),
        radial-gradient(ellipse 40% 35% at 85% 110%, rgba(230,0,18,.07), transparent 70%),
        var(--bg-2);
    }

    .hero::before {
      content: "";
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: radial-gradient(ellipse 70% 65% at 50% 40%, #000 30%, transparent 75%);
      -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 40%, #000 30%, transparent 75%);
      pointer-events: none;
    }

    .hero > * { position: relative; }

    /* ---------- Hero logo: vette intro + 3D tilt ---------- */
    .logo-stage {
      perspective: 900px;
      width: 190px;
      height: 190px;
      margin: 0 auto 1.25rem;
    }

    .hero-logo {
      width: 100%;
      height: 100%;
      display: block;
      transform-style: preserve-3d;
      filter: drop-shadow(0 10px 28px rgba(230,0,18,.35));
      animation: logo-intro 1.9s cubic-bezier(.2, 1.1, .3, 1) both;
      transition: transform .12s ease-out;
      will-change: transform, filter;
    }

    @keyframes logo-intro {
      0% {
        opacity: 0;
        transform: scale(3.4) rotateY(540deg) translateZ(300px);
        filter: blur(14px) drop-shadow(0 0 0 rgba(230,0,18,0));
      }
      55% {
        opacity: 1;
        transform: scale(.92) rotateY(0deg) translateZ(0);
        filter: blur(0) drop-shadow(0 0 70px rgba(230,0,18,.9));
      }
      75% { transform: scale(1.06); filter: drop-shadow(0 0 40px rgba(230,0,18,.6)); }
      100% { transform: scale(1); filter: drop-shadow(0 10px 28px rgba(230,0,18,.35)); }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-logo { animation: none; }
    }

    .hero .kicker {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--red-soft);
      background: rgba(230,0,18,.09);
      border: 1px solid rgba(230,0,18,.28);
      padding: .4rem 1rem;
      border-radius: 999px;
      margin-bottom: 1.75rem;
    }

    .hero .kicker::before {
      content: "";
      width: .5rem; height: .5rem;
      background: var(--red-soft);
      border-radius: 50%;
      box-shadow: 0 0 8px var(--red-soft);
    }

    .hero h1 {
      font-size: clamp(2.2rem, 5.5vw, 3.6rem);
      font-weight: 800;
      letter-spacing: -.035em;
      line-height: 1.12;
      margin-bottom: 1.25rem;
    }

    .hero h1 em {
      font-style: normal;
      background: linear-gradient(100deg, var(--red-soft), #ff7a5c);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero p {
      font-size: 1.12rem;
      color: var(--muted);
      max-width: 37rem;
      margin: 0 auto 2.5rem;
    }

    .cta-row { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

    .btn {
      display: inline-block;
      padding: .9rem 1.9rem;
      border-radius: 10px;
      font-family: inherit;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: transform .16s, box-shadow .16s, background .16s, border-color .16s;
    }

    .btn-primary {
      background: var(--red);
      color: #fff;
      box-shadow: 0 6px 26px rgba(230,0,18,.35);
    }
    .btn-primary:hover { background: var(--red-soft); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(230,0,18,.45); }

    .btn-ghost {
      background: transparent;
      color: var(--text);
      border: 1px solid var(--border-hi);
    }
    .btn-ghost:hover { border-color: #4a4a58; background: rgba(255,255,255,.04); transform: translateY(-2px); }

    /* ---------- USP strip ---------- */
    .usp-inner {
      max-width: 68rem;
      margin: 0 auto;
      padding: 2.5rem 1.5rem;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
      gap: 1rem;
    }

    .usp {
      display: flex;
      align-items: flex-start;
      gap: .8rem;
      padding: 1.1rem 1.2rem;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
    }

    .usp .icon {
      flex: none;
      width: 2.3rem; height: 2.3rem;
      display: grid; place-items: center;
      background: rgba(230,0,18,.1);
      border: 1px solid rgba(230,0,18,.25);
      border-radius: 9px;
      font-size: 1.05rem;
    }

    .usp h4 { font-size: .95rem; font-weight: 700; }
    .usp p { color: var(--muted); font-size: .84rem; line-height: 1.5; }

    /* ---------- Sections ---------- */
    section {
      max-width: 68rem;
      margin: 0 auto;
      padding: 4rem 1.5rem;
    }

    .section-kicker {
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--red-soft);
      margin-bottom: .6rem;
    }

    .section-title {
      font-size: clamp(1.6rem, 3vw, 2.1rem);
      font-weight: 800;
      letter-spacing: -.03em;
      margin-bottom: .6rem;
    }

    .section-sub { color: var(--muted); max-width: 44rem; margin-bottom: 2.25rem; }

    /* ---------- Cards ---------- */
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 1.1rem;
    }

    .card {
      background: linear-gradient(180deg, var(--card-2), var(--card));
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.7rem 1.5rem;
      transition: border-color .2s, transform .2s;
    }

    .card:hover { border-color: var(--border-hi); transform: translateY(-3px); }

    .card .num {
      display: inline-grid;
      place-items: center;
      width: 2.2rem; height: 2.2rem;
      background: rgba(230,0,18,.12);
      border: 1px solid rgba(230,0,18,.3);
      color: var(--red-soft);
      border-radius: 9px;
      font-weight: 800;
      margin-bottom: .95rem;
    }

    .card .emoji { font-size: 1.5rem; display: block; margin-bottom: .8rem; }
    .card h3 { font-size: 1.06rem; font-weight: 700; margin-bottom: .45rem; }
    .card p { color: var(--muted); font-size: .93rem; }
    .card strong { color: var(--text); }

    /* ---------- Notes ---------- */
    .info-note {
      background: var(--card);
      border: 1px solid var(--border);
      border-left: 3px solid var(--red);
      border-radius: 10px;
      padding: 1.05rem 1.35rem;
      margin-top: 1.6rem;
      font-size: .95rem;
      color: var(--muted);
    }
    .info-note strong { color: var(--text); }
    .info-note a { color: var(--red-soft); text-decoration: none; font-weight: 600; }
    .info-note a:hover { text-decoration: underline; }

    /* ---------- Pricing ---------- */
    .price-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.1rem;
      align-items: start;
    }
    @media (max-width: 1040px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px)  { .price-grid { grid-template-columns: 1fr; } }

    .price-card {
      background: linear-gradient(180deg, var(--card-2), var(--card));
      border: 1px solid rgba(230,0,18,.55);
      border-radius: var(--radius);
      padding: 2rem 1.6rem 1.7rem;
      position: relative;
      box-shadow: 0 0 0 1px rgba(230,0,18,.25), 0 14px 44px rgba(230,0,18,.12);
      transition: border-color .2s, transform .2s, box-shadow .2s;
    }

    .price-card:hover { transform: translateY(-4px); border-color: var(--red); }

    .price-card .badge {
      position: absolute;
      top: -.75rem;
      left: 1.4rem;
      background: var(--red);
      color: #fff;
      font-size: .68rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: .3rem .8rem;
      border-radius: 999px;
      box-shadow: 0 4px 14px rgba(230,0,18,.4);
    }

    .price-card h3 { font-size: 1.08rem; font-weight: 700; }
    .price-card .model-sub { color: var(--muted); font-size: .85rem; margin-bottom: 1.2rem; }

    .price-card .price {
      font-size: 2.7rem;
      font-weight: 800;
      letter-spacing: -.04em;
      line-height: 1;
      margin-bottom: 1.3rem;
    }
    .price-card .price small { font-size: .85rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }

    .price-card ul { list-style: none; font-size: .9rem; }
    .price-card ul li {
      padding: .5rem 0;
      border-top: 1px solid var(--border);
      color: var(--muted);
      display: flex;
      gap: .55rem;
      align-items: baseline;
    }
    .price-card ul li::before {
      content: "✓";
      color: var(--red-soft);
      font-weight: 800;
      flex: none;
    }

    /* ---------- SD table ---------- */
    .sd-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      margin-top: 1.1rem;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .sd-table th, .sd-table td { padding: .95rem 1.35rem; text-align: left; }
    .sd-table th {
      background: var(--card-2);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--muted);
      border-bottom: 1px solid var(--border);
    }
    .sd-table td { border-bottom: 1px solid var(--border); color: var(--muted); }
    .sd-table tr:last-child td { border-bottom: none; }
    .sd-table td:last-child { font-weight: 800; color: var(--text); }

    /* ---------- Contact ---------- */
    .contact-wrap {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 1.4rem;
      align-items: start;
    }
    @media (max-width: 720px) { .contact-wrap { grid-template-columns: 1fr; } }

    form {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.9rem 1.7rem;
    }

    .field { margin-bottom: 1.1rem; }

    label {
      display: block;
      font-weight: 600;
      font-size: .88rem;
      margin-bottom: .4rem;
    }

    input, select, textarea {
      width: 100%;
      padding: .8rem .95rem;
      font-size: .98rem;
      font-family: inherit;
      color: var(--text);
      background: var(--bg-2);
      border: 1px solid var(--border-hi);
      border-radius: 9px;
      transition: border-color .15s, box-shadow .15s;
    }

    input::placeholder, textarea::placeholder { color: #5d5d69; }

    input:focus, select:focus, textarea:focus {
      outline: none;
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(230,0,18,.18);
    }

    select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239b9ba6' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }

    textarea { min-height: 8rem; resize: vertical; }

    .contact-side {
      background: linear-gradient(160deg, var(--card-2), var(--card));
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.9rem 1.7rem;
    }

    .contact-side h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: .6rem; }
    .contact-side p { color: var(--muted); font-size: .93rem; margin-bottom: 1.4rem; }

    .contact-side .phone {
      font-size: 1.18rem;
      font-weight: 800;
      letter-spacing: .01em;
      margin-bottom: 1.3rem;
    }

    .whatsapp-btn {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      background: #1fb355;
      color: #fff;
      font-weight: 700;
      font-size: .98rem;
      padding: .85rem 1.6rem;
      border-radius: 10px;
      text-decoration: none;
      transition: transform .16s, filter .16s, box-shadow .16s;
      box-shadow: 0 6px 22px rgba(31,179,85,.25);
    }
    .whatsapp-btn:hover { transform: translateY(-2px); filter: brightness(1.08); }

    .whatsapp-btn svg { width: 1.15rem; height: 1.15rem; }

    /* ---------- Reveal on scroll ---------- */
    .reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
    .reveal.in { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
      .panel.active { animation: none; }
    }

    footer {
      border-top: 1px solid var(--border);
      color: var(--muted);
      text-align: center;
      padding: 2.5rem 1.5rem;
      font-size: .88rem;
    }
    footer .logo { justify-content: center; font-size: 1.05rem; padding: 0 0 .35rem; }

    /* ---------- Taal-toggle ---------- */
    .lang-toggle {
      display: inline-flex;
      align-items: center;
      align-self: center;
      margin-left: .5rem;
      background: var(--card);
      border: 1px solid var(--border-hi);
      border-radius: 999px;
      padding: 3px;
      font-size: .82rem;
      font-weight: 700;
    }
    .lang-toggle a, .lang-toggle span {
      padding: .3rem .7rem;
      border-radius: 999px;
      text-decoration: none;
      line-height: 1;
    }
    .lang-toggle span.active { background: var(--red); color: #fff; }
    .lang-toggle a { color: var(--muted); transition: color .15s; }
    .lang-toggle a:hover { color: #fff; }


    /* ---------- Hero Google rating ---------- */
    .hero-rating {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      margin-top: 1.4rem;
      padding: .5rem 1rem;
      border: 1px solid var(--border-hi);
      border-radius: 999px;
      background: rgba(23,23,30,.7);
      color: var(--text);
      text-decoration: none;
      font-size: .92rem;
      transition: border-color .2s;
    }
    .hero-rating:hover { border-color: #fbbc04; }
    .hero-rating .stars { color: #fbbc04; letter-spacing: .12em; }
    .hero-rating .hr-sub { color: var(--muted); }

    /* 4-item grids: nooit 3+1 — 4 breed, anders 2x2, anders 1 kolom */
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
    @media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }
    .usp-inner { grid-template-columns: repeat(4, 1fr); }
    @media (max-width: 980px) { .usp-inner { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px) { .usp-inner { grid-template-columns: 1fr; } }
