  :root {
        --red: #e3051a;
        --cream: #ffefcc;
        --ink: #020202;
        --mist: #f2f2f2;
        --pad: clamp(16px, 2.2vw, 28px);
        --max: 1200px;
        --headline-font: "Syne", system-ui, sans-serif;
        --line: rgba(242, 242, 242, 0.12);
      }
      * {
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        margin: 0;
        font-family: "Space Grotesk", system-ui, sans-serif;
        color: var(--mist);
        background: var(--ink);
      }
      a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s;
      }
      a:hover {
        color: var(--red);
      }
      img {
        max-width: 100%;
        height: auto;
        display: block;
      }
      .wrap {
        width: min(100%, var(--max));
        margin: 0 auto;
        padding: 0 var(--pad);
      }
      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        color: var(--red) !important;
        font-family: var(--headline-font);
        text-transform: uppercase;
      }
      .blur-title {
        position: relative;
        display: inline-block;
      }
      .blur-title::after {
        content: attr(data-text);
        position: absolute;
        inset: 0;
        filter: blur(10px);
        opacity: 0.3;
        color: var(--red);
        pointer-events: none;
      }
      .grain {
        position: fixed;
        inset: -20vmax;
        z-index: 1;
        pointer-events: none;
        opacity: 0.06;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="160" height="160"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)"/></svg>');
        background-size: 320px 320px;
        animation: grainShift 12s steps(10) infinite;
      }
      @keyframes grainShift {
        to {
          transform: translate3d(-160px, -160px, 0);
        }
      }
      header {
        position: sticky;
        top: 0;
        z-index: 60;
        background: linear-gradient(
          180deg,
          rgba(2, 2, 2, 0.9),
          rgba(2, 2, 2, 0.6) 70%,
          rgba(2, 2, 2, 0)
        );
        backdrop-filter: saturate(1.1) blur(8px);
      }
      main {
        position: relative;
        z-index: 5;
        background: var(--ink);
      }
      .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px var(--pad);
        background-color: #020202;
      }
      .brand {
        display: flex;
        gap: 10px;
        align-items: center;
        font-weight: 700;
      }
      .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--red);
        box-shadow: 0 0 0 4px rgba(227, 5, 26, 0.2);
      }
      .nav-list {
        display: flex;
        gap: 22px;
        list-style: none;
        margin: 0;
        padding: 0;
         font-family: "Space Grotesk", system-ui, sans-serif;
      }
      .nav-list a:hover,
      .nav-list a.active {
        color: var(--red);
      }
          .nav-menu a {
       font-family: "Space Grotesk", system-ui, sans-serif !important;
      font-weight: 800 !important;
        font-size: clamp(28px, 8vw, 64px);
        letter-spacing: -0.01em;
        color: var(--mist);
      }
      .cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        border: 1px solid rgba(242, 242, 242, 0.16);
        padding: 10px 14px;
        border-radius: 999px;
        transition: 0.25s transform, 0.25s background-color;
      }
      .cta:hover {
        transform: translateY(-1px);
        background: rgba(255, 239, 204, 0.06);
      }
      .nav-toggle {
        display: none;
      }
      .nav-overlay {
        position: fixed;
        inset: 0;
        z-index: 80;
        display: grid;
        place-items: center;
        background: radial-gradient(
            120% 100% at 50% -10%,
            rgba(227, 5, 26, 0.22),
            transparent 40%
          ),
          rgba(2, 2, 2, 0.94);
        backdrop-filter: blur(12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
      }
      .nav-overlay.open {
        opacity: 1;
        pointer-events: auto;
      }
      .nav-close {
        position: absolute;
        top: 18px;
        right: 18px;
        width: 38px;
        height: 38px;
        border: 1px solid rgba(242, 242, 242, 0.25);
        border-radius: 999px;
        display: grid;
        place-items: center;
      }
      @media (max-width: 980px) {
        .nav-list,
        .cta {
          display: none;
        }
      
      }

       .nav-toggle{
    display:none;                 /* Desktop ausblenden */
    place-items:center;
    width:44px;height:44px;
    border-radius:999px;
    border:1px solid rgba(242,242,242,.22);
    background:rgba(255,255,255,.04);
    color:#f2f2f2;                /* macht die SVG-Linien sichtbar */
    cursor:pointer;
    z-index:65;
  }
  .nav-toggle:hover{
    background:rgba(255,255,255,.07);
    border-color:rgba(242,242,242,.36);
  }
  .nav-toggle svg{display:block}
  @media (max-width:980px){
    .nav-toggle{display:grid;}    /* Mobile einblenden */
  }
      section {
        padding: clamp(50px, 8vw, 100px) 0;
      }
      .btn {
        --bg: rgba(255, 239, 204, 0.08);
        --bd: rgba(242, 242, 242, 0.15);
        --fg: var(--mist);
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 24px;
        border-radius: 14px;
        border: 1px solid var(--bd);
        background: var(--bg);
        color: var(--fg);
        transition: 0.25s transform, 0.25s background-color, 0.25s border-color;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 0.05em;
      }
      .btn:hover {
        transform: translateY(-2px);
      }
      .btn.primary {
        --bg: var(--red);
        --bd: transparent;
        --fg: #fff;
      }
      .page-header {
        padding: 120px var(--pad) 50px;
        text-align: center;
        border-bottom: 1px solid var(--line);
      }
      .page-header h1 {
        font-size: clamp(2.5rem, 6vw, 5rem);
        line-height: 1;
        margin: 0;
      }
      .page-header p {
        max-width: 60ch;
        margin: 1rem auto 0;
        opacity: 0.9;
      }
      .section-head {
        margin-bottom: 2rem;
        max-width: 65ch;
      }
      .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
      }
      .price-card {
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 1.5rem;
        background: #0c0c0c;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
      .price-card:hover {
        transform: translateY(-5px);
      }
      .price-card .tag {
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        opacity: 0.8;
      }
      .price-card h3 {
        font-size: 1.8rem;
        margin: 0.5rem 0;
      }
      .price-card .price {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--red);
        margin-bottom: 1rem;
      }
      .price-card .price small {
        font-size: 1rem;
        opacity: 0.7;
      }
      .price-card ul {
        list-style: none;
        padding: 0;
        margin: 1rem 0;
        flex-grow: 1;
      }
      .price-card li {
        display: flex;
        gap: 0.75rem;
        align-items: flex-start;
        margin-bottom: 0.75rem;
      }
      .price-card li::before {
        content: "✓";
        color: var(--red);
        font-weight: bold;
      }
      .price-card .btn {
        justify-content: center;
        width: 100%;
      }
      .price-card.highlight {
        border-color: var(--red);
        box-shadow: 0 0 20px rgba(227, 5, 26, 0.2);
        transform: scale(1.02);
      }
      .price-card.highlight:hover {
        transform: scale(1.02) translateY(-5px);
      }
      .audit-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: center;
        background: #0a0a0a;
        padding: var(--pad);
        border-radius: 16px;
        border: 1px solid var(--line);
      }
      @media (max-width: 768px) {
        .audit-section {
          grid-template-columns: 1fr;
          text-align: center;
        }

        h1 {
          font-size: 32px !important;
        }
      }
      #faq details {
        border-bottom: 1px solid var(--line);
        padding: 1rem 0;
      }
      #faq summary {
        cursor: pointer;
        list-style: none;
        position: relative;
        padding-right: 2rem;
        font-size: clamp(16px, 1.8vw, 20px);
        font-weight: 500;
      }
      #faq summary::after {
        content: "+";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        color: var(--red);
        font-weight: 800;
        font-size: 1.5rem;
        transition: transform 0.2s;
      }
      #faq details[open] summary::after {
        content: "–";
        transform: translateY(-50%) rotate(180deg);
      }
      #faq .answer {
        padding-top: 0.5rem;
        max-width: 65ch;
        opacity: 0.9;
      }
      .related-section {
        position: relative;
        background-image: radial-gradient(
          rgba(255, 255, 255, 0.03) 1px,
          transparent 1px
        );
        background-size: 20px 20px;
      }
      .card-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
      }
      .card-special {
        background-color: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 1.5rem;
        position: relative;
        overflow: hidden;
      }
      .cta-section {
        text-align: center;
        background: #0a0a0a;
        border-radius: 16px;
        padding: clamp(2rem, 5vw, 4rem);
        border: 1px solid var(--line);
      }
      .cta-section p {
        max-width: 50ch;
        margin: 1rem auto 1.5rem;
      }
      footer {
        position: sticky;
        bottom: 0;
        z-index: 4;
        background-color: #ffefcc;
      }
      .footer-content.wrap {
        width: 100%;
        max-width: 100%;
        padding-left: var(--pad);
        padding-right: var(--pad);
      }
      .footer-content {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        gap: clamp(26px, 6vw, 64px);
        padding: 56px var(--pad);
      }
      .footer-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 18px;
      }
      .newsletter-form {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-grow: 1;
        min-width: 280px;
      }
      .newsletter-form input {
        background: transparent;
        border: none;
        border-bottom: 1px solid var(--mist);
        color: var(--mist);
        padding: 10px 0;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
      }
      .footer-links {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 18px;
        width: 100%;
        font-size: 14px;
        line-height: 1.8;
        color: var(--ink);
      }
      .footer-logo {
        text-align: center;
        width: 100%;
        color: var(--red);
      }
      .footer-logo .logo-the {
        font-family: "Playfair Display", serif;
        font-style: italic;
        font-weight: 600;
        font-size: clamp(32px, 10vw, 96px);
      }
      .footer-logo .logo-atelier {
        font-family: "Space Grotesk", sans-serif;
        font-weight: 700;
        font-size: clamp(44px, 16vw, 140px);
        letter-spacing: -0.02em;
        margin-left: 8px;
      }
      .footer-credits {
        width: 100%;
        font-size: 12px;
        opacity: 0.7;
        border-top: 1px solid rgba(242, 242, 242, 0.12);
        padding-top: 16px;
        color: var(--mist);
        display: flex;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
      }