    :root {
      --electric: #F5C400;
      --electric-dark: #C49A00;
      --electric-glow: rgba(245, 196, 0, 0.18);
      --electric-subtle: rgba(245, 196, 0, 0.08);
      --ink: #0A0A0A;
      --ink-2: #111111;
      --smoke: #161616;
      --smoke-2: #1E1E1E;
      --border: rgba(255,255,255,0.08);
      --border-strong: rgba(255,255,255,0.14);
      --light: #F2F0EB;
      --muted: #888;
      --muted-2: #bbb;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--ink);
      color: var(--light);
      width: 100%;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ─── KEYFRAME ANIMATIONS ─────────────────────────────── */

    @keyframes electricPulse {
      0%, 100% {
        box-shadow: 0 0 6px rgba(245,196,0,0.5),
                    0 0 14px rgba(245,196,0,0.25);
      }
      50% {
        box-shadow: 0 0 14px rgba(245,196,0,1),
                    0 0 30px rgba(245,196,0,0.7),
                    0 0 50px rgba(245,196,0,0.35);
      }
    }

    @keyframes dotPulse {
      0%, 100% {
        box-shadow: 0 0 6px rgba(245,196,0,0.7),
                    0 0 14px rgba(245,196,0,0.4);
        transform: scale(1);
      }
      50% {
        box-shadow: 0 0 12px rgba(245,196,0,1),
                    0 0 28px rgba(245,196,0,0.8),
                    0 0 50px rgba(245,196,0,0.45);
        transform: scale(1.25);
      }
    }

    @keyframes boltFlicker {
      0%, 89%, 91%, 94%, 100% { opacity: 0.13; }
      90%, 93% { opacity: 0.22; }
      92% { opacity: 0.07; }
    }

    @keyframes currentFlow {
      0% { stroke-dashoffset: 800; opacity: 0; }
      8% { opacity: 1; }
      85% { opacity: 1; }
      100% { stroke-dashoffset: 0; opacity: 0; }
    }

    @keyframes currentFlow2 {
      0% { stroke-dashoffset: 600; opacity: 0; }
      12% { opacity: 0.8; }
      80% { opacity: 0.8; }
      100% { stroke-dashoffset: 0; opacity: 0; }
    }

    @keyframes arcGlow {
      0%, 100% { filter: drop-shadow(0 0 4px rgba(245,196,0,0.4)); }
      50% { filter: drop-shadow(0 0 12px rgba(245,196,0,0.9)) drop-shadow(0 0 24px rgba(245,196,0,0.5)); }
    }

    @keyframes scanMove {
      0% { transform: translateY(-100%); opacity: 0; }
      5% { opacity: 1; }
      95% { opacity: 1; }
      100% { transform: translateY(560px); opacity: 0; }
    }

    @keyframes sparkFloat {
      0% { transform: translateY(0) scale(1); opacity: 1; }
      100% { transform: translateY(-40px) scale(0); opacity: 0; }
    }

    @keyframes textArc {
      0%, 100% {
        text-shadow: 0 0 16px rgba(245,196,0,0.4),
                     0 0 40px rgba(245,196,0,0.15);
      }
      50% {
        text-shadow: 0 0 24px rgba(245,196,0,0.7),
                     0 0 60px rgba(245,196,0,0.35),
                     0 0 100px rgba(245,196,0,0.15);
      }
    }

    @keyframes borderFlow {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    @keyframes iconZap {
      0%, 100% {
        background: var(--electric-subtle);
        border-color: var(--border-strong);
        color: var(--electric);
      }
      50% {
        background: rgba(245,196,0,0.18);
        border-color: rgba(245,196,0,0.5);
        box-shadow: 0 0 12px rgba(245,196,0,0.4),
                    inset 0 0 8px rgba(245,196,0,0.1);
      }
    }

    @keyframes voltCount {
      0% { opacity: 0.4; transform: translateY(4px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* ─── NAV ──────────────────────────────────────────────── */
    nav {
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.25rem 3rem;
      border-bottom: 1px solid var(--border);
      position: sticky; top: 0;
      background: rgba(10,10,10,0.94);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: 100;
    }
    .logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.65rem; letter-spacing: 0.06em;
      color: var(--light); text-decoration: none;
      position: relative;
    }
    .logo span {
      color: var(--electric);
      text-shadow: 0 0 12px rgba(245,196,0,0.6),
                   0 0 28px rgba(245,196,0,0.3);
      animation: textArc 3s ease-in-out infinite;
    }
    nav ul { display: flex; list-style: none; gap: 2.5rem; }
    nav ul li a {
      font-size: 0.775rem; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--muted); text-decoration: none;
      transition: color 0.2s;
      position: relative;
    }
    nav ul li a::after {
      content: '';
      position: absolute; bottom: -3px; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--electric), transparent);
      background-size: 200% 100%;
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }
    nav ul li a:hover { color: var(--light); }
    nav ul li a:hover::after { transform: scaleX(1); }
    .nav-cta {
      font-size: 0.72rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      background: var(--electric); color: var(--ink);
      border: none; padding: 0.6rem 1.4rem;
      border-radius: 3px; cursor: pointer;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      text-decoration: none;
      box-shadow: 0 0 0 rgba(245,196,0,0);
    }
    .nav-cta:hover {
      background: #ffd000;
      transform: translateY(-1px);
      box-shadow: 0 4px 20px rgba(245,196,0,0.35),
                  0 0 40px rgba(245,196,0,0.15);
    }

    /* ─── TRUST BAR ────────────────────────────────────────── */
    .trust-bar {
      display: flex; align-items: center; gap: 2rem;
      padding: 1rem 3rem; border-bottom: 1px solid var(--border);
      background: var(--ink-2); overflow: hidden;
    }
    .trust-label {
      font-size: 0.66rem; letter-spacing: 0.15em;
      text-transform: uppercase; color: #444; white-space: nowrap;
    }
    .trust-items { display: flex; gap: 2.5rem; align-items: center; }
    .trust-item {
      font-size: 0.76rem; color: #555;
      display: flex; align-items: center; gap: 0.5rem; white-space: nowrap;
    }
    .trust-item i { color: #444; font-size: 14px; }

    /* ─── GARANTIE-LEISTE ──────────────────────────────────── */
    .guarantee-bar {
      border-bottom: 1px solid var(--border);
      display: grid; grid-template-columns: 1fr 1fr 1fr;
      gap: 1px; background: var(--border);
    }
    .guarantee-item {
      background: var(--smoke); padding: 2rem 2.5rem;
      display: flex; align-items: flex-start; gap: 1.25rem;
      transition: background 0.25s;
      position: relative; overflow: hidden;
    }
    .guarantee-item::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(245,196,0,0.4), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .guarantee-item:hover { background: var(--smoke-2); }
    .guarantee-item:hover::after { opacity: 1; }
    .guarantee-icon {
      width: 40px; height: 40px; flex-shrink: 0;
      border: 1px solid var(--border-strong);
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      color: var(--electric); font-size: 18px;
      background: var(--electric-subtle);
      margin-top: 2px;
      animation: iconZap 3s ease-in-out infinite;
    }
    .guarantee-item:nth-child(2) .guarantee-icon { animation-delay: 1s; }
    .guarantee-item:nth-child(3) .guarantee-icon { animation-delay: 2s; }
    .guarantee-title { font-weight: 600; font-size: 0.92rem; color: var(--light); margin-bottom: 0.4rem; }
    .guarantee-desc { font-size: 0.8rem; font-weight: 300; color: var(--muted); line-height: 1.65; }
    .guarantee-desc strong { color: var(--electric); font-weight: 500; }

    /* ─── HERO ─────────────────────────────────────────────── */
    .hero {
      display: grid; grid-template-columns: 1fr 1fr;
      min-height: 540px; border-bottom: 1px solid var(--border);
    }
    .hero-left {
      padding: 5rem 3rem; display: flex; flex-direction: column;
      justify-content: center; border-right: 1px solid var(--border);
      position: relative; overflow: hidden;
    }
    /* subtle lightning watermark behind hero text */
    .hero-left::before {
      content: '';
      position: absolute;
      right: -60px; top: 50%; transform: translateY(-50%);
      width: 280px; height: 460px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 180'%3E%3Cpolygon points='65,0 20,90 52,90 35,180 85,80 50,80 75,0' fill='%23F5C400'/%3E%3C/svg%3E") center/contain no-repeat;
      opacity: 0.022;
      pointer-events: none;
    }
    .hero-tag {
      font-size: 0.68rem; font-weight: 600;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--electric); margin-bottom: 1.75rem;
      display: flex; align-items: center; gap: 0.75rem;
    }
    .hero-tag::before {
      content: ''; display: inline-block;
      width: 28px; height: 1.5px;
      background: linear-gradient(90deg, var(--electric), #ffd000);
      box-shadow: 0 0 6px rgba(245,196,0,0.6);
    }
    h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3.2rem, 5.5vw, 5rem);
      line-height: 0.96; letter-spacing: 0.02em;
      margin-bottom: 1.75rem; color: var(--light);
    }
    h1 em {
      font-style: normal; color: var(--electric); display: block;
      animation: textArc 2.5s ease-in-out infinite;
    }
    .hero-sub {
      font-size: 0.975rem; font-weight: 300;
      color: var(--muted-2); line-height: 1.75;
      max-width: 440px; margin-bottom: 2.5rem;
    }
    .hero-btns { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

    /* Electric primary button */
    .btn-primary {
      background: var(--electric); color: var(--ink);
      font-size: 0.76rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 0.85rem 2rem; border: none; border-radius: 3px;
      cursor: pointer; transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      text-decoration: none; display: inline-block;
      position: relative; overflow: hidden;
    }
    .btn-primary::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
      transform: translateX(-100%);
      transition: transform 0.4s ease;
    }
    .btn-primary:hover {
      background: #ffd000;
      transform: translateY(-1px);
      box-shadow: 0 6px 24px rgba(245,196,0,0.45),
                  0 0 50px rgba(245,196,0,0.2);
    }
    .btn-primary:hover::before { transform: translateX(100%); }

    /* Electric spark rings on btn-primary */
    .btn-primary::after {
      content: '';
      position: absolute; inset: -2px;
      border-radius: 5px;
      background: linear-gradient(90deg, #F5C400, #ffd000, #F5C400);
      background-size: 200% 100%;
      opacity: 0;
      z-index: -1;
      transition: opacity 0.2s;
      animation: borderFlow 1.5s linear infinite;
    }
    .btn-primary:hover::after { opacity: 1; }

    .btn-ghost {
      background: transparent; color: var(--muted-2);
      font-size: 0.76rem; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase;
      padding: 0.85rem 1.75rem;
      border: 1px solid var(--border-strong);
      border-radius: 3px; cursor: pointer;
      transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
      text-decoration: none; display: inline-block;
    }
    .btn-ghost:hover {
      border-color: var(--electric); color: var(--electric);
      box-shadow: 0 0 16px rgba(245,196,0,0.15),
                  inset 0 0 16px rgba(245,196,0,0.05);
    }

    /* ─── HERO RIGHT PANEL ─────────────────────────────────── */
    .hero-right {
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 3rem; background: var(--smoke); position: relative;
      overflow: hidden;
    }
    /* radial glow atmosphere */
    .hero-right::before {
      content: ''; position: absolute;
      width: 380px; height: 380px;
      background: radial-gradient(circle,
        rgba(245,196,0,0.10) 0%,
        rgba(245,196,0,0.04) 40%,
        transparent 70%);
      top: 8%; left: 50%; transform: translateX(-50%);
      pointer-events: none;
      animation: electricPulse 3s ease-in-out infinite;
    }

    /* Animated circuit board */
    .circuit-bg {
      position: absolute; inset: 0; width: 100%; height: 100%;
    }
    .circuit-bg .c-static {
      stroke: rgba(255,255,255,0.06);
      stroke-width: 1.2;
      fill: none;
    }
    .circuit-bg .c-flow {
      fill: none;
      stroke: var(--electric);
      stroke-width: 1.5;
      stroke-dasharray: 800;
      stroke-dashoffset: 800;
      stroke-linecap: round;
    }
    .circuit-bg .c-flow-1 { animation: currentFlow 4s ease-in-out 0.2s infinite; }
    .circuit-bg .c-flow-2 { animation: currentFlow 4.5s ease-in-out 1.4s infinite; stroke-dasharray: 600; stroke-dashoffset: 600; }
    .circuit-bg .c-flow-3 { animation: currentFlow2 3.8s ease-in-out 2.6s infinite; stroke-dasharray: 500; stroke-dashoffset: 500; }
    .circuit-bg .c-node { fill: var(--electric); animation: electricPulse 2.5s ease-in-out infinite; }
    .circuit-bg .c-node-2 { animation-delay: 1.2s; }
    .circuit-bg .c-node-3 { animation-delay: 2.1s; }

    /* The big lightning bolt in hero right */
    .hero-bolt-decoration {
      position: absolute;
      top: 50%; left: 50%; transform: translate(-50%, -55%);
      width: 180px; height: 300px;
      pointer-events: none;
      z-index: 0;
      animation: boltFlicker 6s ease-in-out infinite, arcGlow 3s ease-in-out infinite;
    }

    /* Scan line */
    .hero-scanline {
      position: absolute; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg,
        transparent,
        rgba(245,196,0,0.12) 20%,
        rgba(245,196,0,0.35) 50%,
        rgba(245,196,0,0.12) 80%,
        transparent);
      pointer-events: none; z-index: 1;
      animation: scanMove 5s ease-in-out 1s infinite;
    }

    .hero-stats {
      position: relative; z-index: 2;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1px; background: var(--border);
      border: 1px solid var(--border);
    }
    /* Electric border effect on stats grid */
    .hero-stats::before {
      content: '';
      position: absolute; inset: -1px; z-index: -1;
      border-radius: 2px;
      background: linear-gradient(135deg,
        rgba(245,196,0,0.25),
        transparent 40%,
        transparent 60%,
        rgba(245,196,0,0.15));
      background-size: 200% 200%;
      animation: borderFlow 4s linear infinite;
    }
    .stat-box {
      background: rgba(22,22,22,0.9); padding: 1.75rem;
      transition: background 0.2s;
      position: relative;
    }
    .stat-box:hover { background: var(--smoke-2); }
    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.8rem; line-height: 1;
      color: var(--electric); margin-bottom: 0.4rem;
      text-shadow: 0 0 16px rgba(245,196,0,0.5),
                   0 0 36px rgba(245,196,0,0.25);
      animation: textArc 2.8s ease-in-out infinite;
    }
    .stat-box:nth-child(2) .stat-num { animation-delay: 0.7s; }
    .stat-box:nth-child(3) .stat-num { animation-delay: 1.4s; }
    .stat-box:nth-child(4) .stat-num { animation-delay: 2.1s; }
    .stat-label { font-size: 0.73rem; color: var(--muted); letter-spacing: 0.04em; line-height: 1.4; }

    .region-badge {
      position: relative; z-index: 2; margin-top: 1.5rem;
      display: inline-flex; align-items: center; gap: 0.6rem;
      font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--muted); border: 1px solid var(--border);
      padding: 0.55rem 0.875rem; border-radius: 3px;
      background: rgba(255,255,255,0.02);
    }
    .region-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--electric); flex-shrink: 0;
      animation: dotPulse 1.8s ease-in-out infinite;
    }

    /* ─── SECTIONS ─────────────────────────────────────────── */
    .section { padding: 5rem 3rem; border-bottom: 1px solid var(--border); }
    .section-header {
      display: flex; align-items: flex-end;
      justify-content: space-between; margin-bottom: 3rem;
    }
    .section-tag {
      font-size: 0.66rem; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--electric); margin-bottom: 0.875rem;
      display: flex; align-items: center; gap: 0.6rem;
    }
    .section-tag::before {
      content: ''; display: inline-block;
      width: 18px; height: 1px;
      background: var(--electric);
      box-shadow: 0 0 6px rgba(245,196,0,0.7);
    }
    h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      letter-spacing: 0.02em; line-height: 1;
      color: var(--light);
    }

    /* ─── SERVICES ─────────────────────────────────────────── */
    .services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1px; background: var(--border);
      border: 1px solid var(--border);
    }
    .service-card {
      background: var(--ink-2); padding: 2.25rem;
      transition: background 0.25s; position: relative; overflow: hidden;
    }
    .service-card::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--electric), transparent);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.35s ease;
      box-shadow: 0 0 8px rgba(245,196,0,0.6);
    }
    /* Electric arc in top-right corner */
    .service-card::before {
      content: '';
      position: absolute; top: 0; right: 0;
      width: 60px; height: 60px;
      background: radial-gradient(circle at top right, rgba(245,196,0,0.06) 0%, transparent 70%);
      opacity: 0; transition: opacity 0.3s;
    }
    .service-card:hover { background: var(--smoke); }
    .service-card:hover::after { transform: scaleX(1); }
    .service-card:hover::before { opacity: 1; }
    .service-icon {
      width: 44px; height: 44px;
      border: 1px solid var(--border-strong);
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.75rem; color: var(--electric); font-size: 20px;
      background: var(--electric-subtle);
      transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
    }
    .service-card:hover .service-icon {
      background: var(--electric-glow);
      border-color: rgba(245,196,0,0.4);
      box-shadow: 0 0 14px rgba(245,196,0,0.35),
                  inset 0 0 8px rgba(245,196,0,0.1);
    }
    .service-title { font-weight: 600; font-size: 0.975rem; margin-bottom: 0.75rem; color: var(--light); }
    .service-desc { font-size: 0.82rem; font-weight: 300; color: var(--muted); line-height: 1.75; }
    .service-num {
      font-family: 'Bebas Neue', sans-serif; font-size: 0.85rem;
      color: #3a3a3a; letter-spacing: 0.12em; margin-bottom: 1.25rem;
    }

    /* ─── WHY ──────────────────────────────────────────────── */
    .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .why-text h2 { margin-bottom: 1.5rem; }
    .why-text p { font-size: 0.9rem; font-weight: 300; color: var(--muted-2); line-height: 1.85; margin-bottom: 1.75rem; }
    .check-list { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; }
    .check-list li {
      display: flex; align-items: flex-start; gap: 0.875rem;
      font-size: 0.875rem; color: #d8d6d1; font-weight: 300;
      padding-bottom: 0.875rem;
      border-bottom: 1px solid var(--border);
    }
    .check-list li:last-child { border-bottom: none; padding-bottom: 0; }
    .check-icon {
      width: 18px; height: 18px; min-width: 18px;
      background: var(--electric-subtle);
      border: 1px solid rgba(245,196,0,0.3);
      border-radius: 3px; margin-top: 1px;
      display: flex; align-items: center; justify-content: center;
      color: var(--electric); font-size: 11px;
      transition: box-shadow 0.2s, background 0.2s;
    }
    .check-list li:hover .check-icon {
      box-shadow: 0 0 10px rgba(245,196,0,0.4);
      background: rgba(245,196,0,0.12);
    }

    /* ─── TESTIMONIALS ─────────────────────────────────────── */
    .testimonials-grid {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 1px; background: var(--border); border: 1px solid var(--border);
    }
    .testimonial {
      background: var(--smoke); padding: 2rem 2.25rem;
      transition: background 0.2s; position: relative;
    }
    .testimonial::before {
      content: '"'; position: absolute; top: 1.25rem; right: 1.75rem;
      font-family: 'Bebas Neue', sans-serif; font-size: 5rem;
      line-height: 1; color: rgba(245,196,0,0.07);
      pointer-events: none;
    }
    .testimonial:hover { background: var(--smoke-2); }
    .testimonial-stars { display: flex; gap: 2px; margin-bottom: 1rem; }
    .testimonial-stars span {
      color: var(--electric); font-size: 12px;
      text-shadow: 0 0 6px rgba(245,196,0,0.5);
    }
    .testimonial p {
      font-size: 0.9rem; color: var(--muted-2); font-weight: 300;
      line-height: 1.75; font-style: italic; margin-bottom: 1.5rem;
      position: relative; z-index: 1;
    }
    .testimonial-meta { display: flex; align-items: center; gap: 0.875rem; }
    .avatar {
      width: 38px; height: 38px; border-radius: 50%;
      background: var(--electric-subtle);
      border: 1px solid rgba(245,196,0,0.25);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.78rem; font-weight: 600; color: var(--electric);
      flex-shrink: 0;
      box-shadow: 0 0 10px rgba(245,196,0,0.2);
    }
    .testimonial-author { font-size: 0.8rem; color: var(--light); font-weight: 500; }
    .testimonial-role { font-size: 0.71rem; color: var(--muted); margin-top: 0.15rem; }

    /* ─── PROCESS ──────────────────────────────────────────── */
    .process-strip {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1px; background: var(--border); border: 1px solid var(--border);
    }
    .process-step {
      background: var(--smoke); padding: 2.25rem 1.75rem;
      position: relative; overflow: hidden; transition: background 0.2s;
    }
    .process-step:hover { background: var(--smoke-2); }
    .step-num {
      font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem;
      line-height: 1; color: rgba(255,255,255,0.04);
      position: absolute; top: 0.75rem; right: 1rem;
      pointer-events: none;
    }
    .step-title { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.625rem; color: var(--light); }
    .step-desc { font-size: 0.79rem; color: var(--muted); font-weight: 300; line-height: 1.65; }
    .step-dot {
      width: 10px; height: 10px; background: var(--electric);
      border-radius: 50%; margin-bottom: 1.25rem;
      animation: dotPulse 2s ease-in-out infinite;
    }
    .process-step:nth-child(2) .step-dot { animation-delay: 0.5s; }
    .process-step:nth-child(3) .step-dot { animation-delay: 1s; }
    .process-step:nth-child(4) .step-dot { animation-delay: 1.5s; }
    .step-connector {
      position: absolute; top: 2.5rem; right: -1px;
      width: 1px; height: 20px;
      background: linear-gradient(to bottom, var(--electric), transparent);
      box-shadow: 0 0 4px rgba(245,196,0,0.4);
    }
    .process-step:last-child .step-connector { display: none; }

    /* ─── CTA ──────────────────────────────────────────────── */
    .cta-section {
      background: var(--electric); padding: 5rem 3rem;
      display: grid; grid-template-columns: 1fr auto;
      align-items: center; gap: 3rem;
      position: relative; overflow: hidden;
    }
    /* Grid line overlay */
    .cta-section::before {
      content: ''; position: absolute; inset: 0;
      background: repeating-linear-gradient(
        90deg,
        transparent, transparent 40px,
        rgba(0,0,0,0.04) 40px, rgba(0,0,0,0.04) 41px
      );
      pointer-events: none;
    }
    /* Large background lightning bolt decoration in CTA */
    .cta-bolt-bg {
      position: absolute;
      right: 340px; top: 50%; transform: translateY(-50%);
      width: 120px; height: 200px;
      opacity: 0.1; pointer-events: none;
    }
    .cta-bolt-bg-2 {
      position: absolute;
      right: 200px; top: 50%; transform: translateY(-50%) scaleX(-1);
      width: 80px; height: 130px;
      opacity: 0.07; pointer-events: none;
    }
    /* Corner sparks */
    .cta-spark {
      position: absolute;
      pointer-events: none;
    }
    .cta-spark-tl { top: 1.5rem; left: 1.5rem; }
    .cta-spark-br { bottom: 1.5rem; right: 1.5rem; transform: rotate(180deg); }
    .cta-section h2 { color: var(--ink); font-size: clamp(2rem, 4vw, 2.8rem); position: relative; z-index: 1; }
    .cta-section p { font-size: 0.925rem; color: rgba(0,0,0,0.55); margin-top: 0.625rem; font-weight: 400; position: relative; z-index: 1; }
    .btn-dark {
      background: var(--ink); color: var(--electric);
      font-size: 0.78rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 1.1rem 2.25rem; border: none; border-radius: 3px;
      cursor: pointer; white-space: nowrap;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      text-decoration: none; display: inline-block;
      position: relative; z-index: 1;
      box-shadow: 0 4px 0 rgba(0,0,0,0.3);
    }
    .btn-dark:hover {
      background: #1a1a1a;
      transform: translateY(-2px);
      box-shadow: 0 6px 0 rgba(0,0,0,0.3),
                  0 12px 30px rgba(0,0,0,0.25);
    }

    /* ─── FOOTER ───────────────────────────────────────────── */
    footer {
      padding: 3.5rem 3rem 2.5rem;
      display: grid; grid-template-columns: 1.5fr 1fr 1fr;
      gap: 3rem; border-top: 1px solid var(--border);
    }
    .footer-brand .logo { font-size: 1.4rem; display: block; margin-bottom: 0.875rem; }
    .footer-brand p { font-size: 0.8rem; color: var(--muted); font-weight: 300; line-height: 1.7; max-width: 280px; }
    .footer-col h4 {
      font-size: 0.66rem; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--muted);
      margin-bottom: 1.25rem;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
    .footer-col ul li a {
      font-size: 0.83rem; color: #888; font-weight: 300;
      text-decoration: none; transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--light); }
    .footer-bottom {
      padding: 1.25rem 3rem;
      display: flex; justify-content: space-between; align-items: center;
      border-top: 1px solid var(--border);
    }
    .footer-bottom p { font-size: 0.72rem; color: #555; }

    /* ─── RESPONSIVE ───────────────────────────────────────── */
    @media (max-width: 1024px) {
      nav { padding: 1.25rem 2rem; }
      .section { padding: 4rem 2rem; }
      .hero-left { padding: 4rem 2rem; }
      .hero-right { padding: 2rem; }
    }
    @media (max-width: 900px) {
      nav ul { display: none; }
      .guarantee-bar { grid-template-columns: 1fr; }
      .hero { grid-template-columns: 1fr; }
      .hero-right { border-right: none; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .process-strip { grid-template-columns: 1fr 1fr; }
      .cta-section { grid-template-columns: 1fr; }
      footer { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
      .trust-bar { padding: 1rem 2rem; }
    }
    @media (max-width: 560px) {
      nav { padding: 1rem 1.25rem; }
      .section { padding: 3rem 1.25rem; }
      .hero-left { padding: 2.5rem 1.25rem; }
      .hero-right { padding: 1.5rem 1.25rem; }
      .guarantee-item { padding: 1.5rem 1.25rem; }
      .services-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .process-strip { grid-template-columns: 1fr; }
      .cta-section { padding: 3rem 1.25rem; }
      footer { padding: 2.5rem 1.25rem 2rem; grid-template-columns: 1fr; }
      .footer-bottom { padding: 1rem 1.25rem; flex-direction: column; gap: 0.5rem; text-align: center; }
      .trust-bar { display: none; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

    /* ─── CURSOR ARC CANVAS ───────────────────────────────── */
    #arcCanvas {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9998;
    }

    /* ═══════════════════════════════════════════════════════════
       SUBPAGE STYLES (Leistungen, Impressum, Datenschutz)
       ═══════════════════════════════════════════════════════════ */

    /* ─── BREADCRUMB ───────────────────────────────────────── */
    .breadcrumb {
      padding: 1.1rem 3rem;
      border-bottom: 1px solid var(--border);
      background: var(--ink-2);
      font-size: 0.74rem; letter-spacing: 0.04em;
      color: var(--muted);
      display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
    }
    .breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
    .breadcrumb a:hover { color: var(--electric); }
    .breadcrumb .sep { color: #333; }
    .breadcrumb .current { color: var(--light); }

    /* ─── PAGE HERO ────────────────────────────────────────── */
    .page-hero {
      padding: 4.5rem 3rem 4rem;
      border-bottom: 1px solid var(--border);
      position: relative; overflow: hidden;
      background:
        radial-gradient(circle at 80% -10%, rgba(245,196,0,0.07), transparent 45%),
        var(--ink);
    }
    .page-hero::before {
      content: '';
      position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
      width: 230px; height: 380px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 180'%3E%3Cpolygon points='65,0 20,90 52,90 35,180 85,80 50,80 75,0' fill='%23F5C400'/%3E%3C/svg%3E") center/contain no-repeat;
      opacity: 0.03; pointer-events: none;
    }
    .page-hero .hero-tag { margin-bottom: 1.5rem; }
    .page-hero h1 {
      font-size: clamp(2.6rem, 5vw, 4.2rem);
      max-width: 18ch; margin-bottom: 1.5rem;
    }
    .page-hero .lead {
      font-size: 1rem; font-weight: 300; color: var(--muted-2);
      line-height: 1.8; max-width: 620px; margin-bottom: 2.25rem;
    }
    .page-hero .hero-btns { position: relative; z-index: 2; }

    /* ─── PROSE / LEGAL CONTENT ────────────────────────────── */
    .prose { max-width: 820px; }
    .prose h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      letter-spacing: 0.02em; color: var(--light);
      margin: 2.75rem 0 1rem;
    }
    .prose h2:first-child { margin-top: 0; }
    .prose h3 {
      font-size: 1rem; font-weight: 600; color: var(--electric);
      margin: 1.75rem 0 0.6rem; letter-spacing: 0.01em;
    }
    .prose p {
      font-size: 0.9rem; font-weight: 300; color: var(--muted-2);
      line-height: 1.85; margin-bottom: 1.1rem;
    }
    .prose ul { list-style: none; margin: 0 0 1.4rem; display: flex; flex-direction: column; gap: 0.7rem; }
    .prose ul li {
      position: relative; padding-left: 1.5rem;
      font-size: 0.88rem; font-weight: 300; color: #d8d6d1; line-height: 1.7;
    }
    .prose ul li::before {
      content: ''; position: absolute; left: 0; top: 0.55em;
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--electric); box-shadow: 0 0 6px rgba(245,196,0,0.5);
    }
    .prose a { color: var(--electric); text-decoration: none; border-bottom: 1px solid rgba(245,196,0,0.3); transition: border-color 0.2s; }
    .prose a:hover { border-color: var(--electric); }
    .prose strong { color: var(--light); font-weight: 600; }
    .prose .muted-note { font-size: 0.78rem; color: var(--muted); margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }

    /* Info card block used in legal pages */
    .info-card {
      background: var(--smoke); border: 1px solid var(--border);
      border-radius: 6px; padding: 1.75rem 2rem; margin: 1.5rem 0 2rem;
    }
    .info-card p { margin-bottom: 0.35rem; color: var(--light); font-weight: 400; }
    .info-card p.label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--electric); margin-bottom: 0.75rem; font-weight: 600; }

    /* ─── FEATURE LIST (Leistungs-Detailseiten) ────────────── */
    .feature-grid {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 1px; background: var(--border); border: 1px solid var(--border);
    }
    .feature-cell {
      background: var(--ink-2); padding: 2rem;
      transition: background 0.25s; position: relative; overflow: hidden;
    }
    .feature-cell:hover { background: var(--smoke); }
    .feature-cell .service-icon { margin-bottom: 1.25rem; }
    .feature-cell h3 { font-size: 0.95rem; font-weight: 600; color: var(--light); margin-bottom: 0.55rem; }
    .feature-cell p { font-size: 0.82rem; font-weight: 300; color: var(--muted); line-height: 1.7; }

    /* ─── RESULT / BENEFIT STRIP ───────────────────────────── */
    .benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
    .benefit-grid .check-list li { font-size: 0.9rem; }

    /* ─── FAQ ──────────────────────────────────────────────── */
    .faq-list { max-width: 820px; border-top: 1px solid var(--border); }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-q {
      width: 100%; text-align: left; background: none; border: none;
      cursor: pointer; padding: 1.4rem 2.5rem 1.4rem 0;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem; font-weight: 500; color: var(--light);
      position: relative; transition: color 0.2s;
    }
    .faq-q:hover { color: var(--electric); }
    .faq-q::after {
      content: '+'; position: absolute; right: 0.25rem; top: 50%;
      transform: translateY(-50%); font-size: 1.4rem; color: var(--electric);
      transition: transform 0.25s; line-height: 1;
    }
    .faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }
    .faq-item.open .faq-a { max-height: 400px; padding-bottom: 1.4rem; }
    .faq-a p { font-size: 0.86rem; font-weight: 300; color: var(--muted-2); line-height: 1.8; }

    /* ─── PILL / TAGS ──────────────────────────────────────── */
    .pill-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.25rem; }
    .pill {
      font-size: 0.72rem; letter-spacing: 0.05em; color: var(--muted-2);
      border: 1px solid var(--border-strong); border-radius: 100px;
      padding: 0.4rem 0.9rem; background: rgba(255,255,255,0.02);
    }

    /* ─── OTHER SERVICES CROSS-LINK ────────────────────────── */
    .xlink-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
    .xlink {
      background: var(--smoke); padding: 1.5rem 1.4rem; text-decoration: none;
      display: block; transition: background 0.2s; position: relative;
    }
    .xlink:hover { background: var(--smoke-2); }
    .xlink .service-icon { width: 36px; height: 36px; font-size: 16px; margin-bottom: 1rem; }
    .xlink h4 { font-size: 0.84rem; font-weight: 600; color: var(--light); margin-bottom: 0.3rem; }
    .xlink span { font-size: 0.75rem; color: var(--muted); display: inline-flex; align-items: center; gap: 0.3rem; }
    .xlink:hover span { color: var(--electric); }

    @media (max-width: 900px) {
      .breadcrumb { padding: 1.1rem 2rem; }
      .page-hero { padding: 3.5rem 2rem 3rem; }
      .feature-grid { grid-template-columns: 1fr; }
      .benefit-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .xlink-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 560px) {
      .breadcrumb { padding: 1rem 1.25rem; }
      .page-hero { padding: 2.5rem 1.25rem; }
      .xlink-grid { grid-template-columns: 1fr; }
    }

    /* ─── REGIONEN-SEITE ───────────────────────────────────── */
    .region-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1px; background: var(--border); border: 1px solid var(--border);
    }
    .region-card {
      background: var(--ink-2); padding: 1.75rem;
      transition: background 0.25s; position: relative; overflow: hidden;
    }
    .region-card::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--electric), transparent);
      transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
      box-shadow: 0 0 8px rgba(245,196,0,0.6);
    }
    .region-card:hover { background: var(--smoke); }
    .region-card:hover::after { transform: scaleX(1); }
    .region-card h3 {
      font-size: 0.98rem; font-weight: 600; color: var(--light);
      margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.5rem;
    }
    .region-card h3 i { color: var(--electric); font-size: 16px; }
    .region-card p { font-size: 0.81rem; font-weight: 300; color: var(--muted); line-height: 1.7; }

    .region-list {
      display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.5rem;
    }
    .region-list a {
      font-size: 0.78rem; color: var(--muted-2); text-decoration: none;
      border: 1px solid var(--border-strong); border-radius: 100px;
      padding: 0.5rem 1rem; background: rgba(255,255,255,0.02);
      transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
      display: inline-flex; align-items: center; gap: 0.4rem;
    }
    .region-list a i { font-size: 13px; color: var(--electric); }
    .region-list a:hover {
      border-color: var(--electric); color: var(--light);
      box-shadow: 0 0 12px rgba(245,196,0,0.15);
    }

    @media (max-width: 900px) { .region-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 560px) { .region-grid { grid-template-columns: 1fr; } }

    /* ─── NO-BRAINER OFFER CARD ────────────────────────────── */
    .offer-card {
      position: relative; z-index: 2;
      margin-top: 2.25rem; max-width: 620px;
      background: linear-gradient(160deg, rgba(30,30,30,0.95), rgba(16,16,16,0.95));
      border: 1px solid var(--border-strong);
      border-radius: 10px; padding: 2rem 2.25rem;
      box-shadow: 0 0 40px rgba(245,196,0,0.08), inset 0 0 0 1px rgba(245,196,0,0.04);
      overflow: hidden;
    }
    .offer-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--electric), transparent);
      box-shadow: 0 0 12px rgba(245,196,0,0.6);
    }
    .offer-badge {
      display: inline-block; font-size: 0.64rem; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink);
      background: var(--electric); padding: 0.35rem 0.8rem; border-radius: 3px;
      margin-bottom: 1.5rem;
    }
    .offer-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.75rem; }
    .offer-list li { display: flex; align-items: flex-start; gap: 0.85rem; font-size: 0.92rem; color: var(--muted-2); font-weight: 300; line-height: 1.5; }
    .offer-list li i {
      flex-shrink: 0; width: 30px; height: 30px; border-radius: 6px;
      display: inline-flex; align-items: center; justify-content: center;
      background: var(--electric-subtle); border: 1px solid rgba(245,196,0,0.3);
      color: var(--electric); font-size: 16px; margin-top: 1px;
    }
    .offer-list li strong { color: var(--light); font-weight: 600; }
    .offer-cta { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
    .offer-note { font-size: 0.76rem; color: var(--muted); }

    /* ─── LEAD FORM ────────────────────────────────────────── */
    .form-intro { font-size: 0.9rem; font-weight: 300; color: var(--muted-2); line-height: 1.75; max-width: 640px; margin-bottom: 2.5rem; }
    .lead-form { max-width: 760px; }
    .form-block { margin-bottom: 1.75rem; }
    .form-label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--light); margin-bottom: 0.85rem; letter-spacing: 0.01em; }
    .form-input {
      width: 100%; background: var(--smoke); color: var(--light);
      border: 1px solid var(--border-strong); border-radius: 5px;
      padding: 0.85rem 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
      transition: border-color 0.2s, box-shadow 0.2s; resize: vertical;
    }
    .form-input::placeholder { color: #5a5a5a; }
    .form-input:focus {
      outline: none; border-color: var(--electric);
      box-shadow: 0 0 0 3px rgba(245,196,0,0.12);
    }
    .radio-row, .check-row { display: flex; flex-wrap: wrap; gap: 0.65rem; }
    .radio-pill, .check-pill {
      display: inline-flex; align-items: center; gap: 0.55rem;
      font-size: 0.84rem; font-weight: 300; color: var(--muted-2);
      border: 1px solid var(--border-strong); border-radius: 100px;
      padding: 0.6rem 1.1rem; cursor: pointer; user-select: none;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
      background: rgba(255,255,255,0.02);
    }
    .radio-pill:hover, .check-pill:hover { border-color: rgba(245,196,0,0.5); color: var(--light); }
    .radio-pill input, .check-pill input { accent-color: #F5C400; width: 15px; height: 15px; cursor: pointer; }
    .radio-pill:has(input:checked), .check-pill:has(input:checked) {
      border-color: var(--electric); color: var(--light);
      background: var(--electric-subtle);
      box-shadow: 0 0 12px rgba(245,196,0,0.12);
    }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 0.5rem; }
    .form-grid .form-block { margin-bottom: 1.25rem; }
    .form-submit { border: none; cursor: pointer; margin-top: 0.75rem; font-family: 'DM Sans', sans-serif; }
    .form-hint { font-size: 0.75rem; color: var(--muted); margin-top: 1rem; line-height: 1.6; }
    .form-success {
      display: none; margin-top: 1.5rem; padding: 1.25rem 1.5rem;
      border: 1px solid rgba(245,196,0,0.35); border-radius: 6px;
      background: var(--electric-subtle); color: var(--light); font-size: 0.88rem;
    }
    @media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
