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

    :root {
      --gold: #c9a84c;
      --gold-light: #e8c97a;
      --gold-dark: #a07830;
      --silver: #b8bec8;
      --black: #111010;
      --dark: #1a1814;
      --cream: #f8f5f0;
      --cream2: #efe9e0;
      --text: #2a2520;
      --muted: #7a6e62;
      --border-gold: rgba(201,168,76,0.25);
      --border-light: rgba(42,37,32,0.1);
    }

    html { scroll-behavior: smooth; max-width: 100%; }
    section[id] { scroll-margin-top: 60px; }
    body { background: var(--cream); color: var(--text); font-family: Georgia, 'Times New Roman', serif; overflow-x: hidden; max-width: 100%; }
    img, svg, video { max-width: 100%; }
    .visually-hidden {
      position: absolute !important; width: 1px !important; height: 1px !important;
      padding: 0 !important; margin: -1px !important; overflow: hidden !important;
      clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0.55rem 2rem;
      background: rgba(17,16,16,0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-gold);
    }
    .nav-logo {
      font-size: 1.2rem;
      font-weight: 400;
      letter-spacing: 0.04em;
      color: #fff;
    }
    .nav-logo span { color: var(--gold); }
    .nav-right {
      display: flex; align-items: center; gap: 1.4rem;
    }
    .nav-links {
      display: flex; gap: 1.4rem; list-style: none; align-items: center;
      margin: 0; padding: 0;
    }
    .nav-links a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.7rem;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: color 0.25s;
    }
    .nav-links a:hover { color: var(--gold); }
    .language-switcher {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-width: 92px;
    }
    .language-switcher select {
      width: 100%;
      min-height: 34px;
      border: 0;
      border-bottom: 1px solid rgba(201,168,76,0.55);
      border-radius: 0;
      background: var(--black);
      color: rgba(255,255,255,0.82);
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.7rem;
      padding: 0.35rem 1.4rem 0.35rem 0.25rem;
      cursor: pointer;
    }
    .language-switcher select:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 2px;
    }
    .language-switcher-mobile-nav {
      display: none;
      flex: 0 0 48px;
      min-width: 48px;
      position: relative;
      width: 48px;
    }
    .language-switcher-mobile-nav::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 5px;
      width: 5px;
      height: 5px;
      border-right: 1px solid var(--gold);
      border-bottom: 1px solid var(--gold);
      pointer-events: none;
      transform: translateY(-70%) rotate(45deg);
    }
    .language-switcher-mobile-nav select {
      appearance: none;
      -webkit-appearance: none;
      min-height: 36px;
      padding: 0.3rem 0.8rem 0.3rem 0.2rem;
      color: #fff;
      font-weight: 600;
      text-align: center;
      text-align-last: center;
      font-size: 0.68rem;
    }
    .nav-phone {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.04em;
      transition: color 0.25s;
      white-space: nowrap;
    }
    .nav-phone:hover { color: var(--gold); }
    .nav-cta {
      border: 1px solid var(--gold);
      color: var(--gold);
      text-decoration: none;
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.4rem 1.1rem;
      transition: background 0.25s, color 0.25s;
      white-space: nowrap;
    }
    .nav-cta:hover { background: var(--gold); color: var(--black); }
    .nav-cta-short { display: none; }
    .nav-hamburger {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: 0; padding: 0.35rem; cursor: pointer;
      color: #fff;
    }
    .nav-hamburger span {
      display: block; width: 22px; height: 2px; background: currentColor;
      transition: transform 0.25s, opacity 0.25s;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-mobile {
      position: fixed; inset: 0; z-index: 1700;
      display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
      gap: 1.2rem; padding: 5rem 2rem 2rem; overflow-y: auto;
      background: rgba(17,16,16,0.99);
    }
    .nav-mobile[hidden] { display: none; }
    .nav-mobile ul {
      display: flex; flex-direction: column; align-items: center;
      gap: 1rem; list-style: none; margin: 0; padding: 0;
    }
    .nav-mobile ul a {
      color: rgba(255,255,255,0.86); text-decoration: none;
      font-family: 'Segoe UI', sans-serif; font-size: 1rem;
      letter-spacing: 0.12em; text-transform: uppercase;
    }
    .nav-mobile ul a:hover,
    .nav-mobile ul a:focus-visible,
    .nav-mobile-contact:hover { color: var(--gold); }
    .nav-mobile-contact {
      color: rgba(255,255,255,0.68); text-decoration: none;
      font-family: 'Segoe UI', sans-serif; font-size: 0.86rem;
    }
    .nav-mobile-close {
      position: absolute; top: 1.1rem; right: 1.4rem;
      width: 44px; height: 44px; border: 0; background: none;
      color: #fff; font-size: 1.35rem; cursor: pointer;
    }
    @media (max-width: 1400px) {
      .nav-phone { display: none; }
    }
    @media (max-width: 1180px) {
      nav { justify-content: flex-start; gap: 0.75rem; }
      .nav-links { display: none; }
      .nav-right { margin-left: auto; }
      .nav-right > .language-switcher { display: none; }
      .nav-cta-top .nav-cta-full { display: none; }
      .nav-cta-top .nav-cta-short { display: inline; }
      .language-switcher-mobile-nav { display: inline-flex; }
      .nav-hamburger { display: flex; }
    }

    /* ── HERO ── */
    #hero {
      min-height: 52vh;
      display: flex; align-items: center; justify-content: center;
      text-align: center;
      position: relative; overflow: hidden;
      padding: 5.5rem 2rem 2.5rem;
      background: var(--black);
      z-index: 0;
    }
    .hero-grid-bg {
      display: block;
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(201,168,76,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.08) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-glow {
      display: block;
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      width: 800px; height: 600px;
      background: radial-gradient(ellipse, rgba(201,168,76,0.1) 0%, transparent 65%);
      pointer-events: none;
    }
    .hero-region {
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.7rem; letter-spacing: 0.35em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 1.4rem;
      position: relative; z-index: 2;
      animation: fadeUp 0.8s 0.1s ease both;
    }
    .hero-h1 { margin: 0; padding: 0; line-height: 0; display: flex; justify-content: center; }
    .hero-logo {
      width: min(100%, clamp(260px, 82vw, 760px));
      max-width: 100%;
      height: auto; display: block;
      position: relative; z-index: 2;
      margin: 0.5rem 0;
      animation: fadeUp 0.8s 0.2s ease both;
    }
    .hero-divider {
      width: 60px; height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      margin: 1.8rem auto;
      position: relative; z-index: 2;
      animation: fadeUp 0.8s 0.3s ease both;
    }
    .hero-tagline {
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.72rem; letter-spacing: 0.22em;
      text-transform: uppercase; color: rgba(255,255,255,0.55);
      position: relative; z-index: 2;
      animation: fadeUp 0.8s 0.4s ease both;
      line-height: 2;
    }
    .hero-btns {
      display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
      margin-top: 3rem;
      position: relative; z-index: 2;
      animation: fadeUp 0.8s 0.5s ease both;
    }
    .btn-gold {
      background: var(--gold); color: var(--black);
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.75rem; font-weight: 600;
      letter-spacing: 0.2em; text-transform: uppercase;
      padding: 0.95rem 2.4rem; border: none;
      cursor: pointer; text-decoration: none;
      transition: background 0.25s, transform 0.2s;
      display: inline-flex; align-items: center; justify-content: center;
      max-width: 100%; text-align: center; line-height: 1.25;
    }
    .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
    .btn-outline {
      border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.75);
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.75rem; font-weight: 400;
      letter-spacing: 0.2em; text-transform: uppercase;
      padding: 0.95rem 2.4rem;
      cursor: pointer; text-decoration: none;
      transition: border-color 0.25s, color 0.25s;
      display: inline-flex; align-items: center; justify-content: center;
      max-width: 100%; text-align: center; line-height: 1.25;
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
    .scroll-hint {
      position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
      z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
      cursor: pointer;
      animation: fadeUp 0.8s 0.7s ease both;
    }
    .scroll-text {
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      transition: color 0.25s;
    }
    .scroll-hint:hover .scroll-text { color: var(--gold); }
    .scroll-arrow {
      width: 38px; height: 38px;
      display: flex; align-items: center; justify-content: center;
      border: 1px solid rgba(201,168,76,0.5); border-radius: 50%;
      color: var(--gold);
      animation: bounceDown 1.8s ease-in-out infinite;
      transition: background 0.25s, border-color 0.25s;
    }
    .scroll-hint:hover .scroll-arrow { background: rgba(201,168,76,0.12); border-color: var(--gold); }
    @keyframes bounceDown {
      0%, 100% { transform: translateY(0); opacity: 0.75; }
      50% { transform: translateY(8px); opacity: 1; }
    }

    /* ── SECTION BASE ── */
    section { padding: 7rem 3rem; }
    .sec-label {
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.68rem; letter-spacing: 0.3em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 0.8rem; font-weight: 500;
    }
    .sec-title {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 400; line-height: 1.1;
      color: var(--text);
    }
    .sec-title em { color: var(--gold); font-style: italic; }
    .sec-sub {
      margin-top: 1rem; color: var(--muted);
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.95rem; line-height: 1.75; max-width: 520px;
    }
    .gold-line {
      width: 40px; height: 1px;
      background: var(--gold);
      margin: 1.5rem 0;
    }

    /* ── SERVICES ── */
    #services { background: var(--cream); position: relative; z-index: 1; padding-top: 3rem; }
    .srv-header { text-align: center; margin-bottom: 4rem; }
    .srv-header .sec-sub { margin: 1rem auto 0; }
    .srv-header .gold-line { margin: 1.5rem auto; }
    .srv-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
      gap: 1.5rem;
      max-width: 1100px; margin: 0 auto;
    }

    /* ── REFERENZEN ── */
    .reference-section { background: var(--cream2); padding: 5rem 2rem; }
    .reference-inner { width: min(1100px, 100%); margin: 0 auto; }
    .reference-heading { text-align: center; margin-bottom: 3rem; }
    .reference-heading .gold-line { margin: 1.5rem auto; }
    .reference-heading .sec-sub { margin: 0 auto; }
    .reference-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
      gap: 1.5rem; margin-bottom: 2.5rem;
    }
    .reference-card {
      display: block; min-width: 0; overflow: hidden;
      background: #fff; border: 1px solid rgba(201,168,76,0.2);
      color: var(--text); text-decoration: none;
      transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .reference-card:hover,
    .reference-card:focus-visible {
      border-color: var(--gold); transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    }
    .reference-card > img { display: block; width: 100%; height: 180px; object-fit: cover; }
    .reference-card-body { padding: 1.2rem; }
    .reference-card-label {
      margin: 0 0 0.4rem; color: var(--gold);
      font-family: 'Segoe UI', sans-serif; font-size: 0.68rem;
      letter-spacing: 0.25em; text-transform: uppercase;
    }
    .reference-card h3 { margin: 0 0 0.4rem; font-size: 1rem; font-weight: 600; }
    .reference-card-body > p:not(.reference-card-label) {
      margin: 0 0 0.8rem; color: var(--muted);
      font-family: 'Segoe UI', sans-serif; font-size: 0.85rem; line-height: 1.5;
    }
    .reference-card-body > span {
      color: var(--gold); font-family: 'Segoe UI', sans-serif;
      font-size: 0.82rem; font-weight: 600;
    }
    .reference-all { text-align: center; }
    .srv-card {
      background: #fff;
      border: 1px solid var(--border-light);
      padding: 0;
      position: relative; overflow: hidden;
      cursor: pointer;
      color: inherit; text-decoration: none;
      transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
    }
    .srv-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
    .srv-card:hover { box-shadow: 0 14px 40px rgba(0,0,0,0.12); transform: translateY(-4px); border-color: var(--gold); }
    .srv-img-wrap { overflow: hidden; height: 190px; position: relative; background: var(--cream2); }
    .srv-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center; background-repeat: no-repeat;
      filter: grayscale(10%);
      transition: filter 0.4s, transform 0.5s, opacity 1s ease;
    }
    .srv-card:hover .srv-bg { filter: grayscale(0%); transform: scale(1.05); }
    .srv-body { padding: 1.8rem 1.8rem 2.5rem; }
    .srv-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.4s ease;
    }
    .srv-card:hover {
      box-shadow: 0 8px 40px rgba(201,168,76,0.12);
      transform: translateY(-4px);
      border-color: var(--border-gold);
    }
    .srv-card:hover::before { transform: scaleX(1); }
    .srv-icon-wrap {
      width: 44px; height: 44px;
      border: 1px solid var(--border-gold);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; margin-bottom: 1.2rem;
      background: linear-gradient(135deg, rgba(201,168,76,0.05), rgba(201,168,76,0.12));
    }
    .srv-name {
      font-size: 1.1rem; font-weight: 400;
      letter-spacing: 0.02em; color: var(--text);
      margin-bottom: 0.8rem;
    }
    .srv-desc {
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.85rem; line-height: 1.7; color: var(--muted);
      margin-bottom: 1.2rem;
    }
    .srv-list {
      list-style: none; padding: 0; border-top: 1px solid var(--border-light); padding-top: 1.1rem;
    }
    .srv-list li {
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.8rem; color: var(--muted);
      padding: 0.3rem 0; display: flex; align-items: center; gap: 0.6rem;
    }
    .srv-list li::before { content: '—'; color: var(--gold); font-size: 0.7rem; }
    .srv-num {
      position: absolute; right: 1.5rem; bottom: 1.2rem;
      font-size: 3.5rem; font-weight: 400;
      color: rgba(201,168,76,0.07); line-height: 1;
    }

    /* ── WHY ── */
    #why { background: var(--dark); color: #fff; }
    #why .sec-title { color: #fff; }
    #why .sec-sub { color: rgba(255,255,255,0.55); }
    .why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; max-width: 1100px; margin: 0 auto; }
    .why-pts { display: flex; flex-direction: column; gap: 1.8rem; margin-top: 2.5rem; }
    .why-pt { display: flex; gap: 1.2rem; align-items: flex-start; }
    .pt-dot {
      width: 1px; background: var(--gold); align-self: stretch;
      min-height: 50px; flex-shrink: 0; margin-top: 0.2rem;
      margin-left: 0.3rem;
    }
    .pt-title {
      font-size: 0.95rem; font-weight: 400; color: #fff;
      margin-bottom: 0.3rem; letter-spacing: 0.02em;
    }
    .pt-text {
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.65;
    }
    .why-visual {
      position: relative; height: 420px;
      border: 1px solid rgba(201,168,76,0.2);
      background: #0f0e0e;
      overflow: hidden;
    }
    .why-vis-grid {
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(201,168,76,0.05) 1px,transparent 1px),
        linear-gradient(90deg,rgba(201,168,76,0.05) 1px,transparent 1px);
      background-size: 40px 40px;
    }
    .why-cert {
      position: absolute; bottom: 0; right: 0;
      width: 150px; height: 100px;
      background: linear-gradient(135deg, var(--gold-dark), var(--gold));
      display: flex; flex-direction: column; align-items: center; justify-content: center;
    }
    .why-cert .big { font-size: 2.2rem; font-weight: 400; color: #fff; line-height: 1; }
    .why-cert .sm {
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase;
      color: rgba(255,255,255,0.85);
    }
    .why-label-top {
      position: absolute; top: 1.5rem; left: 1.5rem;
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); border: 1px solid rgba(201,168,76,0.3);
      padding: 0.35rem 0.8rem;
    }
    /* Crosshair */
    .ch { position: absolute; top: 50%; left: 45%; transform: translate(-50%,-55%); width: 60px; height: 60px; }
    .ch::before,.ch::after { content:''; position:absolute; background: rgba(201,168,76,0.4); }
    .ch::before { top:50%; left:0; right:0; height:1px; }
    .ch::after { left:50%; top:0; bottom:0; width:1px; }
    .ch-ring {
      position: absolute; top: 50%; left: 45%;
      transform: translate(-50%,-55%);
      width: 60px; height: 60px;
      border: 1px solid rgba(201,168,76,0.3); border-radius: 50%;
    }

    /* ── PROCESS ── */
    #process { background: var(--cream2); }
    .proc-inner { max-width: 1000px; margin: 0 auto; }
    .proc-head { text-align: center; margin-bottom: 4.5rem; }
    .proc-head .gold-line { margin: 1.5rem auto; }
    .proc-head .sec-sub { margin: 0 auto; }
    .proc-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
    .proc-step {
      text-align: center; padding: 2.5rem 1.5rem;
      border-right: 1px solid var(--border-light);
      position: relative;
    }
    .proc-step:last-child { border-right: none; }
    .step-num {
      font-size: 2.8rem; font-weight: 400; color: var(--gold);
      opacity: 0.35; line-height: 1; margin-bottom: 1rem;
    }
    .step-t {
      font-size: 0.92rem; font-weight: 400;
      letter-spacing: 0.02em; color: var(--text);
      margin-bottom: 0.6rem;
    }
    .step-d {
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.8rem; color: var(--muted); line-height: 1.65;
    }

    /* ── CONTACT ── */
    #contact { background: var(--cream); }
    .contact-inner {
      width: min(90%, 1320px); max-width: none; margin: 0 auto;
      display: grid; grid-template-columns: minmax(0, 2.15fr) minmax(260px, 0.85fr);
      gap: clamp(2rem, 4vw, 4rem); align-items: start;
    }
    .contact-main { min-width: 0; }
    .cform {
      margin-top: 2rem;
      border: 1px solid var(--border-light);
      background: rgba(255,255,255,0.72);
      padding: clamp(1.2rem, 2vw, 1.8rem);
    }
    .cform form {
      display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem; align-items: end;
    }
    .hp-field {
      position: absolute; left: -9999px; width: 1px; height: 1px;
      overflow: hidden;
    }
    .form-notice {
      margin-top: 1.4rem;
      border: 1px solid var(--border-light);
      padding: 0.9rem 1rem;
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.88rem;
      line-height: 1.5;
    }
    .form-notice.success {
      border-color: rgba(74, 128, 75, 0.32);
      background: rgba(74, 128, 75, 0.09);
      color: #335d35;
    }
    .form-notice.error {
      border-color: rgba(160, 54, 48, 0.3);
      background: rgba(160, 54, 48, 0.08);
      color: #8b2e29;
    }
    .frow { display: contents; }
    .fg { display: flex; flex-direction: column; gap: 0.6rem; }
    .fg-wide,
    .form-section,
    .privacy-check,
    .form-submit {
      grid-column: 1 / -1;
    }
    .form-section {
      margin-top: 0.4rem;
      border-top: 1px solid rgba(0,0,0,0.06);
      padding-top: 1rem;
    }
    .form-section h3 {
      margin: 0 0 0.25rem;
      font-size: 1rem;
      font-weight: 400;
      color: var(--text);
      letter-spacing: 0;
    }
    .form-section p {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.86rem;
      color: var(--muted);
      line-height: 1.55;
    }
    .flbl {
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.65rem; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--muted);
    }
    .flbl span {
      letter-spacing: 0;
      text-transform: none;
      color: rgba(112,106,94,0.76);
    }
    .finp,.ftxt,.fsel {
      background: #fff; border: 1px solid var(--border-light);
      padding: 0.85rem 1rem; color: var(--text);
      font-family: 'Segoe UI', sans-serif; font-size: 0.9rem;
      outline: none; transition: border-color 0.25s;
      min-width: 0;
    }
    .finp:focus,.ftxt:focus,.fsel:focus { border-color: var(--gold); }
    .ftxt { resize: vertical; min-height: 96px; }
    .fsel {
      cursor: pointer; appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23c9a84c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 1rem center;
    }
    .fsel option { background: #fff; }
    .form-submit {
      min-height: auto;
      display: flex; justify-content: flex-start; align-items: center;
    }
    .form-submit .btn-gold {
      width: auto; justify-content: center;
      border: none; cursor: pointer; margin-top: 0;
    }
    .privacy-check {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.86rem;
      line-height: 1.55;
      color: var(--muted);
    }
    .privacy-check input {
      width: 18px;
      height: 18px;
      margin-top: 0.1rem;
      accent-color: var(--gold);
      flex: 0 0 auto;
    }
    .privacy-check a {
      color: var(--gold);
      text-decoration: none;
    }
    .cinfo { padding-top: 9rem; }
    .ci { display: flex; gap: 1.2rem; align-items: flex-start; margin-bottom: 2rem; }
    .ci-icon {
      width: 40px; height: 40px; flex-shrink: 0;
      border: 1px solid var(--border-gold);
      display: flex; align-items: center; justify-content: center; font-size: 1rem;
      background: linear-gradient(135deg, rgba(201,168,76,0.04), rgba(201,168,76,0.1));
    }
    .ci-lbl {
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.62rem; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem;
    }
    .ci-val { font-family: 'Segoe UI', sans-serif; font-size: 0.9rem; color: var(--text); line-height: 1.5; }
    .ci-val a { color: inherit; text-decoration: none; }
    .ci-val a:hover { color: var(--gold-dark); }

    /* ── FOOTER ── */
    footer {
      background: var(--black);
      border-top: 1px solid rgba(201,168,76,0.15);
      padding: 3rem 2rem 2.5rem;
      display: flex; flex-direction: column; align-items: center; gap: 1.4rem;
      text-align: center;
    }
    .fl { font-size: 1.4rem; font-weight: 400; color: #fff; letter-spacing: 0.04em; }
    .fl span { color: var(--gold); }
    .fl-img { width: clamp(200px, 62vw, 300px); height: auto; display: block; max-width: 100%; }
    .fsocial { display: flex; gap: 1.6rem; align-items: center; }
    .fsocial a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; display: flex; }
    .fsocial a:hover { color: var(--gold); }
    .flinks { display: flex; gap: 2rem; }
    .flinks a,
    .flinks button {
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.72rem; color: rgba(255,255,255,0.5);
      text-decoration: none; letter-spacing: 0.15em; text-transform: uppercase;
      transition: color 0.2s;
      background: none; border: 0; cursor: pointer;
    }
    .flinks a:hover,
    .flinks button:hover { color: var(--gold); }
    .fc { font-family: 'Segoe UI', sans-serif; font-size: 0.7rem; color: rgba(255,255,255,0.3); letter-spacing: 0.05em; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.4rem; width: 100%; max-width: 320px; }
    .fv { display: block; margin-top: 0.45rem; color: rgba(255,255,255,0.22); }

    /* ── COOKIE CONSENT ── */
    .cookie-consent {
      position: fixed; inset: auto 1.5rem 1.5rem 1.5rem; z-index: 1800;
      display: flex; justify-content: center; pointer-events: none;
    }
    .cookie-consent[hidden] { display: none; }
    .cookie-box {
      width: min(980px, 100%);
      background: rgba(17,16,16,0.97);
      color: #fff;
      border: 1px solid rgba(201,168,76,0.36);
      box-shadow: 0 22px 70px rgba(0,0,0,0.36);
      padding: clamp(1.2rem, 2vw, 1.8rem);
      display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
      gap: 1.4rem; align-items: center;
      pointer-events: auto;
    }
    .cookie-copy { display: grid; gap: 0.65rem; }
    .cookie-label {
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--gold); margin: 0;
    }
    .cookie-copy h2 {
      margin: 0;
      font-size: clamp(1.25rem, 2vw, 1.7rem);
      font-weight: 400;
      color: #fff;
    }
    .cookie-copy p {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.88rem; line-height: 1.6;
      color: rgba(255,255,255,0.72);
    }
    .cookie-links {
      display: flex; flex-wrap: wrap; gap: 0.8rem 1.2rem;
    }
    .cookie-copy a {
      width: fit-content;
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.78rem; color: var(--gold);
      text-decoration: none;
    }
    .cookie-actions {
      display: grid; grid-template-columns: 1fr; gap: 0.65rem;
    }
    .cookie-btn {
      min-height: 44px;
      display: inline-flex; align-items: center; justify-content: center;
      border: 1px solid rgba(201,168,76,0.45);
      background: transparent;
      color: #fff;
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; text-align: center;
      padding: 0.75rem 1rem;
      cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s;
    }
    .cookie-btn:hover { border-color: var(--gold); }
    .cookie-btn-gold {
      background: var(--gold); color: var(--black); border-color: var(--gold);
    }
    .cookie-btn-outline {
      background: #fff; color: var(--black); border-color: #fff;
    }
    .cookie-btn-plain {
      color: var(--gold);
    }
    .cookie-options {
      grid-column: 1 / -1;
      display: grid; gap: 0.8rem;
      border-top: 1px solid rgba(255,255,255,0.12);
      padding-top: 1rem;
    }
    .cookie-options[hidden] { display: none; }
    .cookie-option {
      display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 0.8rem;
      align-items: start;
      border: 1px solid rgba(255,255,255,0.1);
      padding: 0.9rem;
      font-family: 'Segoe UI', sans-serif;
      color: rgba(255,255,255,0.68);
      font-size: 0.84rem; line-height: 1.5;
    }
    .cookie-option input {
      width: 18px; height: 18px; margin-top: 0.1rem;
      accent-color: var(--gold);
    }
    .cookie-option strong {
      display: block;
      color: #fff;
      font-size: 0.86rem;
      margin-bottom: 0.15rem;
    }
    .cookie-option-disabled {
      opacity: 0.82;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: none; }
    }
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.on { opacity: 1; transform: none; }

    /* ── MODALS ── */
    .modal-overlay {
      position: fixed; inset: 0; z-index: 1000;
      background: rgba(17,16,16,0.85);
      backdrop-filter: blur(6px);
      display: none; align-items: center; justify-content: center;
      padding: 2rem;
    }
    .modal-overlay.open { display: flex; }
    .modal-box {
      background: var(--cream);
      max-width: 700px; width: 100%;
      max-height: 85vh; overflow-y: auto;
      padding: 3rem; position: relative;
      border-top: 3px solid var(--gold);
    }
    .modal-close {
      position: absolute; top: 1.2rem; right: 1.2rem;
      background: none; border: none; cursor: pointer;
      font-size: 1.3rem; color: var(--muted);
      width: 36px; height: 36px;
      transition: color 0.2s;
    }
    .modal-close:hover { color: var(--gold); }
    .modal-title {
      font-size: 1.8rem; font-weight: 400; color: var(--text);
      margin-bottom: 1.5rem; padding-right: 2rem;
    }
    .modal-content h3 {
      font-size: 1rem; font-weight: 400; color: var(--gold);
      margin: 1.5rem 0 0.5rem; letter-spacing: 0.02em;
    }
    .modal-content p {
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.9rem; line-height: 1.7; color: var(--muted);
    }
    .srv-lead { font-size: 1rem !important; line-height: 1.75 !important; color: var(--text) !important; }
    .srv-lead > :first-child { margin-top: 0; }
    .srv-lead img { display: block; width: 100%; height: auto; max-height: 420px; object-fit: cover; margin: 1.2rem 0; }
    .modal-list { margin: 0.4rem 0 0; padding: 0; list-style: none; }
    .modal-list li {
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.9rem; line-height: 1.6; color: var(--text);
      padding: 0.55rem 0 0.55rem 1.7rem; position: relative;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .modal-list li::before {
      content: "✓"; position: absolute; left: 0; top: 0.5rem;
      color: var(--gold); font-weight: bold;
    }
    .srv-process-list { list-style: none; padding: 0; margin: 0 0 1.2rem; }
    .srv-process-list li {
      display: flex; align-items: baseline; gap: 1rem;
      margin-bottom: 0.6rem; font-family: 'Segoe UI', sans-serif;
      font-size: 0.95rem; line-height: 1.55; color: var(--text);
    }
    .srv-process-list li span:first-child {
      min-width: 1.8rem; flex: 0 0 1.8rem;
      color: var(--gold); font-size: 0.85rem; font-weight: 700;
    }
    .srv-closing {
      margin-top: 1.5rem !important; font-style: italic;
      color: var(--text) !important; border-left: 3px solid var(--gold);
      padding-left: 1rem; font-size: 0.95rem !important;
    }
    .srv-price-badge {
      display: inline-flex; flex-direction: column; gap: 0.35rem; margin: 1.5rem 0 0 !important;
      padding: 0.5rem 1rem; border: 1px solid rgba(201,168,76,0.3);
      background: rgba(201,168,76,0.12); color: var(--gold) !important;
      font-size: 0.85rem !important; letter-spacing: 0;
    }
    .srv-price-row { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.35rem 0.75rem; }
    .srv-price-row small { color: var(--muted); font-family: 'Segoe UI', sans-serif; font-size: 0.7rem; }
    .srv-price-badge + .modal-cta { display: block; width: fit-content; }
    .emergency-phone:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
    .consent-video {
      position: relative; width: 100%; aspect-ratio: 16 / 9;
      margin: 1.5rem 0; overflow: hidden; background: #1a1814;
    }
    .consent-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
    .consent-video iframe[hidden] { display: none; }
    .consent-video-placeholder {
      position: absolute; inset: 0; display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 0.75rem;
      padding: 1.5rem; text-align: center; color: #fff;
    }
    .consent-video-placeholder[hidden] { display: none; }
    .consent-video-placeholder strong { font-size: 1.1rem; font-weight: 500; }
    .consent-video-placeholder p { max-width: 520px; margin: 0; color: rgba(255,255,255,0.78) !important; }
    .content-media { margin: 1.5rem 0; }
    .content-media img {
      display: block; width: 100%; max-height: 520px; object-fit: cover;
    }
    .content-slider {
      position: relative; width: 100%; aspect-ratio: 16 / 9;
      max-height: 520px; margin: 1.5rem 0; overflow: hidden; background: #111;
    }
    .content-slider img {
      display: block; width: 100%; height: 100%; object-fit: cover;
    }
    .content-slider img[hidden] { display: none; }
    .content-slider-button {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 44px; height: 52px; border: 0;
      background: rgba(0,0,0,0.58); color: #fff;
      font-size: 1.5rem; cursor: pointer;
    }
    .content-slider-prev { left: 0; }
    .content-slider-next { right: 0; }
    .content-slider-status {
      position: absolute; right: 0.75rem; bottom: 0.6rem;
      margin: 0 !important; padding: 0.25rem 0.5rem;
      background: rgba(0,0,0,0.62); color: #fff !important;
      font-size: 0.72rem !important; line-height: 1.2 !important;
    }
    .content-document { margin: 0.5rem 0 1.5rem; }
    .content-model-viewer {
      width: min(1180px, calc(100vw - 3rem));
      margin: 2.5rem 50%;
      transform: translateX(-50%);
      font-family: 'Segoe UI', sans-serif;
    }
    .model-viewer-stage {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      min-height: 420px;
      overflow: hidden;
      background: #181a1d;
    }
    .model-viewer-stage canvas {
      display: block;
      width: 100%;
      height: 100%;
      touch-action: none;
      cursor: grab;
    }
    .model-viewer-stage canvas:active { cursor: grabbing; }
    .model-viewer-stage canvas:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: -4px;
    }
    .model-viewer-loading,
    .model-viewer-error {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      padding: 2rem;
      background: #181a1d;
      color: rgba(255,255,255,0.82);
      text-align: center;
    }
    .model-viewer-loading[hidden],
    .model-viewer-error[hidden] { display: none; }
    .model-viewer-loading progress {
      width: min(260px, 70%);
      height: 4px;
      border: 0;
      accent-color: var(--gold);
    }
    .model-viewer-error a { color: var(--gold-light); }
    .model-viewer-controls {
      position: absolute;
      z-index: 2;
      top: 1rem;
      right: 1rem;
      display: flex;
      gap: 0.5rem;
    }
    .model-viewer-controls button {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 50%;
      background: rgba(17,16,16,0.82);
      color: #fff;
      cursor: pointer;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }
    .model-viewer-controls button:hover,
    .model-viewer-controls button:focus-visible {
      border-color: var(--gold);
      background: var(--gold);
      color: var(--black);
      outline: none;
    }
    .model-viewer-controls svg { width: 19px; height: 19px; }
    .content-model-viewer figcaption {
      margin-top: 0.65rem;
      color: var(--muted);
      font-size: 0.78rem;
      text-align: center;
    }
    .model-viewer-stage:fullscreen {
      width: 100vw;
      height: 100vh;
      min-height: 0;
      aspect-ratio: auto;
    }
    .modal-cta {
      display: inline-block; margin-top: 1.8rem;
      background: var(--gold); color: var(--black) !important;
      text-decoration: none; font-family: 'Segoe UI', sans-serif;
      font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
      padding: 0.9rem 2.2rem; transition: background 0.25s;
    }
    .modal-cta:hover { background: var(--gold-light); }
    .srv-more {
      margin-top: 1.3rem; font-family: 'Segoe UI', sans-serif;
      font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--gold); display: flex; align-items: center; gap: 0.4rem;
    }
    .srv-more span { transition: transform 0.25s; display: inline-block; }
    .srv-card:hover .srv-more span { transform: translateX(5px); }

    /* ── VORTEILE ── */
    .vorteile-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    }
    .vorteil { text-align: center; }
    .vorteil-icon {
      width: 64px; height: 64px; margin: 0 auto 1.3rem;
      display: flex; align-items: center; justify-content: center;
      border: 1px solid rgba(201,168,76,0.4); border-radius: 50%;
      color: var(--gold);
    }
    #vorteile .vorteil-icon {
      border-radius: 50% !important;
      aspect-ratio: 1 / 1;
    }
    #vorteile .vorteil-icon svg {
      display: block;
      flex: 0 0 auto;
    }
    .vorteil h3 {
      font-size: 1.05rem; font-weight: 400; color: #fff;
      margin-bottom: 0.7rem; letter-spacing: 0.01em;
    }
    .vorteil p {
      font-family: 'Segoe UI', sans-serif; font-size: 0.85rem;
      line-height: 1.6; color: rgba(255,255,255,0.6);
    }
    @media (max-width: 860px) {
      .vorteile-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }
    }
    @media (max-width: 480px) {
      .vorteile-grid { grid-template-columns: 1fr; }
    }

    /* ── FAQ ── */
    .faq-list { display: flex; flex-direction: column; gap: 0.8rem; }
    .faq-item { background: #fff; border: 1px solid var(--border-light); }
    .faq-q {
      width: 100%; background: none; border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: space-between; gap: 1rem;
      padding: 1.3rem 1.6rem; text-align: left;
      font-family: 'Segoe UI', sans-serif; font-size: 1rem; color: var(--text);
      transition: color 0.2s;
    }
    .faq-q:hover { color: var(--gold); }
    .faq-plus { color: var(--gold); font-size: 1.5rem; font-weight: 300; flex-shrink: 0; transition: transform 0.3s; }
    .faq-item.open .faq-plus { transform: rotate(45deg); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
    .faq-item.open .faq-a { max-height: 300px; }
    .faq-a p {
      font-family: 'Segoe UI', sans-serif; font-size: 0.9rem; line-height: 1.7;
      color: var(--muted); padding: 0 1.6rem 1.4rem;
    }

    /* ── WHATSAPP BUTTON ── */
    .wa-btn {
      position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 1500;
      width: 56px; height: 56px; border-radius: 50%;
      background: #25D366; color: #fff;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 18px rgba(0,0,0,0.28);
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      animation: waPulse 2.5s ease-in-out infinite;
    }
    .wa-btn:hover { transform: scale(1.09); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
    @keyframes waPulse {
      0%, 100% { box-shadow: 0 4px 18px rgba(0,0,0,0.28), 0 0 0 0 rgba(37,211,102,0.45); }
      50% { box-shadow: 0 4px 18px rgba(0,0,0,0.28), 0 0 0 12px rgba(37,211,102,0); }
    }

    /* ── SERVICE PAGES ── */
    .srv-page {
      position: fixed; inset: 0; z-index: 2000;
      background: var(--cream);
      overflow-y: auto;
      display: none;
      animation: pageIn 0.35s ease both;
    }
    .srv-page.open { display: block; }
    @keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
    .srv-page-top {
      position: sticky; top: 0; z-index: 10;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0.8rem 2rem;
      background: rgba(17,16,16,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-gold);
    }
    .srv-page-top .nav-logo { font-size: 1.1rem; color: #fff; }
    .srv-page-top-actions {
      display: flex; align-items: center; justify-content: flex-end;
      gap: 0.9rem; min-width: 0;
    }
    .srv-page-top-actions .language-switcher { min-width: 120px; }
    .srv-back {
      background: none; border: 1px solid var(--gold); color: var(--gold);
      font-family: 'Segoe UI', sans-serif; font-size: 0.72rem;
      letter-spacing: 0.12em; text-transform: uppercase;
      padding: 0.5rem 1.2rem; cursor: pointer;
      transition: background 0.25s, color 0.25s;
    }
    .srv-back:hover { background: var(--gold); color: var(--black); }
    .srv-page-hero {
      height: 340px; background-size: cover; background-position: center;
      display: flex; align-items: flex-end; padding: 2.5rem 2rem;
    }
    .srv-page-title {
      max-width: 760px; margin: 0 auto; width: 100%;
      font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 400;
      color: #fff; line-height: 1.1;
    }
    .srv-page-content {
      max-width: 760px; margin: 0 auto; padding: 3rem 2rem 5rem;
    }
    .srv-page-content h3 {
      font-size: 1.05rem; font-weight: 400; color: var(--gold);
      margin: 2rem 0 0.6rem; letter-spacing: 0.02em;
    }
    .srv-page-content p {
      font-family: 'Segoe UI', sans-serif; font-size: 0.92rem;
      line-height: 1.7; color: var(--muted);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 860px) {
      nav { padding: 0.9rem 1.4rem; }
      .nav-links { display: none; }
      section { padding: 5rem 1.4rem; }
      #hero { padding: 6rem 1.4rem 3rem; }
      .why-inner { grid-template-columns: 1fr; gap: 3rem; }
      .why-visual { height: 240px; }
      .proc-steps { grid-template-columns: 1fr 1fr; }
      .proc-step { border-right: none; border-bottom: 1px solid var(--border-light); }
      .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .cform form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .fg-wide,
      .form-section,
      .privacy-check,
      .form-submit { grid-column: 1 / -1; }
      .form-submit { min-height: auto; grid-column: 1 / -1; }
      .form-submit .btn-gold { width: auto; }
      .cinfo { padding-top: 0; }
      footer { flex-direction: column; align-items: center; text-align: center; padding: 2.5rem 1.4rem; }
      .hero-stats { gap: 2rem; }
    }
    @media (max-width: 560px) {
      .contact-inner { width: min(100% - 2rem, 1320px); }
      .cform form { grid-template-columns: 1fr; }
      .fg-wide,
      .form-section,
      .privacy-check,
      .form-submit { grid-column: auto; }
      .form-submit .btn-gold { width: 100%; }
    }
    @media (max-width: 700px) {
      nav { gap: 0.8rem; }
      .nav-logo { font-size: clamp(1rem, 5vw, 1.2rem); }
      .hero-logo { width: min(100%, clamp(240px, 88vw, 760px)); }
      .hero-region {
        font-size: 0.62rem;
        letter-spacing: 0.22em;
        line-height: 1.6;
      }
      .hero-tagline {
        max-width: 100%;
        font-size: 0.64rem;
        letter-spacing: 0.12em;
        line-height: 1.8;
      }
      .hero-btns {
        width: 100%;
        gap: 0.75rem;
        margin-top: 2rem;
      }
      .hero-btns .btn-gold,
      .hero-btns .btn-outline {
        width: min(100%, 300px);
        padding: 0.85rem 1rem;
        letter-spacing: 0.12em;
      }
      .sec-label {
        letter-spacing: 0.2em;
        line-height: 1.5;
      }
      .srv-grid,
      .proc-steps {
        grid-template-columns: 1fr;
      }
      .proc-step {
        padding: 2rem 1rem;
      }
      .proc-step:last-child {
        border-bottom: none;
      }
      .modal-overlay {
        padding: 1rem;
      }
      .modal-box {
        max-height: 88vh;
        padding: 2.2rem 1.2rem;
      }
      .modal-title {
        font-size: 1.45rem;
      }
      .modal-cta {
        width: 100%;
        display: inline-flex;
        justify-content: center;
        text-align: center;
      }
      .srv-page-top {
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
      }
      .srv-page-top-actions {
        flex: 1 1 auto;
        flex-wrap: wrap;
      }
      .srv-back {
        padding: 0.45rem 0.9rem;
        letter-spacing: 0.08em;
      }
      .srv-page-hero {
        height: 280px;
        padding: 2rem 1.2rem;
      }
      .srv-page-content {
        padding: 2.2rem 1.2rem 4rem;
      }
      .flinks {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.9rem 1.4rem;
      }
      .cookie-consent {
        inset: auto 1rem 1rem 1rem;
      }
      .cookie-box {
        grid-template-columns: 1fr;
        max-height: calc(100vh - 2rem);
        overflow-y: auto;
      }
      .cookie-actions {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 420px) {
      nav { gap: 0.3rem; padding: 0.75rem 0.5rem; }
      .nav-logo { font-size: 0.95rem; }
      .nav-right { min-width: 0; gap: 0; }
      .language-switcher-mobile-nav {
        flex-basis: 42px;
        min-width: 42px;
        width: 42px;
      }
      .nav-cta {
        padding: 0.35rem 0.45rem;
        font-size: 0.58rem;
        letter-spacing: 0.02em;
      }
      .hero-region {
        font-size: 0.56rem;
        letter-spacing: 0.14em;
      }
      .hero-tagline {
        font-size: 0.54rem;
        letter-spacing: 0.06em;
      }
      #hero {
        min-height: 50vh;
        padding: 5.2rem 1rem 2.5rem;
      }
      section {
        padding: 4.2rem 1rem;
      }
      .srv-body {
        padding: 1.5rem 1.2rem 2.3rem;
      }
      .contact-inner {
        width: min(100% - 1rem, 1320px);
      }
      .cform {
        padding: 1rem;
      }
      .finp,.ftxt,.fsel {
        padding: 0.8rem 0.85rem;
        font-size: 0.88rem;
      }
      .privacy-check {
        font-size: 0.82rem;
      }
      .wa-btn {
        width: 52px;
        height: 52px;
        right: 1rem;
        bottom: 1rem;
      }
      .cookie-consent {
        inset: auto 0.5rem 0.5rem 0.5rem;
      }
      .cookie-box {
        padding: 1rem;
      }
      .cookie-copy p,
      .cookie-option {
        font-size: 0.8rem;
      }
      .cookie-btn {
        min-height: 42px;
        font-size: 0.66rem;
        letter-spacing: 0.08em;
      }
      .consent-video {
        min-height: 220px;
        aspect-ratio: auto;
      }
      .consent-video-placeholder {
        gap: 0.5rem;
        padding: 1rem;
      }
      .consent-video-placeholder p {
        font-size: 0.78rem !important;
        line-height: 1.4 !important;
      }
      .content-model-viewer {
        width: 100vw;
        margin-top: 2rem;
        margin-bottom: 2rem;
      }
      .model-viewer-stage {
        min-height: 320px;
        aspect-ratio: 4 / 3;
      }
      .model-viewer-controls { top: 0.65rem; right: 0.65rem; }
      .content-model-viewer figcaption { padding: 0 1rem; }
    }

    /* CMS-Erweiterungen: echte Unterseiten, ohne die Original-Startseite zu verändern. */
    .nav-logo { text-decoration: none; }
    .srv-back { text-decoration: none; display: inline-flex; align-items: center; }
    .srv-page.public-service-page {
      position: static;
      display: block;
      min-height: 100vh;
      animation: none;
    }
    .subpage {
      padding-top: 3.2rem;
      background: var(--cream);
      min-height: 100vh;
    }
    .legal-page,
    .content-page-body {
      max-width: 760px;
      margin: 0 auto;
      padding: 5rem 2rem;
    }
    .legal-page h1,
    .content-page-hero h1 {
      font-size: clamp(2rem, 5vw, 3.4rem);
      font-weight: 400;
      line-height: 1.08;
      color: var(--text);
      margin-bottom: 1rem;
    }
    .legal-copy h2,
    .legal-copy h3 {
      font-size: 1.05rem;
      font-weight: 400;
      color: var(--gold);
      margin: 2rem 0 0.6rem;
      letter-spacing: 0.02em;
    }
    .legal-copy p,
    .legal-copy li {
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.92rem;
      line-height: 1.7;
      color: var(--muted);
      margin-bottom: 1rem;
    }
    .legal-copy a { color: var(--gold-dark); overflow-wrap: anywhere; }
    .content-list {
      list-style: none;
      margin: 0.4rem 0 1.5rem;
      padding: 0;
    }
    .content-list li {
      color: var(--text);
      padding: 0.55rem 0 0.55rem 1.7rem;
      position: relative;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .content-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0.5rem;
      color: var(--gold);
      font-weight: bold;
    }
    .content-page-hero {
      min-height: 360px;
      display: flex;
      align-items: flex-end;
      background: var(--dark);
      background-size: cover;
      background-position: center;
      padding: 7rem 2rem 3rem;
    }
    .content-page-hero > div {
      width: 100%;
      max-width: 760px;
      margin: 0 auto;
    }
    .content-page-hero h1,
    .content-page-hero p:not(.sec-label) {
      color: #fff;
    }
    .content-page-hero p:not(.sec-label) {
      font-family: 'Segoe UI', sans-serif;
      line-height: 1.7;
      color: rgba(255,255,255,0.72);
      max-width: 620px;
    }
  
