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

    :root {
      --navy: #0D1B3E;
      --gold: #C9A84C;
      --white: #FFFFFF;
      --light: #F7F7F5;
      --text: #1a1a1a;
      --text-muted: #6b6b6b;
    }

    html { scroll-behavior: smooth; background: var(--navy); overscroll-behavior: none; }
    body { background: var(--white); overscroll-behavior: none; }

    body {
      font-family: 'Inter', -apple-system, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
    }

    /* ── TOPBAR (dezente Social-Icons) ── */
    .topbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: 38px;
      background: #0a1530;
      border-bottom: 1px solid rgba(201,168,76,0.12);
      z-index: 101;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 0 48px;
    }
    .topbar-social {
      display: flex;
      align-items: center;
      gap: 18px;
    }
    .topbar-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.5);
      transition: color 0.25s ease, filter 0.25s ease, transform 0.25s ease;
    }
    .topbar-social a:hover {
      color: var(--gold);
      filter: drop-shadow(0 0 6px rgba(201,168,76,0.9));
      transform: translateY(-1px);
    }
    .topbar-social svg { width: 20px; height: 20px; display: block; }
    .topbar-divider {
      width: 1px;
      height: 16px;
      background: rgba(255,255,255,0.15);
      margin: 0 2px;
    }

    /* ── NAVIGATION ── */
    nav {
      position: fixed;
      top: 38px; left: 0; right: 0;
      background: var(--navy);
      z-index: 100;
      height: 88px;
      display: flex;
      align-items: center;
      padding: 0 48px 0 8px;
      box-shadow: 0 2px 24px rgba(0,0,0,0.18);
    }

    .nav-links-desktop {
      display: flex;
      align-items: center;
      gap: 30px;
      list-style: none;
      margin: 0 32px;
      padding: 0;
    }
    .nav-links-desktop a {
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      white-space: nowrap;
      transition: color 0.2s;
    }
    .nav-links-desktop a:hover { color: var(--gold); }

    section[id] { scroll-margin-top: 126px; }

    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .nav-logo img {
      height: 170px;
      width: auto;
    }

    .nav-cta {
      background: var(--gold);
      color: var(--navy) !important;
      padding: 10px 22px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: opacity 0.2s;
    }

    .nav-cta:hover { opacity: 0.85; }

    /* ── HERO ── */
    #start {
      padding: 0;
      background: var(--white);
    }


    .hero-tag {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(40px, 5.5vw, 68px);
      font-weight: 500;
      line-height: 1.12;
      color: var(--navy);
      margin-bottom: 24px;
    }

    .hero-sub {
      font-size: 17px;
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 640px;
      margin-bottom: 40px;
    }

    .hero-title-accent { color: var(--gold); }

    .hero-sub-strong { color: var(--navy); font-weight: 600; }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--navy);
      color: var(--white);
      padding: 14px 28px;
      border-radius: 6px;
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      transition: opacity 0.2s;
    }

    .btn-primary:hover { opacity: 0.85; }

    .btn-secondary {
      background: transparent;
      color: var(--navy);
      padding: 14px 28px;
      border-radius: 6px;
      border: 1px solid rgba(13,27,62,0.2);
      text-decoration: none;
      font-size: 15px;
      font-weight: 400;
      transition: border-color 0.2s;
    }

    .btn-secondary:hover { border-color: var(--navy); }

    .btn-gold {
      display: inline-block;
      background: var(--gold);
      color: var(--navy);
      padding: 14px 32px;
      border-radius: 6px;
      text-decoration: none;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.03em;
      transition: opacity 0.2s;
    }
    .btn-gold:hover { opacity: 0.88; }

    .hero-image-band {
      position: relative;
      width: 100%;
      height: 640px;
      overflow: hidden;
      background: var(--navy);
    }

    .hero-content-below {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 48px 80px;
    }

    .hero-image-fade {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(13,27,62,0) 0%, rgba(13,27,62,0) 42%, rgba(255,255,255,0.5) 70%, var(--white) 97%);
      pointer-events: none;
    }

    .hero-partner-badge {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      margin-top: 40px;
      padding-top: 32px;

      width: fit-content;
    }
    .hero-partner-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(13,27,62,0.45);
      white-space: nowrap;
    }
    .itrk-badge {
      height: 68px;
      width: auto;
      display: block;
      transition: opacity 0.2s;
    }
    .itrk-badge:hover { opacity: 0.8; }

    .hero-zoom-img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      display: block;
      animation: heroZoom 55s ease-in-out infinite;
    }

    @keyframes heroZoom {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.09); }
    }

    /* ── SECTION BASE ── */
    section {
      padding: 100px 48px;
    }

    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-tag {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }

    .section-title {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 500;
      color: var(--navy);
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .section-sub {
      font-size: 16px;
      color: var(--text-muted);
      max-width: 560px;
      line-height: 1.7;
      margin-bottom: 64px;
    }

    /* ── LEISTUNGEN ── */
    #leistungen {
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }

    #leistungen .section-title { color: var(--white); }
    #leistungen .section-sub { color: rgba(255,255,255,0.7); }

    .leistungen-canvas {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
      opacity: 0.7;
    }

    .domain-check-canvas {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
      opacity: 0.8;
    }

    #leistungen .section-inner {
      position: relative;
      z-index: 1;
    }

    .leistungen-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: stretch;
    }

    .leistung-card {
      background: var(--white);
      border-radius: 12px;
      border: 1px solid transparent;
      padding: 28px 28px;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
      transform-style: preserve-3d;
      display: flex;
      flex-direction: column;
      box-shadow: 0 20px 48px rgba(0,0,0,0.25);
    }

    .leistung-card:hover {
      transform: translateY(-8px) scale(1.02) perspective(800px) rotateX(2deg);
      box-shadow: 0 24px 56px rgba(0,0,0,0.32);
      border-color: var(--gold);
    }

    .leistung-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
    }

    .leistung-icon {
      width: 40px;
      height: 40px;
      background: rgba(201,168,76,0.12);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 18px;
    }

    .leistung-title {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 22px;
      font-weight: 600;
      line-height: 1.25;
      color: var(--navy);
    }

    .leistung-footnote-mark {
      color: var(--gold);
      font-weight: 600;
    }

    .leistungen-footnote {
      text-align: center;
      max-width: 700px;
      margin: 40px auto 0;
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .leistung-text {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .leistung-teaser {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 4px;
      min-height: 48px;
    }

    .leistung-details {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, opacity 0.3s ease;
      opacity: 0;
    }

    .leistung-card.is-open .leistung-details {
      opacity: 1;
    }

    .leistung-details .leistung-text {
      margin-bottom: 14px;
      padding-top: 6px;
    }

    .leistung-toggle {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: auto;
      padding-top: 12px;
      background: none;
      border: none;
      font-family: inherit;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: var(--navy);
      cursor: pointer;
      align-self: flex-start;
      transition: color 0.2s;
    }

    .leistung-toggle:hover {
      color: var(--gold);
    }

    .toggle-arrow {
      display: inline-block;
      font-size: 11px;
      transition: transform 0.3s ease;
    }

    .leistung-card.is-open .toggle-arrow {
      transform: rotate(180deg);
    }

    /* ── PAKETE ── */
    #pakete {
      background: var(--white);
    }

    .pakete-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .paket-card {
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: 12px;
      padding: 36px 32px;
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
      transform-style: preserve-3d;
      cursor: pointer;
      display: flex;
      flex-direction: column;
    }

    .paket-card:hover {
      border-color: var(--gold);
      transform: translateY(-12px) scale(1.02) perspective(800px) rotateX(2deg);
      box-shadow: 0 24px 60px rgba(13,27,62,0.15), 0 8px 20px rgba(201,168,76,0.1);
    }

    .paket-card.featured {
      background: var(--navy);
      border-color: var(--navy);
    }

    .paket-card.featured .paket-name,
    .paket-card.featured .paket-price,
    .paket-card.featured .paket-include { color: var(--white); }

    .paket-card.featured .paket-text { color: rgba(255,255,255,0.65); }
    .paket-card.featured .paket-item { color: rgba(255,255,255,0.8); }
    .paket-card.featured .paket-item::before { color: var(--gold); }

    .featured-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--white);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 16px;
      border-radius: 20px;
    }

    .paket-name {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    .paket-price {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 40px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 4px;
    }

    .paket-text {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 28px;
    }

    .paket-items {
      list-style: none;
      margin-bottom: 32px;
      flex: 1;
    }

    .paket-item {
      font-size: 14px;
      color: var(--text);
      padding: 6px 0;
      display: flex;
      gap: 10px;
    }

    .paket-item::before {
      content: "✓";
      color: var(--gold);
      font-weight: 600;
      flex-shrink: 0;
    }

    .paket-cta {
      display: block;
      text-align: center;
      padding: 12px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      border: 1px solid var(--navy);
      color: var(--navy);
      transition: all 0.2s;
    }

    .paket-card.featured .paket-cta {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--white);
    }

    .paket-cta:hover { opacity: 0.8; }

    /* ── UEBER MICH ── */
    #ueber-mich {
      background: var(--navy);
      color: var(--white);
    }

    #ueber-mich .section-title { color: var(--white); }
    #ueber-mich .section-tag { color: var(--gold); }

    .ueber-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .ueber-image {
      position: relative;
      margin-top: 60px;
    }

    .ueber-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, transparent 40%, var(--navy) 95%),
                  linear-gradient(to top, var(--navy) 0%, transparent 35%);
      border-radius: 12px;
    }

    .ueber-image img {
      width: 100%;
      height: 580px;
      object-fit: cover;
      object-position: center 15%;
      border-radius: 12px;
      display: block;
      display: block;
    }

    .ueber-text p {
      font-size: 16px;
      color: rgba(255,255,255,0.78);
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .ueber-text p:last-child { margin-bottom: 0; }

    .ueber-quote {
      border-left: 2px solid var(--gold);
      padding-left: 20px;
      margin: 32px 0;
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 22px;
      font-style: italic;
      color: rgba(255,255,255,0.9);
      line-height: 1.5;
    }

    /* ── KONTAKT ── */
    #kontakt {
      background: var(--light);
    }

    .kontakt-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .kontakt-info p {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 40px;
    }

    .kontakt-detail {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .kontakt-item {
      display: flex;
      gap: 16px;
      align-items: center;
    }

    .kontakt-item-icon {
      width: 40px;
      height: 40px;
      background: rgba(13,27,62,0.07);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }

    .kontakt-item-text {
      font-size: 14px;
      color: var(--text);
    }

    .kontakt-item-text a {
      color: var(--navy);
      text-decoration: none;
      font-weight: 500;
    }

    .kontakt-item-text a:hover { color: var(--gold); }

    form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    label {
      font-size: 13px;
      font-weight: 500;
      color: var(--text);
    }

    input, textarea, select {
      padding: 12px 16px;
      border: 1px solid rgba(0,0,0,0.12);
      border-radius: 8px;
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      color: var(--text);
      background: var(--white);
      outline: none;
      transition: border-color 0.2s;
    }

    input:focus, textarea:focus, select:focus {
      border-color: var(--navy);
    }

    textarea { min-height: 120px; resize: vertical; }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-submit {
      background: var(--navy);
      color: var(--white);
      border: none;
      padding: 14px 28px;
      border-radius: 6px;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      transition: opacity 0.2s;
      font-family: 'Inter', sans-serif;
    }

    .form-submit:hover { opacity: 0.85; }

    /* ── SHIMMER BUTTONS ── */
    @keyframes btn-shimmer {
      0%   { transform: skewX(-20deg) translateX(-200%); }
      22%  { transform: skewX(-20deg) translateX(350%); }
      100% { transform: skewX(-20deg) translateX(350%); }
    }

    .nav-cta,
    .paket-cta,
    .mobile-menu-cta,
    .btn-gold {
      position: relative;
      overflow: hidden;
    }

    .nav-cta::after,
    .paket-cta::after,
    .mobile-menu-cta::after,
    .btn-gold::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 45%;
      height: 100%;
      background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
      animation: btn-shimmer 4s ease-in-out infinite;
      pointer-events: none;
    }

    .form-note {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 4px;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--navy);
      color: rgba(255,255,255,0.5);
      padding: 48px;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
    }

    .footer-logo img {
      height: 340px;
      width: auto;
      opacity: 1;
    }
    .footer-logo-text {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .footer-logo-text img {
      height: 80px;
      width: auto;
      opacity: 0.9;
    }


    .footer-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .footer-links a {
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      font-size: 13px;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: rgba(255,255,255,0.9); }

    .footer-copy {
      font-size: 13px;
    }

    /* ── LOGO ── */
    .nav-logo-text {
      display: flex;
      align-items: center;
      gap: 6px;
      text-decoration: none;
    }
    .logo-cn {
      height: 86px;
      width: auto;
      flex-shrink: 0;
      display: block;
      transform: translateY(-15px);
      background: transparent;
    }
    .logo-text-block {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      margin-top: 17px;
    }
    .logo-name {
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.2em;
      color: rgba(255,255,255,0.9);
      line-height: 1;
    }
    .logo-line {
      display: block;
      width: 24px;
      height: 1px;
      background: var(--gold);
      margin: 6px auto;
    }
    .logo-tagline {
      font-family: 'Inter', sans-serif;
      font-size: 9px;
      font-weight: 500;
      letter-spacing: 0.12em;
      color: var(--gold);
      text-transform: uppercase;
      line-height: 1;
      white-space: nowrap;
    }



    /* ── PARTNER ── */
    #partner {
      background: var(--navy);
      text-align: center;
    }
    #partner .section-title { color: var(--white); }

    .partner-items-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: flex-start;
      gap: 32px;
      margin-top: 56px;
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
    }

    .partner-item-card {
      flex: 1 1 300px;
      max-width: 340px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(201,168,76,0.35);
      border-radius: 16px;
      padding: 28px;
      display: flex;
      flex-direction: column;
      text-align: left;
      min-height: 460px;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .partner-item-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 45px rgba(0,0,0,0.35);
      border-color: rgba(201,168,76,0.7);
    }

    .partner-item-image {
      width: 100%;
      height: 150px;
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 24px;
      background: #ffffff;
    }
    .partner-item-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .partner-item-image.logo-style {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .partner-item-image.logo-style img {
      width: auto;
      height: auto;
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    .partner-item-title {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 22px;
      font-weight: 600;
      line-height: 1.25;
      color: var(--white);
      margin-bottom: 10px;
      height: 55px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .partner-item-teaser {
      font-size: 14px;
      color: rgba(255,255,255,0.65);
      line-height: 1.7;
      margin-bottom: 4px;
      height: 72px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .partner-item-details {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.4s ease, opacity 0.3s ease;
    }
    .partner-item-card.is-open .partner-item-details {
      opacity: 1;
    }
    .partner-item-text {
      font-size: 14px;
      color: rgba(255,255,255,0.75);
      line-height: 1.8;
      padding-top: 6px;
      margin-bottom: 16px;
    }
    .partner-item-affiliate-hint {
      font-size: 11px;
      color: rgba(255,255,255,0.35);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .partner-item-toggle {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: auto;
      padding-top: 16px;
      background: none;
      border: none;
      font-family: inherit;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: var(--gold);
      cursor: pointer;
      align-self: flex-start;
      transition: opacity 0.2s;
    }
    .partner-item-toggle:hover { opacity: 0.8; }
    .partner-item-toggle .toggle-arrow {
      display: inline-block;
      font-size: 11px;
      transition: transform 0.3s ease;
    }
    .partner-item-card.is-open .partner-item-toggle .toggle-arrow {
      transform: rotate(180deg);
    }

    .partner-item-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
      min-height: 90px;
      align-content: flex-start;
    }
    .partner-item-link-primary {
      display: inline-block;
      background: var(--gold);
      color: var(--navy);
      font-weight: 700;
      font-size: 13px;
      padding: 10px 18px;
      border-radius: 6px;
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: opacity 0.2s;
    }
    .partner-item-link-primary:hover { opacity: 0.85; }
    .partner-item-link-secondary {
      display: inline-block;
      background: transparent;
      border: 1px solid rgba(255,255,255,0.3);
      color: rgba(255,255,255,0.85);
      font-weight: 600;
      font-size: 13px;
      padding: 9px 17px;
      border-radius: 6px;
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s;
    }
    .partner-item-link-secondary:hover { border-color: var(--gold); color: var(--gold); }

    @media (max-width: 900px) {
      .partner-items-grid { max-width: 460px; }
      .partner-item-card { flex-basis: 100%; max-width: 100%; min-height: 0; }
    }

    /* ── HAMBURGER (nur schmale Breiten) ── */
    .hamburger {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(201,168,76,0.35);
      border-radius: 12px;
      cursor: pointer;
      padding: 0;
      margin-left: 8px;
      flex-shrink: 0;
      transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    }
    .hamburger:hover {
      background: rgba(201,168,76,0.12);
      border-color: var(--gold);
      transform: translateY(-2px);
    }

    .nav-right-cluster {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .hamburger span {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--gold);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── MOBILE MENU BACKDROP ── */
    .mobile-menu-backdrop {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(5,10,26,0.45);
      backdrop-filter: blur(2px);
      -webkit-backdrop-filter: blur(2px);
      z-index: 199;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }
    .mobile-menu-backdrop.open {
      opacity: 1;
      pointer-events: auto;
    }

    /* ── MOBILE MENU (right-side panel) ── */
    .mobile-menu {
      display: flex;
      position: fixed;
      top: 0; right: 0; bottom: 0;
      left: auto;
      width: min(420px, 86vw);
      background: rgba(13,27,62,0.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: -12px 0 48px rgba(0,0,0,0.35);
      z-index: 200;
      padding: 100px 40px 48px;
      flex-direction: column;
      overflow-y: auto;
      transform: translateX(100%);
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
      visibility: hidden;
    }
    .mobile-menu.open {
      transform: translateX(0);
      visibility: visible;
    }
    .mobile-menu-canvas {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
      opacity: 0.8;
    }
    .mobile-menu-close {
      position: absolute;
      top: 20px;
      right: 20px;
      z-index: 1;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(201,168,76,0.35);
      border-radius: 10px;
      color: var(--gold);
      font-size: 20px;
      cursor: pointer;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
      transition: background 0.25s ease, transform 0.25s ease;
    }
    .mobile-menu-close:hover {
      background: rgba(201,168,76,0.15);
      transform: rotate(90deg);
    }
    .mobile-nav-links {
      list-style: none;
      position: relative;
      z-index: 1;
    }
    .mobile-nav-links li {
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .mobile-nav-links a {
      display: block;
      padding: 14px 0;
      color: var(--white);
      text-decoration: none;
      font-size: 22px;
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 500;
      transition: color 0.2s;
    }
    @media (max-height: 700px) {
      .mobile-nav-links a { padding: 10px 0; font-size: 19px; }
      .mobile-menu { padding: 80px 32px 32px; }
      .mobile-menu-cta { margin-top: 20px; padding: 12px 24px; }
    }
    .mobile-nav-links a:hover { color: var(--gold); }
    .mobile-menu-cta {
      display: block;
      position: relative;
      z-index: 1;
      margin-top: 40px;
      background: var(--gold);
      color: var(--navy);
      padding: 16px 28px;
      border-radius: 6px;
      text-align: center;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
    }

    /* ── DIVIDER ── */
    .gold-line {
      width: 48px;
      height: 1px;
      background: var(--gold);
      margin: 0 auto 32px;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .topbar { height: 30px; padding: 0 16px; }
      .topbar-social { gap: 14px; }
      .topbar-social svg { width: 18px; height: 18px; }
      .topbar-divider { height: 14px; }
      nav { top: 30px; padding: 0 16px; height: 72px; overflow: visible; }
      section[id] { scroll-margin-top: 102px; }
      .nav-inner { justify-content: space-between; min-width: 0; }
      .nav-cta-desktop { display: none; }
      .nav-links-desktop { display: none; }
      .nav-right-cluster { gap: 10px; }
      .hamburger { display: flex; flex-shrink: 0; padding: 6px; }
      .hamburger span { width: 20px; height: 2px; }
      .nav-logo-text { min-width: 0; flex-shrink: 1; gap: 4px; }
      .logo-cn { height: 60px; transform: translateY(-10px); }
      .logo-text-block { margin-top: 12px; }
      .logo-name { font-size: 12px; }
      nav .logo-tagline { display: none; }
      .logo-line { margin: 4px auto; }
      section { padding: 64px 20px; }
      #start { padding: 0; }
      .hero-image-band { height: 460px; }
      .hero-content-below { padding: 40px 20px 60px; }
      .leistungen-grid { grid-template-columns: 1fr; }
      .pakete-grid { grid-template-columns: 1fr; }
      .ueber-inner { grid-template-columns: 1fr; gap: 32px; }
      .ueber-image { order: -1; }
      .ueber-image img { height: 280px; }
      .ueber-image::after { background: linear-gradient(to top, var(--navy) 0%, transparent 20%); }
      .kontakt-inner { grid-template-columns: 1fr; gap: 40px; }
      .form-row { grid-template-columns: 1fr; }
      footer { padding: 40px 20px; }
      .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
      .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
      .footer-logo img { height: 80px; }
    }

    @media (max-width: 480px) {
      .topbar { height: 27px; }
      nav { top: 27px; height: 64px; }
      section[id] { scroll-margin-top: 91px; }
      #start { padding: 0; }
      .hero-image-band { height: 380px; }
      .hero-content-below { padding: 28px 16px 48px; }
      .hero-title { font-size: 30px; }
      .hero-sub { font-size: 15px; }
      .hero-buttons { flex-direction: column; }
      .btn-primary, .btn-secondary { text-align: center; padding: 16px 24px; }
      .leistung-card { padding: 24px 20px; }
      .paket-card { padding: 28px 20px; }
      .paket-price { font-size: 32px; }
      .section-title { font-size: 28px; }
      .section-sub { font-size: 15px; }
      .ueber-text p { font-size: 15px; }
      .ueber-quote { font-size: 18px; }
      .kontakt-info p { font-size: 15px; }
      input, textarea, select { font-size: 16px !important; }
      .hero-partner-badge { margin-top: 28px; }
      .itrk-badge { height: 52px; }
      .hero-partner-label { font-size: 10px; }
    }

    @media (max-width: 600px) {
      #ablauf .section-inner > div:last-of-type {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }
    }

    /* Ablauf Grid Mobile */
    @media (max-width: 900px) {
      #ablauf div[style*="grid-template-columns: repeat(4"] {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 16px !important;
      }
      #ablauf div[style*="position:absolute; top:44px"] {
        display: none !important;
      }
    }

    @media (max-width: 480px) {
      #ablauf div[style*="grid-template-columns: repeat(4"] {
        grid-template-columns: 1fr !important;
      }
    }
