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

    :root {
      --yellow: #FFD90F;
      --yellow-light: #FFF9CC;
      --black: #1A1A1A;
      --white: #FFFEF5;
      --cream: #FFFBEA;
      --outline: 3px solid #1A1A1A;
      --shadow: 4px 4px 0px #1A1A1A;
      --shadow-lg: 6px 6px 0px #1A1A1A;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Nunito', 'Helvetica Neue', sans-serif;
      background: var(--cream);
      color: var(--black);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: sticky; top: 0; z-index: 100;
      background: var(--yellow);
      border-bottom: 3px solid var(--black);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 clamp(1rem, 4vw, 3rem);
      height: 60px;
      gap: 12px;
    }

    .nav-logo {
      font-family: 'Bangers', cursive;
      font-size: clamp(17px, 4vw, 24px);
      color: var(--black); letter-spacing: 0.06em; text-decoration: none; line-height: 1;
      white-space: nowrap;
    }

    .nav-logo span {
      display: inline-block; background: var(--black); color: var(--yellow);
      padding: 1px 7px 2px; margin-left: 5px; border-radius: 3px;
      font-size: clamp(9px, 2vw, 12px); letter-spacing: 0.12em; vertical-align: middle;
    }

    /* hide badge on very small screens */
    @media (max-width: 360px) { .nav-logo span { display: none; } }

    .nav-cta {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--black); color: var(--yellow);
      font-family: 'Nunito', sans-serif; font-size: clamp(12px, 2.5vw, 14px); font-weight: 800;
      padding: 8px clamp(12px, 3vw, 20px);
      border: 2px solid var(--black); border-radius: 4px;
      box-shadow: 3px 3px 0 rgba(0,0,0,0.2); text-decoration: none;
      white-space: nowrap;
      transition: transform 0.1s, box-shadow 0.1s;
    }
    .nav-cta:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 rgba(0,0,0,0.2); }
    .nav-cta:active { transform: translate(1px,1px); box-shadow: 1px 1px 0 rgba(0,0,0,0.2); }

    /* ── HERO ── */
    .hero {
      background: var(--white); border-bottom: var(--outline);
      padding: clamp(2.5rem, 8vw, 6rem) clamp(1rem, 5vw, 4rem);
      position: relative; overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(255,217,15,0.22) 2px, transparent 2px);
      background-size: 22px 22px;
      pointer-events: none;
    }

    .hero-inner {  text-align: center;
  margin: 0 auto;}

    .hero-tag {
      display: inline-block;
      background: var(--yellow); color: var(--black);
      font-family: 'Bangers', cursive; font-size: 14px; letter-spacing: 0.1em;
      padding: 5px 14px; border: 2px solid var(--black); border-radius: 20px;
      box-shadow: var(--shadow); margin-bottom: 20px;
    }

    .hero h1 {
      font-family: 'Bangers', cursive;
      font-size: clamp(2.4rem, 8vw, 5rem); font-weight: 400;
      color: var(--black); line-height: 1.06; letter-spacing: 0.04em; margin-bottom: 18px;
    }

    .hero h1 .inv {
      color: var(--yellow); background: var(--black);
      padding: 2px 10px 4px; border-radius: 5px; display: inline-block;
    }

    .hero-sub {
      font-size: clamp(0.95rem, 2.5vw, 1.1rem); color: #444; font-weight: 600;
      max-width: 540px; line-height: 1.7; margin-bottom: 28px;margin-left: auto;
  margin-right: auto;
    }

    .hero-actions {
      display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 36px; justify-content: center;
    }

    .btn-comic {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--yellow); color: var(--black);
      font-size: clamp(14px, 3vw, 15px); font-weight: 800;
      padding: 12px clamp(18px, 4vw, 28px);
      border: var(--outline); border-radius: 6px; box-shadow: var(--shadow-lg);
      text-decoration: none; transition: transform 0.1s, box-shadow 0.1s;
    }
    .btn-comic:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--black); }
    .btn-comic:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--black); }

    .btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent; color: var(--black);
      font-size: clamp(14px, 3vw, 15px); font-weight: 700;
      padding: 12px clamp(14px, 3vw, 22px);
      border: var(--outline); border-radius: 6px; box-shadow: var(--shadow);
      text-decoration: none; transition: transform 0.1s, box-shadow 0.1s, background 0.1s, color 0.1s;
    }
    .btn-ghost:hover { background: var(--black); color: var(--yellow); transform: translate(-2px,-2px); }

    .trust-strip {
      display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
    }

    .trust-chip {
      background: var(--yellow); border: 2px solid var(--black);
      border-radius: 40px; box-shadow: 3px 3px 0 var(--black);
      padding: 7px 16px; display: flex; flex-direction: column; align-items: center;
    }

    .trust-num { font-family: 'Bangers', cursive; font-size: 24px; letter-spacing: 0.05em; line-height: 1; }
    .trust-label { font-size: 10px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }

    /* ── SECTION BASE ── */
    section { padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 5vw, 4rem); }
    .section-inner { max-width: 920px; margin: 0 auto; }

    .section-label {
      display: inline-block; font-family: 'Bangers', cursive;
      font-size: 13px; letter-spacing: 0.15em;
      background: var(--black); color: var(--yellow);
      padding: 3px 12px; border-radius: 3px; margin-bottom: 10px;
    }

    .section-title {
      font-family: 'Bangers', cursive;
      font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 400;
      color: var(--black); line-height: 1.1; letter-spacing: 0.04em; margin-bottom: 10px;
    }

    .section-sub {
      font-size: clamp(0.9rem, 2.5vw, 1rem); color: #555; font-weight: 600;
      max-width: 520px; line-height: 1.7; margin-bottom: 32px;
    }

    /* ── CATEGORIES ── */
    #ankauf { background: var(--cream); }

    .cat-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
      gap: 14px;
    }

    .cat-card {
      background: var(--white); border: var(--outline); border-radius: 10px;
      box-shadow: var(--shadow); padding: 22px 20px 18px;
      transition: transform 0.12s, box-shadow 0.12s;
      position: relative; overflow: hidden;
    }
    .cat-card:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-lg); }
    .cat-card::after {
      content: ''; position: absolute; top: 0; right: 0;
      width: 50px; height: 50px; background: var(--yellow); opacity: 0.35;
      border-radius: 0 10px 0 50px;
    }

    .cat-emoji { font-size: 26px; margin-bottom: 10px; display: block; }
    .cat-name { font-family: 'Bangers', cursive; font-size: 19px; letter-spacing: 0.04em; margin-bottom: 5px; }
    .cat-desc { font-size: 13px; color: #555; line-height: 1.55; font-weight: 600; }

    /* ── STEPS ── */
    #ablauf { background: var(--black); }
    #ablauf .section-title { color: var(--yellow); }
    #ablauf .section-label { background: var(--yellow); color: var(--black); }
    #ablauf .section-sub { color: #aaa; }

    .steps-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
      gap: 14px;
    }

    .step-card {
      background: var(--cream); border: var(--outline); border-radius: 10px;
      box-shadow: var(--shadow); padding: 24px 20px;
    }

    .step-badge {
      display: inline-flex; align-items: center; justify-content: center;
      width: 38px; height: 38px;
      background: var(--yellow); border: 2px solid var(--black); border-radius: 50%;
      font-family: 'Bangers', cursive; font-size: 20px; color: var(--black);
      margin-bottom: 12px; box-shadow: 2px 2px 0 var(--black);
    }

    .step-title { font-family: 'Bangers', cursive; font-size: 19px; letter-spacing: 0.04em; margin-bottom: 7px; }
    .step-desc { font-size: 13px; color: #444; line-height: 1.6; font-weight: 600; }

    /* ── PREISE ── */
    #preise { background: var(--yellow-light); border-top: var(--outline); border-bottom: var(--outline); }

    .speech-bubble {
      background: var(--white); border: var(--outline); border-radius: 16px;
      box-shadow: var(--shadow-lg); padding: clamp(18px, 4vw, 28px) clamp(18px, 5vw, 32px);
      max-width: 660px; position: relative; margin-bottom: 36px;
    }

    .speech-bubble::after {
      content: ''; position: absolute; bottom: -24px; left: 48px;
      width: 0; height: 0;
      border-left: 14px solid transparent; border-right: 14px solid transparent;
      border-top: 24px solid var(--black);
    }
    .speech-bubble::before {
      content: ''; position: absolute; bottom: -19px; left: 51px; z-index: 1;
      width: 0; height: 0;
      border-left: 11px solid transparent; border-right: 11px solid transparent;
      border-top: 19px solid var(--white);
    }

    .speech-bubble p { font-size: clamp(0.9rem, 2.5vw, 1rem); line-height: 1.75; font-weight: 600; }
    .speech-bubble p + p { margin-top: 12px; }

    .price-compare {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
      gap: 14px; max-width: 660px;
    }

    .pc-col {
      background: var(--white); border: var(--outline); border-radius: 10px;
      box-shadow: var(--shadow); overflow: hidden;
    }

    .pc-head {
      padding: 11px 16px; font-family: 'Bangers', cursive;
      font-size: 17px; letter-spacing: 0.06em;
      background: #ece8d6; border-bottom: 2px solid var(--black);
    }
    .pc-col.hi .pc-head { background: var(--yellow); }

    .pc-row {
      display: flex; align-items: center; gap: 10px;
      padding: 9px 16px; font-size: 13px; font-weight: 600; color: #333;
      border-bottom: 1px solid #e8e4d4;
    }
    .pc-row:last-child { border-bottom: none; }

    .pc-dot {
      width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--black);
      flex-shrink: 0; display: flex; align-items: center; justify-content: center;
      font-size: 9px; font-weight: 900;
    }
    .pc-dot.y { background: var(--yellow); color: var(--black); }
    .pc-dot.n { background: #ddd; color: #999; }

    /* ── FAQ ── */
    #faq { background: var(--white); }
    .faq-list { max-width: 680px; }

    .faq-item {
      border: 2px solid var(--black); border-radius: 8px;
      margin-bottom: 10px; overflow: hidden;
      box-shadow: 3px 3px 0 var(--black);
    }

    .faq-q {
      width: 100%; background: var(--cream); border: none; cursor: pointer;
      text-align: left; padding: 15px 18px;
      font-family: 'Nunito', sans-serif; font-size: clamp(14px, 3vw, 15px); font-weight: 700; color: var(--black);
      display: flex; justify-content: space-between; align-items: center; gap: 12px;
      transition: background 0.12s;
    }
    .faq-q:hover { background: var(--yellow-light); }
    .faq-item.open .faq-q { background: var(--yellow); }

    .faq-icon {
      width: 26px; height: 26px; border: 2px solid var(--black); border-radius: 50%;
      background: var(--white); color: var(--black);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; font-weight: 800; flex-shrink: 0;
      transition: transform 0.2s, background 0.15s, color 0.15s;
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--black); color: var(--yellow); }

    .faq-a {
      display: none; padding: 14px 18px;
      font-size: 14px; font-weight: 600; color: #444; line-height: 1.7;
      background: var(--white); border-top: 2px solid var(--black);
    }
    .faq-item.open .faq-a { display: block; }

    /* ── KONTAKT ── */
    #kontakt { background: var(--black); }
    #kontakt .section-title { color: var(--yellow); }
    #kontakt .section-label { background: var(--yellow); color: var(--black); }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
      gap: 14px; max-width: 560px;
    }

    .contact-card {
      background: var(--cream); border: var(--outline); border-radius: 10px;
      box-shadow: var(--shadow); padding: 22px; text-decoration: none; display: block;
      transition: transform 0.12s, box-shadow 0.12s;
    }
    .contact-card:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-lg); }

    .cc-emoji { font-size: 28px; margin-bottom: 10px; display: block; }
    .cc-type { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: #888; margin-bottom: 4px; }
    .cc-value { font-size: clamp(13px, 3vw, 15px); font-weight: 700; color: var(--black); word-break: break-all; }

    .contact-note {
      margin-top: 22px; font-size: 13px; font-weight: 600; color: #555;
      line-height: 1.65; max-width: 540px;
      padding: 14px 18px; border: 2px solid #2e2e2e; border-radius: 8px; background: #1e1e1e;
    }

    /* ── REGION BAR ── */
    .region-bar {
      background: var(--yellow); border-top: var(--outline); border-bottom: var(--outline);
      padding: 12px clamp(1rem, 4vw, 3rem);
      display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
    }

    .region-intro { font-size: 13px; font-weight: 700; color: var(--black); white-space: nowrap; }

    .region-tag {
      display: inline-block; background: var(--black); color: var(--yellow);
      font-size: 11px; font-weight: 800; padding: 3px 9px; border-radius: 20px;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--black); border-top: var(--outline);
      padding: 22px clamp(1rem, 4vw, 3rem);
      display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px;
    }

    .footer-logo { font-family: 'Bangers', cursive; font-size: 19px; color: var(--yellow); letter-spacing: 0.06em; }

    .footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
    .footer-links a { font-size: 12px; font-weight: 700; color: #555; text-decoration: none; transition: color 0.15s; }
    .footer-links a:hover { color: var(--yellow); }

    /* ── ANIMATIONS ── */
    @keyframes pop {
      from { opacity: 0; transform: scale(0.9) translateY(14px); }
      to   { opacity: 1; transform: scale(1) translateY(0); }
    }

    .hero-inner > * { animation: pop 0.45s cubic-bezier(0.34,1.56,0.64,1) both; }
    .hero-tag     { animation-delay: 0.05s; }
    .hero h1      { animation-delay: 0.15s; }
    .hero-sub     { animation-delay: 0.25s; }
    .hero-actions { animation-delay: 0.33s; }
    .trust-strip  { animation-delay: 0.42s; }

    /* ── TOUCH-FRIENDLY TAP TARGETS ── */
    @media (max-width: 480px) {
      .btn-comic, .btn-ghost { width: 100%; justify-content: center; }
      .faq-q { padding: 14px 16px; }
      .trust-strip { gap: 8px; }
    }

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

    :root {
      --yellow: #FFD90F;
      --black: #1A1A1A;
      --white: #FFFEF5;
      --cream: #FFFBEA;
      --outline: 3px solid #1A1A1A;
      --shadow: 4px 4px 0px #1A1A1A;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Nunito', 'Helvetica Neue', sans-serif;
      background: var(--cream);
      color: var(--black);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* NAV */
    nav {
      background: var(--yellow); border-bottom: 3px solid var(--black);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 clamp(1rem, 4vw, 3rem); height: 60px; gap: 12px;
    }

    .nav-logo {
      font-family: 'Bangers', cursive; font-size: clamp(17px, 4vw, 24px);
      color: var(--black); letter-spacing: 0.06em; text-decoration: none; line-height: 1;
    }

    .nav-back {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--black); color: var(--yellow);
      font-family: 'Nunito', sans-serif; font-size: clamp(12px, 2.5vw, 14px); font-weight: 800;
      padding: 8px clamp(12px, 3vw, 18px);
      border: 2px solid var(--black); border-radius: 4px;
      box-shadow: 3px 3px 0 rgba(0,0,0,0.2); text-decoration: none;
      white-space: nowrap; transition: transform 0.1s, box-shadow 0.1s;
    }
    .nav-back:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 rgba(0,0,0,0.2); }

    /* PAGE HEADER */
    .page-header {
      background: var(--black); border-bottom: var(--outline);
      padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 5vw, 4rem);
    }

    .page-header h1 {
      font-family: 'Bangers', cursive;
      font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 400;
      color: var(--yellow); letter-spacing: 0.05em; line-height: 1.1;
    }

    .page-header p {
      font-size: 14px; color: #777; font-weight: 600; margin-top: 8px;
    }

    /* MAIN CONTENT */
    main {
      padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 4rem);
      max-width: 780px;
    }

    /* JUMP LINKS */
    .jump-links {
      display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px;
    }

    .jump-link {
      display: inline-block;
      background: var(--yellow); color: var(--black);
      font-family: 'Bangers', cursive; font-size: 15px; letter-spacing: 0.08em;
      padding: 7px 18px; border: 2px solid var(--black); border-radius: 6px;
      box-shadow: var(--shadow); text-decoration: none;
      transition: transform 0.1s, box-shadow 0.1s;
    }
    .jump-link:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--black); }

    /* NOTICE BOX */
    .notice {
      background: #FFF9CC; border: 2px solid #D4AA00; border-radius: 8px;
      padding: 14px 18px; font-size: 13px; font-weight: 700; color: #5a4800;
      margin-bottom: 32px; line-height: 1.6;
    }

    /* LEGAL CARD */
    .legal-card {
      background: var(--white); border: var(--outline); border-radius: 12px;
      box-shadow: var(--shadow); margin-bottom: 24px; overflow: hidden;
    }

    .legal-card-head {
      background: var(--yellow); border-bottom: var(--outline);
      padding: 14px 24px;
      font-family: 'Bangers', cursive; font-size: 22px; letter-spacing: 0.06em;
    }

    .legal-card-body { padding: 22px 24px; }

    .legal-block { margin-bottom: 20px; }
    .legal-block:last-child { margin-bottom: 0; }

    .legal-block h3 {
      font-family: 'Bangers', cursive; font-size: 16px; letter-spacing: 0.06em;
      color: var(--black); margin-bottom: 5px;
      padding-bottom: 5px; border-bottom: 1px dashed #d0cdb8;
    }

    .legal-block p {
      font-size: 14px; font-weight: 600; color: #444; line-height: 1.75;
    }

    .legal-block p + p { margin-top: 8px; }

    .placeholder {
      background: #fff3cd; border: 1px dashed #c9a800;
      border-radius: 4px; padding: 2px 8px;
      font-style: italic; color: #7a5f00; font-size: 13px;
    }

    /* DIVIDER */
    .section-divider {
      border: none; border-top: var(--outline);
      margin: 36px 0;
    }

    /* FOOTER */
    footer {
      background: var(--black); border-top: var(--outline);
      padding: 20px clamp(1rem, 4vw, 3rem);
      display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px;
    }

    .footer-logo { font-family: 'Bangers', cursive; font-size: 18px; color: var(--yellow); letter-spacing: 0.06em; }

    .footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
    .footer-links a { font-size: 12px; font-weight: 700; color: #555; text-decoration: none; transition: color 0.15s; }
    .footer-links a:hover { color: var(--yellow); }