/* ============================================
   CibikMedia — Zentrale CSS
   Selbst-gehostete Fonts: Syne + DM Sans
   Pfad: /fonts/ auf Netcup
   ============================================ */

/* ---- SYNE ---- */
@font-face {
  font-family: 'Syne';
  src: url('/fonts/syne-v24-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Syne';
  src: url('/fonts/syne-v24-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Syne';
  src: url('/fonts/syne-v24-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Syne';
  src: url('/fonts/syne-v24-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Syne';
  src: url('/fonts/syne-v24-latin-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ---- DM SANS ---- */
@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/dm-sans-v17-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/dm-sans-v17-latin-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/dm-sans-v17-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/dm-sans-v17-latin-500italic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/dm-sans-v17-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/dm-sans-v17-latin-700italic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ============================================
   Utility-Klassen (vormals utilities.css, inline
   pro Seite eingebettet) + Blog/Preiskarten/Formular-
   Ergaenzungen aus Stufe 2 der CSS-Konsolidierung.
   ============================================ */

/* ============================================
   CibikMedia — Geteilte Utilities & Komponenten
   Ersatz für Tailwind CDN + GSAP/ScrollTrigger
   Wird von allen Landingpages geladen
   ============================================ */

/* === Block 1: Tailwind-Ersatz Utilities === */

    /* ─── Reset & Box Model ────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    a { text-decoration: none; color: inherit; }
    button { border: none; background: none; cursor: pointer; font: inherit; }

    /* ─── Tailwind-like utilities ──────────── */
    .scroll-smooth { scroll-behavior: smooth; }
    .antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
    .appearance-none { appearance: none; }
    .resize-none { resize: none; }
    .not-italic { font-style: normal; }
    .cursor-pointer { cursor: pointer; }
    .cursor-default { cursor: default; }
    .pointer-events-none { pointer-events: none; }
    .overflow-hidden { overflow: hidden; }
    .whitespace-nowrap { white-space: nowrap; }
    .uppercase { text-transform: uppercase; }
    .hidden { display: none; }
    .block { display: block; }
    .inline-block { display: inline-block; }
    .inline-flex { display: inline-flex; align-items: center; }
    .flex { display: flex; }
    .grid { display: grid; }
    .fixed { position: fixed; }
    .absolute { position: absolute; }
    .relative { position: relative; }
    .inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
    .top-0 { top: 0; }
    .bottom-0 { bottom: 0; }
    .left-0 { left: 0; }
    .right-0 { right: 0; }
    .left-1\/2 { left: 50%; }
    .-top-3\.5 { top: -0.875rem; }
    .-top-32 { top: -8rem; }
    .-bottom-32 { bottom: -8rem; }
    .-bottom-6 { bottom: -1.5rem; }
    .-right-32 { right: -8rem; }
    .-translate-x-1\/2 { transform: translateX(-50%); }
    .z-10 { z-index: 10; }
    .z-20 { z-index: 20; }
    .z-50 { z-index: 50; }
    .flex-col { flex-direction: column; }
    .flex-wrap { flex-wrap: wrap; }
    .flex-1 { flex: 1 1 0%; }
    .flex-shrink-0 { flex-shrink: 0; }
    .min-w-0 { min-width: 0; }
    .items-center { align-items: center; }
    .items-start { align-items: flex-start; }
    .items-baseline { align-items: baseline; }
    .justify-center { justify-content: center; }
    .justify-between { justify-content: space-between; }
    .gap-1 { gap: 0.25rem; }
    .gap-1\.5 { gap: 0.375rem; }
    .gap-2 { gap: 0.5rem; }
    .gap-2\.5 { gap: 0.625rem; }
    .gap-3 { gap: 0.75rem; }
    .gap-4 { gap: 1rem; }
    .gap-5 { gap: 1.25rem; }
    .gap-6 { gap: 1.5rem; }
    .gap-8 { gap: 2rem; }
    .gap-12 { gap: 3rem; }
    .grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
    .grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .space-y-1 > * + * { margin-top: 0.25rem; }
    .space-y-2 > * + * { margin-top: 0.5rem; }
    .space-y-3 > * + * { margin-top: 0.75rem; }
    .space-y-12 > * + * { margin-top: 3rem; }
    .w-2 { width: 0.5rem; }
    .w-2\.5 { width: 0.625rem; }
    .w-3 { width: 0.75rem; }
    .w-3\.5 { width: 0.875rem; }
    .w-4 { width: 1rem; }
    .w-5 { width: 1.25rem; }
    .w-7 { width: 1.75rem; }
    .w-8 { width: 2rem; }
    .w-9 { width: 2.25rem; }
    .w-10 { width: 2.5rem; }
    .w-14 { width: 3.5rem; }
    .w-16 { width: 4rem; }
    .w-80 { width: 20rem; }
    .w-96 { width: 24rem; }
    .w-px { width: 1px; }
    .w-full { width: 100%; }
    .w-\[600px\] { width: 600px; }
    .max-w-xl { max-width: 36rem; }
    .max-w-2xl { max-width: 42rem; }
    .max-w-3xl { max-width: 48rem; }
    .max-w-4xl { max-width: 56rem; }
    .max-w-5xl { max-width: 64rem; }
    .max-w-7xl { max-width: 80rem; }
    .max-w-\[200px\] { max-width: 200px; }
    .h-0\.5 { height: 0.125rem; }
    .h-2 { height: 0.5rem; }
    .h-2\.5 { height: 0.625rem; }
    .h-3 { height: 0.75rem; }
    .h-3\.5 { height: 0.875rem; }
    .h-4 { height: 1rem; }
    .h-5 { height: 1.25rem; }
    .h-7 { height: 1.75rem; }
    .h-8 { height: 2rem; }
    .h-9 { height: 2.25rem; }
    .h-10 { height: 2.5rem; }
    .h-14 { height: 3.5rem; }
    .h-16 { height: 4rem; }
    .h-80 { height: 20rem; }
    .h-96 { height: 24rem; }
    .h-px { height: 1px; }
    .h-full { height: 100%; }
    .h-\[300px\] { height: 300px; }
    .min-h-screen { min-height: 100vh; }
    .min-h-\[420px\] { min-height: 420px; }
    .p-2 { padding: 0.5rem; }
    .p-4 { padding: 1rem; }
    .p-5 { padding: 1.25rem; }
    .p-6 { padding: 1.5rem; }
    .p-8 { padding: 2rem; }
    .px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
    .px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
    .px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
    .px-3\.5 { padding-left: 0.875rem; padding-right: 0.875rem; }
    .px-4 { padding-left: 1rem; padding-right: 1rem; }
    .px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
    .px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
    .py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
    .py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
    .py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
    .py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
    .py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
    .py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
    .py-4 { padding-top: 1rem; padding-bottom: 1rem; }
    .py-12 { padding-top: 3rem; padding-bottom: 3rem; }
    .py-20 { padding-top: 5rem; padding-bottom: 5rem; }
    .py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .pt-2 { padding-top: 0.5rem; }
    .pt-6 { padding-top: 1.5rem; }
    .pt-20 { padding-top: 5rem; }
    .pb-5 { padding-bottom: 1.25rem; }
    .pb-8 { padding-bottom: 2rem; }
    .pb-20 { padding-bottom: 5rem; }
    .pr-12 { padding-right: 3rem; }
    .mt-0\.5 { margin-top: 0.125rem; }
    .mt-1 { margin-top: 0.25rem; }
    .mt-2 { margin-top: 0.5rem; }
    .mt-3 { margin-top: 0.75rem; }
    .mt-4 { margin-top: 1rem; }
    .mt-5 { margin-top: 1.25rem; }
    .mt-6 { margin-top: 1.5rem; }
    .mt-8 { margin-top: 2rem; }
    .mt-10 { margin-top: 2.5rem; }
    .mt-12 { margin-top: 3rem; }
    .mt-auto { margin-top: auto; }
    .mb-1 { margin-bottom: 0.25rem; }
    .mb-1\.5 { margin-bottom: 0.375rem; }
    .mb-2 { margin-bottom: 0.5rem; }
    .mb-3 { margin-bottom: 0.75rem; }
    .mb-4 { margin-bottom: 1rem; }
    .mb-5 { margin-bottom: 1.25rem; }
    .mb-6 { margin-bottom: 1.5rem; }
    .mb-8 { margin-bottom: 2rem; }
    .mb-10 { margin-bottom: 2.5rem; }
    .mb-12 { margin-bottom: 3rem; }
    .mb-14 { margin-bottom: 3.5rem; }
    .mb-16 { margin-bottom: 4rem; }
    .mr-1 { margin-right: 0.25rem; }
    .mx-auto { margin-left: auto; margin-right: auto; }
    .text-xs { font-size: 0.75rem; line-height: 1rem; }
    .text-sm { font-size: 0.875rem; line-height: 1.25rem; }
    .text-base { font-size: 1rem; line-height: 1.5rem; }
    .text-lg { font-size: 1.125rem; line-height: 1.75rem; }
    .text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .text-2xl { font-size: 1.5rem; line-height: 2rem; }
    .text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .text-5xl { font-size: 3rem; line-height: 1; }
    .text-center { text-align: center; }
    .text-left { text-align: left; }
    .font-medium { font-weight: 500; }
    .font-bold { font-weight: 700; }
    .font-display { font-family: 'Syne', sans-serif; }
    .font-body { font-family: 'DM Sans', sans-serif; }
    .leading-none { line-height: 1; }
    .leading-tight { line-height: 1.25; }
    .leading-relaxed { line-height: 1.625; }
    .leading-\[1\.08\] { line-height: 1.08; }
    .tracking-tight { letter-spacing: -0.025em; }
    .tracking-wider { letter-spacing: 0.05em; }
    .text-white { color: #ffffff; }
    .text-amber-200 { color: #fde68a; }
    .text-yellow-400 { color: #facc15; }
    .text-brand-300 { color: #8cbeff; }
    .text-brand-400 { color: #559aff; }
    .text-brand-500 { color: #2b73f5; }
    .text-brand-600 { color: #1a54e8; }
    .text-brand-700 { color: #163ed4; }
    .text-ink-200 { color: #cfd6e7; }
    .text-ink-300 { color: #a8b5cf; }
    .text-ink-400 { color: #7b8eb5; }
    .text-ink-500 { color: #5a6f9a; }
    .text-ink-600 { color: #475880; }
    .text-ink-800 { color: #333e58; }
    .fill-yellow-400 { fill: #facc15; }
    .bg-transparent { background-color: transparent; }
    .bg-white\/5 { background-color: rgba(255,255,255,0.05); }
    .bg-white\/8 { background-color: rgba(255,255,255,0.08); }
    .bg-amber-400 { background-color: #fbbf24; }
    .bg-brand-400 { background-color: #559aff; }
    .bg-brand-500 { background-color: #2b73f5; }
    .bg-brand-600 { background-color: #1a54e8; }
    .bg-brand-600\/15 { background-color: rgba(26,84,232,0.15); }
    .bg-brand-600\/20 { background-color: rgba(26,84,232,0.20); }
    .bg-brand-600\/30 { background-color: rgba(26,84,232,0.30); }
    .bg-brand-700\/15 { background-color: rgba(22,62,212,0.15); }
    .bg-brand-700\/20 { background-color: rgba(22,62,212,0.20); }
    .bg-brand-900\/30 { background-color: rgba(25,47,135,0.30); }
    .bg-ink-200 { background-color: #cfd6e7; }
    .bg-ink-900 { background-color: #1e2438; }
    .bg-ink-950\/60 { background-color: rgba(15,18,32,0.60); }
    .bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
    .from-transparent { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
    .via-ink-950\/40 { --tw-gradient-stops: var(--tw-gradient-from), rgba(15,18,32,0.4), var(--tw-gradient-to, transparent); }
    .via-ink-950\/50 { --tw-gradient-stops: var(--tw-gradient-from), rgba(15,18,32,0.5), var(--tw-gradient-to, transparent); }
    .via-ink-950\/60 { --tw-gradient-stops: var(--tw-gradient-from), rgba(15,18,32,0.6), var(--tw-gradient-to, transparent); }
    .via-brand-950\/10 { --tw-gradient-stops: var(--tw-gradient-from), rgba(19,31,82,0.1), var(--tw-gradient-to, transparent); }
    .to-transparent { --tw-gradient-to: transparent; }
    .border { border-width: 1px; border-style: solid; }
    .border-t { border-top-width: 1px; border-top-style: solid; }
    .border-y { border-top-width: 1px; border-top-style: solid; border-bottom-width: 1px; border-bottom-style: solid; }
    .border-dashed { border-style: dashed; }
    .border-white\/5 { border-color: rgba(255,255,255,0.05); }
    .border-white\/6 { border-color: rgba(255,255,255,0.06); }
    .border-white\/10 { border-color: rgba(255,255,255,0.10); }
    .border-amber-500\/25 { border-color: rgba(245,158,11,0.25); }
    .border-brand-500\/15 { border-color: rgba(43,115,245,0.15); }
    .border-brand-500\/20 { border-color: rgba(43,115,245,0.20); }
    .border-brand-500\/30 { border-color: rgba(43,115,245,0.30); }
    .rounded-lg { border-radius: 0.5rem; }
    .rounded-xl { border-radius: 0.75rem; }
    .rounded-2xl { border-radius: 1rem; }
    .rounded-3xl { border-radius: 1.5rem; }
    .rounded-full { border-radius: 9999px; }
    .opacity-0 { opacity: 0; }
    .opacity-60 { opacity: 0.6; }
    .opacity-75 { opacity: 0.75; }
    .opacity-90 { opacity: 0.9; }
    .opacity-\[0\.03\] { opacity: 0.03; }
    .scale-110 { transform: scale(1.1); }
    .blur-md { filter: blur(12px); }
    .blur-3xl { filter: blur(64px); }
    .shadow-glow { box-shadow: 0 0 32px 0 rgba(43,115,245,0.22); }
    .shadow-glow-sm { box-shadow: 0 0 16px 0 rgba(43,115,245,0.18); }
    .transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
    .transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
    .transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
    .duration-200 { transition-duration: 200ms; }
    .duration-300 { transition-duration: 300ms; }
    .placeholder-ink-600::placeholder { color: #475880; }
    .focus\:outline-none:focus { outline: none; }
    .focus\:border-brand-500:focus { border-color: #2b73f5; }
    .focus\:ring-1:focus { box-shadow: 0 0 0 1px var(--tw-ring-color); }
    .focus\:ring-brand-500\/50:focus { --tw-ring-color: rgba(43,115,245,0.5); }
    .group:hover .group-hover\:opacity-100 { opacity: 1; }
    .group:hover .group-hover\:opacity-20 { opacity: 0.2; }
    .group:hover .group-hover\:text-brand-300 { color: #8cbeff; }
    .hover\:bg-white\/5:hover { background-color: rgba(255,255,255,0.05); }
    .hover\:border-brand-500\/40:hover { border-color: rgba(43,115,245,0.4); }
    .hover\:text-brand-300:hover { color: #8cbeff; }
    .hover\:text-brand-400:hover { color: #559aff; }
    .hover\:text-ink-400:hover { color: #7b8eb5; }
    .hover\:text-white:hover { color: #ffffff; }
    /* ─── Responsive breakpoints ───────────── */
    @media (min-width: 640px) {
      .sm\:block { display: block; }
      .sm\:flex-row { flex-direction: row; }
      .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .sm\:justify-start { justify-content: flex-start; }
      .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
      .sm\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
      .sm\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
      .sm\:text-left { text-align: left; }
      .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
      .sm\:text-5xl { font-size: 3rem; line-height: 1; }
      .sm\:text-6xl { font-size: 3.75rem; line-height: 1; }
    }
    @media (min-width: 768px) {
      .md\:block { display: block; }
      .md\:flex { display: flex; }
      .md\:hidden { display: none; }
      .md\:inline-flex { display: inline-flex; align-items: center; }
      .md\:items-center { align-items: center; }
      .md\:gap-12 { gap: 3rem; }
      .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .md\:h-18 { height: 4.5rem; }
      .md\:mb-0 { margin-bottom: 0; }
      .md\:mb-16 { margin-bottom: 4rem; }
      .md\:pl-12 { padding-left: 3rem; }
      .md\:pr-12 { padding-right: 3rem; }
      .md\:space-y-0 > * + * { margin-top: 0; }
      .md\:text-right { text-align: right; }
      .md\:w-1\/2 { width: 50%; }
      .md\:w-12 { width: 3rem; }
    }
    @media (min-width: 1024px) {
      .lg\:flex { display: flex; }
      .lg\:flex-row { flex-direction: row; }
      .lg\:gap-16 { gap: 4rem; }
      .lg\:gap-20 { gap: 5rem; }
      .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
      .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
      .lg\:mt-0 { margin-top: 0; }
      .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
      .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
      .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
    }
  
/* === Block 2: Basis, Komponenten, Animationen === */

    /* ─── Base ─────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; }
    html { font-family: 'DM Sans', sans-serif; }
    body {
      background-color: #0f1220;
      color: #e9ecf4;
      overflow-x: hidden;
    }

    /* ─── Custom Scrollbar ─────────────────── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: #0f1220; }
    ::-webkit-scrollbar-thumb { background: #2b73f5; border-radius: 3px; }

    /* ─── Noise grain overlay ──────────────── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.025;
      pointer-events: none;
      z-index: 9999;
    }

    /* ─── Typography ───────────────────────── */
    .font-display { font-family: 'Syne', sans-serif; }

    /* ─── Glass card ───────────────────────── */
    .glass {
      background: rgba(19,31,82,0.45);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid rgba(85,154,255,0.12);
    }
    .glass-light {
      background: rgba(255,255,255,0.04);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.07);
    }

    /* ─── Gradient mesh hero ───────────────── */
    .hero-mesh {
      background:
        radial-gradient(ellipse 80% 60% at 60% 0%, rgba(43,115,245,0.22) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(22,62,212,0.18) 0%, transparent 60%),
        #0f1220;
    }

    /* ─── Gradient text ────────────────────── */
    .text-gradient {
      background: linear-gradient(135deg, #fff 30%, #559aff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ─── Animated underline button ─────────── */
    .btn-ghost {
      position: relative;
    }
    .btn-ghost::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1px;
      background: #559aff;
      transition: width 0.3s ease;
    }
    .btn-ghost:hover::after { width: 100%; }

    /* ─── Nav blur ─────────────────────────── */
    .nav-blur {
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      background: rgba(15,18,32,0.85);
      border-bottom: 1px solid rgba(85,154,255,0.08);
    }
    /* When menu is open, always show solid nav background */
    #navbar.menu-open {
      background: #0f1220 !important;
    }

    /* ─── Scroll reveal base ───────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
    }
    .reveal-left {
      opacity: 0;
      transform: translateX(-28px);
    }
    .reveal-right {
      opacity: 0;
      transform: translateX(28px);
    }

    /* ─── Service card hover ───────────────── */
    .service-card {
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }
    .service-card:hover {
      transform: translateY(-4px);
      border-color: rgba(85,154,255,0.35);
      box-shadow: 0 8px 40px rgba(43,115,245,0.18);
    }

    /* ─── Pricing card ─────────────────────── */
    .pricing-recommended {
      border: 1px solid rgba(85,154,255,0.5);
      box-shadow: 0 0 48px rgba(43,115,245,0.15), 0 2px 24px rgba(15,18,32,0.3);
    }

    /* ─── FAQ accordion ────────────────────── */
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
      opacity: 0;
    }
    .faq-item.open .faq-answer {
      max-height: 300px;
      opacity: 1;
    }
    .faq-icon {
      transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    }
    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    /* ─── Step connector line ──────────────── */
    .step-line {
      background: linear-gradient(180deg, rgba(85,154,255,0.5) 0%, rgba(85,154,255,0.05) 100%);
    }

    /* ─── Marquee trust bar ────────────────── */
    @keyframes marquee {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .marquee-track {
      animation: marquee 22s linear infinite;
      display: flex;
      width: max-content;
    }

    /* ─── Pulse dot ────────────────────────── */
    @keyframes pulse-ring {
      0%   { transform: scale(1); opacity: 0.6; }
      100% { transform: scale(2.2); opacity: 0; }
    }
    .pulse-ring {
      animation: pulse-ring 2s cubic-bezier(0.4,0,0.6,1) infinite;
    }

    /* ─── CTA button ────────────────────────── */
    .btn-primary {
      background: linear-gradient(90deg, #1a54e8 0%, #2b73f5 40%, #559aff 60%, #2b73f5 80%, #1a54e8 100%);
      background-size: 200% auto;
      transition: background-position 0.5s ease, transform 0.2s ease, box-shadow 0.3s ease;
    }
    .btn-primary:hover {
      background-position: right center;
      transform: translateY(-1px);
      box-shadow: 0 0 28px rgba(43,115,245,0.45);
    }
    .btn-primary:active { transform: translateY(0); }

    /* ─── Outline button ───────────────────── */
    .btn-outline {
      border: 1px solid rgba(85,154,255,0.4);
      color: #a8b5cf;
      transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, transform 0.2s ease;
    }
    .btn-outline:hover {
      border-color: #2b73f5;
      color: #e9ecf4;
      background: rgba(43,115,245,0.08);
      transform: translateY(-1px);
    }

    /* ─── Mobile menu ──────────────────────── */
    #mobile-menu {
      transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      background: #0f1220;
      border-bottom: 1px solid rgba(85,154,255,0.10);
      /* Stretch full width outside the nav's padding */
      margin-left: -1rem;
      margin-right: -1rem;
      padding-left: 1rem;
      padding-right: 1rem;
    }
    @media (min-width: 640px) {
      #mobile-menu {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }
    }
    #mobile-menu.open {
      max-height: 420px;
      opacity: 1;
    }

    /* ─── Badge ────────────────────────────── */
    .badge {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    /* ─── Hero fade-up keyframe ────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* reduced motion */
    @media (prefers-reduced-motion: reduce) {
      .marquee-track { animation: none; }
      .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
      * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
    }

    /* ─── Phone mockup responsive ──────────── */
    @media (min-width: 1024px) {
      .phone-frame {
        width: 260px !important;
        border-radius: 40px !important;
        padding: 10px !important;
      }
    }

    /* ─── Referenzen Karussell ─────────────── */
    .ref-carousel-track {
      display: flex;
      gap: 1.5rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding-bottom: 2rem;
      cursor: grab;
    }
    .ref-carousel-track:active { cursor: grabbing; }
    .ref-carousel-track::-webkit-scrollbar { display: none; }

    .ref-card {
      flex: 0 0 300px;
      scroll-snap-align: start;
      position: relative;
      border-radius: 24px;
      overflow: visible;
      transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    }
    @media (min-width: 768px) {
      .ref-card { flex: 0 0 320px; }
    }
    .ref-card:hover { transform: translateY(-6px); }

    /* phone shell */
    .ref-phone {
      width: 200px;
      margin: 0 auto;
      background: #0a0b10;
      border-radius: 36px;
      padding: 8px;
      box-shadow:
        0 0 0 1px rgba(255,255,255,0.08),
        0 20px 60px rgba(0,0,0,0.6),
        0 4px 16px rgba(0,0,0,0.4);
      position: relative;
    }
    .ref-phone::before {
      content: '';
      position: absolute;
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 6px;
      background: #1a1c24;
      border-radius: 3px;
      z-index: 10;
    }
    .ref-phone-inner {
      border-radius: 28px;
      overflow: hidden;
      aspect-ratio: 9/19;
      background: #111;
      position: relative;
    }
    .ref-phone-canvas {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    /* Tattoo Studio canvas */
    .canvas-tattoo {
      background: #0c0c0c;
      color: #c9a84c;
    }
    .canvas-tattoo .cn-bar {
      background: rgba(0,0,0,0.7);
      padding: 10px 12px 6px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid rgba(201,168,76,0.15);
    }
    .canvas-tattoo .cn-logo {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: #c9a84c;
      font-family: 'Syne', sans-serif;
    }
    .canvas-tattoo .cn-hero {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 16px 10px;
      background: linear-gradient(160deg, #0c0c0c 0%, #1a1208 100%);
      text-align: center;
      gap: 6px;
    }
    .canvas-tattoo .cn-title {
      font-size: 22px;
      font-weight: 800;
      letter-spacing: 0.04em;
      color: #c9a84c;
      font-family: 'Syne', sans-serif;
      line-height: 1.1;
    }
    .canvas-tattoo .cn-sub {
      font-size: 7px;
      letter-spacing: 0.2em;
      color: #8a8a8a;
      text-transform: uppercase;
    }
    .canvas-tattoo .cn-divider {
      width: 60px;
      height: 1px;
      background: linear-gradient(90deg, transparent, #c9a84c, transparent);
      margin: 4px auto;
    }
    .canvas-tattoo .cn-text {
      font-size: 7px;
      color: #a0a0a0;
      line-height: 1.5;
      padding: 0 4px;
    }
    .canvas-tattoo .cn-text span { color: #c9a84c; }
    .canvas-tattoo .cn-btn-gold {
      background: #c9a84c;
      color: #0c0c0c;
      font-size: 7px;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 6px 16px;
      border-radius: 20px;
      text-transform: uppercase;
      margin-top: 4px;
    }
    .canvas-tattoo .cn-btn-outline {
      border: 1px solid rgba(201,168,76,0.4);
      color: #c9a84c;
      font-size: 7px;
      letter-spacing: 0.08em;
      padding: 5px 16px;
      border-radius: 20px;
      text-transform: uppercase;
    }
    .canvas-tattoo .cn-trust {
      display: flex;
      gap: 8px;
      justify-content: center;
      margin-top: 4px;
    }
    .canvas-tattoo .cn-trust span {
      font-size: 6px;
      color: #6a6a6a;
    }

    /* Bau + Holz canvas */
    .canvas-wood {
      background: #1a1208;
      color: #c9a84c;
    }
    .canvas-wood .cn-bar {
      background: rgba(26,18,8,0.95);
      padding: 10px 12px 8px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid rgba(201,168,76,0.1);
    }
    .canvas-wood .cn-logo-row {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .canvas-wood .cn-logo-icon {
      width: 18px;
      height: 18px;
      background: #c9a84c;
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
    }
    .canvas-wood .cn-brand {
      font-size: 9px;
      font-weight: 600;
      color: #e8dcc8;
      font-family: 'Syne', sans-serif;
    }
    .canvas-wood .cn-body {
      flex: 1;
      padding: 14px 12px;
      background: linear-gradient(180deg, #1a1208 0%, #120e06 100%);
    }
    .canvas-wood .cn-badge-pill {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      background: rgba(201,168,76,0.12);
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: 20px;
      padding: 2px 7px;
      font-size: 6px;
      color: #c9a84c;
      margin-bottom: 10px;
    }
    .canvas-wood .cn-h1 {
      font-size: 14px;
      font-weight: 800;
      line-height: 1.2;
      color: #e8dcc8;
      font-family: 'Syne', sans-serif;
      margin-bottom: 8px;
    }
    .canvas-wood .cn-h1 span { color: #c9a84c; }
    .canvas-wood .cn-p {
      font-size: 6.5px;
      color: #9a8a70;
      line-height: 1.6;
      margin-bottom: 12px;
    }
    .canvas-wood .cn-btn-fill {
      background: #c9a84c;
      color: #0c0a06;
      font-size: 7px;
      font-weight: 600;
      padding: 6px 12px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 4px;
      width: 100%;
      justify-content: center;
      margin-bottom: 6px;
    }
    .canvas-wood .cn-btn-out {
      border: 1px solid rgba(232,220,200,0.25);
      color: #e8dcc8;
      font-size: 7px;
      padding: 5px 12px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 4px;
      width: 100%;
      justify-content: center;
      margin-bottom: 10px;
    }
    .canvas-wood .cn-stars {
      display: flex;
      align-items: center;
      gap: 3px;
      font-size: 6px;
      color: #9a8a70;
    }
    .canvas-wood .cn-star { color: #c9a84c; font-size: 8px; }

    /* HMService canvas */
    .canvas-green {
      background: #0d1a0d;
    }
    .canvas-green .cn-bar {
      background: rgba(13,26,13,0.95);
      padding: 10px 12px 8px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid rgba(74,163,74,0.15);
    }
    .canvas-green .cn-logo-row {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .canvas-green .cn-logo-icon {
      width: 18px;
      height: 18px;
      background: #3a9c3a;
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 9px;
    }
    .canvas-green .cn-brand {
      font-size: 9px;
      font-weight: 700;
      color: #e0f0e0;
      font-family: 'Syne', sans-serif;
    }
    .canvas-green .cn-brand em { color: #5bc85b; font-style: normal; }
    .canvas-green .cn-body {
      flex: 1;
      padding: 14px 12px;
    }
    .canvas-green .cn-badge-pill {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      background: rgba(74,163,74,0.15);
      border: 1px solid rgba(74,163,74,0.25);
      border-radius: 20px;
      padding: 2px 7px;
      font-size: 6px;
      color: #5bc85b;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 10px;
    }
    .canvas-green .cn-h1 {
      font-size: 14px;
      font-weight: 800;
      line-height: 1.2;
      color: #e0f0e0;
      font-family: 'Syne', sans-serif;
      margin-bottom: 2px;
    }
    .canvas-green .cn-h1 em { color: #5bc85b; font-style: normal; }
    .canvas-green .cn-p {
      font-size: 6.5px;
      color: #6a8c6a;
      line-height: 1.6;
      margin-bottom: 12px;
    }
    .canvas-green .cn-btn-fill {
      background: #3a9c3a;
      color: #fff;
      font-size: 7px;
      font-weight: 600;
      padding: 6px 12px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 4px;
      width: 100%;
      justify-content: center;
      margin-bottom: 6px;
    }
    .canvas-green .cn-btn-out {
      border: 1px solid rgba(224,240,224,0.2);
      color: #e0f0e0;
      font-size: 7px;
      padding: 5px 12px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 4px;
      width: 100%;
      justify-content: center;
      margin-bottom: 10px;
    }
    .canvas-green .cn-trust-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6px;
    }
    .canvas-green .cn-trust-item {
      display: flex;
      align-items: flex-start;
      gap: 4px;
    }
    .canvas-green .cn-trust-icon { color: #3a9c3a; font-size: 9px; margin-top: 1px; }
    .canvas-green .cn-trust-title { font-size: 6.5px; font-weight: 600; color: #e0f0e0; display: block; }
    .canvas-green .cn-trust-sub { font-size: 5.5px; color: #5a7a5a; display: block; }

    /* Karussell dots */
    .ref-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(85,154,255,0.25);
      transition: all 0.3s ease;
      cursor: pointer;
    }
    .ref-dot.active {
      width: 20px;
      border-radius: 3px;
      background: #2b73f5;
    }

    /* Fade edges */
    .ref-carousel-wrap::after {
      content: '';
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 60px;
      background: linear-gradient(90deg, transparent, #0f1220);
      pointer-events: none;
      z-index: 5;
    }
    @media (max-width: 640px) {
      .ref-carousel-wrap::after { width: 30px; }
    }
  
    /* ─── Blog-Artikel (Stufe 2 Ergänzung) ─────────────────── */
    article h2 { margin-top: 3rem; }
    article h3 { margin-top: 1.5rem; }

    /* ─── Preiskarten (Stufe 2 Ergänzung) ──────────────────── */
    .price-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 1.5rem;
      padding: 2rem;
      transition: border-color 0.3s ease, transform 0.3s ease;
    }
    .price-card:hover { border-color: rgba(85,154,255,0.35); transform: translateY(-4px); }
    .price-card.featured {
      background: rgba(19,31,82,0.45);
      border-color: rgba(85,154,255,0.3);
      box-shadow: 0 0 32px 0 rgba(43,115,245,0.15);
    }

    /* ─── Formular-Fehler (Stufe 2 Ergänzung) ──────────────── */
    .field-error { color: #f87171; font-size: 0.75rem; margin-top: 0.25rem; display: none; }
    .field-error.visible { display: block; }
    input.error, textarea.error { border-color: #f87171 !important; }

    /* ─── Zusätzliche Utilities für Landingpages ───────────── */
    .font-semibold { font-weight: 600; }
    .text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .text-red-400 { color: #f87171; }
    .items-end { align-items: flex-end; }
    .pt-28 { padding-top: 7rem; }
    .min-h-\[90vh\] { min-height: 90vh; }
    .space-y-5 > * + * { margin-top: 1.25rem; }
    .bg-ink-950\/50 { background-color: rgba(15,18,32,0.50); }
    .border-brand-800\/40 { border-color: rgba(24,52,172,0.40); }
    .hover\:border-brand-700\/40:hover { border-color: rgba(22,62,212,0.40); }
    .hover\:text-ink-300:hover { color: #a8b5cf; }
    @media (min-width: 640px) {
      .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    }
