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

    :root {
      --bg: #f4f4f2;
      --white: #ffffff;
      --dark: #0e0e0e;
      --dark2: #1a1a1a;
      --mid: #2c2c2c;
      --grey: #6b6b6b;
      --light-grey: #e8e8e6;
      --blue: #1d4ed8;
      --blue-light: #3b82f6;
      --border: #dcdcda;
      --font-main: 'DM Sans', sans-serif;
      --font-display: 'Syne', sans-serif;
    }

    html { scroll-behavior: smooth; }
    body { font-family: var(--font-main); background: var(--bg); color: var(--dark); overflow-x: hidden; }

    /* SCROLL PROGRESS */
    #scrollProgress { position: fixed; top: 0; left: 0; height: 2px; background: var(--blue); z-index: 9997; width: 0; }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 0 5%; height: 64px;
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(244,244,242,0.92); backdrop-filter: blur(12px);
      border-bottom: 1px solid transparent; transition: border-color 0.3s;
    }
    nav.scrolled { border-bottom-color: var(--border); }
    .nav-logo { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em; color: var(--dark); text-decoration: none; display: flex; flex-direction: column; line-height: 1; }
    .nav-logo span { color: var(--blue); }
    .nav-logo-sub { font-family: var(--font-main); font-size: 0.52rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); margin-top: 0.3rem; }
    .nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; }
    .nav-links a { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey); text-decoration: none; transition: color 0.2s; }
    .nav-links a:hover { color: var(--dark); }
    .nav-right { display: flex; align-items: center; gap: 1.5rem; }

    /* Language Dropdown */
    .lang-wrap { position: relative; }
    .lang-btn {
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
      background: none; border: 1px solid var(--border); color: var(--grey);
      padding: 0.3rem 0.8rem; border-radius: 2px; cursor: pointer;
      display: flex; align-items: center; gap: 0.35rem; transition: all 0.2s;
    }
    .lang-btn:hover { border-color: var(--dark); color: var(--dark); }
    .lang-btn svg { transition: transform 0.2s; }
    .lang-wrap.open .lang-btn svg { transform: rotate(180deg); }
    .lang-dropdown {
      position: absolute; top: calc(100% + 6px); right: 0;
      background: var(--white); border: 1px solid var(--border); border-radius: 3px;
      overflow: hidden; min-width: 130px; display: none;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .lang-wrap.open .lang-dropdown { display: block; }
    .lang-option {
      display: flex; align-items: center; gap: 0.6rem;
      padding: 0.55rem 0.9rem; font-size: 0.75rem; font-weight: 500;
      letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
      color: var(--grey); transition: background 0.15s, color 0.15s;
    }
    .lang-option:hover { background: var(--bg); color: var(--dark); }
    .lang-option.active { color: var(--blue); font-weight: 700; }

    .nav-cta { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; background: var(--dark); color: var(--white); padding: 0.5rem 1.2rem; border-radius: 2px; text-decoration: none; transition: background 0.2s; }
    .nav-cta:hover { background: var(--blue); }

    .burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
    .burger span { display: block; width: 24px; height: 1.5px; background: var(--dark); transition: all 0.3s; }

    /* MOBILE MENU */
    .mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0; background: var(--bg); z-index: 999; padding: 3rem 5%; flex-direction: column; gap: 0; }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--dark); text-decoration: none; border-bottom: 1px solid var(--border); padding: 1.25rem 0; }

    /* HERO */
    #hero { min-height: 100vh; display: flex; align-items: center; padding: 0 5%; padding-top: 64px; position: relative; overflow: hidden; }
    .hero-bg-number { position: absolute; right: 3%; top: 50%; transform: translateY(-50%); font-family: var(--font-display); font-size: clamp(120px, 18vw, 260px); font-weight: 800; color: transparent; -webkit-text-stroke: 1.5px rgba(29,78,216,0.18); line-height: 1; pointer-events: none; user-select: none; overflow: hidden; }
    .hero-inner { max-width: 800px; margin: 0 auto; width: 100%; display: flex; flex-direction: column; align-items: flex-start; }
    .hero-sub { max-width: 540px; }
    .hero-actions { flex-wrap: wrap; }
    .hero-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
    .hero-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--blue); }
    .hero-title { font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; color: var(--dark); margin-bottom: 1.5rem; }
    .hero-title .highlight { color: var(--blue); }
    .hero-sub { font-size: 1rem; line-height: 1.7; color: var(--grey); max-width: 420px; margin-bottom: 2.5rem; }
    .hero-actions { display: flex; align-items: center; gap: 1.5rem; }
    .btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--dark); color: var(--white); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.9rem 2rem; border-radius: 2px; text-decoration: none; transition: background 0.2s; }
    .btn-primary:hover { background: var(--blue); }
    .btn-primary svg { transition: transform 0.2s; }
    .btn-primary:hover svg { transform: translateX(4px); }
    .btn-ghost { font-size: 0.8rem; font-weight: 500; color: var(--grey); text-decoration: none; transition: color 0.2s; }
    .btn-ghost:hover { color: var(--dark); }


    /* SECTION HELPERS */
    section { padding: 6rem 5%; }
    .section-inner { max-width: 1200px; margin: 0 auto; }
    .section-number { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.5rem; }
    .section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; color: var(--dark); margin-bottom: 1.5rem; }
    .section-sub { font-size: 1rem; line-height: 1.7; color: var(--grey); max-width: 560px; }
    .divider { width: 40px; height: 2px; background: var(--blue); margin: 1.25rem 0; }

    /* ABOUT */
    #about { background: var(--dark); color: var(--white); }
    #about .section-title { color: var(--white); }
    #about .section-sub { color: #999; }
    #about .section-number { color: var(--blue-light); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 3rem; }
    .about-img-wrap { position: relative; }
    .about-portrait { width: 100%; aspect-ratio: 2/3; background: var(--mid); border-radius: 2px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; color: #555; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; }
    .about-portrait svg { opacity: 0.2; width: 40px; height: 40px; }
    .about-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--blue); color: var(--white); padding: 1.25rem; border-radius: 2px; font-family: var(--font-display); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; line-height: 1.6; }
    .about-content { padding: 1rem 0; }
    .about-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 2rem 0; }
    .tag { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: #aaa; border: 1px solid #333; padding: 0.35rem 0.8rem; border-radius: 2px; }
    .about-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
    .about-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: #ccc; }
    .about-list li::before { content: ''; width: 4px; height: 4px; background: var(--blue-light); border-radius: 50%; flex-shrink: 0; }

    /* SERVICES */
    #services { background: var(--white); }
    .services-list { display: flex; flex-direction: column; margin-top: 2.5rem; }
    .service-row {
      display: grid;
      grid-template-columns: 56px 1fr 200px;
      gap: 2rem;
      padding: 1.75rem 0;
      border-top: 1px solid var(--border);
      align-items: start;
    }
    .service-row:last-child { border-bottom: 1px solid var(--border); }
    .service-row:hover .service-title { color: var(--blue); }
    .svc-index { font-family: var(--font-display); font-size: 0.7rem; font-weight: 800; color: var(--light-grey); padding-top: 3px; }
    .service-title { font-size: 0.95rem; font-weight: 600; color: var(--dark); margin-bottom: 0.35rem; transition: color 0.2s; }
    .service-desc { font-size: 0.84rem; line-height: 1.65; color: var(--grey); }
    .svc-tag { width: 100%; text-align: center; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); border: 1px solid var(--border); padding: 0.4rem 0.7rem; border-radius: 2px; white-space: nowrap; margin-top: 2px; }

    /* PROCESS */
    #process { background: var(--bg); }
    .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3.5rem; }
    .process-step { position: relative; padding-top: 2rem; }
    .process-step::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: var(--border); }
    .step-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--border); margin-bottom: 1rem; }
    .step-title { font-size: 0.9rem; font-weight: 600; color: var(--dark); margin-bottom: 0.5rem; }
    .step-desc { font-size: 0.825rem; line-height: 1.6; color: var(--grey); }

    /* WHY */
    #why { background: var(--dark); }
    #why .section-title { color: var(--white); }
    #why .section-sub { color: #999; }
    .why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; margin-top: 3.5rem; }
    .why-list { display: flex; flex-direction: column; }
    .why-item { display: grid; grid-template-columns: 1px 1fr; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid #222; align-items: start; }
    .why-item:first-child { border-top: 1px solid #222; }
    .why-line { width: 1px; background: var(--blue); margin-top: 4px; height: 100%; }
    .why-title { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 0.35rem; }
    .why-desc { font-size: 0.82rem; line-height: 1.75; color: #999; }
    .why-stats { display: flex; flex-direction: column; gap: 1px; background: #222; border-radius: 3px; overflow: hidden; position: sticky; top: 6rem; }
    .why-stat { background: var(--dark2); padding: 2.5rem 2rem; }
    .why-stat-num { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--blue-light); line-height: 1; margin-bottom: 0.5rem; }
    .why-stat-label { font-size: 0.75rem; color: #999; line-height: 1.6; }
    .why-stat-src { background: var(--dark2); padding: 1rem 2rem 1.4rem; font-size: 0.68rem; color: #777; line-height: 1.5; }

    /* PRICING */
    #pricing { background: var(--dark); }
    #pricing .section-title { color: var(--white); }
    #pricing .section-sub { color: #999; }
    #pricing .section-number { color: var(--blue-light); }
    .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #222; margin-top: 3.5rem; }
    .pricing-card { background: var(--dark2); padding: 2.5rem; }
    .pricing-card.featured { background: var(--blue); }
    .pricing-badge { display: inline-block; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; background: var(--white); color: var(--blue); padding: 0.25rem 0.6rem; border-radius: 2px; margin-bottom: 1.5rem; }
    .pricing-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; letter-spacing: 0.05em; }
    .pricing-price { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 0.3rem; }
    .pricing-price span { font-size: 0.9rem; font-weight: 400; color: rgba(255,255,255,0.4); }
    .pricing-card.featured .pricing-price { color: var(--white); }
    .pricing-desc { font-size: 0.825rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin: 1rem 0 2rem; }
    .pricing-note { margin-top: 2.5rem; text-align: center; font-size: 0.78rem; color: #666; line-height: 1.7; }
    .pricing-note strong { color: #999; }
    .pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
    .pricing-features li { font-size: 0.825rem; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 0.6rem; }
    .pricing-features li::before { content: '✓'; color: var(--blue-light); font-weight: 700; font-size: 0.7rem; }
    .pricing-card.featured .pricing-features li::before { color: var(--white); }
    .pricing-cta { display: block; text-align: center; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.8rem; border-radius: 2px; text-decoration: none; border: 1px solid #333; color: var(--white); transition: all 0.2s; }
    .pricing-cta:hover { border-color: var(--white); }
    .pricing-card.featured .pricing-cta { background: var(--white); color: var(--blue); border-color: var(--white); }
    .pricing-card.featured .pricing-cta:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

    /* REFERENCES */
    #references { background: var(--white); }
    .ref-placeholder-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem; margin-top: 3.5rem; }
    .ref-real-card {
      aspect-ratio: 16/10; border-radius: 3px; overflow: hidden;
      position: relative; background: var(--dark);
    }
    .ref-real-card img { width: 100%; height: 100%; object-fit: contain; display: block; transition: transform 0.4s ease; }
    .ref-real-card:hover img { transform: scale(1.04); }
    .ref-overlay {
      position: absolute; inset: 0;
      background: rgba(14,14,14,0.55);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transition: opacity 0.3s;
    }
    .ref-real-card:hover .ref-overlay { opacity: 1; }
    .ref-overlay span { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); border: 1px solid rgba(255,255,255,0.5); padding: 0.5rem 1.1rem; border-radius: 2px; }
    .ref-demo-tag { position: absolute; bottom: 0.75rem; left: 0.75rem; font-size: 0.6rem; font-weight: 500; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); background: rgba(0,0,0,0.45); padding: 0.2rem 0.55rem; border-radius: 2px; backdrop-filter: blur(4px); }
    .ref-real-card { cursor: pointer; }

    /* LIGHTBOX */
    #lightbox { display: none; position: fixed; inset: 0; z-index: 9000; background: rgba(0,0,0,0.92); align-items: center; justify-content: center; padding: 2rem; }
    #lightbox.open { display: flex; }
    #lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 2px; box-shadow: 0 40px 80px rgba(0,0,0,0.5); }
    #lightbox-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 2rem; color: rgba(255,255,255,0.5); cursor: pointer; line-height: 1; transition: color 0.2s; background: none; border: none; }
    #lightbox-close:hover { color: #fff; }

    /* FAQ */
    #faq { background: var(--dark); }
    #faq .section-title { color: var(--white); }
    #faq .section-sub { color: #999; }
    .faq-inner { max-width: 820px; margin: 0 auto; }
    .faq-more { display: inline-flex; align-items: center; gap: 0.55rem; margin-top: 1.5rem; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em; color: var(--blue-light); text-decoration: none; }
    .faq-more svg { transition: transform 0.25s cubic-bezier(0.22,1,0.36,1); }
    .faq-more:hover svg { transform: translateX(5px); }
    .faq-list { display: flex; flex-direction: column; margin-top: 2rem; }
    .faq-item { border-bottom: 1px solid #222; }
    .faq-item:first-child { border-top: 1px solid #222; }
    .faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.4rem 0; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-main); font-size: 1rem; font-weight: 600; color: var(--white); transition: color 0.2s; }
    .faq-q:hover { color: var(--blue-light); }
    .faq-num { display: none; }
    .faq-q-text { flex: 1; }
    .faq-icon { flex-shrink: 0; width: 18px; height: 18px; color: var(--blue-light); transition: transform 0.35s cubic-bezier(0.22,1,0.36,1); }
    .faq-item.open .faq-icon { transform: rotate(45deg); }
    .faq-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.42s cubic-bezier(0.22,1,0.36,1); }
    .faq-item.open .faq-panel { grid-template-rows: 1fr; }
    .faq-panel-inner { overflow: hidden; }
    .faq-answer { font-size: 0.9rem; line-height: 1.75; color: #999; padding: 0 0 1.5rem; max-width: 70ch; }

    /* CONTACT */
    #contact { background: var(--bg); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; margin-top: 3.5rem; align-items: start; }
    .contact-info-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); margin-bottom: 0.35rem; }
    .contact-info-value { font-size: 0.95rem; font-weight: 500; color: var(--dark); text-decoration: none; transition: color 0.2s; }
    a.contact-info-value:hover { color: var(--blue); }
    .contact-info-block { margin-bottom: 2rem; }
    .contact-social { display: flex; gap: 1rem; margin-top: 2.5rem; }
    .social-link { width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 2px; display: flex; align-items: center; justify-content: center; color: var(--grey); text-decoration: none; font-size: 0.65rem; font-weight: 700; transition: all 0.2s; }
    .social-link:hover { border-color: var(--dark); background: var(--dark); color: var(--white); }
    .contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .field { display: flex; flex-direction: column; gap: 0.4rem; }
    .field label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey); }
    .field input, .field select, .field textarea { font-family: var(--font-main); font-size: 0.875rem; color: var(--dark); background: var(--white); border: 1.5px solid var(--border); border-radius: 2px; padding: 0.75rem 1rem; outline: none; transition: border-color 0.2s; appearance: none; }
    .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); }
    .field textarea { resize: vertical; min-height: 120px; }
    .form-submit { display: inline-flex; align-items: center; gap: 0.6rem; background: var(--dark); color: var(--white); font-family: var(--font-main); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 1rem 2rem; border: none; border-radius: 2px; cursor: pointer; transition: background 0.2s; align-self: flex-start; }
    .form-submit:hover { background: var(--blue); }
    .form-note { font-size: 0.75rem; color: var(--grey); line-height: 1.5; }
    .form-success { display: none; }
    .form-success-inner {
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      padding: 3rem 2rem; text-align: center;
      animation: successFadeIn 0.5s ease forwards;
    }
    @keyframes successFadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
    .success-circle {
      width: 72px; height: 72px; border-radius: 50%;
      background: var(--blue); display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.5rem;
      animation: popIn 0.65s cubic-bezier(0.34,1.56,0.64,1) 0.3s both;
    }
    @keyframes popIn { from { transform: scale(0); } to { transform: scale(1); } }
    .success-circle svg { stroke-dasharray: 28; stroke-dashoffset: 28; animation: drawCheck 0.65s ease 0.8s forwards; }
    @keyframes drawCheck { to { stroke-dashoffset: 0; } }
    .success-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--dark); margin-bottom: 0.5rem; }
    .success-sub { font-size: 0.85rem; color: var(--grey); line-height: 1.7; }
    .form-error { display: none; padding: 1rem 1.25rem; background: #fef2f2; border: 1px solid #fca5a5; border-radius: 2px; color: #991b1b; font-size: 0.825rem; margin-top: 1rem; }

    /* IMPRESSUM MODAL */
    #impressum-modal { display: none; position: fixed; inset: 0; z-index: 9100; background: rgba(0,0,0,0.7); backdrop-filter: blur(6px); align-items: center; justify-content: center; padding: 2rem; }
    #impressum-modal.open { display: flex; }
    .impressum-box { background: var(--white); max-width: 640px; width: 100%; max-height: 85vh; overflow-y: auto; border-radius: 3px; padding: 3rem; position: relative; }
    .impressum-box h1, .impressum-box h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; margin-bottom: 2rem; color: var(--dark); }
    .impressum-box h3 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); margin: 1.75rem 0 0.6rem; }
    .impressum-box p { font-size: 0.88rem; line-height: 1.75; color: var(--grey); }
    .impressum-box a { color: var(--blue); }
    .impressum-close { position: absolute; top: 1.25rem; right: 1.5rem; background: none; border: none; font-size: 1.4rem; color: var(--grey); cursor: pointer; line-height: 1; transition: color 0.2s; }
    .impressum-close:hover { color: var(--dark); }
    .impressum-divider { height: 1px; background: var(--border); margin: 2rem 0; }

    /* FOOTER */
    footer { background: var(--dark); color: var(--white); padding: 3rem 5%; }
    .footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
    .footer-logo { font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: var(--white); text-decoration: none; }
    .footer-logo span { color: var(--blue-light); }
    .footer-copy { font-size: 0.75rem; color: #555; }
    .footer-links { display: flex; gap: 1.5rem; list-style: none; }
    .footer-links a { font-size: 0.7rem; color: #555; text-decoration: none; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
    .footer-links a:hover { color: var(--white); }

    /* FADE IN */
    .fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }
    .fade-in-delay-1 { transition-delay: 0.1s; }
    .fade-in-delay-2 { transition-delay: 0.2s; }
    .fade-in-delay-3 { transition-delay: 0.3s; }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .process-grid { grid-template-columns: repeat(2, 1fr); }
      .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
      .ref-placeholder-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .nav-links, .nav-cta { display: none; }
      .burger { display: flex; }
      .hero-inner { grid-template-columns: 1fr; }
      .about-grid { grid-template-columns: 1fr; gap: 3rem; }
      .about-badge { right: 0; bottom: -1rem; }
      .service-row { grid-template-columns: 1fr; gap: 0.5rem; }
      .svc-tag { display: none; }
      .process-grid { grid-template-columns: 1fr 1fr; }
      .why-inner { grid-template-columns: 1fr; gap: 3rem; }
      .why-stats { position: static; }
      #scrollProgress { display: none; }
      .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
      .form-row { grid-template-columns: 1fr; }
      .footer-inner { flex-direction: column; align-items: flex-start; }
      .ref-placeholder-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      section { padding: 4rem 5%; }
      .process-grid { grid-template-columns: 1fr; }
    }

    /* Hosting grid responsive */
    .hosting-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.08); }
    @media (max-width: 768px) {
      .hosting-grid { grid-template-columns: 1fr; }
    }

    /* HOSTING / MAINTENANCE CARDS */
    .maint-box { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 3px; padding: 1.5rem 2rem; margin: 0 0 2.5rem; max-width: 680px; }
    .maint-box-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 0.5rem; }
    .maint-box-text { font-size: 0.83rem; line-height: 1.8; color: #999; }
    .maint-card { background: var(--dark2); padding: 2.5rem 2rem; position: relative; }
    .maint-card.featured { background: var(--blue); }
    .maint-card-tier { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #555; margin-bottom: 0.4rem; }
    .maint-card.featured .maint-card-tier { color: rgba(255,255,255,0.5); }
    .maint-card-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
    .maint-card-price { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1; }
    .maint-card-price span { font-size: 0.85rem; font-weight: 400; color: #555; }
    .maint-card.featured .maint-card-price span { color: rgba(255,255,255,0.5); }
    .maint-card-divider { height: 1px; background: #222; margin: 1.5rem 0; }
    .maint-card.featured .maint-card-divider { background: rgba(255,255,255,0.2); }
    .maint-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
    .maint-features li { font-size: 0.82rem; color: #aaa; display: flex; align-items: center; gap: 0.6rem; }
    .maint-card.featured .maint-features li { color: rgba(255,255,255,0.85); }
    .maint-features li::before { content: '✓'; color: var(--blue-light); font-weight: 700; font-size: 0.7rem; }
    .maint-card.featured .maint-features li::before { color: #fff; }
    .maint-popular-badge { position: absolute; top: 1.25rem; right: 1.25rem; font-size: 0.55rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; background: #fff; color: var(--blue); padding: 0.2rem 0.55rem; border-radius: 2px; }
    .maint-note { margin-top: 1.5rem; font-size: 0.75rem; color: #666; line-height: 1.7; text-align: center; }

    /* ══ POLISH LAYER ══════════════════════════════════════════════════════════ */

    /* 1. CTAs */
    .btn-primary { border-radius: 100px; }
    .nav-cta { border-radius: 100px; }
    .pricing-cta { border-radius: 100px; }
    .form-submit { border-radius: 100px; }


    /* 5. Cinematic blur fade-in */
    .fade-in {
      opacity: 0;
      transform: translateY(48px);
      filter: blur(8px);
      transition:
        opacity   0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        filter    0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .fade-in.visible { opacity: 1; transform: translateY(0); filter: blur(0); }

    /* Hover lift, why-stat & pricing cards */
    .why-stat { transition: background 0.25s, transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s cubic-bezier(0.22,1,0.36,1); }
    .why-stat:hover { background: #202020; transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.35); }
    .pricing-card { transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s cubic-bezier(0.22,1,0.36,1); }
    .pricing-card:not(.featured):hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
    .pricing-card.featured:hover { transform: translateY(-6px); }

    /* Nav link underline slide */
    .nav-links a { position: relative; }
    .nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--dark); transition: width 0.3s cubic-bezier(0.22,1,0.36,1); }
    .nav-links a:hover::after { width: 100%; }
    /* Scrollspy, aktueller Abschnitt */
    .nav-links a.active { color: var(--dark); }
    .nav-links a.active::after { width: 100%; background: var(--blue); }
    .mobile-menu a.active { color: var(--blue); }

    /* 6. Section breathing room */
    section { padding: 7rem 5%; }

    /* 7. Hero ambient glow */
    #hero::before {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(29,78,216,0.055) 0%, transparent 65%);
    }

    /* 8. About portrait frame */
    .about-img-wrap {
      padding: 0;
      background: none;
      border-radius: 0 !important;
      border: none;
      box-shadow: none;
    }
    .about-portrait {
      border-radius: 0 !important;
      overflow: hidden;
      outline: 1px solid var(--border);
      outline-offset: -1px;
      box-shadow:
        0 0 0 8px var(--bg),
        0 0 0 9px var(--border),
        0 28px 56px rgba(0,0,0,0.12);
    }
    .about-badge { border-radius: 4px !important; box-shadow: 0 8px 24px rgba(29,78,216,0.28); }

    /* 9. Service row hover feedback */
    .svc-index { transition: color 0.2s cubic-bezier(0.32,0.72,0,1); }
    .service-row:hover { background: rgba(29,78,216,0.035); }
    .service-row:hover .svc-index { color: var(--blue); }

    /* 10. Button depth on hover */
    .btn-primary {
      transition: background 0.2s cubic-bezier(0.32,0.72,0,1), transform 0.15s cubic-bezier(0.32,0.72,0,1), box-shadow 0.2s cubic-bezier(0.32,0.72,0,1);
    }
    .btn-primary:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.18); transform: translateY(-1px); }
    .btn-primary:active { transform: translateY(0) scale(0.98); box-shadow: none; }

    /* 11. Premium form inputs */
    .field input, .field select, .field textarea {
      border-radius: 8px;
      transition: border-color 0.2s cubic-bezier(0.32,0.72,0,1), box-shadow 0.25s cubic-bezier(0.32,0.72,0,1);
    }
    .field input:focus, .field select:focus, .field textarea:focus {
      box-shadow: 0 0 0 3px rgba(29,78,216,0.12);
    }

    /* 12. Featured pricing card depth */
    .pricing-card.featured {
      box-shadow: 0 24px 64px rgba(29,78,216,0.28), 0 6px 20px rgba(29,78,216,0.15);
    }

    /* 13. Why stats, more impact */
    .why-stat-num { font-size: 3.5rem; letter-spacing: -0.03em; }
    .why-stat { transition: background 0.25s cubic-bezier(0.32,0.72,0,1); }
    .why-stat:hover { background: #202020; }

    #contact .section-title { color: var(--dark); }

    /* 15. Mobile header, clean full-width bar */
    @media (max-width: 768px) {
      nav { top: 0; left: 0; right: 0; width: auto; height: 56px; padding: 0 5%; }
      .nav-right { margin-left: auto; gap: 0.75rem; }
      .burger { margin-left: 0.85rem; }
      .nav-logo { font-size: 1rem; }
      .nav-logo-sub { font-size: 0.48rem; }
      .mobile-menu { top: 56px; }
      section { padding: 5rem 5%; }
      #hero { padding-top: 84px; }
    }

    /* 16. Reduced motion, respect user preference */
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
      }
      .fade-in { opacity: 1 !important; transform: none !important; filter: none !important; }
      #scrollProgress { animation: none !important; transform: scaleX(0) !important; }
      .hero-bg-number { animation: none !important; transform: translateY(-50%) !important; }
    }

    /* 17. Scroll-driven animations, Fortschrittsbalken & Hero-Parallax ohne JS */
    @supports (animation-timeline: scroll()) {
      #scrollProgress {
        width: 100%;
        transform: scaleX(0);
        transform-origin: 0 50%;
        animation: sp-grow auto linear;
        animation-timeline: scroll(root block);
      }
      @keyframes sp-grow { to { transform: scaleX(1); } }

      .hero-bg-number {
        animation: hero-par auto linear;
        animation-timeline: scroll(root block);
        animation-range: 0 100vh;
        will-change: transform;
      }
      @keyframes hero-par { to { transform: translateY(calc(-50% + 160px)); } }
    }

    /* ══ MULTI-PAGE ══════════════════════════════════════════════════════════ */

    /* Erste Sektion einer Unterseite, Platz für die fixe Nav */
    .subpage-first { padding-top: calc(64px + 5rem); }
    @media (max-width: 768px) {
      .subpage-first { padding-top: calc(56px + 3.5rem); }
    }

    /* Impressum als eigene Seite statt Modal */
    .impressum-page { background: var(--bg); }
    .impressum-page .impressum-box {
      max-width: 760px; margin: 0 auto;
      max-height: none; overflow: visible;
      border: 1px solid var(--border);
    }

    /* ══ ROTER FADEN ═════════════════════════════════════════════════════════ */

    /* Hosting-Abschnitt, gestapelt unter den Website-Paketen */
    .hosting-section { margin-top: 6rem; padding-top: 4rem; border-top: 1px solid #222; }
    .hosting-section .maint-box { margin-top: 2.5rem; }

    /* "Nächster Schritt"-Band am Seitenende, führt den Besucher zur nächsten Seite */
    .next-cta { background: var(--dark); text-align: center; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .next-cta .section-title { color: var(--white); margin-bottom: 0; max-width: 680px; margin-left: auto; margin-right: auto; }
    .next-cta-actions { display: flex; gap: 1.75rem; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 2.5rem; }
    .next-cta .btn-primary { background: var(--blue); }
    .next-cta .btn-primary:hover { background: var(--blue-light); }
    .next-cta .btn-ghost { color: #888; }
    .next-cta .btn-ghost:hover { color: var(--white); }

    /* ══ LEISTUNGEN, asymmetrisches Raster statt Zeilenliste ═════════════════ */
    .svc-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 1.5rem; margin-top: 3.5rem; }
    .svc-card { border: 1px solid var(--border); border-radius: 3px; padding: 2.25rem 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
    .svc-card-tag { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); }
    .svc-card-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--dark); }
    .svc-card-desc { font-size: 0.85rem; line-height: 1.7; color: var(--grey); }
    .svc-card-featured { background: var(--dark); border-color: var(--dark); }
    .svc-card-featured .svc-card-tag { color: var(--blue-light); }
    .svc-card-featured .svc-card-title { color: var(--white); font-size: 1.5rem; }
    .svc-card-featured .svc-card-desc { color: #aaa; }
    .svc-minor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
    .svc-minor-title { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 0.35rem; }
    .svc-minor-desc { font-size: 0.82rem; line-height: 1.65; color: var(--grey); }
    @media (max-width: 1024px) {
      .svc-grid { grid-template-columns: 1fr 1fr; }
      .svc-card-featured { grid-column: 1 / -1; }
    }
    @media (max-width: 768px) {
      .svc-grid, .svc-minor-grid { grid-template-columns: 1fr; }
    }

    /* ══ REFERENZEN, Bildunterschriften ═══════════════════════════════════════ */
    .ref-caption-title { margin-top: 1.1rem; font-size: 0.9rem; font-weight: 700; color: var(--dark); }
    .ref-caption-desc { margin-top: 0.3rem; font-size: 0.82rem; line-height: 1.65; color: var(--grey); }

    /* Live-Tag für die eigene Website, hebt sich vom Demo-Tag ab */
    .ref-live-tag { color: #86efac; background: rgba(20,83,45,0.55); }

    /* ══ MOBILE KOMPAKT ══════════════════════════════════════════════════════
       Auf dem Handy keine Desktop-Dimensionen: Hero beginnt direkt unter dem
       Header (kein 100vh-Zentrieren), Sektionen und Typo deutlich kompakter. */
    @media (max-width: 768px) {
      /* Hero: Text direkt unter dem Header statt vertikal zentriert */
      #hero { min-height: auto; padding-top: 88px; padding-bottom: 3.25rem; align-items: flex-start; }
      .hero-label { margin-bottom: 1rem; }
      .hero-title { font-size: 2.35rem; margin-bottom: 1rem; }
      .hero-sub { font-size: 0.95rem; margin-bottom: 1.75rem; }
      .hero-bg-number { font-size: 130px; top: 32%; right: -4%; }

      /* Sektionen kompakt */
      section { padding: 3.25rem 5%; }
      .subpage-first { padding-top: calc(56px + 2.25rem); }
      .section-title { font-size: 1.7rem; margin-bottom: 1rem; }
      .section-sub { font-size: 0.92rem; }

      /* Startseite */
      .about-grid { gap: 2rem; margin-top: 1.25rem; }
      .about-portrait { aspect-ratio: 4/5; }
      .why-inner { gap: 2rem; margin-top: 2rem; }
      .why-item { padding: 1.1rem 0; }
      .why-stat { padding: 1.6rem 1.4rem; }
      .why-stat-num { font-size: 2.4rem; }

      /* Leistungen */
      .svc-grid { gap: 1rem; margin-top: 2rem; }
      .svc-card { padding: 1.6rem 1.4rem; }
      .svc-card-featured .svc-card-title { font-size: 1.25rem; }
      .svc-minor-grid { gap: 1.5rem; margin-top: 1.75rem; padding-top: 1.75rem; }
      .process-grid { gap: 1.5rem; margin-top: 2rem; }

      /* Preise */
      .pricing-grid { margin-top: 2rem; }
      .pricing-card { padding: 1.75rem 1.5rem; }
      .maint-card { padding: 1.75rem 1.5rem; }
      .hosting-section { margin-top: 3.25rem; padding-top: 2.5rem; }
      .maint-box { padding: 1.25rem 1.4rem; }
      .faq-list { margin-top: 1.25rem; }

      /* Portfolio & Kontakt */
      .ref-placeholder-grid { gap: 2rem; margin-top: 2rem; }
      .contact-grid { margin-top: 2rem; }

      /* CTA-Band */
      .next-cta-actions { margin-top: 1.75rem; gap: 1.25rem; }
    }
