
  :root {
    --bg: #0a0a0f;
    --bg2: #111118;
    --card: #16161f;
    --border: rgba(255,255,255,0.07);
    --accent: #00e5a0;
    --accent2: #005fff;
    --text: #e8e8f0;
    --muted: #6b6b80;
    --heading: #ffffff;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    line-height: 1.65;
    overflow-x: hidden;
  }

  /* ─── NOISE TEXTURE OVERLAY ─── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.6;
  }

  /* ─── SCROLLBAR ─── */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

  /* ─── NAVIGATION ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 4rem;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: padding 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  }

  nav.scrolled {
    padding: 0.75rem 4rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  }

  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9rem;
    letter-spacing: 0.04em;
    color: var(--heading);
    text-decoration: none;
  }

  .nav-logo span { color: var(--accent); }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--accent); }

  .nav-cta {
    background: var(--accent);
    color: #000 !important;
    padding: 0.55rem 1.4rem;
    border-radius: 2px;
    font-weight: 500 !important;
    transition: opacity 0.2s !important;
  }

  .nav-cta:hover { opacity: 0.85; color: #000 !important; }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 10rem 4rem 6rem;
    overflow: hidden;
  }

  .hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,229,160,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,229,160,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
  }

  .hero-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(0,95,255,0.12) 0%, rgba(0,229,160,0.06) 40%, transparent 70%);
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    width: min(1280px, 100%);
    margin: 0 auto;
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(420px, 0.78fr) minmax(560px, 1.22fr);
    gap: 3rem;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
  }

  .hero-copy {
    max-width: 560px;
  }

  .hero-logo-big {
    width: min(1400px, 96vw);
    margin: 0 auto 1.5rem;
  }

  .hero-logo-big img {
    width: 100%;
    height: auto;
    display: block;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,229,160,0.1);
    border: 1px solid rgba(0,229,160,0.25);
    color: var(--accent);
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: 2px;
    margin-bottom: 2rem;
    animation: fadeUp 0.6s ease both;
  }

  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.95;
    color: var(--heading);
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s 0.1s ease both;
  }

  h1 em {
    font-style: normal;
    color: var(--accent);
    display: block;
  }

  .hero-sub {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    animation: fadeUp 0.6s 0.2s ease both;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
  }

  .hero-preview-stack {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    align-items: start;
    justify-items: center;
    min-height: 440px;
  }

  .hero-preview-stack .phone-preview {
    position: relative;
    width: 100%;
    max-width: 185px;
    min-height: 0;
    border-radius: 9px;
    transform-origin: center;
    animation: fadeUp 0.7s var(--ease-out) both;
  }

  .hero-preview-stack .phone-preview:nth-child(1) { animation-delay: 0.35s; }
  .hero-preview-stack .phone-preview:nth-child(2) { animation-delay: 0.45s; }
  .hero-preview-stack .phone-preview:nth-child(3) { animation-delay: 0.55s; }
  .hero-preview-stack .phone-preview:nth-child(4) { animation-delay: 0.65s; }

  .hero-preview-stack .phone-preview:nth-child(1) {
    margin-top: 58px;
    z-index: 1;
  }

  .hero-preview-stack .phone-preview:nth-child(2) {
    margin-top: 120px;
    z-index: 2;
  }

  .hero-preview-stack .phone-preview:nth-child(3) {
    margin-top: 58px;
    z-index: 3;
  }

  .hero-preview-stack .phone-preview:nth-child(4) {
    margin-top: 120px;
    z-index: 4;
  }

  .hero-preview-stack .phone-bar {
    height: 28px;
    padding: 0 0.45rem;
    gap: 0.35rem;
    font-size: 0.44rem;
  }

  .hero-preview-stack .phone-logo {
    width: 18px;
    height: 18px;
    font-size: 0.9rem;
  }

  .hero-preview-stack .phone-actions {
    gap: 0.35rem;
    font-size: 0.55rem;
  }

  .hero-preview-stack .phone-body {
    padding: 0.55rem;
    gap: 0.38rem;
    font-size: 0.5rem;
  }

  .hero-preview-stack .phone-hero {
    min-height: 84px;
    gap: 0.35rem;
  }

  .hero-preview-stack .phone-hero .phone-logo {
    width: 52px;
    height: 52px;
    font-size: 2rem;
  }

  .hero-preview-stack .phone-preview:nth-child(1) .phone-hero {
    min-height: 98px;
  }

  .hero-preview-stack .phone-preview:nth-child(1) .phone-hero .phone-logo {
    width: 64px;
    height: 64px;
    font-size: 2.35rem;
  }

  .hero-preview-stack .phone-date {
    font-size: 0.42rem;
  }

  .hero-preview-stack .bot-dot {
    width: 15px;
    height: 15px;
    font-size: 0.7rem;
  }

  .hero-preview-stack .msg {
    padding: 0.38rem 0.48rem;
    border-radius: 10px;
  }

  .hero-preview-stack .quick-replies {
    gap: 0.25rem;
    margin-left: 1.25rem;
  }

  .hero-preview-stack .quick-replies button {
    padding: 0.22rem 0.38rem;
    font-size: 0.48rem;
  }

  .hero-preview-stack .phone-input {
    padding: 0.38rem 0.55rem;
    font-size: 0.48rem;
  }

  .btn-primary {
    background: var(--accent);
    color: #000;
    padding: 0.85rem 2rem;
    font-weight: 500;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
    letter-spacing: 0.03em;
  }

  .btn-primary:hover {
    opacity: 0.85;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,229,160,0.22);
  }

  .btn-outline {
    background: transparent;
    color: var(--text);
    padding: 0.85rem 2rem;
    font-weight: 400;
    font-size: 0.9rem;
    border: 1px solid var(--border);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.3s var(--ease-out), color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
    letter-spacing: 0.03em;
  }

  .btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
  }

  .hero-stats {
    position: absolute;
    right: 4rem;
    bottom: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeUp 0.6s 0.4s ease both;
  }

  .stat {
    text-align: right;
  }

  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--heading);
    line-height: 1;
  }

  .stat-num span { color: var(--accent); }

  .stat-label {
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  /* ─── SECTIONS ─── */
  section { padding: 6rem 4rem; }

  .section-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .section-label::before {
    content: '//';
    color: var(--muted);
  }

  h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--heading);
    letter-spacing: 0.02em;
    line-height: 1.05;
    margin-bottom: 1.2rem;
  }

  .section-sub {
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 3.5rem;
    font-size: 1rem;
  }

  /* ─── SERVICES ─── */
  #leistungen { background: var(--bg2); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5px;
    border: 1.5px solid var(--border);
  }

  .service-card {
    background: var(--card);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s, transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  }

  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }

  .service-card:hover {
    background: #1c1c27;
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  }
  .service-card:hover::after { transform: scaleX(1); }

  .service-icon {
    width: 48px; height: 48px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: var(--accent);
    background: rgba(0,229,160,0.05);
  }

  .service-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--heading);
    letter-spacing: 0.04em;
    margin-bottom: 0.8rem;
  }

  .service-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .service-features li {
    font-size: 0.82rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .service-features li::before {
    content: '→';
    color: var(--accent);
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
  }

  /* ─── PROCESS ─── */
  .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2px;
    margin-top: 3.5rem;
    position: relative;
  }

  .process-step {
    padding: 2rem;
    border: 1px solid var(--border);
    position: relative;
    background: var(--card);
    transition: transform 0.35s var(--ease-out), background 0.3s;
  }

  .process-step:hover {
    transform: translateY(-2px);
    background: #1c1c27;
  }

  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: rgba(0,229,160,0.62);
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 0 22px rgba(0,229,160,0.22);
  }

  .process-step h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--heading);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
  }

  .process-step p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.6;
  }

  /* ─── PRICING ─── */
  #preise { background: var(--bg2); }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5px;
    border: 1.5px solid var(--border);
  }

  .pricing-card {
    background: var(--card);
    padding: 2.5rem;
    position: relative;
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  }

  .pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  }

  .pricing-card.featured {
    background: #15201a;
    border: 1.5px solid var(--accent);
    margin: -1.5px;
    z-index: 1;
  }

  .pricing-badge {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: #000;
    background: var(--accent);
    padding: 0.25rem 0.7rem;
    display: inline-block;
    margin-bottom: 1.5rem;
  }

  .pricing-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--heading);
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
  }

  .pricing-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--heading);
    line-height: 1;
    margin-bottom: 0.3rem;
  }

  .pricing-price span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--muted);
  }

  .pricing-note {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 2rem;
  }

  .pricing-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 2rem;
  }

  .pricing-list li {
    font-size: 0.87rem;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.4;
  }

  .pricing-list li .check {
    color: var(--accent);
    margin-top: 0.1rem;
    flex-shrink: 0;
  }

  .pricing-list li .cross {
    color: var(--muted);
    margin-top: 0.1rem;
    flex-shrink: 0;
  }

  /* ─── PORTFOLIO PLACEHOLDER ─── */
  #portfolio { background: var(--bg); }

  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    border: 1.5px solid var(--border);
  }

  .portfolio-item {
    aspect-ratio: 16/10;
    background: var(--card);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
    border: 1px dashed var(--border);
    color: var(--muted);
    font-size: 0.82rem;
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.05em;
    cursor: default;
    transition: background 0.2s;
  }

  .portfolio-item:hover { background: #1c1c27; }

  .portfolio-item .placeholder-icon { font-size: 1.8rem; opacity: 0.3; }

  /* ─── CHAT PREVIEW MOCKUPS ─── */
  .phone-preview {
    background: #f8f8fa;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.35);
    min-height: 520px;
    color: #06101c;
  }

  .phone-bar {
    height: 48px;
    background: var(--accent);
    color: #06101c;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0 0.9rem;
    font-weight: 500;
  }

  .phone-logo {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #050508;
    color: var(--accent);
    display: grid;
    place-items: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    line-height: 1;
  }

  .phone-actions {
    margin-left: auto;
    display: flex;
    gap: 0.75rem;
    font-family: 'DM Mono', monospace;
  }

  .phone-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .phone-hero {
    min-height: 140px;
    display: grid;
    place-items: center;
    text-align: center;
    gap: 0.75rem;
    color: #06101c;
  }

  .phone-hero .phone-logo {
    width: 80px;
    height: 80px;
    font-size: 2.8rem;
  }

  .phone-date {
    align-self: center;
    font-size: 0.68rem;
    color: #06101c;
    margin: 0.2rem 0;
  }

  .msg-row {
    display: flex;
    align-items: flex-end;
    gap: 0.45rem;
  }

  .msg-row.user { justify-content: flex-end; }

  .bot-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #050508;
    color: var(--accent);
    display: grid;
    place-items: center;
    font-family: 'Bebas Neue', sans-serif;
    flex-shrink: 0;
  }

  .msg {
    max-width: 82%;
    padding: 0.72rem 0.9rem;
    border-radius: 18px;
  }

  .msg.bot {
    background: #ededf1;
    border-bottom-left-radius: 5px;
  }

  .msg.user {
    background: #2f6bdc;
    color: #fff;
    border-bottom-right-radius: 5px;
  }

  .quick-replies {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    margin-left: 2.2rem;
  }

  .quick-replies button {
    border: 0;
    border-radius: 999px;
    background: #eceef3;
    color: #43506f;
    padding: 0.38rem 0.7rem;
    font: inherit;
  }

  .quick-replies button.primary { background: #d6e5ff; color: #1b4fa5; }

  .phone-input {
    margin-top: auto;
    border: 1px solid #d9dce5;
    border-radius: 999px;
    padding: 0.75rem 1rem;
    color: #5a6685;
    background: #fff;
  }

  /* ─── CONTACT ─── */
  #kontakt { background: var(--bg2); }

  .contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
  }

  .contact-info h2 { margin-bottom: 1rem; }

  .contact-info p {
    color: var(--muted);
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .contact-item-icon {
    width: 36px; height: 36px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
  }

  .contact-item-label {
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'DM Mono', monospace;
    margin-bottom: 0.2rem;
  }

  .contact-item-value {
    font-size: 0.92rem;
    color: var(--text);
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .form-group label {
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'DM Mono', monospace;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.8rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--accent); }

  .form-group select option { background: var(--card); }

  .form-group textarea { min-height: 130px; }

  .form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
  }

  .form-check input[type="checkbox"] {
    width: 14px; height: 14px;
    margin-top: 0.2rem;
    flex-shrink: 0;
    accent-color: var(--accent);
  }

  /* ─── IMPRESSUM ─── */
  #impressum { background: var(--bg); }

  .impressum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }

  .impressum-block {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 2rem;
  }

  .impressum-block h3 {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    color: var(--accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .impressum-block p {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.8;
  }

  .impressum-block a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: border-color 0.2s, color 0.2s;
  }

  .impressum-block a:hover { color: var(--accent); border-color: var(--accent); }

  .placeholder-text {
    display: inline-block;
    background: rgba(0,229,160,0.08);
    border: 1px dashed rgba(0,229,160,0.2);
    color: var(--muted);
    padding: 0 0.4rem;
    font-style: italic;
    font-size: 0.82rem;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--heading);
    letter-spacing: 0.04em;
    text-decoration: none;
  }

  .footer-logo span { color: var(--accent); }

  .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    flex-wrap: wrap;
  }

  .footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--accent); }

  .footer-copy {
    color: var(--muted);
    font-size: 0.78rem;
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.05em;
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  }

  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* Raster-Container mit gestaffeltem Erscheinen: Container bleibt statisch,
     die Kinder blenden nacheinander ein */
  .reveal.stagger { opacity: 1; transform: none; transition: none; }

  .reveal.stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    transition-delay: calc(var(--stagger-i, 0) * 80ms);
  }

  .reveal.stagger.visible > * { opacity: 1; transform: translateY(0); }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      transition-delay: 0ms !important;
    }

    .reveal,
    .reveal.stagger > * { opacity: 1 !important; transform: none !important; }
  }

  /* ─── MOBILE HAMBURGER ─── */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }

  .hamburger span {
    width: 22px; height: 2px;
    background: var(--text);
    transition: transform 0.3s, opacity 0.3s;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    nav.scrolled { padding: 0.65rem 1.5rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    section { padding: 4rem 1.5rem; }
    .hero { padding: 8rem 1.5rem 10rem; }
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-preview-stack {
      max-width: 640px;
      width: 100%;
      min-height: 430px;
      margin-top: 1rem;
    }
    .hero-stats { position: relative; right: auto; bottom: auto; flex-direction: row; flex-wrap: wrap; margin-top: 3rem; }
    .stat { text-align: left; }
    .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .preview-stage { grid-template-columns: 1fr; gap: 2rem; }
    .preview-grid { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
    footer { flex-direction: column; align-items: flex-start; padding: 2.5rem 1.5rem; }
    h1 { font-size: clamp(3rem, 12vw, 5rem); }
    .pricing-card.featured { margin: 0; }
  }

  @media (max-width: 640px) {
    .hero-preview-stack {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.75rem;
      min-height: auto;
    }

    .hero-preview-stack .phone-preview {
      position: relative;
      inset: auto !important;
      width: 100%;
      margin-top: 0 !important;
    }

    .hero-preview-stack .phone-preview {
      min-width: 0;
    }
  }

  /* ─── MOBILE NAV OPEN ─── */
  .mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }

  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--heading);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s;
  }
  .mobile-nav a:hover { color: var(--accent); }

  .mobile-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.5rem;
    cursor: pointer;
  }

  /* ─── DIVIDER ─── */
  .divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), transparent);
    opacity: 0.3;
  }