/*
Theme Name: Yilmaz Strategy
Theme URI: https://yilmazstrategy.de
Author: Huehyre
Description: Premium Leadership Advisory Website für Emine Yilmaz — Clarity. Impact. Leadership.
Version: 1.0.0
License: Private
Text Domain: yilmaz-strategy
*/
    /* ===== RESET ===== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      /* Core palette */
      --dark: #0D0A0B;
      --dark-2: #1A1517;
      --plum: #2C1929;
      --plum-light: #3D2438;
      --cream: #F5F0EB;
      --cream-dark: #E8E0D8;
      --gold: #C9A55C;
      --gold-light: #D4B872;
      --gold-pale: rgba(201, 165, 92, 0.08);
      --white: #FFFFFF;
      --radius: 12px;
      --radius-lg: 20px;
      --error: #c0392b;
      --success: #27ae60;

      /* Semantic tokens (light mode) */
      --bg-primary: var(--cream);
      --bg-secondary: var(--white);
      --bg-card: var(--white);
      --bg-dark: var(--dark);
      --bg-dark-2: var(--dark-2);
      --text: #1A1517;
      --text-mid: #6B5E66;
      --text-light: #9A8F93;
      --border: rgba(0, 0, 0, 0.06);
      --border-light: rgba(0, 0, 0, 0.04);
      --shadow: rgba(0, 0, 0, 0.06);
      --card-hover-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    }

    /* ===== DARK MODE ===== */
    [data-theme="dark"] {
      --bg-primary: #141112;
      --bg-secondary: #1A1517;
      --bg-card: #1E1A1C;
      --text: #F5F0EB;
      --text-mid: rgba(255, 255, 255, 0.6);
      --text-light: rgba(255, 255, 255, 0.35);
      --border: rgba(255, 255, 255, 0.06);
      --border-light: rgba(255, 255, 255, 0.04);
      --shadow: rgba(0, 0, 0, 0.3);
      --card-hover-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      --cream: #141112;
      --cream-dark: #1A1517;
      --white: #1E1A1C;
    }

    /* ===== CUSTOM SCROLLBAR ===== */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--dark-2); }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }
    html { scrollbar-width: thin; scrollbar-color: var(--gold) var(--dark-2); }
    @media (max-width: 768px) {
      ::-webkit-scrollbar { display: none; }
      html { scrollbar-width: none; }
    }

    html { font-size: 16px; }

    body {
      font-family: 'Inter', -apple-system, sans-serif;
      color: var(--text);
      background: var(--dark);
      line-height: 1.7;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      cursor: none;
    }

    h1, h2, h3, h4 {
      font-family: 'Playfair Display', Georgia, serif;
      font-weight: 600;
      line-height: 1.15;
    }

    a { text-decoration: none; color: inherit; cursor: none; }
    img { max-width: 100%; display: block; }
    ul { list-style: none; }
    button { cursor: none; }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
    .container-wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

    /* ===== CUSTOM CURSOR ===== */
    .cursor {
      width: 12px;
      height: 12px;
      border: 1.5px solid var(--gold);
      border-radius: 50%;
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 99999;
      transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
      transform: translate(-50%, -50%);
    }

    .cursor.hover {
      width: 48px;
      height: 48px;
      background: rgba(201, 165, 92, 0.1);
      border-color: var(--gold-light);
    }

    .cursor-dot {
      width: 4px;
      height: 4px;
      background: var(--gold);
      border-radius: 50%;
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 99999;
      transform: translate(-50%, -50%);
    }

    /* ===== PAGE TRANSITION ===== */
    .page-transition {
      position: fixed;
      inset: 0;
      background: var(--dark);
      z-index: 9998;
      transform: scaleY(0);
      transform-origin: bottom;
      pointer-events: none;
    }

    .page-transition.active {
      animation: pageTransIn 0.4s cubic-bezier(0.7, 0, 0.3, 1) forwards,
                 pageTransOut 0.4s 0.4s cubic-bezier(0.7, 0, 0.3, 1) forwards;
    }

    @keyframes pageTransIn {
      from { transform: scaleY(0); transform-origin: bottom; }
      to { transform: scaleY(1); transform-origin: bottom; }
    }

    @keyframes pageTransOut {
      from { transform: scaleY(1); transform-origin: top; }
      to { transform: scaleY(0); transform-origin: top; }
    }

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

    /* ===== ANIMATIONS ===== */
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(50px);
      transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    .reveal-left {
      opacity: 0;
      transform: translateX(-60px);
      transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-left.visible { opacity: 1; transform: translateX(0); }

    .reveal-right {
      opacity: 0;
      transform: translateX(60px);
      transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-right.visible { opacity: 1; transform: translateX(0); }

    .reveal-scale {
      opacity: 0;
      transform: scale(0.9);
      transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-scale.visible { opacity: 1; transform: scale(1); }

    /* Text split reveal */
    .text-reveal {
      overflow: hidden;
      display: inline-block;
    }

    .text-reveal-inner {
      display: inline-block;
      transform: translateY(105%);
      transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .text-reveal.visible .text-reveal-inner {
      transform: translateY(0);
    }

    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }
    .delay-4 { transition-delay: 0.4s; }
    .delay-5 { transition-delay: 0.5s; }
    .delay-6 { transition-delay: 0.6s; }

    /* Parallax */
    .parallax { transition: transform 0.1s linear; will-change: transform; }

    /* ===== NAVIGATION ===== */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 20px 0;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav.scrolled {
      background: rgba(13, 10, 11, 0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 12px 0;
      box-shadow: 0 1px 0 rgba(201, 165, 92, 0.1);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 1px;
      line-height: 1;
      flex-shrink: 0;
      text-decoration: none;
    }
    .nav-logo-top {
      font-family: 'Playfair Display', serif;
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.04em;
      line-height: 1;
    }
    .nav-logo-top i { font-style: normal; }
    .nav-logo-bottom {
      font-family: 'Playfair Display', serif;
      font-size: 0.62rem;
      font-weight: 500;
      color: rgba(245,240,235,0.85);
      letter-spacing: -0.01em;
      line-height: 1;
      white-space: nowrap;
    }

    .nav-center {
      display: flex;
      gap: 32px;
      align-items: center;
    }

    .nav-center a {
      color: rgba(255,255,255,0.6);
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: color 0.4s ease;
    }
    .nav-center a:hover { color: #F5F0EB; }

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

    .nav-cta {
      color: var(--gold) !important;
      padding: 10px 28px;
      border: 1px solid var(--gold);
      border-radius: 100px;
      font-size: 0.8rem !important;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: all 0.4s ease !important;
      font-weight: 500;
    }
    .nav-cta:hover {
      background: var(--gold) !important;
      color: var(--dark) !important;
    }

    .nav-links-mobile { display: none; } /* overridden in mobile breakpoint */

    /* Language Switcher */
    .lang-switch {
      display: flex;
      gap: 4px;
      align-items: center;
    }

    .lang-btn {
      background: none;
      border: none;
      color: rgba(255,255,255,0.35);
      font-family: 'Inter', sans-serif;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 6px;
      border-radius: 4px;
      transition: all 0.3s ease;
    }
    .lang-btn:hover { color: rgba(255,255,255,0.7); }
    .lang-btn.active {
      color: var(--gold);
      background: rgba(201, 165, 92, 0.1);
    }

    .lang-divider {
      color: rgba(255,255,255,0.15);
      font-size: 0.7rem;
    }

    /* Mobile menu */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: none;
      background: none;
      border: none;
      padding: 4px;
      z-index: 1001;
    }

    .nav-toggle span {
      display: block;
      width: 28px;
      height: 1.5px;
      background: rgba(245,240,235,0.9);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      transform-origin: center;
    }

    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* ===== STICKY CTA BAR ===== */
    .sticky-cta {
      position: fixed;
      bottom: -80px;
      left: 0;
      right: 0;
      z-index: 990;
      background: rgba(13, 10, 11, 0.95);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      padding: 14px 0;
      transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      border-top: 1px solid rgba(201, 165, 92, 0.1);
    }

    .sticky-cta.visible { bottom: 0; }

    .sticky-cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .sticky-cta-text {
      color: rgba(255,255,255,0.6);
      font-size: 0.88rem;
    }

    .sticky-cta-text strong {
      color: rgba(245,240,235,0.9);
      font-weight: 600;
    }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 18px 40px;
      border-radius: 100px;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      cursor: none;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      border: none;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--dark);
    }
    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(201, 165, 92, 0.3);
    }

    .btn-outline-dark {
      background: transparent;
      color: var(--text);
      border: 1.5px solid var(--text);
    }
    .btn-outline-dark:hover {
      background: var(--text);
      color: var(--white);
      transform: translateY(-2px);
    }

    .btn-outline-light {
      background: transparent;
      color: rgba(245,240,235,0.9);
      border: 1.5px solid rgba(255,255,255,0.3);
    }
    .btn-outline-light:hover {
      border-color: rgba(245,240,235,0.9);
      background: rgba(245,240,235,0.9);
      color: var(--dark);
      transform: translateY(-2px);
    }

    .btn-sm {
      padding: 12px 28px;
      font-size: 0.8rem;
    }

    .btn-arrow::after {
      content: '\2192';
      font-size: 1.1em;
      transition: transform 0.4s ease;
    }
    .btn-arrow:hover::after { transform: translateX(4px); }

    /* ===== LABEL ===== */
    .label {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      font-family: 'Inter', sans-serif;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .label::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--gold);
    }

    .label-light { color: var(--gold-light); }
    .label-light::before { background: var(--gold-light); }

    .label-center { justify-content: center; }
    .label-center::after {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--gold);
    }

    /* ===== HERO ===== */
    .hero {
      min-height: 100vh;
      min-height: 100svh;
      background: var(--dark);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: -50%;
      width: 200%;
      height: 200%;
      background:
        radial-gradient(ellipse 40% 30% at 70% 40%, rgba(201, 165, 92, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 35% 40% at 20% 80%, rgba(44, 25, 41, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse 30% 35% at 50% 20%, rgba(201, 165, 92, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 45% 30% at 80% 70%, rgba(44, 25, 41, 0.3) 0%, transparent 60%);
      background-size: 100% 100%;
      animation: heroGradientShift 18s ease-in-out infinite alternate;
      pointer-events: none;
      will-change: transform;
    }

    @keyframes heroGradientShift {
      0% { transform: translate(0%, 0%) rotate(0deg); }
      25% { transform: translate(2%, -1%) rotate(0.5deg); }
      50% { transform: translate(-1%, 2%) rotate(-0.3deg); }
      75% { transform: translate(1.5%, 0.5%) rotate(0.2deg); }
      100% { transform: translate(-0.5%, -1.5%) rotate(-0.5deg); }
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 200px;
      background: linear-gradient(to top, var(--dark), transparent);
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      padding: 160px 0 120px;
    }

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

    .hero-eyebrow {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 32px;
    }

    .hero-title {
      font-size: clamp(3rem, 5.5vw, 4.8rem);
      color: #F5F0EB;
      margin-bottom: 8px;
      letter-spacing: -0.03em;
      font-weight: 700;
    }

    .hero-title-italic {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 4.5vw, 3.8rem);
      color: var(--gold);
      font-style: italic;
      font-weight: 400;
      display: block;
      margin-bottom: 32px;
    }

    .hero-desc {
      color: rgba(255,255,255,0.5);
      font-size: 1.05rem;
      line-height: 1.8;
      max-width: 440px;
      margin-bottom: 48px;
    }

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

    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }

    .hero-portrait {
      width: 420px;
      height: 520px;
      border-radius: var(--radius-lg);
      position: relative;
      overflow: hidden;
    }
    .hero-portrait img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    .hero-portrait::before {
      content: '';
      position: absolute;
      inset: 0;
      border: 1px solid rgba(201, 165, 92, 0.12);
      border-radius: var(--radius-lg);
      pointer-events: none;
    }

    .hero-portrait .hero-monogram { display: none; }

    .hero-portrait-decor {
      position: absolute;
      top: -20px; right: -20px;
      width: 140px; height: 140px;
      border: 1px solid rgba(201, 165, 92, 0.1);
      border-radius: var(--radius);
    }

    .hero-portrait-decor-2 {
      position: absolute;
      bottom: -15px; left: -15px;
      width: 100px; height: 100px;
      background: rgba(201, 165, 92, 0.03);
      border-radius: var(--radius);
    }

    .hero-scroll {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.2);
      font-size: 0.6rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
    }

    .hero-scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, rgba(201, 165, 92, 0.3), transparent);
      animation: float 2s ease-in-out infinite;
    }

    /* ===== MARQUEE ===== */
    .marquee-section {
      background: var(--dark);
      padding: 20px 0;
      border-top: 1px solid rgba(201, 165, 92, 0.06);
      border-bottom: 1px solid rgba(201, 165, 92, 0.06);
      overflow: hidden;
    }

    .marquee-track {
      display: flex;
      animation: marquee 35s linear infinite;
      width: max-content;
    }

    .marquee-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 0 40px;
      white-space: nowrap;
      color: rgba(255,255,255,0.2);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .marquee-dot {
      width: 4px;
      height: 4px;
      background: var(--gold);
      border-radius: 50%;
      opacity: 0.3;
    }

    /* ===== SECTION STYLES ===== */
    .section-header { margin-bottom: 80px; }

    .section-title {
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      color: var(--text);
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }
    .section-title-light { color: rgba(245,240,235,0.95); }

    .section-desc {
      font-size: 1.05rem;
      color: var(--text-mid);
      max-width: 500px;
      line-height: 1.8;
    }
    .section-desc-light { color: rgba(255,255,255,0.45); }

    /* ===== SERVICES ===== */
    .services-section {
      padding: 140px 0;
      background: var(--cream);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 20px;
    }
    /* 3+2 bento: first 3 cards = 2/6 cols each, last 2 = 3/6 cols each */
    .services-grid .service-card:nth-child(-n+3) { grid-column: span 2; }
    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) { grid-column: span 3; }

    .service-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 48px;
      position: relative;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      overflow: hidden;
      border: 1px solid rgba(0,0,0,0.04);
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .service-card:hover::before { transform: scaleX(1); }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    }

    .service-num {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      font-weight: 700;
      color: rgba(201, 165, 92, 0.1);
      line-height: 1;
      margin-bottom: 24px;
    }

    .service-card h3 {
      font-size: 1.5rem;
      color: var(--text);
      margin-bottom: 12px;
      letter-spacing: -0.01em;
    }

    .service-card p {
      color: var(--text-mid);
      font-size: 0.95rem;
      line-height: 1.75;
      margin-bottom: 24px;
    }

    .service-link {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 0.06em;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: gap 0.3s ease;
    }
    .service-link:hover { gap: 12px; }
    .service-link::after { content: '\2192'; }

    /* ===== ABOUT TEASER ===== */
    .about-teaser {
      padding: 0;
      overflow: hidden;
    }

    .about-teaser-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 700px;
    }

    .about-teaser-image {
      background: linear-gradient(145deg, var(--plum) 0%, var(--dark-2) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 80px;
      position: relative;
      overflow: hidden;
    }

    .about-teaser-image::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 30% 40%, rgba(201, 165, 92, 0.06) 0%, transparent 60%);
    }

    .about-img-placeholder {
      width: 320px;
      height: 420px;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(201, 165, 92, 0.12);
      overflow: hidden;
      position: relative;
      z-index: 1;
    }
    .about-img-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    .about-teaser-content {
      display: flex;
      align-items: center;
      padding: 80px 80px 80px 100px;
      background: var(--cream);
    }

    .about-teaser-inner { max-width: 460px; }

    .about-teaser-quote {
      font-family: 'Playfair Display', serif;
      font-size: 1.7rem;
      font-style: italic;
      color: var(--text);
      line-height: 1.45;
      margin-bottom: 28px;
      letter-spacing: -0.01em;
    }

    .about-teaser-text {
      color: var(--text-mid);
      font-size: 0.95rem;
      line-height: 1.8;
      margin-bottom: 36px;
    }

    /* ===== STATS ===== */
    .stats-section {
      padding: 120px 0;
      background: var(--dark);
      position: relative;
      overflow: hidden;
    }

    .stats-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(44, 25, 41, 0.5) 0%, transparent 70%);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      position: relative;
      z-index: 1;
    }

    .stat-item { text-align: center; padding: 40px 20px; position: relative; }

    .stat-item::after {
      content: '';
      position: absolute;
      right: 0; top: 20%; height: 60%; width: 1px;
      background: rgba(201, 165, 92, 0.1);
    }
    .stat-item:last-child::after { display: none; }

    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 5vw, 4.5rem);
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 12px;
      letter-spacing: -0.03em;
    }

    .stat-label {
      font-size: 0.85rem;
      font-weight: 500;
      color: rgba(255,255,255,0.65);
    }

    .stat-desc {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.3);
      margin-top: 8px;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials-section {
      padding: 140px 0;
      background: var(--white);
    }

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

    .testimonial-card {
      background: var(--cream);
      border-radius: var(--radius-lg);
      padding: 44px;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .testimonial-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.05);
    }

    .testimonial-stars { display: flex; gap: 2px; margin-bottom: 24px; }
    .testimonial-stars svg { width: 16px; height: 16px; fill: var(--gold); }

    .testimonial-text {
      font-size: 1rem;
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 32px;
      font-style: italic;
    }

    .testimonial-author { display: flex; align-items: center; gap: 14px; }

    .testimonial-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--plum);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 600;
    }

    .testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
    .testimonial-role { font-size: 0.78rem; color: var(--text-light); margin-top: 2px; }

    /* ===== PRICING ===== */
    .pricing-section {
      padding: 140px 0;
      background: var(--cream);
    }

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

    .pricing-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 48px 40px;
      text-align: center;
      position: relative;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      border: 1px solid rgba(0,0,0,0.04);
    }

    .pricing-card.featured {
      background: var(--dark);
      color: rgba(245,240,235,0.85);
      border: 1px solid rgba(201, 165, 92, 0.15);
      transform: scale(1.04);
    }

    .pricing-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    }

    .pricing-card.featured:hover {
      transform: scale(1.04) translateY(-4px);
    }

    .pricing-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--dark);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 6px 20px;
      border-radius: 100px;
    }

    .pricing-card h3 {
      font-size: 1.3rem;
      margin-bottom: 8px;
      letter-spacing: -0.01em;
    }

    .pricing-card.featured h3 { color: rgba(245,240,235,0.95); }

    .pricing-subtitle {
      font-size: 0.85rem;
      color: var(--text-light);
      margin-bottom: 28px;
    }

    .pricing-card.featured .pricing-subtitle { color: rgba(255,255,255,0.4); }

    .pricing-price {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 4px;
    }

    .pricing-card.featured .pricing-price { color: var(--gold); }

    .pricing-period {
      font-size: 0.8rem;
      color: var(--text-light);
      margin-bottom: 32px;
    }

    .pricing-card.featured .pricing-period { color: rgba(255,255,255,0.35); }

    .pricing-features {
      text-align: left;
      margin-bottom: 36px;
    }

    .pricing-features li {
      padding: 10px 0;
      padding-left: 28px;
      position: relative;
      font-size: 0.9rem;
      color: var(--text-mid);
      border-bottom: 1px solid rgba(0,0,0,0.04);
    }

    .pricing-card.featured .pricing-features li {
      color: rgba(255,255,255,0.6);
      border-color: rgba(255,255,255,0.06);
    }

    .pricing-features li:last-child { border-bottom: none; }

    .pricing-features li::before {
      content: '\2713';
      position: absolute;
      left: 0;
      color: var(--gold);
      font-weight: 600;
      font-size: 0.85rem;
    }

    /* ===== FAQ ===== */
    .faq-section {
      padding: 140px 0;
      background: var(--white);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 80px;
      align-items: start;
    }

    .faq-list { max-width: 640px; }

    .faq-item {
      border-bottom: 1px solid rgba(0,0,0,0.06);
      overflow: hidden;
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 24px 0;
      cursor: none;
      gap: 20px;
      background: none;
      border: none;
      width: 100%;
      text-align: left;
      font-family: 'Inter', sans-serif;
    }

    .faq-question h4 {
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--text);
      letter-spacing: -0.01em;
      line-height: 1.4;
    }

    .faq-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--cream);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.4s ease;
    }

    .faq-icon svg {
      width: 14px;
      height: 14px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 2;
      transition: transform 0.4s ease;
    }

    .faq-item.open .faq-icon {
      background: var(--gold);
    }

    .faq-item.open .faq-icon svg {
      stroke: var(--dark);
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s ease;
    }

    .faq-answer-inner {
      padding-bottom: 24px;
      color: var(--text-mid);
      font-size: 0.93rem;
      line-height: 1.8;
    }

    /* ===== BLOG ===== */
    .blog-section {
      padding: 140px 0;
      background: var(--cream);
    }

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

    .blog-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      border: 1px solid rgba(0,0,0,0.04);
    }

    .blog-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    }

    .blog-thumb {
      height: 200px;
      background: linear-gradient(135deg, var(--plum), var(--dark-2));
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }
    .blog-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .blog-thumb-label {
      position: absolute;
      top: 16px; left: 16px;
      background: rgba(201, 165, 92, 0.9);
      color: var(--dark);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 100px;
    }

    .blog-body { padding: 32px; }

    .blog-date {
      font-size: 0.75rem;
      color: var(--text-light);
      margin-bottom: 12px;
      font-weight: 500;
    }

    .blog-card h3 {
      font-size: 1.2rem;
      color: var(--text);
      margin-bottom: 12px;
      letter-spacing: -0.01em;
      line-height: 1.3;
    }

    .blog-card p {
      color: var(--text-mid);
      font-size: 0.9rem;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .blog-link {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--gold);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.3s ease;
    }
    .blog-link:hover { gap: 10px; }
    .blog-link::after { content: '\2192'; }

    /* ===== CTA SECTION ===== */
    .cta-section {
      padding: 140px 0;
      background: var(--dark);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201, 165, 92, 0.04) 0%, transparent 60%);
    }

    .cta-inner {
      position: relative; z-index: 1;
      max-width: 640px; margin: 0 auto;
    }

    .cta-title {
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: rgba(245,240,235,0.95);
      margin-bottom: 20px;
      letter-spacing: -0.02em;
    }

    .cta-desc {
      color: rgba(255,255,255,0.4);
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 44px;
    }

    .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    /* ===== PAGE HERO ===== */
    .page-hero {
      background: var(--dark);
      padding: 180px 0 100px;
      position: relative;
      overflow: hidden;
    }

    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(44, 25, 41, 0.5) 0%, transparent 60%);
    }

    .page-hero-inner { position: relative; z-index: 1; max-width: 700px; }

    .page-hero h1 {
      font-size: clamp(2.6rem, 5vw, 4rem);
      color: rgba(245,240,235,0.95);
      margin-bottom: 20px;
      letter-spacing: -0.03em;
    }

    .page-hero-desc {
      color: rgba(255,255,255,0.45);
      font-size: 1.1rem;
      line-height: 1.8;
    }

    /* ===== ABOUT PAGE ===== */
    .about-story {
      padding: 120px 0;
      background: var(--white);
    }

    .about-story-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 100px;
      align-items: start;
    }

    .about-portrait-lg {
      width: 100%;
      aspect-ratio: 3/4;
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: sticky;
      top: 100px;
    }
    .about-portrait-lg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    .about-story-text h2 {
      font-size: 2.2rem;
      color: var(--text);
      margin-bottom: 28px;
      letter-spacing: -0.02em;
    }

    .about-story-text p {
      color: var(--text-mid);
      font-size: 1rem;
      line-height: 1.9;
      margin-bottom: 20px;
    }
    .about-story-text p strong { color: var(--text); font-weight: 600; }

    /* Timeline */
    .timeline-section { padding: 120px 0; background: var(--cream); }

    .timeline-list {
      max-width: 680px;
      margin: 60px auto 0;
      position: relative;
    }

    .timeline-list::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom, var(--gold), rgba(201, 165, 92, 0.08));
    }

    .timeline-item {
      padding-left: 48px;
      padding-bottom: 48px;
      position: relative;
    }
    .timeline-item:last-child { padding-bottom: 0; }

    .timeline-item::before {
      content: '';
      position: absolute;
      left: -4px; top: 8px;
      width: 9px; height: 9px;
      border-radius: 50%;
      background: var(--gold);
    }

    .timeline-year {
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .timeline-item h4 {
      font-size: 1.25rem;
      color: var(--text);
      margin-bottom: 8px;
    }

    .timeline-item p {
      color: var(--text-mid);
      font-size: 0.92rem;
      line-height: 1.75;
    }

    /* ===== SERVICES PAGE ===== */
    .services-detail { padding: 120px 0; background: var(--white); }

    .service-block {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 80px;
      align-items: center;
      padding: 80px 0;
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .service-block:first-child { padding-top: 0; }
    .service-block:last-child { border-bottom: none; padding-bottom: 0; }
    .service-block:nth-child(even) { direction: rtl; }
    .service-block:nth-child(even) > * { direction: ltr; }

    .service-block-visual { display: flex; justify-content: center; align-items: center; }

    .service-icon-box {
      width: 240px;
      height: 240px;
      border-radius: var(--radius-lg);
      background: var(--cream);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .service-block:hover .service-icon-box { background: var(--dark); }

    .service-icon-box svg {
      width: 64px; height: 64px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.2;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: all 0.5s ease;
    }

    .service-block:hover .service-icon-box svg { stroke: var(--gold-light); transform: scale(1.05); }

    .service-block-text h3 {
      font-size: 2rem;
      color: var(--text);
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }

    .service-block-text p {
      color: var(--text-mid);
      font-size: 0.95rem;
      line-height: 1.85;
      margin-bottom: 20px;
    }

    .service-features { margin-bottom: 32px; }

    .service-features li {
      color: var(--text-mid);
      padding: 8px 0 8px 24px;
      position: relative;
      font-size: 0.93rem;
    }

    .service-features li::before {
      content: '';
      position: absolute;
      left: 0; top: 16px;
      width: 12px; height: 1px;
      background: var(--gold);
    }

    /* ===== CONTACT PAGE ===== */
    .contact-body { padding: 120px 0; background: var(--white); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 100px;
      align-items: start;
    }

    .contact-info h3 {
      font-size: 1.8rem;
      color: var(--text);
      margin-bottom: 20px;
    }

    .contact-info > p {
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 40px;
    }

    .contact-detail {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
      color: var(--text-mid);
      font-size: 0.95rem;
    }

    .contact-icon {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--cream);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-icon svg {
      width: 18px; height: 18px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .calendly-box {
      margin-top: 48px;
      padding: 40px;
      border-radius: var(--radius-lg);
      border: 1px dashed rgba(201, 165, 92, 0.25);
      background: var(--gold-pale);
      text-align: center;
    }

    .calendly-box h4 { font-size: 1.1rem; color: var(--text); margin-bottom: 8px; }
    .calendly-box p { color: var(--text-light); font-size: 0.85rem; }

    .contact-form {
      background: var(--cream);
      padding: 52px;
      border-radius: var(--radius-lg);
    }

    .contact-form h3 {
      font-size: 1.4rem;
      color: var(--text);
      margin-bottom: 32px;
    }

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

    .form-group { margin-bottom: 20px; }

    .form-group label {
      display: block;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 8px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 16px 20px;
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: var(--radius);
      font-family: 'Inter', sans-serif;
      font-size: 1rem; /* ≥16px — verhindert iOS-Auto-Zoom beim Fokus */
      color: var(--text);
      background: var(--white);
      transition: all 0.3s ease;
      outline: none;
      cursor: none;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201, 165, 92, 0.1);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder { color: var(--text-light); }

    .form-group textarea { min-height: 140px; resize: vertical; }
    .form-submit { width: 100%; justify-content: center; }

    /* ===== COOKIE BANNER ===== */
    .cookie-banner {
      position: fixed;
      bottom: 24px;
      left: 24px;
      right: 24px;
      max-width: 520px;
      z-index: 9995;
      background: var(--dark);
      border: 1px solid rgba(201, 165, 92, 0.1);
      border-radius: var(--radius-lg);
      padding: 28px 32px;
      transform: translateY(calc(100% + 48px));
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .cookie-banner.visible { transform: translateY(0); }

    .cookie-banner h4 {
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      color: rgba(245,240,235,0.9);
      margin-bottom: 8px;
    }

    .cookie-banner p {
      color: rgba(255,255,255,0.45);
      font-size: 0.82rem;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .cookie-banner p a {
      color: var(--gold);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .cookie-buttons { display: flex; gap: 10px; }

    .cookie-btn {
      padding: 10px 24px;
      border-radius: 100px;
      font-family: 'Inter', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      border: none;
      cursor: none;
      transition: all 0.3s ease;
    }

    .cookie-btn-accept {
      background: var(--gold);
      color: var(--dark);
    }
    .cookie-btn-accept:hover { background: var(--gold-light); }

    .cookie-btn-decline {
      background: rgba(255,255,255,0.06);
      color: rgba(255,255,255,0.6);
    }
    .cookie-btn-decline:hover { background: rgba(255,255,255,0.1); }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--dark);
      padding: 80px 0 40px;
      color: rgba(255,255,255,0.35);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
    }

    .footer-brand h3 {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      margin-bottom: 16px;
      line-height: 1;
    }
    .footer-brand h3 .nav-logo-top { font-size: 1.8rem; }
    .footer-brand h3 .nav-logo-bottom { font-size: 0.65rem; }
    .footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }

    .footer-col h4 {
      color: rgba(255,255,255,0.85);
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .footer-col a {
      display: block;
      color: rgba(255,255,255,0.35);
      font-size: 0.88rem;
      padding: 5px 0;
      transition: color 0.3s ease;
    }
    .footer-col a:hover { color: var(--gold); }
    .footer-col p { font-size: 0.88rem; margin-bottom: 4px; }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-top: 28px;
      padding-bottom: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.78rem;
    }

    .footer-legal { display: flex; gap: 28px; }
    .footer-legal a { color: rgba(255,255,255,0.3); transition: color 0.3s ease; }
    .footer-legal a:hover { color: var(--gold); }

    /* ===== PAGE VISIBILITY ===== */
    .page { display: none; }
    .page.active { display: block; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr; gap: 60px; }
      .hero-text { max-width: 100%; text-align: center; }
      .hero-desc { margin: 0 auto 48px; }
      .hero-buttons { justify-content: center; }
      .hero-visual { margin-top: 20px; }
      .hero-portrait { width: 300px; height: 380px; }
      .hero-portrait-decor, .hero-portrait-decor-2 { display: none; }
      .services-grid { grid-template-columns: 1fr; }
      .services-grid .service-card:nth-child(-n+3),
      .services-grid .service-card:nth-child(4),
      .services-grid .service-card:nth-child(5) { grid-column: span 1; }
      .about-teaser-grid { grid-template-columns: 1fr; }
      .about-teaser-content { padding: 80px 40px; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(2)::after { display: none; }
      .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
      .pricing-card.featured { transform: none; }
      .pricing-card.featured:hover { transform: translateY(-4px); }
      .faq-grid { grid-template-columns: 1fr; gap: 48px; }
      .blog-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
      .about-story-grid { grid-template-columns: 1fr; gap: 60px; }
      .about-portrait-lg { position: static; max-width: 400px; margin: 0 auto; }
      .service-block { grid-template-columns: 1fr; gap: 40px; }
      .service-block:nth-child(even) { direction: ltr; }
      .service-icon-box { width: 160px; height: 160px; }
      .contact-grid { grid-template-columns: 1fr; gap: 60px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    }

    @media (max-width: 768px) {
      body { cursor: auto; }
      a, button { cursor: auto; }
      .cursor, .cursor-dot { display: none; }
      .form-group input, .form-group textarea, .form-group select { cursor: auto; }

      .nav-center, .lang-switch { display: none; }

      .nav-links-mobile {
        display: flex;
        position: fixed;
        inset: 0;
        background: rgba(13, 10, 11, 0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.4s ease, visibility 0.4s ease;
      }
      .nav-links-mobile.open { opacity: 1; visibility: visible; pointer-events: auto; }
      .nav-links-mobile a {
        font-size: 1rem;
        font-weight: 500;
        color: rgba(245,240,235,0.9);
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }
      .nav-links-mobile .nav-cta-mobile {
        margin-top: 16px;
        padding: 14px 36px;
        border: 1px solid var(--gold);
        border-radius: 100px;
        color: var(--gold);
        transition: all 0.3s ease;
      }

      .nav-toggle { display: flex; }
      .nav-right .nav-cta { display: none; }

      .container, .container-wide { padding: 0 20px; }

      .hero-grid { padding: 120px 0 80px; }
      .hero-title { font-size: 2.6rem; }
      .hero-title-italic { font-size: 2rem; }
      .hero-portrait { width: 240px; height: 300px; }
      .hero-scroll { display: none; }

      .services-section, .testimonials-section, .pricing-section, .faq-section, .blog-section { padding: 80px 0; }
      .section-header { margin-bottom: 48px; }
      .service-card { padding: 36px; }
      .service-num { font-size: 2.5rem; }

      .about-teaser-image { padding: 60px 40px; }
      .about-img-placeholder { width: 240px; height: 320px; }
      .about-teaser-content { padding: 60px 24px; }

      .stats-section { padding: 80px 0; }
      .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
      .stat-item { padding: 24px 12px; }
      .stat-number { font-size: 2.6rem; }
      .stat-item::after { display: none; }

      .testimonial-card { padding: 32px; }
      .cta-section { padding: 80px 0; }
      .page-hero { padding: 140px 0 80px; }
      .timeline-section, .services-detail { padding: 80px 0; }
      .service-block { padding: 60px 0; }
      .service-block-text h3 { font-size: 1.6rem; }
      .contact-body { padding: 80px 0; }
      .contact-form { padding: 32px; }
      .form-row { grid-template-columns: 1fr; }
      .footer { padding: 60px 0 30px; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
      .sticky-cta-text { font-size: 0.78rem; }
      .sticky-cta .btn { padding: 12px 20px; font-size: 0.75rem; }
      .cookie-banner { left: 12px; right: 12px; padding: 24px; }
    }

    @media (max-width: 480px) {
      .hero-title { font-size: 2.2rem; }
      .hero-title-italic { font-size: 1.7rem; }
      .hero-buttons { flex-direction: column; align-items: center; }
      .stats-grid { grid-template-columns: 1fr; }
      .sticky-cta-inner { flex-direction: column; gap: 12px; text-align: center; }
    }
    /* ===== LEGAL PAGES ===== */
    .legal-content {
      padding: 120px 0 80px;
      background: var(--white);
    }
    .legal-content .container { max-width: 800px; }
    .legal-content h2 {
      font-size: 1.5rem;
      color: var(--text);
      margin: 48px 0 16px;
      letter-spacing: -0.01em;
    }
    .legal-content h2:first-of-type { margin-top: 0; }
    .legal-content h3 {
      font-family: 'Inter', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text);
      margin: 28px 0 12px;
    }
    .legal-content p,
    .legal-content li {
      color: var(--text-mid);
      font-size: 0.93rem;
      line-height: 1.85;
      margin-bottom: 12px;
    }
    .legal-content ul { margin-left: 24px; margin-bottom: 20px; }
    .legal-content ul li { list-style: disc; padding: 4px 0; }
    .legal-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

    /* ===== COOKIE CATEGORIES ===== */
    .cookie-categories { margin: 16px 0; }
    .cookie-cat {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .cookie-cat:last-child { border-bottom: none; }
    .cookie-cat-info { flex: 1; margin-right: 16px; }
    .cookie-cat-name { color: rgba(245,240,235,0.9); font-size: 0.8rem; font-weight: 600; }
    .cookie-cat-desc { color: rgba(255,255,255,0.3); font-size: 0.7rem; margin-top: 2px; }
    .cookie-toggle { position: relative; width: 40px; height: 22px; flex-shrink: 0; }
    .cookie-toggle input { opacity: 0; width: 0; height: 0; }
    .cookie-slider {
      position: absolute; inset: 0;
      background: rgba(255,255,255,0.1);
      border-radius: 22px;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    .cookie-slider::before {
      content: '';
      position: absolute; left: 3px; top: 3px;
      width: 16px; height: 16px;
      background: rgba(245,240,235,0.95);
      border-radius: 50%;
      transition: transform 0.3s ease;
    }
    .cookie-toggle input:checked + .cookie-slider { background: var(--gold); }
    .cookie-toggle input:checked + .cookie-slider::before { transform: translateX(18px); }
    .cookie-toggle input:disabled + .cookie-slider { opacity: 0.5; cursor: not-allowed; }
    .cookie-btn-settings {
      background: none; border: none;
      color: var(--gold);
      font-size: 0.72rem; font-weight: 600;
      font-family: 'Inter', sans-serif;
      cursor: pointer;
      text-decoration: underline;
      text-underline-offset: 2px;
      padding: 0; margin-top: 8px;
    }
    .cookie-details { display: none; margin-top: 12px; }
    .cookie-details.open { display: block; }

    /* ===== FORM SUCCESS ===== */
    .form-success-msg {
      display: none;
      text-align: center;
      padding: 48px 32px;
    }
    .form-success-msg.show { display: block; }
    .form-success-msg svg {
      width: 56px; height: 56px;
      stroke: var(--gold); fill: none;
      stroke-width: 1.5; margin-bottom: 20px;
    }
    .form-success-msg h4 { font-size: 1.3rem; color: var(--text); margin-bottom: 8px; }
    .form-success-msg p { color: var(--text-mid); font-size: 0.92rem; }

    /* ===== CALENDLY CTA ===== */
    .calendly-cta {
      margin-top: 48px;
      padding: 40px;
      border-radius: var(--radius-lg);
      background: linear-gradient(135deg, var(--plum) 0%, var(--dark-2) 100%);
      text-align: center;
      border: 1px solid rgba(201, 165, 92, 0.15);
    }
    .calendly-cta h4 { font-size: 1.1rem; color: rgba(245,240,235,0.9); margin-bottom: 8px; }
    .calendly-cta p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 20px; }
    .calendly-cta .btn { pointer-events: auto; }

    /* ===== PROCESS SECTION ===== */
    .process-section {
      padding: 140px 0;
      background: var(--white);
    }
    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
      margin-top: 80px;
    }
    .process-grid::before {
      content: '';
      position: absolute;
      top: 44px;
      left: 10%;
      right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
      opacity: 0.2;
    }
    .process-step {
      text-align: center;
      padding: 0 24px;
      position: relative;
    }
    .process-num {
      width: 88px;
      height: 88px;
      border-radius: 50%;
      background: var(--cream);
      border: 2px solid rgba(201, 165, 92, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 28px;
      position: relative;
      z-index: 1;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .process-step:hover .process-num {
      background: var(--dark);
      border-color: var(--gold);
      transform: scale(1.08);
    }
    .process-num svg {
      width: 32px;
      height: 32px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: all 0.4s ease;
    }
    .process-step:hover .process-num svg { stroke: var(--gold-light); }
    .process-step h4 {
      font-size: 1.1rem;
      color: var(--text);
      margin-bottom: 8px;
      letter-spacing: -0.01em;
    }
    .process-step p {
      font-size: 0.88rem;
      color: var(--text-mid);
      line-height: 1.65;
    }
    .process-step-num {
      font-family: 'Playfair Display', serif;
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    /* ===== NEWSLETTER SECTION ===== */
    .newsletter-section {
      padding: 80px 0;
      background: var(--dark);
      position: relative;
      overflow: hidden;
    }
    .newsletter-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(44, 25, 41, 0.5) 0%, transparent 60%);
    }
    .newsletter-inner {
      position: relative;
      z-index: 1;
      max-width: 560px;
      margin: 0 auto;
      text-align: center;
    }
    .newsletter-inner h3 {
      font-size: 1.6rem;
      color: rgba(245,240,235,0.95);
      margin-bottom: 10px;
      letter-spacing: -0.01em;
    }
    .newsletter-inner p {
      color: rgba(255,255,255,0.4);
      font-size: 0.92rem;
      margin-bottom: 32px;
      line-height: 1.7;
    }
    .newsletter-form {
      display: flex;
      gap: 12px;
      max-width: 480px;
      margin: 0 auto;
    }
    .newsletter-form input {
      flex: 1;
      padding: 16px 24px;
      border: 1px solid rgba(201, 165, 92, 0.15);
      border-radius: 100px;
      background: rgba(255,255,255,0.04);
      color: rgba(245,240,235,0.85);
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      outline: none;
      transition: all 0.3s ease;
      cursor: none;
    }
    .newsletter-form input::placeholder { color: rgba(255,255,255,0.25); }
    .newsletter-form input:focus {
      border-color: var(--gold);
      background: rgba(255,255,255,0.06);
    }
    .newsletter-form button {
      padding: 16px 32px;
      background: var(--gold);
      color: var(--dark);
      border: none;
      border-radius: 100px;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: none;
      transition: all 0.4s ease;
      white-space: nowrap;
    }
    .newsletter-form button:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
    }

    /* ===== TRUST BADGES ===== */
    .trust-section {
      padding: 60px 0;
      background: var(--cream);
      border-bottom: 1px solid rgba(0,0,0,0.04);
    }
    .trust-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
    }
    .trust-label {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-light);
      white-space: nowrap;
    }
    .trust-badges {
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .trust-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text-mid);
      font-size: 0.85rem;
      font-weight: 500;
      opacity: 0.6;
      transition: opacity 0.3s ease;
    }
    .trust-badge:hover { opacity: 1; }
    .trust-badge svg {
      width: 28px;
      height: 28px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* ===== BLOG THUMB VARIANTS ===== */
    .blog-thumb-leadership { background: linear-gradient(135deg, #2C1929, #1A1517); }
    .blog-thumb-karriere { background: linear-gradient(135deg, #1B2838, #0D1B2A); }
    .blog-thumb-branding { background: linear-gradient(135deg, #2A2318, #1A1510); }
    .blog-thumb-coaching { background: linear-gradient(135deg, #1C2B1E, #0F1A11); }
    .blog-thumb-pattern::after {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0.04;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A55C' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    /* ===== HERO MONOGRAM ===== */
    .hero-monogram {
      font-family: 'Playfair Display', serif;
      font-size: 6rem;
      font-weight: 700;
      color: rgba(201, 165, 92, 0.08);
      line-height: 1;
      letter-spacing: -0.05em;
      position: absolute;
      bottom: 30%;
      right: 15%;
    }

    /* ===== SOCIAL LINKS ===== */
    .footer-social {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }
    .social-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    .social-link:hover {
      border-color: var(--gold);
      background: rgba(201, 165, 92, 0.1);
    }
    .social-link svg {
      width: 16px;
      height: 16px;
      fill: rgba(255,255,255,0.4);
      transition: fill 0.3s ease;
    }
    .social-link:hover svg { fill: var(--gold); }

    /* ===== TESTIMONIAL DOTS ===== */
    .testimonial-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 48px;
    }
    .testimonial-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(0,0,0,0.1);
      border: none;
      cursor: none;
      transition: all 0.3s ease;
      padding: 0;
    }
    .testimonial-dot.active {
      background: var(--gold);
      width: 24px;
      border-radius: 4px;
    }

    @media (max-width: 1024px) {
      .process-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
      .process-grid::before { display: none; }
      .trust-inner { flex-direction: column; gap: 24px; }
    }
    @media (max-width: 768px) {
      .process-grid { grid-template-columns: 1fr; gap: 40px; }
      .newsletter-form { flex-direction: column; }
      .newsletter-form button { width: 100%; }
      .process-section { padding: 80px 0; }
      .newsletter-section { padding: 60px 0; }
      .trust-badges { gap: 20px; }
    }

    /* ===== SCROLL BEHAVIOR ===== */
    html {
      scroll-behavior: smooth;
    }

    /* ===== SMOOTH SCROLL ENGINE ===== */
    @media (pointer: fine) and (min-width: 769px) {
      html.smooth-scroll {
        overflow: hidden;
        height: 100vh;
      }
      html.smooth-scroll body {
        overflow: hidden;
        height: 100vh;
      }
      html.smooth-scroll #smooth-content {
        will-change: transform;
        background: var(--dark);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
      }
    }

    /* ===== CUSTOM CONTEXT MENU ===== */
    .ctx-menu {
      position: fixed;
      z-index: 99999;
      min-width: 220px;
      background: #1a1517ee !important;
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(201, 165, 92, 0.15) !important;
      border-radius: 14px;
      padding: 8px;
      opacity: 0;
      visibility: hidden;
      transform: scale(0.92) translateY(-4px);
      transform-origin: top left;
      transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 0.5px rgba(255,255,255,0.06) inset;
      font-family: 'Inter', sans-serif;
      color: #f5f0eb !important;
    }
    .ctx-menu.open {
      opacity: 1;
      visibility: visible;
      transform: scale(1) translateY(0);
    }
    .ctx-brand {
      padding: 10px 14px 6px;
      font-family: 'Playfair Display', serif;
      font-size: 0.95rem;
      font-weight: 600;
      color: #f5f0eb !important;
      letter-spacing: 0.01em;
    }
    .ctx-brand span { color: #C9A55C !important; }
    .ctx-divider {
      height: 1px;
      background: rgba(255,255,255,0.08) !important;
      margin: 4px 8px;
    }
    .ctx-item {
      display: flex;
      align-items: center;
      gap: 12px;
      width: 100%;
      padding: 10px 14px;
      background: none !important;
      border: none;
      color: rgba(245, 240, 235, 0.7) !important;
      font-size: 0.82rem;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      letter-spacing: 0.01em;
      cursor: pointer;
      border-radius: 8px;
      transition: all 0.15s ease;
      text-align: left;
    }
    .ctx-item:hover {
      background: rgba(201, 165, 92, 0.12) !important;
      color: #f5f0eb !important;
    }
    .ctx-item svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
      opacity: 0.5;
    }
    .ctx-item:hover svg { opacity: 0.9; }
    .ctx-cta {
      color: #C9A55C !important;
      font-weight: 500;
    }
    .ctx-cta svg { stroke: #C9A55C !important; opacity: 0.7; }
    .ctx-cta:hover { background: rgba(201, 165, 92, 0.18) !important; }

    /* ===== SCROLL PROGRESS BAR ===== */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 2px;
      width: 0%;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      z-index: 10001;
      pointer-events: none;
      opacity: 0;
      transition: width 0.05s linear, opacity 0.3s ease;
    }
    .scroll-progress.visible { opacity: 1; }

    /* ===== PERFORMANCE ===== */
    .pricing-section,
    .faq-section,
    .blog-section,
    .gallery-section,
    .testimonials-section {
      content-visibility: auto;
      contain-intrinsic-size: auto 800px;
    }
    .cursor, .cursor-dot { will-change: left, top; }
    .page-transition { will-change: transform; }
    .scroll-progress { will-change: width; }
    .parallax { will-change: transform; }

    /* ===== PRELOADER ===== */
    .preloader {
      position: fixed;
      inset: 0;
      z-index: 99999;
      background: var(--dark);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 0;
      transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
    }
    .preloader.hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }
    .preloader-brand {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      margin-bottom: 20px;
      opacity: 0;
      transform: translateY(16px);
      animation: preloaderFadeIn 0.7s 0.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .preloader-monogram {
      font-family: 'Playfair Display', serif;
      font-size: 4.5rem;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.04em;
      line-height: 1;
    }
    .preloader-monogram i { font-style: normal; }
    .preloader-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 500;
      color: rgba(245,240,235,0.9);
      letter-spacing: -0.01em;
      line-height: 1;
      white-space: nowrap;
    }
    .preloader-tagline {
      font-family: 'Inter', sans-serif;
      font-size: 0.65rem;
      font-weight: 400;
      color: rgba(201,165,92,0.45);
      letter-spacing: 0.28em;
      text-transform: uppercase;
      margin-bottom: 32px;
      opacity: 0;
      animation: preloaderFadeIn 0.4s 0.45s ease forwards;
    }
    .preloader-bar {
      width: 120px;
      height: 2px;
      background: rgba(255,255,255,0.06);
      border-radius: 2px;
      overflow: hidden;
      opacity: 0;
      animation: preloaderFadeIn 0.4s 0.5s ease forwards;
    }
    .preloader-bar-inner {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      border-radius: 2px;
      animation: preloaderProgress 1.2s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    @keyframes preloaderFadeIn {
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes preloaderProgress {
      to { width: 100%; }
    }

    /* ===== SKIP NAVIGATION ===== */
    .skip-nav {
      position: fixed;
      top: -100px;
      left: 16px;
      z-index: 100000;
      background: var(--gold);
      color: var(--dark);
      padding: 12px 24px;
      border-radius: 0 0 var(--radius) var(--radius);
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      transition: top 0.3s ease;
      text-decoration: none;
    }
    .skip-nav:focus {
      top: 0;
      outline: 3px solid var(--gold-light);
      outline-offset: 2px;
    }

    /* ===== FOCUS STYLES ===== */
    *:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 3px;
      border-radius: 4px;
    }
    .nav-center a:focus-visible,
    .nav-cta:focus-visible,
    .lang-btn:focus-visible,
    .btn:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 3px;
    }

    /* ===== BACK TO TOP ===== */
    .back-to-top {
      position: fixed;
      bottom: 100px;
      right: 28px;
      z-index: 991;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--dark);
      border: 1px solid rgba(201, 165, 92, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: none;
      opacity: 0;
      visibility: hidden;
      transform: translateY(12px);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .back-to-top:hover {
      background: var(--gold);
      border-color: var(--gold);
      transform: translateY(-3px);
    }
    .back-to-top svg {
      width: 18px;
      height: 18px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: stroke 0.3s ease;
    }
    .back-to-top:hover svg { stroke: var(--dark); }

    @media (max-width: 768px) {
      .back-to-top { cursor: auto; bottom: 80px; right: 16px; width: 40px; height: 40px; }
      .skip-nav { display: none; }
    }

    /* ===== ANIMATED COUNTER ===== */
    .stat-number[data-count] {
      display: inline-block;
    }

    /* ===== FORM VALIDATION ===== */
    .form-group.has-error input,
    .form-group.has-error textarea,
    .form-group.has-error select {
      border-color: #c0392b;
      box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
    }
    .form-group.is-valid input,
    .form-group.is-valid textarea,
    .form-group.is-valid select {
      border-color: #27ae60;
      box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.08);
    }
    .form-error-text {
      color: #c0392b;
      font-size: 0.75rem;
      margin-top: 6px;
      display: none;
      animation: formErrorIn 0.3s ease;
    }
    .form-group.has-error .form-error-text { display: block; }
    @keyframes formErrorIn {
      from { opacity: 0; transform: translateY(-4px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ===== VIDEO PLACEHOLDER ===== */
    .video-section {
      padding: 0;
      background: var(--dark);
      position: relative;
      overflow: hidden;
    }
    .video-container {
      position: relative;
      width: 100%;
      max-width: 1000px;
      margin: 0 auto;
      padding: 100px 32px;
    }
    .video-placeholder {
      position: relative;
      width: 100%;
      aspect-ratio: 16/9;
      border-radius: var(--radius-lg);
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 20px;
      overflow: hidden;
      border: 1px solid rgba(201, 165, 92, 0.1);
      transition: border-color 0.5s ease;
    }
    .video-placeholder:hover { border-color: rgba(201, 165, 92, 0.25); }
    .video-placeholder::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.2) 100%);
    }
    .video-placeholder iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
      border-radius: var(--radius-lg);
    }
    .video-play-btn {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: rgba(201, 165, 92, 0.12);
      border: 2px solid rgba(201, 165, 92, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: none;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      z-index: 1;
    }
    .video-placeholder:hover .video-play-btn {
      background: var(--gold);
      border-color: var(--gold);
      transform: scale(1.1);
    }
    .video-play-btn svg {
      width: 28px;
      height: 28px;
      fill: var(--gold);
      margin-left: 4px;
      transition: fill 0.3s ease;
    }
    .video-placeholder:hover .video-play-btn svg { fill: var(--dark); }
    .video-caption {
      color: rgba(255,255,255,0.3);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      position: relative;
      z-index: 1;
    }
    .video-section-label {
      text-align: center;
      margin-bottom: 48px;
      position: relative;
      z-index: 1;
    }
    .video-section-label h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      color: rgba(245,240,235,0.95);
      margin-bottom: 8px;
    }
    .video-section-label p {
      color: rgba(255,255,255,0.35);
      font-size: 0.92rem;
    }

    /* ===== IMAGE GALLERY PLACEHOLDERS ===== */
    .gallery-section {
      padding: 120px 0;
      background: var(--cream);
      overflow: hidden;
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      grid-template-rows: 280px 280px;
      gap: 16px;
    }
    .gallery-item {
      border-radius: var(--radius-lg);
      background-size: cover;
      background-position: center;
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: flex-end;
      justify-content: flex-start;
      padding: 20px;
      color: rgba(255,255,255,0.9);
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      text-shadow: 0 1px 6px rgba(0,0,0,0.5);
    }
    .gallery-item:hover { transform: scale(1.02); }
    .gallery-item::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
      border-radius: var(--radius-lg);
      pointer-events: none;
      z-index: 1;
    }
    .gallery-item.large { grid-row: span 2; }
    .gallery-item span { position: relative; z-index: 2; }
    @media (max-width: 768px) {
      .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px 200px;
      }
      .gallery-item.large { grid-row: span 1; }
      .video-container { padding: 60px 20px; }
      .video-play-btn { width: 64px; height: 64px; cursor: auto; }
    }

    /* ===== MAGNETIC BUTTON EFFECT ===== */
    .btn-magnetic {
      position: relative;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* ===== BLOG CARD IMAGE ZOOM ===== */
    .blog-thumb {
      overflow: hidden;
    }
    .blog-thumb::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--plum), var(--dark-2));
      transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .blog-thumb.blog-thumb-photo::after { display: none; }
    .blog-thumb.blog-thumb-photo { background-size: cover; background-position: center top; }
    .blog-card:hover .blog-thumb::after {
      transform: scale(1.08);
    }

    /* ===== TESTIMONIAL INDICATOR DOTS ===== */
    .testimonial-indicators {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 48px;
    }
    .testimonial-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(0,0,0,0.1);
      border: none;
      cursor: none;
      transition: all 0.4s ease;
      padding: 0;
    }
    .testimonial-dot.active {
      background: var(--gold);
      width: 24px;
      border-radius: 4px;
    }
    @media (max-width: 768px) {
      .testimonial-dot { cursor: auto; }
    }

    /* ===== MOBILE MENU SMOOTH ANIMATION (mobile only) ===== */
    @media (max-width: 768px) {
      .nav-links-mobile a {
        transform: translateY(20px);
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
      }
      .nav-links-mobile.open a {
        transform: translateY(0);
        opacity: 1;
      }
      .nav-links-mobile.open a:nth-child(1) { transition-delay: 0.05s; }
      .nav-links-mobile.open a:nth-child(2) { transition-delay: 0.1s; }
      .nav-links-mobile.open a:nth-child(3) { transition-delay: 0.15s; }
      .nav-links-mobile.open a:nth-child(4) { transition-delay: 0.2s; }
      .nav-links-mobile.open a:nth-child(5) { transition-delay: 0.25s; }
      .nav-links-mobile.open .lang-switch { transition-delay: 0.3s; }
    }

    /* ===== PRICING CALCULATOR ===== */
    .pricing-calc {
      max-width: 600px;
      margin: 0 auto 60px;
      padding: 40px 48px;
      background: var(--white);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      text-align: center;
    }
    [data-theme="dark"] .pricing-calc { background: var(--bg-card); }
    .pricing-calc h4 { font-size: 1.1rem; color: var(--text); margin-bottom: 8px; }
    .pricing-calc-desc { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 28px; }
    .calc-slider-wrap { margin-bottom: 24px; position: relative; }
    .calc-slider {
      -webkit-appearance: none;
      width: 100%;
      height: 4px;
      background: var(--cream-dark);
      border-radius: 4px;
      outline: none;
      cursor: none;
    }
    .calc-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--gold);
      border: 3px solid var(--white);
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      cursor: none;
      transition: transform 0.2s ease;
    }
    .calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
    .calc-slider::-moz-range-thumb {
      width: 18px; height: 18px; border-radius: 50%;
      background: var(--gold); border: 3px solid var(--white);
    }
    .calc-labels { display: flex; justify-content: space-between; margin-top: 8px; }
    .calc-labels span { font-size: 0.7rem; color: var(--text-light); }
    .calc-result {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 4px;
      margin-bottom: 8px;
    }
    .calc-price {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 700;
      color: var(--gold);
      transition: all 0.3s ease;
    }
    .calc-currency { font-size: 1.2rem; color: var(--text-mid); font-weight: 500; }
    .calc-savings { font-size: 0.8rem; color: var(--success); font-weight: 600; margin-bottom: 16px; min-height: 1.2em; }
    .calc-per-session { font-size: 0.82rem; color: var(--text-light); }
    @media (max-width: 768px) {
      .pricing-calc { padding: 28px 24px; margin: 0 auto 40px; }
      .calc-slider, .calc-slider::-webkit-slider-thumb { cursor: auto; }
    }

    /* ===== CALENDLY EMBED ===== */
    .calendly-embed-wrap {
      margin-top: 48px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid rgba(201, 165, 92, 0.15);
      background: var(--white);
      min-height: 650px;
      position: relative;
    }
    .calendly-embed-placeholder {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 16px;
      min-height: 650px;
      color: var(--text-light);
      font-size: 0.85rem;
    }
    .calendly-embed-placeholder svg {
      width: 48px; height: 48px;
      stroke: var(--gold); fill: none;
      stroke-width: 1.2; opacity: 0.5;
    }

    /* ===== CASE STUDIES ===== */
    .case-studies-section {
      padding: 140px 0;
      background: var(--cream);
    }
    .case-studies-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .case-study-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 44px 36px;
      border: 1px solid var(--border-light);
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
    }
    .case-study-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--card-hover-shadow);
    }
    .case-study-avatar {
      width: 52px; height: 52px; border-radius: 50%;
      background: var(--plum); display: flex; align-items: center;
      justify-content: center; color: var(--gold);
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; font-weight: 600; margin-bottom: 20px;
    }
    .case-study-metric {
      display: inline-flex; padding: 5px 14px; border-radius: 100px;
      background: var(--gold-pale); border: 1px solid rgba(201,165,92,0.15);
      font-size: 0.72rem; font-weight: 700; color: var(--gold);
      letter-spacing: 0.04em; margin-bottom: 20px;
    }
    .case-study-card h4 { font-size: 1.15rem; color: var(--text); margin-bottom: 12px; letter-spacing: -0.01em; }
    .case-study-before { color: var(--text-mid); font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
    .case-study-after { color: var(--text); font-size: 0.88rem; line-height: 1.7; font-weight: 500; }
    .case-study-before::before { content: 'Vorher: '; font-weight: 700; color: var(--text-light); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 4px; }
    .case-study-after::before { content: 'Nachher: '; font-weight: 700; color: var(--gold); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 4px; }
    @media (max-width: 1024px) { .case-studies-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; } }

    /* ===== BLOG DETAIL OVERLAY ===== */
    .blog-detail {
      position: fixed; inset: 0; z-index: 9997;
      background: var(--bg-secondary);
      transform: translateY(100%);
      transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.55s;
      overflow-y: auto;
      visibility: hidden;
    }
    .blog-detail.open { transform: translateY(0); visibility: visible; }

    /* ── Topbar: Zurück + Pfeile ── */
    .blog-detail-topbar {
      position: sticky; top: 0; z-index: 10;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 32px; height: 52px;
      background: var(--dark); border-bottom: 1px solid rgba(201,165,92,0.12);
    }
    .blog-back-btn {
      display: inline-flex; align-items: center; gap: 6px;
      background: none; border: none; cursor: pointer;
      color: rgba(245,240,235,0.6); font-family: 'Inter',sans-serif;
      font-size: 0.8rem; font-weight: 500; letter-spacing: 0.02em;
      transition: color 0.2s ease; padding: 0;
    }
    .blog-back-btn svg { width: 16px; height: 16px; stroke: currentColor; flex-shrink: 0; }
    .blog-back-btn:hover { color: var(--gold); }
    .blog-post-nav {
      display: flex; align-items: center; gap: 8px;
    }
    .blog-nav-btn {
      width: 32px; height: 32px; border-radius: 50%;
      background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all 0.2s ease;
    }
    .blog-nav-btn svg { width: 14px; height: 14px; stroke: rgba(245,240,235,0.7); }
    .blog-nav-btn:hover:not(:disabled) { background: rgba(201,165,92,0.15); border-color: var(--gold); }
    .blog-nav-btn:hover:not(:disabled) svg { stroke: var(--gold); }
    .blog-nav-btn:disabled { opacity: 0.25; cursor: not-allowed; }
    .blog-nav-counter { font-size: 0.72rem; color: rgba(245,240,235,0.35); font-family: 'Inter',sans-serif; min-width: 36px; text-align: center; }

    .blog-detail-close {
      position: fixed; top: 60px; right: 24px; z-index: 9998;
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--dark); border: 1px solid rgba(201,165,92,0.2);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all 0.3s ease;
      opacity: 0; pointer-events: none;
    }
    .blog-detail-close.visible { opacity: 1; pointer-events: auto; }
    .blog-detail-close:hover { background: var(--gold); border-color: var(--gold); }
    .blog-detail-close svg { width: 16px; height: 16px; stroke: rgba(245,240,235,0.9); fill: none; stroke-width: 2; }

    .blog-detail-progress { position: fixed; top: 0; left: 0; width: 0%; height: 3px; background: var(--gold); z-index: 9999; transition: width 0.05s linear; }
    .blog-detail-header { padding: 60px 0 52px; background: var(--dark); }
    .blog-detail-header .container { max-width: 720px; }
    .blog-detail-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; flex-wrap: wrap; }
    .blog-detail-cat { background: rgba(201,165,92,0.9); color: var(--dark); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; }
    .blog-detail-date { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
    .blog-detail-readtime { color: rgba(255,255,255,0.25); font-size: 0.8rem; }
    .blog-detail-header h1 { font-size: clamp(1.7rem,3.5vw,2.6rem); color: rgba(245,240,235,0.96); letter-spacing: -0.02em; line-height: 1.2; }

    /* ── Body: explizite Farben für beide Modi ── */
    .blog-detail-body { padding: 56px 0 80px; background: var(--bg-secondary); }
    .blog-detail-body .container { max-width: 720px; }

    /* Light mode (default) */
    .blog-detail-body p,
    .blog-detail-body li { color: #4A3F46; font-size: 1.02rem; line-height: 1.95; margin-bottom: 18px; }
    .blog-detail-body h2 { font-family: 'Playfair Display', serif; font-size: 1.45rem; color: #1A1517; margin: 40px 0 14px; line-height: 1.3; }
    .blog-detail-body h3 { font-size: 1.05rem; font-weight: 600; color: #1A1517; margin: 28px 0 10px; }
    .blog-detail-body strong { color: #1A1517; font-weight: 600; }
    .blog-detail-body a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(201,165,92,0.35); transition: border-color 0.2s; }
    .blog-detail-body a:hover { border-color: var(--gold); }
    .blog-detail-body ol { padding-left: 1.4em; margin-bottom: 18px; }
    .blog-detail-body ul { padding-left: 1.4em; margin-bottom: 18px; list-style: disc; }
    .blog-detail-body hr { border: none; border-top: 1px solid rgba(0,0,0,0.1); margin: 40px 0; }
    .blog-detail-body em { color: inherit; font-style: italic; }

    /* Dark mode overrides */
    [data-theme="dark"] .blog-detail { background: #1A1517; }
    [data-theme="dark"] .blog-detail-body { background: #1A1517; }
    [data-theme="dark"] .blog-detail-body p,
    [data-theme="dark"] .blog-detail-body li { color: rgba(245,240,235,0.72); }
    [data-theme="dark"] .blog-detail-body h2 { color: #F5F0EB; }
    [data-theme="dark"] .blog-detail-body h3 { color: #F5F0EB; }
    [data-theme="dark"] .blog-detail-body strong { color: #F5F0EB; }
    [data-theme="dark"] .blog-detail-body hr { border-top-color: rgba(255,255,255,0.08); }

    /* Share + Fußnavigation */
    .blog-detail-share { display: flex; gap: 12px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); flex-wrap: wrap; }
    .share-btn { padding: 8px 20px; border-radius: 100px; border: 1px solid var(--border); background: none; font-family: 'Inter',sans-serif; font-size: 0.78rem; font-weight: 500; color: var(--text-mid); cursor: pointer; transition: all 0.3s ease; }
    .share-btn:hover { border-color: var(--gold); color: var(--gold); }

    /* Prev/Next am Ende des Artikels */
    .blog-detail-footnav {
      display: flex; justify-content: space-between; align-items: stretch;
      gap: 16px; margin-top: 40px; padding-top: 32px;
      border-top: 1px solid var(--border);
    }
    .blog-footnav-btn {
      display: flex; align-items: center; gap: 10px;
      background: none; border: 1px solid var(--border); border-radius: 12px;
      padding: 14px 20px; cursor: pointer; transition: all 0.25s ease;
      font-family: 'Inter',sans-serif; max-width: 46%;
      text-align: left;
    }
    .blog-footnav-btn svg { width: 18px; height: 18px; stroke: var(--text-light); flex-shrink: 0; transition: stroke 0.2s; }
    .blog-footnav-btn span { font-size: 0.82rem; color: var(--text-mid); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .blog-footnav-btn--next { margin-left: auto; text-align: right; flex-direction: row-reverse; }
    .blog-footnav-btn:hover { border-color: var(--gold); background: rgba(201,165,92,0.04); }
    .blog-footnav-btn:hover svg { stroke: var(--gold); }
    .blog-footnav-btn:hover span { color: var(--text); }

    @media (max-width: 768px) {
      .blog-detail-topbar { padding: 0 16px; }
      .blog-back-btn span { display: none; }
      .blog-detail-close { top: 56px; right: 12px; cursor: auto; }
      .share-btn { cursor: auto; }
      .blog-detail-footnav { flex-direction: column; }
      .blog-footnav-btn { max-width: 100%; }
      .blog-footnav-btn--next { flex-direction: row; }
    }

    /* ===== LIGHTBOX ===== */
    .lightbox {
      position: fixed; inset: 0; z-index: 9997;
      background: rgba(13,10,11,0.95); backdrop-filter: blur(16px);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; visibility: hidden; pointer-events: none;
      transition: opacity 0.4s ease, visibility 0.4s ease;
    }
    .lightbox.open { opacity: 1; visibility: visible; pointer-events: auto; }
    .lightbox-content {
      width: 80vw; max-width: 900px; aspect-ratio: 16/9;
      background: linear-gradient(145deg, var(--plum), var(--dark-2));
      border-radius: var(--radius-lg); border: 1px solid rgba(201,165,92,0.1);
      display: flex; align-items: center; justify-content: center; flex-direction: column;
      gap: 12px; color: rgba(255,255,255,0.2); font-size: 0.8rem;
      transform: scale(0.9); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .lightbox.open .lightbox-content { transform: scale(1); }
    .lightbox-content svg { width: 48px; height: 48px; stroke: rgba(255,255,255,0.15); fill: none; stroke-width: 1; }
    .lightbox-close {
      position: absolute; top: 24px; right: 24px;
      width: 44px; height: 44px; border-radius: 50%;
      background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      cursor: none; transition: all 0.3s ease;
    }
    .lightbox-close:hover { background: var(--gold); border-color: var(--gold); }
    .lightbox-close svg { width: 18px; height: 18px; stroke: var(--white); fill: none; stroke-width: 2; }
    .lightbox-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 44px; height: 44px; border-radius: 50%;
      background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      cursor: none; transition: all 0.3s ease;
    }
    .lightbox-nav:hover { background: var(--gold); border-color: var(--gold); }
    .lightbox-nav svg { width: 18px; height: 18px; stroke: var(--white); fill: none; stroke-width: 2; }
    .lightbox-prev { left: 24px; }
    .lightbox-next { right: 24px; }
    .lightbox-counter { position: absolute; bottom: 24px; color: rgba(255,255,255,0.3); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; }
    @media (max-width: 768px) {
      .lightbox-content { width: 92vw; }
      .lightbox-close, .lightbox-nav { cursor: auto; }
      .lightbox-prev { left: 8px; }
      .lightbox-next { right: 8px; }
    }

    /* ===== FORM WIZARD ===== */
    .form-wizard { position: relative; min-height: 400px; }
    .wizard-progress { display: flex; justify-content: center; gap: 8px; margin-bottom: 36px; }
    .wizard-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--cream-dark); transition: all 0.4s ease;
    }
    .wizard-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
    .wizard-dot.done { background: var(--gold); }
    .wizard-step {
      position: absolute; top: 60px; left: 0; right: 0;
      opacity: 0; transform: translateX(40px);
      pointer-events: none;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .wizard-step.active { opacity: 1; transform: translateX(0); pointer-events: auto; position: relative; }
    .wizard-step.prev { transform: translateX(-40px); }
    .wizard-service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
    .wizard-service-card {
      padding: 20px; border-radius: var(--radius); border: 2px solid var(--border);
      background: var(--white); cursor: none; transition: all 0.3s ease;
      text-align: center;
    }
    .wizard-service-card:hover { border-color: var(--gold); }
    .wizard-service-card.selected { border-color: var(--gold); background: var(--gold-pale); }
    .wizard-service-card svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.5; margin-bottom: 8px; }
    .wizard-service-card h5 { font-family: 'Inter',sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--text); }
    .wizard-nav { display: flex; gap: 12px; justify-content: center; margin-top: 24px; }
    .wizard-back {
      padding: 12px 28px; border-radius: 100px; border: 1px solid var(--border);
      background: none; font-family: 'Inter',sans-serif; font-size: 0.82rem;
      font-weight: 600; color: var(--text-mid); cursor: none; transition: all 0.3s ease;
    }
    .wizard-back:hover { border-color: var(--text); color: var(--text); }
    @media (max-width: 768px) {
      .wizard-service-grid { grid-template-columns: 1fr; }
      .wizard-service-card, .wizard-back { cursor: auto; }
    }

    /* ===== ADVANCED PAGE TRANSITIONS ===== */
    .page-transition[data-transition="slide"] { transform-origin: left; }
    .page-transition[data-transition="slide"].active {
      animation: pageSlidIn 0.5s cubic-bezier(0.7, 0, 0.3, 1) forwards,
                 pageSlidOut 0.5s 0.5s cubic-bezier(0.7, 0, 0.3, 1) forwards;
    }
    @keyframes pageSlidIn {
      from { transform: scaleX(0); transform-origin: left; }
      to { transform: scaleX(1); transform-origin: left; }
    }
    @keyframes pageSlidOut {
      from { transform: scaleX(1); transform-origin: right; }
      to { transform: scaleX(0); transform-origin: right; }
    }
    .page-transition[data-transition="circle"].active {
      animation: none;
      clip-path: circle(0% at 50% 50%);
      transform: scaleY(1);
      animation: pageCircleIn 0.5s cubic-bezier(0.7, 0, 0.3, 1) forwards,
                 pageCircleOut 0.5s 0.5s cubic-bezier(0.7, 0, 0.3, 1) forwards;
    }
    @keyframes pageCircleIn { from { clip-path: circle(0% at 50% 50%); } to { clip-path: circle(150% at 50% 50%); } }
    @keyframes pageCircleOut { from { clip-path: circle(150% at 50% 50%); } to { clip-path: circle(0% at 50% 50%); } }

    /* ===== MOBILE BOTTOM SHEET NAV ===== */
    @media (max-width: 768px) {
      .nav-links-mobile {
        justify-content: flex-end !important;
        padding-bottom: 60px;
        background: linear-gradient(to top, rgba(13,10,11,0.99) 50%, rgba(13,10,11,0.85)) !important;
      }
      .btn:active { transform: scale(0.96); }
    }

    /* ===== HORIZONTAL SCROLL SECTION ===== */
    .horizontal-section {
      height: 350vh;
      position: relative;
      background: var(--dark);
    }
    .horizontal-sticky {
      position: sticky;
      top: 0;
      height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      z-index: 5;
    }
    .horizontal-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 0 32px;
    }
    .horizontal-header {
      position: absolute;
      top: 60px;
      left: 32px;
      z-index: 3;
    }
    .horizontal-track {
      display: flex;
      gap: 32px;
      will-change: transform;
    }
    .horizontal-card {
      min-width: 380px;
      max-width: 380px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(201, 165, 92, 0.08);
      border-radius: var(--radius-lg);
      padding: 48px 40px;
      flex-shrink: 0;
      transition: border-color 0.4s ease, background 0.4s ease;
    }
    .horizontal-card:hover {
      border-color: rgba(201, 165, 92, 0.2);
      background: rgba(255,255,255,0.05);
    }
    .horizontal-card-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: rgba(201, 165, 92, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 28px;
    }
    .horizontal-card-icon svg {
      width: 24px;
      height: 24px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .horizontal-card h4 {
      font-size: 1.3rem;
      color: rgba(245,240,235,0.9);
      margin-bottom: 12px;
      letter-spacing: -0.01em;
    }
    .horizontal-card p {
      color: rgba(255,255,255,0.4);
      font-size: 0.9rem;
      line-height: 1.75;
    }
    .horizontal-progress {
      position: absolute;
      bottom: 100px;
      left: 32px;
      right: 32px;
      z-index: 3;
    }
    .horizontal-progress-track {
      height: 2px;
      background: rgba(255,255,255,0.06);
      border-radius: 2px;
      overflow: hidden;
      max-width: 200px;
    }
    .horizontal-progress-bar {
      height: 100%;
      width: 0%;
      background: var(--gold);
      border-radius: 2px;
      transition: width 0.1s linear;
    }
    .horizontal-counter {
      color: rgba(255,255,255,0.2);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      margin-bottom: 8px;
    }
    @media (max-width: 1024px) {
      .horizontal-section {
        height: auto;
        padding: 100px 0;
      }
      .horizontal-sticky {
        position: relative;
        height: auto;
        flex-direction: column;
      }
      .horizontal-header {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 48px;
        padding: 0 20px;
      }
      .horizontal-track {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
      }
      .horizontal-card {
        min-width: auto;
        max-width: 100%;
      }
      .horizontal-progress { display: none; }
    }

    /* ===== BADGES / AS SEEN IN ===== */
    .badges-section {
      padding: 100px 0;
      background: var(--cream);
      text-align: center;
    }
    .badges-grid {
      display: flex;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
      margin-bottom: 60px;
    }
    .badge-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      transition: transform 0.4s ease;
    }
    .badge-item:hover { transform: translateY(-4px); }
    .badge-icon {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--white);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s ease;
    }
    .badge-item:hover .badge-icon {
      background: var(--dark);
      border-color: var(--gold);
    }
    .badge-icon svg {
      width: 28px;
      height: 28px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .badge-title {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--text);
      letter-spacing: 0.04em;
    }
    .media-row {
      border-top: 1px solid var(--border);
      padding-top: 40px;
    }
    .media-label {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: 24px;
    }
    .media-logos {
      display: flex;
      justify-content: center;
      gap: 48px;
      align-items: center;
      flex-wrap: wrap;
    }
    .media-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text-light);
      opacity: 0.4;
      transition: opacity 0.4s ease;
      letter-spacing: -0.01em;
    }
    .media-logo:hover { opacity: 0.8; }

    /* ===== SPLIT TEXT ANIMATION ===== */
    .split-word {
      display: inline-block;
      overflow: hidden;
      vertical-align: top;
      margin-right: 0.25em;
    }
    .split-word:last-child { margin-right: 0; }
    .split-char {
      display: inline-block;
      opacity: 0;
      transform: translateY(110%);
      transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .split-text.visible .split-char {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== FLOATING ELEMENTS (Hero Mouse Parallax) ===== */
    .float-el {
      position: absolute;
      pointer-events: none;
      z-index: 1;
      transition: transform 0.3s ease-out;
    }
    .float-dot {
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50%;
      opacity: 0.12;
    }
    .float-dot-lg {
      width: 10px;
      height: 10px;
      background: var(--gold);
      border-radius: 50%;
      opacity: 0.06;
    }
    .float-line {
      width: 40px;
      height: 1px;
      background: var(--gold);
      opacity: 0.08;
    }
    .float-line-v {
      width: 1px;
      height: 40px;
      background: var(--gold);
      opacity: 0.08;
    }
    .float-ring {
      width: 24px;
      height: 24px;
      border: 1px solid var(--gold);
      border-radius: 50%;
      opacity: 0.08;
    }
    .float-diamond {
      width: 12px;
      height: 12px;
      background: var(--gold);
      opacity: 0.06;
      transform: rotate(45deg);
    }
    .float-cross {
      width: 16px;
      height: 16px;
      position: relative;
      opacity: 0.06;
    }
    .float-cross::before, .float-cross::after {
      content: '';
      position: absolute;
      background: var(--gold);
    }
    .float-cross::before { width: 16px; height: 1px; top: 50%; left: 0; }
    .float-cross::after { width: 1px; height: 16px; left: 50%; top: 0; }
    @media (max-width: 768px) { .float-el { display: none; } }

    /* ===== 3D TILT EFFECT ===== */
    .tilt-card {
      transform-style: preserve-3d;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .tilt-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.08), transparent 60%);
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
    }
    .tilt-card:hover::after { opacity: 1; }

    /* ===== CLIP-PATH REVEALS ===== */
    .clip-reveal {
      clip-path: inset(0 100% 0 0);
      transition: clip-path 1.4s cubic-bezier(0.77, 0, 0.175, 1);
    }
    .clip-reveal.visible {
      clip-path: inset(0 0 0 0);
    }
    .clip-reveal-right {
      clip-path: inset(0 0 0 100%);
      transition: clip-path 1.4s cubic-bezier(0.77, 0, 0.175, 1);
    }
    .clip-reveal-right.visible {
      clip-path: inset(0 0 0 0);
    }
    .clip-reveal-center {
      clip-path: inset(0 50% 0 50%);
      transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    }
    .clip-reveal-center.visible {
      clip-path: inset(0 0 0 0);
    }

    /* ===== REDUCED MOTION ===== */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
      .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1 !important;
        transform: none !important;
      }
      .text-reveal-inner { transform: none !important; }
      .marquee-track { animation: none !important; }
      .parallax { transform: none !important; }
      .hero::before { animation: none !important; transform: none !important; }
      .preloader { display: none !important; }
      html { scroll-behavior: auto !important; }
    }

    /* ===== DARK MODE TRANSITIONS ===== */
    body,
    .services-section,
    .testimonials-section,
    .pricing-section,
    .faq-section,
    .blog-section,
    .gallery-section,
    .service-card,
    .testimonial-card,
    .pricing-card,
    .blog-card,
    .contact-form,
    .footer {
      transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease;
    }

    /* ===== DARK MODE TOGGLE ===== */
    .dark-mode-toggle {
      background: none;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 100px;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: none;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }
    .dark-mode-toggle:hover {
      border-color: var(--gold);
      background: rgba(201, 165, 92, 0.08);
    }
    .dark-mode-toggle svg {
      width: 14px;
      height: 14px;
      stroke: rgba(255,255,255,0.5);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      position: absolute;
    }
    .dark-mode-toggle .icon-sun { opacity: 1; transform: rotate(0deg) scale(1); }
    .dark-mode-toggle .icon-moon { opacity: 0; transform: rotate(-90deg) scale(0.5); }
    [data-theme="dark"] .dark-mode-toggle .icon-sun { opacity: 0; transform: rotate(90deg) scale(0.5); }
    [data-theme="dark"] .dark-mode-toggle .icon-moon { opacity: 1; transform: rotate(0deg) scale(1); }
    [data-theme="dark"] .dark-mode-toggle svg { stroke: var(--gold); }
    @media (max-width: 768px) {
      .dark-mode-toggle { cursor: auto; }
    }

    /* ===== PRINT STYLES ===== */
    @media print {
      .nav, .sticky-cta, .cursor, .cursor-dot, .page-transition,
      .cookie-banner, .back-to-top, .scroll-progress, .preloader,
      .skip-nav, .hero-scroll { display: none !important; }
      body { background: white !important; color: black !important; cursor: auto !important; }
      body::after { display: none !important; }
      .page { display: block !important; page-break-after: always; }
      .hero { min-height: auto !important; padding: 40px 0 !important; }
      .section-title, .hero-title { color: black !important; }
      a { color: black !important; text-decoration: underline !important; }
      .btn { border: 1px solid black !important; background: transparent !important; color: black !important; }
    }
  </style>
</head>
<body>

  <!-- Skip Navigation (Accessibility) -->
  <a href="#main-content" class="skip-nav">Zum Inhalt springen</a>


    /* ===== BLOG PAGINATION ===== */
    .blog-pagination {
      margin: 60px 0 20px;
      text-align: center;
    }
    .blog-pagination .page-numbers {
      display: inline-flex;
      gap: 8px;
      list-style: none;
      padding: 0;
      margin: 0;
      flex-wrap: wrap;
      justify-content: center;
    }
    .blog-pagination .page-numbers li { display: inline; }
    .blog-pagination .page-numbers a,
    .blog-pagination .page-numbers span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      height: 40px;
      padding: 0 14px;
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      color: var(--text-mid);
      font-size: 0.9rem;
      font-family: 'Inter', sans-serif;
      text-decoration: none;
      transition: all 0.2s ease;
    }
    .blog-pagination .page-numbers a:hover {
      border-color: var(--gold);
      color: var(--gold);
    }
    .blog-pagination .page-numbers .current {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--dark);
      font-weight: 600;
    }
    .blog-pagination .page-numbers .dots {
      border-color: transparent;
    }

    /* ===== WORDPRESS ADMIN BAR FIX ===== */
    .admin-bar .nav {
      top: 32px;
    }
    @media screen and (max-width: 782px) {
      .admin-bar .nav { top: 46px; }
    }
    /* Admin Bar + Sticky CTA */
    .admin-bar .sticky-cta { bottom: -80px; }
    .admin-bar .sticky-cta.visible { bottom: 0; }

    /* ===== WORDPRESS BLOG CONTENT ===== */
    .blog-content img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 1.5rem 0; }
    .blog-content h2 { font-size: 1.8rem; color: var(--text); margin: 2rem 0 1rem; }
    .blog-content h3 { font-size: 1.4rem; color: var(--text); margin: 1.5rem 0 0.75rem; }
    .blog-content p { color: var(--text-mid); line-height: 1.9; margin-bottom: 1.2rem; }
    .blog-content ul, .blog-content ol { margin-left: 1.5rem; margin-bottom: 1.2rem; color: var(--text-mid); }
    .blog-content li { padding: 4px 0; line-height: 1.7; }
    .blog-content blockquote { border-left: 3px solid var(--gold); padding: 1rem 1.5rem; margin: 1.5rem 0; background: var(--cream); border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; color: var(--text-mid); }
    .blog-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

    /* ===== BLOG CARD TAG FIX ===== */
    .blog-tag {
      position: absolute;
      top: 16px; left: 16px;
      background: rgba(201,165,92,0.9);
      color: var(--dark);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 100px;
    }

    .admin-bar .scroll-progress { top: 32px; }
