    /* ============================================================
       RESET & BASIS
       ============================================================ */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --gold: #C19450;
      --gold-light: #d4ad6e;
      --anthrazit: #222121;
      --anthrazit-light: #2e2d2d;
      --white: #fffcf9;
      --off-white: #f7f4ef;
      --grey-light: #ece8e2;
      --grey-text: #6b6b6b;
      --text-light: #8a8785;
      --warm-white: #faf8f5;
      --cream: #f5f0e8;
      --font-main: 'Inter', 'Helvetica Neue', Arial, sans-serif;
      --font-display: 'Playfair Display', Georgia, serif;
      --max-width: 1200px;
      --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

    body {
      font-family: var(--font-main);
      color: var(--anthrazit);
      background-color: var(--white);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

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

    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; transition: var(--transition); }

    /* --- Utility --- */
    .container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

    .section-label {
      font-size: 0.75rem; font-weight: 600; letter-spacing: 0.25em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: inline-block;
    }

    .section-title {
      font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 400; line-height: 1.3; color: var(--grey-text); margin-bottom: 1.5rem;
    }

    .text-center { text-align: center; }

    /* ============================================================
       HEADER / NAVIGATION
       ============================================================ */
    .site-header {
      position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
      background: rgb(255,252,249); backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(193,148,80,0.1); transition: var(--transition);
    }

    .header-inner {
      max-width: var(--max-width); margin: 0 auto; padding: 0 2rem;
      display: flex; align-items: center; justify-content: space-between; height: 120px;
    }

    .logo { display: flex; align-items: center; gap: 0.75rem; }
    .logo img { height: 100px; width: auto; }

    .logo-text { display: flex; flex-direction: column; line-height: 1.2; }
    .logo-text .name {
      font-family: var(--font-display); font-size: 1.1rem; font-weight: 400;
      color: var(--anthrazit); letter-spacing: 0.05em;
    }
    .logo-text .subtitle {
      font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--gold);
    }

    .main-nav { display: flex; align-items: center; gap: 2.5rem; }

    .main-nav a {
      font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--anthrazit); position: relative; padding: 0.25rem 0;
    }

    .main-nav a::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 0; height: 1.5px; background: var(--gold); transition: var(--transition);
    }

    .main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
    .main-nav a:hover { color: var(--gold); }

    .nav-cta {
      font-size: 0.75rem !important; font-weight: 600 !important; letter-spacing: 0.1em !important;
      color: var(--gold) !important; border: 1.5px solid var(--gold);
      padding: 0.6rem 1.4rem !important; transition: var(--transition);
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover { background: var(--gold) !important; color: var(--white) !important; }

    .menu-toggle {
      display: none; flex-direction: column; gap: 5px; cursor: pointer;
      background: none; border: none; padding: 0.5rem;
    }
    .menu-toggle span {
      display: block; width: 24px; height: 1.5px; background: var(--anthrazit); transition: var(--transition);
    }
    .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

    /* ============================================================
       PAGE SECTIONS – Visibility
       ============================================================ */
    .page-section { display: none; }
    .page-section.active { display: block; }

    /* ============================================================
       HERO (Startseite)
       ============================================================ */
    .hero {
      position: relative; min-height: 100vh; display: flex; align-items: center;
      justify-content: center; text-align: center; padding: 140px 2rem 80px;
      background: var(--white); overflow: hidden;
    }

    .hero::before {
      content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      background:
        radial-gradient(ellipse at 20% 50%, rgba(193,148,80,0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(34,33,33,0.03) 0%, transparent 60%);
      pointer-events: none;
    }

    .hero-content { position: relative; max-width: 800px; z-index: 1; }

    .hero-label {
      font-size: 0.7rem; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 2rem; display: inline-flex; align-items: center; gap: 1rem;
    }
    .hero-label::before, .hero-label::after { display: none; }

    .hero h1 {
      font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 400; line-height: 1.35; color: var(--anthrazit); margin-bottom: 1.5rem;
    }
    .hero h1 em { font-style: italic; color: var(--gold); }

    .hero-sub {
      font-size: 1.05rem; color: var(--grey-text); max-width: 600px;
      margin: 0 auto 2.5rem; line-height: 1.8;
    }


    /* ============================================================
       CARDS / CTA
       ============================================================ */
    .cards-section { padding: 6rem 2rem; background: var(--off-white); }

    .cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; margin-top: 3rem; }

    .card {
      background: var(--white); border-radius: 2px; overflow: hidden;
      transition: var(--transition); border: 1px solid rgba(193,148,80,0.08);
      position: relative; cursor: pointer;
    }
    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(34,33,33,0.08);
      border-color: rgba(193,148,80,0.2);
    }

    .card-image { position: relative; height: 280px; overflow: hidden; }
    .card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
    .card:hover .card-image img { transform: scale(1.04); }
    .card-image::after {
      content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 40%;
      background: linear-gradient(to top, rgba(34,33,33,0.15), transparent);
    }

    .card-body { padding: 2rem 2rem 2.5rem; }
    .card-body h3 {
      font-family: var(--font-display); font-size: 1.4rem; font-weight: 400;
      margin-bottom: 0.75rem; color: var(--grey-text);
    }
    .card-body p { font-size: 0.9rem; color: var(--grey-text); line-height: 1.7; margin-bottom: 1.5rem; }

    /* Buttons */
    .btn {
      display: inline-flex; align-items: center; gap: 0.5rem;
      font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
      padding: 0.85rem 2rem; border: 1.5px solid var(--gold); color: var(--gold);
      background: transparent; cursor: pointer; transition: var(--transition);
      position: relative; overflow: hidden;
    }
    .btn::before {
      content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
      background: var(--gold); transition: left 0.35s ease; z-index: 0;
    }
    .btn:hover::before { left: 0; }
    .btn span, .btn svg { position: relative; z-index: 1; }
    .btn:hover { color: var(--white); }
    .btn svg { width: 14px; height: 14px; transition: transform 0.35s ease; }
    .btn:hover svg { transform: translateX(4px); }

    /* ============================================================
       PAGE HERO (Unterseiten)
       ============================================================ */
    .page-hero {
      position: relative; height: 55vh; min-height: 400px;
      display: flex; align-items: flex-end; justify-content: center;
      overflow: hidden; margin-top: 120px;
    }
    .page-hero-bg {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      object-fit: cover; filter: brightness(0.35);
    }
    .page-hero-overlay {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      background: linear-gradient(to bottom, rgba(34,33,33,0.3), rgba(34,33,33,0.7));
    }
    .page-hero-content {
      position: relative; z-index: 1; text-align: center; padding: 3rem 2rem 4rem; max-width: 700px;
    }
    .page-hero-content .section-label { color: var(--gold); }
    .page-hero-content h1 {
      font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 400; color: var(--white); line-height: 1.3;
    }
    .page-hero-content p { color: rgba(255,255,255,0.7); margin-top: 1rem; font-size: 1rem; }

    .page-hero-neutral {
      background-color: var(--anthrazit);
      background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%),
                        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.02) 0%, transparent 50%);
      height: auto; min-height: 280px;
    }
    .page-hero-neutral .page-hero-overlay {
      background: linear-gradient(to bottom, rgba(34,33,33,0.1), rgba(34,33,33,0.4));
    }

    .page-hero-gradient {
      background: linear-gradient(145deg, #2a2928 0%, #3a3835 30%, #2e2d2b 60%, #222121 100%);
      height: auto; min-height: 340px;
    }
    .page-hero-gradient .page-hero-overlay {
      background: radial-gradient(ellipse at 30% 40%, rgba(193,148,80,0.1) 0%, transparent 55%),
                  radial-gradient(ellipse at 80% 70%, rgba(193,148,80,0.06) 0%, transparent 50%),
                  linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.3));
    }
    .page-hero-kontakt {
      background: linear-gradient(135deg, #3a3d4a 0%, #4a4e5e 40%, #3a3d4a 100%);
      height: auto; min-height: 320px;
    }
    .page-hero-kontakt .page-hero-overlay {
      background: radial-gradient(ellipse at 70% 30%, rgba(183,151,90,0.08) 0%, transparent 60%);
    }
    .kontakt-hero-deco {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none;
    }

    /* ============================================================
       CASES / ERFOLGSGESCHICHTEN
       ============================================================ */
    .cases-section { padding: 6rem 2rem; }

    .case-item {
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
      margin-bottom: 6rem; padding-bottom: 6rem; border-bottom: 1px solid var(--grey-light);
    }
    .case-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
    .case-item:nth-child(even) { direction: rtl; }
    .case-item:nth-child(even) > * { direction: ltr; }

    .case-image { position: relative; overflow: hidden; border-radius: 2px; }
    .case-image img { width: 100%; height: auto; max-height: 400px; object-fit: contain; transition: transform 0.6s ease; }
    .case-image:hover img { transform: scale(1.03); }
    .case-image-pair { overflow: visible; }
    .before-after { display: flex; gap: 1rem; }
    .ba-image { position: relative; flex: 1; overflow: hidden; border-radius: 2px; }
    .ba-image img { width: 100%; height: auto; max-height: 350px; object-fit: contain; transition: transform 0.6s ease; }
    .ba-image:hover img { transform: scale(1.03); }
    .ba-label {
      display: none;
    }
    @media (max-width: 600px) {
      .before-after { flex-direction: column; }
      .ba-image img { max-height: 250px; }
    }
    .case-badge {
      position: relative; top: auto; left: auto; display: inline-block; background: var(--gold); color: var(--white);
      font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.4rem 1rem;
      margin-top: 0.75rem;
    }

    .case-content h3 {
      font-family: var(--font-display); font-size: 1.5rem; font-weight: 400;
      margin-bottom: 1rem; color: var(--grey-text);
    }

    .case-meta { display: flex; gap: 1.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
    .case-meta span {
      font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--gold); display: inline-flex; align-items: center; gap: 0.4rem;
    }
    .case-meta span svg { width: 14px; height: 14px; }

    .case-content p { font-size: 0.95rem; color: var(--grey-text); line-height: 1.8; }

    .case-detail {
      margin-top: 1.5rem; padding: 1.25rem; background: var(--off-white);
      border-left: 3px solid var(--gold);
    }
    .case-detail h4 {
      font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--grey-text); margin-bottom: 0.5rem;
    }
    .case-detail p { font-size: 0.88rem; margin-bottom: 0; }

    /* ============================================================
       EXPERTISE
       ============================================================ */
    /* Founder Section */
    .founder-section { padding: 6rem 2rem; background: var(--warm-white); }
    .founder-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: center; }
    .founder-image { position: relative; overflow: visible; border-radius: 2px; }
    .founder-image::before {
      content: ''; position: absolute; top: -10px; left: -10px; right: 10px; bottom: 10px;
      border: 2px solid var(--gold); border-radius: 2px; z-index: -1;
    }
    .founder-image img { width: 100%; height: auto; display: block; filter: grayscale(20%); transition: filter 0.4s ease; border-radius: 2px; }
    .founder-image:hover img { filter: grayscale(0%); }
    .founder-name { font-family: var(--font-main); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 400; color: var(--anthrazit); margin-bottom: 0.25rem; }
    .founder-title { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; }
    .founder-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 1.25rem; }
    .founder-stats { display: flex; gap: 3rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(0,0,0,0.08); }
    .founder-stat { text-align: center; }
    .stat-number { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--gold); font-weight: 400; }
    .stat-label { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); }
    @media (max-width: 768px) {
      .founder-layout { grid-template-columns: 1fr; gap: 2rem; }
      .founder-stats { gap: 1.5rem; }
      .stat-number { font-size: 1.5rem; }
    }

    .expertise-section { padding: 6rem 2rem; }
    .expertise-section .container { max-width: 1300px; }

    .expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }

    .expertise-card {
      padding: 0 0 2rem; background: var(--white); border: 1px solid var(--grey-light);
      border-radius: 2px; text-align: center; transition: var(--transition);
      position: relative; overflow: hidden;
    }
    .expertise-card-image { width: 100%; overflow: hidden; }
    .expertise-card-image img { width: 100%; height: 240px; object-fit: cover; object-position: center; transition: transform 0.6s ease; }
    .expertise-card:hover .expertise-card-image img { transform: scale(1.03); }
    .expertise-card-btn { padding: 1.5rem 2rem 0; }
    .expertise-card::before {
      content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
      background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
    }
    .expertise-card:hover::before { transform: scaleX(1); }
    .expertise-card:hover {
      transform: translateY(-4px); box-shadow: 0 16px 48px rgba(34,33,33,0.06);
      border-color: rgba(193,148,80,0.15);
    }

    .expertise-icon {
      width: 64px; height: 64px; margin: 1.5rem auto 1.5rem;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%; background: var(--off-white); transition: var(--transition);
    }
    .expertise-card:hover .expertise-icon { background: var(--gold); }
    .expertise-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.5; transition: var(--transition); }
    .expertise-card:hover .expertise-icon svg { stroke: var(--white); }

    .expertise-card h3 {
      font-family: var(--font-display); font-size: 1.3rem; font-weight: 400;
      margin-bottom: 1rem; color: var(--grey-text); padding: 0 2rem;
    }
    .expertise-card p { font-size: 0.9rem; color: var(--grey-text); line-height: 1.7; padding: 0 2rem; }

    .expertise-card ul { list-style: none; margin-top: 1.5rem; text-align: left; padding: 0 2rem; }
    .expertise-card ul li {
      font-size: 0.85rem; color: var(--grey-text); padding: 0.5rem 0;
      border-bottom: 1px solid var(--grey-light); display: flex; align-items: center; gap: 0.5rem;
    }
    .expertise-card ul li:last-child { border-bottom: none; }
    .expertise-card ul li::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0;
    }

    /* Expertise Detail */
    .expertise-detail { padding: 5rem 2rem; background: var(--off-white); }
    .expertise-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .expertise-detail-image { border-radius: 2px; overflow: hidden; }
    .expertise-detail-image img { width: 100%; height: 400px; object-fit: cover; }
    .expertise-detail-content h3 {
      font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; margin-bottom: 1rem;
    }
    .expertise-detail-content p { font-size: 0.95rem; color: var(--grey-text); line-height: 1.8; margin-bottom: 1rem; }

    /* ============================================================
       FOOTER
       ============================================================ */
    .site-footer {
      background: var(--anthrazit); color: rgba(255,255,255,0.7); padding: 4rem 2rem 2rem;
    }

    .footer-features {
      display: flex; justify-content: center; gap: 4rem;
      padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 3rem;
    }

    .footer-feature { display: flex; flex-direction: column; align-items: center; gap: 0.55rem; text-align: center; }

    .footer-feature-icon {
      width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--gold);
      display: flex; align-items: center; justify-content: center; transition: var(--transition);
    }
    .footer-feature:hover .footer-feature-icon { background: var(--gold); }
    .footer-feature-icon svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.5; transition: var(--transition); }
    .footer-feature:hover .footer-feature-icon svg { stroke: var(--white); }
    .footer-feature span { font-size: 0.55rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

    .footer-contact { text-align: center; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem; }
    .footer-contact p { font-size: 0.9rem; line-height: 1.7; }
    .footer-contact a { color: var(--gold); font-weight: 500; }
    .footer-contact a:hover { color: var(--gold-light); }

    .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
    .footer-links { display: flex; gap: 2rem; }
    .footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.4); transition: var(--transition); }
    .footer-links a:hover { color: var(--gold); }
    .footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

    /* ============================================================
       ANIMATIONS
       ============================================================ */
    .fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }

    /* Dark-background text safety */
    .page-hero .section-label,
    .page-hero-gradient .section-label,
    .page-hero-neutral .section-label,
    .page-hero-kontakt .section-label { color: var(--gold); }
    .page-hero h1, .page-hero h2, .page-hero h3,
    .page-hero-gradient h1, .page-hero-gradient h2,
    .page-hero-neutral h1, .page-hero-neutral h2,
    .page-hero-kontakt h1, .page-hero-kontakt h2 { color: var(--white); }
    .page-hero p, .page-hero-gradient p,
    .page-hero-neutral p, .page-hero-kontakt p { color: rgba(255,255,255,0.7); }
    .site-footer h2, .site-footer h3, .site-footer h4 { color: rgba(255,255,255,0.85); }
    .site-footer p, .site-footer span, .site-footer a { color: rgba(255,255,255,0.6); }
    .site-footer a:hover { color: var(--gold); }

    /* ============================================================
       RESPONSIVE
       ============================================================ */
    @media (max-width: 968px) {
      .cards-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
      .case-item { grid-template-columns: 1fr; gap: 2rem; }
      .case-item:nth-child(even) { direction: ltr; }
      .expertise-grid { grid-template-columns: 1fr; max-width: 450px; margin-left: auto; margin-right: auto; }
      .expertise-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
      .footer-features { gap: 2rem; }
      .kontakt-grid { grid-template-columns: 1fr; gap: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
    }

    @media (max-width: 768px) {
      .header-inner { height: 80px; padding: 0 1.25rem; }
      .logo img { height: 60px; }
      .logo-text .name { font-size: 0.9rem; }
      .logo-text .subtitle { font-size: 0.55rem; }

      .main-nav {
        display: none; position: absolute; top: 80px; left: 0; width: 100%;
        background: rgb(255,252,249); flex-direction: column; padding: 1.5rem 1.5rem 2rem;
        gap: 1.25rem; box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        border-bottom: 1px solid rgba(193,148,80,0.15);
      }
      .main-nav.open { display: flex; }
      .menu-toggle { display: flex; }

      .hero { min-height: 80vh; padding: 100px 1.25rem 50px; }
      .hero h1 { font-size: 1.6rem; }
      .hero p { font-size: 0.9rem; }
      .page-hero { height: 35vh; min-height: 250px; margin-top: 80px; }
      .page-hero-gradient { min-height: 220px; margin-top: 80px; }
      .page-hero-kontakt { margin-top: 80px; }
      .page-hero-content h1 { font-size: 1.6rem; }
      .page-hero-content { padding: 2rem 1.25rem 2.5rem; }
      .page-hero-content p { font-size: 0.85rem; }
      .page-hero-bg { filter: brightness(0.4); }

      .cards-section, .cases-section, .founder-section, .expertise-section,
      .expertise-detail, .kontakt-section, .digi-case-section, .legal-section { padding: 3rem 1rem; }
      .digi-case-text { max-width: 100%; }
      .digi-gallery-small { max-width: 100%; }
      .container { padding: 0 1rem; }
      .case-item { margin-bottom: 2.5rem; padding-bottom: 2.5rem; }

      .founder-name { font-size: 1.5rem; }
      .expertise-card { padding: 0 0 1.5rem; }
      .expertise-card-image img { height: 160px; }
      .expertise-card h3 { font-size: 1rem; }

      .kontakt-form-wrap { padding: 1.5rem; }
      .kontakt-section { padding: 3rem 1.25rem; }
      .kontakt-grid { gap: 2.5rem; max-width: 100%; }
      .kontakt-info, .kontakt-form-wrap { width: 100%; max-width: 100%; }
      .kontakt-intro { font-size: 0.88rem; margin-bottom: 1.5rem; }
      .kontakt-detail-icon { width: 40px; height: 40px; }
      .kontakt-detail-icon svg { width: 18px; height: 18px; }
      .kontakt-detail-item a, .kontakt-detail-item p { font-size: 0.85rem; }
      .form-group input, .form-group select, .form-group textarea { font-size: 1rem; padding: 0.85rem 1rem; }

      .footer-features { flex-direction: column; align-items: center; gap: 1.5rem; }
      .form-row { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; align-items: center; gap: 0.75rem; }
      .footer-links { justify-content: center; }

      .vk-section h2.section-title { font-size: 1.3rem; }
    }

    @media (max-width: 480px) {
      .header-inner { height: 70px; padding: 0 1rem; }
      .logo img { height: 50px; }
      .logo-text .name { font-size: 0.8rem; }
      .logo-text .subtitle { font-size: 0.5rem; letter-spacing: 0.15em; }

      .main-nav { top: 70px; }

      .hero { min-height: 75vh; padding: 90px 1rem 40px; }
      .hero h1 { font-size: 1.35rem; }
      .page-hero { margin-top: 70px; min-height: 200px; }
      .page-hero-gradient { margin-top: 70px; min-height: 180px; }
      .page-hero-content h1 { font-size: 1.3rem; }

      .cards-section, .cases-section, .founder-section, .expertise-section,
      .expertise-detail, .kontakt-section, .digi-case-section, .legal-section { padding: 2.5rem 0.75rem; }

      .card-image { height: 200px; }
      .card-body { padding: 1.25rem 1.25rem 1.5rem; }
      .card-body h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
      .card-body p { font-size: 0.85rem; margin-bottom: 1rem; }

      .founder-stats { flex-wrap: wrap; gap: 1rem; justify-content: center; }
      .stat-number { font-size: 1.3rem; }

      .digi-gallery-item img { max-height: 280px; }
      .digi-gallery-small .digi-gallery-item img { max-height: 250px; }

      .kontakt-form-wrap { padding: 1.25rem; }
      .kontakt-section { padding: 2rem 1rem; }
      .kontakt-grid { gap: 2rem; max-width: 100%; }
      .kontakt-detail-item { gap: 0.75rem; }
      .kontakt-detail-icon { width: 36px; height: 36px; }
      .kontakt-detail-icon svg { width: 16px; height: 16px; }
      .kontakt-detail-item h4 { font-size: 0.7rem; }

      .section-title { font-size: 1.2rem; }
      .case-content h3 { font-size: 1.2rem; }

      .footer-inner { padding: 2.5rem 1rem; }
      .footer-features { padding-bottom: 1.5rem; margin-bottom: 0.5rem; }
    }

    /* KONTAKT */
    .kontakt-section { padding: 6rem 2rem; }
    .kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; max-width: var(--max-width); margin: 0 auto; }
    .kontakt-intro { font-size: 0.95rem; color: var(--grey-text); line-height: 1.8; margin-bottom: 2.5rem; }
    .kontakt-details { display: flex; flex-direction: column; gap: 1.75rem; }
    .kontakt-detail-item { display: flex; align-items: flex-start; gap: 1rem; }
    .kontakt-detail-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--off-white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
    .kontakt-detail-item:hover .kontakt-detail-icon { background: var(--gold); }
    .kontakt-detail-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; transition: var(--transition); }
    .kontakt-detail-item:hover .kontakt-detail-icon svg { stroke: var(--white); }
    .kontakt-detail-item h4 { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-text); margin-bottom: 0.25rem; }
    .kontakt-detail-item a, .kontakt-detail-item p { font-size: 0.9rem; color: var(--grey-text); line-height: 1.6; margin-bottom: 0; }
    .kontakt-detail-item a:hover { color: var(--gold); }
    .kontakt-form-wrap { background: var(--off-white); padding: 2.5rem; border-radius: 2px; border: 1px solid var(--grey-light); }
    .kontakt-form { display: flex; flex-direction: column; gap: 1.25rem; }
    .form-checkbox { margin-top: 0.25rem; }
    .form-checkbox .checkbox-label { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; font-size: 0.75rem; line-height: 1.5; color: var(--text-light); font-weight: 400; text-transform: none; letter-spacing: 0; }
    .checkbox-label input[type="checkbox"] { margin-top: 0.25rem; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--gold); cursor: pointer; }
    .checkbox-text a { color: var(--gold); text-decoration: underline; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
    .form-group label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--anthrazit); }
    .form-group input, .form-group select, .form-group textarea { font-family: var(--font-main); font-size: 0.9rem; padding: 0.75rem 1rem; border: 1px solid var(--grey-light); background: var(--white); color: var(--anthrazit); border-radius: 2px; transition: var(--transition); outline: none; }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(193,148,80,0.1); }
    .form-group input::placeholder, .form-group textarea::placeholder { color: #b5b5b5; }
    .form-group select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .btn-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
    .kontakt-success { text-align: center; padding: 3rem 2rem; }
    .kontakt-success h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--grey-text); margin-bottom: 0.75rem; }
    .kontakt-success p { font-size: 0.9rem; color: var(--grey-text); }
    .kontakt-success svg { width: 48px; height: 48px; stroke: var(--gold); margin-bottom: 1rem; }

    @media (max-width: 968px) {
      .kontakt-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    }
    @media (max-width: 768px) {
      .kontakt-section { padding: 3rem 1.25rem; }
      .kontakt-grid { gap: 2rem; }
      .kontakt-form-wrap { padding: 1.5rem; }
      .kontakt-intro { font-size: 0.88rem; margin-bottom: 1.5rem; }
      .kontakt-detail-icon { width: 40px; height: 40px; }
      .kontakt-detail-icon svg { width: 18px; height: 18px; }
      .kontakt-detail-item a, .kontakt-detail-item p { font-size: 0.85rem; }
      .form-row { grid-template-columns: 1fr; }
      .form-group input, .form-group select, .form-group textarea { font-size: 1rem; padding: 0.85rem 1rem; }
    }
    @media (max-width: 480px) {
      .kontakt-section { padding: 2rem 1rem; }
      .kontakt-grid { gap: 1.5rem; }
      .kontakt-form-wrap { padding: 1rem; }
      .kontakt-detail-item { gap: 0.75rem; }
      .kontakt-detail-icon { width: 36px; height: 36px; }
      .kontakt-detail-icon svg { width: 16px; height: 16px; }
      .kontakt-detail-item h4 { font-size: 0.7rem; }
      .kontakt-success { padding: 2rem 1rem; }
    }

    /* DIGITALE ZAHNTECHNIK PAGE */
    .digi-case-section { padding: 6rem 2rem; }
    .digi-case-alt { background: var(--warm-white); }
    .digi-case-text { max-width: 800px; }
    .digi-case-text p { color: var(--text-light); line-height: 1.85; margin-bottom: 1.25rem; font-size: 0.95rem; }
    .vk-subtitle { display: none; }
    .digi-specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 2.5rem 0 0; border: 1px solid rgba(0,0,0,0.1); border-radius: 4px; overflow: hidden; }
    .digi-spec-card { display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.08); border-right: 1px solid rgba(0,0,0,0.08); background: var(--white); font-size: 0.88rem; color: var(--anthrazit); }
    .digi-spec-card:nth-child(even) { border-right: none; }
    .digi-spec-card:nth-last-child(-n+2) { border-bottom: none; }
    .digi-spec-icon { color: var(--gold); font-size: 0.7rem; flex-shrink: 0; }
    .digi-workflow { margin-top: 3.5rem; }
    .digi-workflow h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; color: var(--grey-text); margin-bottom: 2rem; }
    .digi-gallery { display: grid; gap: 1rem; }
    .digi-gallery-3col { grid-template-columns: 1fr 1fr; }
    .digi-gallery-2col { grid-template-columns: 1fr 1fr; }
    .digi-gallery-item { overflow: hidden; border-radius: 2px; background: var(--cream); }
    .digi-gallery-item img { width: 100%; height: auto; max-height: 350px; object-fit: contain; transition: transform 0.6s ease; }
    .digi-gallery-item:hover img { transform: scale(1.03); }
    .digi-gallery-small { max-width: 800px; }
    .digi-gallery-small .digi-gallery-item img { height: auto; max-height: 300px; }
    .digi-gallery-portrait img { height: 320px !important; object-fit: cover; }
    .inline-link { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold); transition: opacity 0.3s; }
    .inline-link:hover { opacity: 0.7; }
    @media (max-width: 600px) {
      .digi-specs-grid { grid-template-columns: 1fr; }
      .digi-spec-card { border-right: none; }
      .digi-spec-card:nth-last-child(-n+2) { border-bottom: 1px solid rgba(0,0,0,0.08); }
      .digi-spec-card:last-child { border-bottom: none; }
      .digi-gallery-3col, .digi-gallery-2col { grid-template-columns: 1fr; }
      .digi-gallery-item img { max-height: 300px; }
    }

    /* LABORAUFTRAG UPLOAD */
    .laborauftrag-upload {
      margin-top: 4rem;
      padding-top: 4rem;
      border-top: 1px solid var(--grey-light);
    }
    .laborauftrag-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      background: var(--warm-white);
      border-radius: 8px;
      overflow: hidden;
    }
    .laborauftrag-image {
      overflow: hidden;
      border-radius: 8px 0 0 8px;
      height: 100%;
    }
    .laborauftrag-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 320px;
    }
    .laborauftrag-content {
      padding: 3rem 3rem 3rem 0;
    }
    .laborauftrag-content .section-title {
      margin-bottom: 1rem;
    }
    .laborauftrag-text {
      font-size: 0.95rem;
      color: var(--text-light);
      line-height: 1.8;
      margin-bottom: 2rem;
    }
    .btn-laborauftrag {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1.1rem 2.5rem;
      background: var(--gold);
      color: var(--white);
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      border-radius: 4px;
      border: 2px solid var(--gold);
      transition: var(--transition);
      cursor: pointer;
    }
    .btn-laborauftrag svg {
      width: 22px;
      height: 22px;
      stroke: var(--white);
      transition: var(--transition);
    }
    .btn-laborauftrag:hover {
      background: transparent;
      color: var(--gold);
    }
    .btn-laborauftrag:hover svg {
      stroke: var(--gold);
      transform: translateY(-2px);
    }
    .laborauftrag-hinweis {
      font-size: 0.75rem;
      color: var(--text-light);
      margin-top: 0.75rem;
    }
    @media (max-width: 768px) {
      .laborauftrag-inner {
        grid-template-columns: 1fr;
        gap: 0;
      }
      .laborauftrag-image {
        border-radius: 8px 8px 0 0;
      }
      .laborauftrag-image img {
        min-height: 220px;
        max-height: 280px;
      }
      .laborauftrag-content {
        padding: 2rem 1.5rem;
      }
      .btn-laborauftrag {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
      }
    }
    @media (max-width: 480px) {
      .laborauftrag-upload {
        margin-top: 2.5rem;
        padding-top: 2.5rem;
      }
      .laborauftrag-content {
        padding: 1.5rem 1rem;
      }
      .btn-laborauftrag {
        font-size: 0.9rem;
        padding: 0.9rem 1.5rem;
      }
    }

    /* LEGAL PAGES */
    .legal-section { padding: 5rem 2rem 6rem; background: var(--white); }
    .legal-content { max-width: 780px; margin: 0 auto; }
    .legal-content h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--grey-text); margin: 2.5rem 0 1rem; }
    .legal-content h2:first-of-type { margin-top: 0; }
    .legal-content h3 { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; color: var(--grey-text); margin: 1.5rem 0 0.5rem; }
    .legal-content p { font-size: 0.92rem; color: var(--grey-text); line-height: 1.85; margin-bottom: 0.75rem; }
    .legal-content a { color: var(--gold); border-bottom: 1px solid transparent; }
    .legal-content a:hover { border-bottom-color: var(--gold); }
    .legal-content ul { list-style: none; margin: 0.75rem 0 1rem; }
    .legal-content ul li { font-size: 0.92rem; color: var(--grey-text); line-height: 1.85; padding: 0.25rem 0 0.25rem 1.25rem; position: relative; }
    .legal-content ul li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); position: absolute; left: 0; top: 0.75rem; }
    .legal-stand { font-size: 0.8rem; color: var(--grey-text); margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--grey-light); }

    /* --- Multi-Page: Seiteninhalt immer sichtbar --- */
    .page-content { display: block; }
