:root {
    --creme: #EFE6D2;
    --salbei: #6F8B7A;
    --schwarz: #0A0A0A;
    --creme-dim: rgba(239, 230, 210, 0.65);
    --creme-mid: rgba(239, 230, 210, 0.35);
    --creme-faint: rgba(239, 230, 210, 0.08);
    --salbei-dim: rgba(111, 139, 122, 0.4);
    --salbei-faint: rgba(111, 139, 122, 0.15);
    --ease: cubic-bezier(0.7, 0, 0.3, 1);
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--schwarz);
    color: var(--creme);
    font-family: 'Inter', -apple-system, sans-serif;
    overflow-x: hidden;
    cursor: none;
    line-height: 1.5;
  }

  /* === CURSOR === */
  .cursor {
    position: fixed; top: 0; left: 0;
    width: 10px; height: 10px;
    background: var(--salbei);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s var(--ease);
    transform: translate(-50%, -50%);
    will-change: transform;
  }
  .cursor.hover { width: 44px; height: 44px; background: var(--creme); }

  /* === NAV === */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--creme-faint);
  }
  .logo-mini {
    display: flex; align-items: center; gap: 14px;
  }
  .logo-mini svg { width: 38px; height: 18px; flex-shrink: 0; }
  .logo-text {
    display: flex; flex-direction: column; gap: 1px;
    font-size: 11px; line-height: 1.1;
  }
  .logo-text .social { font-weight: 700; letter-spacing: 4px; }
  .logo-text .mountain { font-weight: 300; letter-spacing: 7px; color: var(--creme-dim); }

  .nav-links {
    display: flex; gap: 36px;
    font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  }
  .nav-links a {
    color: var(--creme); text-decoration: none; font-weight: 400;
    position: relative; padding: 4px 0;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--salbei);
    transition: width 0.3s var(--ease);
  }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    background: var(--creme); color: var(--schwarz);
    padding: 12px 22px; text-decoration: none;
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    font-weight: 600;
    transition: background 0.3s var(--ease), color 0.3s var(--ease);
  }
  .nav-cta:hover { background: var(--salbei); color: var(--creme); }

  /* === GRID OVERLAY (Signature) === */
  .grid-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none; z-index: 1;
    background-image: linear-gradient(90deg, var(--creme-faint) 1px, transparent 1px);
    background-size: 8.333% 100%;
    opacity: 0.5;
  }

  /* === SECTIONS BASE === */
  section {
    position: relative;
    padding: 120px 48px;
    z-index: 2;
  }
  .container { max-width: 1400px; margin: 0 auto; }

  .section-label {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
    color: var(--salbei); margin-bottom: 28px;
  }
  .section-label::before {
    content: ''; width: 36px; height: 1px; background: var(--salbei);
  }
  .section-num {
    font-size: 11px; color: var(--creme-mid);
    font-weight: 700; letter-spacing: 2px;
  }

  /* ====================== HERO ====================== */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 140px 48px 100px;
    overflow: hidden;
  }
  .hero-inner { width: 100%; max-width: 1400px; margin: 0 auto; position: relative; z-index: 5; }

  .mountain-bg {
    position: absolute; bottom: 0; left: 0; right: 0;
    width: 100%; height: 60%;
    pointer-events: none; z-index: 1;
    will-change: transform;
  }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
    color: var(--salbei); margin-bottom: 36px;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.8s 0.2s var(--ease) forwards;
  }
  .hero-eyebrow::before {
    content: ''; width: 48px; height: 1px; background: var(--salbei);
  }
  .hero-eyebrow .dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--salbei);
    animation: pulse 2s ease-in-out infinite;
  }

  .claim {
    font-size: clamp(40px, 7.5vw, 110px);
    line-height: 1.05;
    font-weight: 300;
    letter-spacing: -0.03em;
    margin-bottom: 36px;
    max-width: 1100px;
  }
  .claim .line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.25em;
    margin-bottom: -0.15em;
  }
  .claim .line > span {
    display: inline-block;
    opacity: 0; transform: translateY(110%);
    animation: slideUp 1s var(--ease) forwards;
    padding-bottom: 0.1em;
  }
  .claim .line:nth-child(1) > span { animation-delay: 0.3s; }
  .claim .line:nth-child(2) > span { animation-delay: 0.5s; }

  .claim .accent {
    color: var(--salbei);
    font-weight: 600;
    font-style: italic;
  }

  /* Rotator — fixed: extra height for descenders (g, p, y) */
  .rotator {
    display: inline-block; position: relative;
    height: 1.2em; overflow: hidden;
    vertical-align: top;
    color: var(--salbei); font-weight: 600; font-style: italic;
  }
  .rotator-list {
    display: flex; flex-direction: column;
    transition: transform 0.8s var(--ease);
  }
  .rotator-word { display: block; line-height: 1.2; height: 1.2em; }

  .hero-sub {
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 300; line-height: 1.6;
    max-width: 560px; color: var(--creme-dim);
    margin-bottom: 48px;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.8s 0.9s var(--ease) forwards;
  }

  .cta-row {
    display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.8s 1.1s var(--ease) forwards;
  }
  .btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 18px 32px;
    font-family: inherit;
    font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
    font-weight: 600; text-decoration: none;
    cursor: none; border: none;
    transition: all 0.3s var(--ease);
  }
  .btn-primary { background: var(--creme); color: var(--schwarz); }
  .btn-primary:hover { background: var(--salbei); color: var(--creme); gap: 18px; }
  .btn-primary svg { width: 14px; height: 10px; }

  .btn-ghost {
    color: var(--creme);
    border-bottom: 1px solid var(--creme-mid);
    padding: 4px 0;
    background: transparent;
  }
  .btn-ghost:hover { color: var(--salbei); border-color: var(--salbei); }

  .side-label {
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: right center;
    font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
    color: var(--creme-mid); white-space: nowrap;
  }

  .hero-meta {
    display: flex; gap: 48px;
    margin-top: 56px;
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--creme-mid); flex-wrap: wrap;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.8s 1.3s var(--ease) forwards;
  }
  .hero-meta .pulse-dot {
    display: inline-block; width: 6px; height: 6px;
    background: var(--salbei); border-radius: 50%; margin-right: 8px;
    animation: pulse 2s ease-in-out infinite;
  }

  /* ====================== VALUE LIST ====================== */
  .value {
    border-top: 1px solid var(--creme-faint);
  }
  .value-header {
    display: grid; grid-template-columns: 1fr 2fr;
    gap: 80px; margin-bottom: 80px;
  }
  .value h2 {
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 300; line-height: 1.1;
    letter-spacing: -0.02em;
  }
  .value h2 em { color: var(--salbei); font-style: italic; font-weight: 500; }
  .value-list { display: grid; gap: 0; }
  .value-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: center; gap: 40px;
    padding: 32px 0;
    border-bottom: 1px solid var(--creme-faint);
    transition: padding-left 0.3s var(--ease);
  }
  .value-item:hover { padding-left: 16px; }
  .value-item:hover .v-arrow { transform: translateX(8px); color: var(--salbei); }
  .value-num {
    font-size: 12px; color: var(--creme-mid);
    letter-spacing: 2px; font-weight: 600;
  }
  .value-text {
    font-size: clamp(18px, 1.8vw, 26px);
    font-weight: 300; line-height: 1.3;
  }
  .value-text strong { font-weight: 600; }
  .v-arrow {
    width: 24px; color: var(--creme-mid);
    transition: transform 0.3s var(--ease), color 0.3s var(--ease);
  }

  /* ====================== MARQUEE ====================== */
  .marquee {
    padding: 60px 0;
    border-top: 1px solid var(--creme-faint);
    border-bottom: 1px solid var(--creme-faint);
    overflow: hidden;
    white-space: nowrap;
    background: var(--schwarz);
  }
  .marquee-track {
    display: inline-flex; gap: 60px;
    animation: scrollLeft 40s linear infinite;
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 200; letter-spacing: -0.02em;
    color: var(--creme);
  }
  .marquee-track .dot {
    color: var(--salbei);
    font-weight: 700;
  }
  .marquee-track span:nth-child(odd) { color: var(--creme); }

  /* ====================== SERVICES ====================== */
  .services { padding-top: 140px; }
  .services-header {
    display: grid; grid-template-columns: 1fr 2fr;
    gap: 80px; margin-bottom: 80px;
  }
  .services h2 {
    font-size: clamp(32px, 4vw, 64px);
    font-weight: 300; line-height: 1.05;
    letter-spacing: -0.03em;
  }
  .services h2 em { color: var(--salbei); font-style: italic; font-weight: 500; }

  .services-intro {
    font-size: 16px; font-weight: 300;
    color: var(--creme-dim); max-width: 500px;
    line-height: 1.6;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .service-card {
    background: rgba(239, 230, 210, 0.02);
    border: 1px solid var(--creme-faint);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
    text-decoration: none; color: inherit;
    display: flex; flex-direction: column;
    min-height: 360px;
  }
  .service-card::before {
    content: ''; position: absolute;
    bottom: 0; left: 0; width: 100%; height: 2px;
    background: var(--salbei);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s var(--ease);
  }
  .service-card:hover { background: rgba(111, 139, 122, 0.05); border-color: var(--salbei-dim); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-card:hover .s-arrow { transform: translateX(8px); color: var(--salbei); }

  .service-num {
    font-size: 11px; letter-spacing: 3px;
    color: var(--salbei); font-weight: 600;
    margin-bottom: 32px;
  }
  .service-title {
    font-size: clamp(20px, 1.8vw, 28px);
    font-weight: 400; line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  .service-sub {
    font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--salbei); font-weight: 500;
    margin-bottom: 24px;
  }
  .service-desc {
    font-size: 14px; color: var(--creme-dim);
    line-height: 1.6; margin-bottom: 32px;
    flex-grow: 1;
  }
  .service-link {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    font-weight: 600; color: var(--creme);
  }
  .s-arrow {
    width: 16px;
    transition: transform 0.3s var(--ease), color 0.3s var(--ease);
  }

  /* ====================== STATS ====================== */
  .stats {
    padding: 120px 48px;
    border-top: 1px solid var(--creme-faint);
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    max-width: 1400px; margin: 0 auto;
  }
  .stat {
    border-left: 1px solid var(--salbei);
    padding-left: 24px;
  }
  .stat-num {
    font-size: clamp(40px, 5vw, 80px);
    font-weight: 200; line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    color: var(--salbei);
  }
  .stat-num strong { font-weight: 700; }
  .stat-label {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 10px; font-weight: 600;
  }
  .stat-desc {
    font-size: 13px; color: var(--creme-dim);
    line-height: 1.5;
  }

  /* ====================== CASES ====================== */
  .cases {
    border-top: 1px solid var(--creme-faint);
    padding: 140px 48px;
  }
  .cases-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    flex-wrap: wrap; gap: 32px;
    max-width: 1400px; margin: 0 auto 64px;
  }
  .cases h2 {
    font-size: clamp(36px, 4.5vw, 72px);
    font-weight: 300; line-height: 1.05;
    letter-spacing: -0.03em; max-width: 800px;
  }
  .cases h2 em {
    color: var(--salbei); font-style: italic; font-weight: 500;
  }
  .cases-meta {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--creme-mid); text-align: right;
  }
  .cases-meta .num { color: var(--salbei); font-weight: 700; font-size: 14px; }

  .cases-grid {
    display: grid; grid-template-columns: repeat(12, 1fr);
    gap: 20px; max-width: 1400px; margin: 0 auto;
  }
  .case {
    background: rgba(239,230,210,0.02);
    border: 1px solid var(--creme-faint);
    padding: 40px; position: relative; overflow: hidden;
    transition: background 0.5s var(--ease), border-color 0.5s var(--ease), transform 0.4s var(--ease);
    text-decoration: none; color: inherit;
    display: flex; flex-direction: column; gap: 20px;
    min-height: 420px; cursor: none;
    transform-style: preserve-3d;
  }
  .case::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(111,139,122,0.08));
    opacity: 0; transition: opacity 0.5s var(--ease);
  }
  .case:hover { background: rgba(239,230,210,0.04); border-color: var(--salbei-dim); }
  .case:hover::before { opacity: 1; }
  .case:hover .case-bignum { color: var(--salbei); transform: translateY(-4px); }
  .case:hover .case-arrow {
    background: var(--salbei); border-color: var(--salbei);
    color: var(--creme); transform: rotate(-45deg);
  }
  .case-1 { grid-column: span 7; }
  .case-2 { grid-column: span 5; }
  .case-3 { grid-column: span 5; }
  .case-4 { grid-column: span 7; }

  .case-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--salbei);
  }
  .case-tag::before { content:''; width: 24px; height: 1px; background: var(--salbei); }
  .case-name {
    font-size: clamp(22px, 2.2vw, 34px);
    font-weight: 400; line-height: 1.1;
    letter-spacing: -0.02em;
  }
  .case-desc {
    font-size: 13px; color: var(--creme-dim);
    line-height: 1.6; max-width: 420px;
  }
  .case-services {
    display: flex; gap: 8px; flex-wrap: wrap;
  }
  .case-service-tag {
    font-size: 9px; letter-spacing: 1.5px;
    padding: 6px 10px; border: 1px solid var(--creme-faint);
    color: var(--creme-dim); text-transform: uppercase;
  }
  .case-bignum {
    font-size: clamp(56px, 8vw, 140px);
    font-weight: 200; line-height: 0.9;
    letter-spacing: -0.05em; color: var(--creme);
    transition: color 0.5s var(--ease), transform 0.5s var(--ease);
    margin-top: auto;
  }
  .case-bignum sup {
    font-size: 0.45em; vertical-align: top;
    color: var(--salbei); font-weight: 500;
    margin-left: 8px;
  }
  .case-arrow {
    position: absolute; top: 40px; right: 40px;
    width: 44px; height: 44px;
    border: 1px solid var(--creme-faint); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--creme); transition: all 0.3s var(--ease);
  }
  .case-arrow svg { width: 14px; height: 14px; }

  .cases-disclaimer {
    max-width: 1400px; margin: 24px auto 0;
    font-size: 10px; color: var(--creme-mid);
    letter-spacing: 2px; text-transform: uppercase;
    text-align: right;
  }

  /* Partners Strip — clean Marquee */
  .partners-strip {
    padding: 60px 0;
    overflow: hidden; white-space: nowrap;
    border-top: 1px solid var(--creme-faint);
    background: var(--schwarz);
  }
  .partners-strip-label {
    text-align: center;
    font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
    color: var(--salbei); margin-bottom: 32px;
  }
  .partners-track {
    display: inline-flex; gap: 60px;
    animation: scrollLeft 50s linear infinite;
    font-size: clamp(20px, 2.2vw, 32px);
    font-weight: 300; letter-spacing: -0.01em;
    color: var(--creme-dim);
  }
  .partners-track a {
    color: var(--creme-dim); text-decoration: none;
    transition: color 0.3s var(--ease);
    white-space: nowrap;
  }
  .partners-track a:hover { color: var(--salbei); }
  .partners-track .sep { color: var(--salbei); }
  .partners-strip:hover .partners-track { animation-play-state: paused; }

  /* ====================== FAQ ====================== */
  .faq {
    border-top: 1px solid var(--creme-faint);
    padding: 120px 48px;
  }
  .faq-grid {
    display: grid; grid-template-columns: 1fr 2fr;
    gap: 80px;
    max-width: 1400px; margin: 0 auto;
  }
  .faq h2 {
    font-size: clamp(32px, 3.5vw, 56px);
    font-weight: 300; line-height: 1.05;
    letter-spacing: -0.03em;
  }
  .faq h2 em { color: var(--salbei); font-style: italic; font-weight: 500; }

  .faq-list { display: flex; flex-direction: column; }
  .faq-item {
    border-bottom: 1px solid var(--creme-faint);
    padding: 28px 0;
    cursor: none;
  }
  .faq-item:first-child { border-top: 1px solid var(--creme-faint); }
  .faq-q {
    display: flex; justify-content: space-between; align-items: center;
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 400; gap: 24px;
    transition: color 0.3s var(--ease);
  }
  .faq-item:hover .faq-q { color: var(--salbei); }
  .faq-toggle {
    width: 14px; height: 14px; flex-shrink: 0; position: relative;
  }
  .faq-toggle::before, .faq-toggle::after {
    content: ''; position: absolute; background: currentColor;
    transition: transform 0.3s var(--ease);
  }
  .faq-toggle::before { top: 6px; left: 0; width: 100%; height: 1px; }
  .faq-toggle::after { left: 6px; top: 0; height: 100%; width: 1px; }
  .faq-item.open .faq-toggle::after { transform: scaleY(0); }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
    font-size: 15px; font-weight: 300;
    color: var(--creme-dim); line-height: 1.7;
    max-width: 720px;
  }
  .faq-item.open .faq-a {
    max-height: 300px; padding-top: 20px;
  }

  /* ====================== CTA SECTION ====================== */
  .cta-section {
    border-top: 1px solid var(--creme-faint);
    padding: 160px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: ''; position: absolute;
    top: 50%; left: 50%;
    width: 800px; height: 800px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(111, 139, 122, 0.1) 0%, transparent 60%);
    z-index: 0;
  }
  .cta-section .container { position: relative; z-index: 2; }
  .cta-section h2 {
    font-size: clamp(40px, 6vw, 96px);
    font-weight: 200; line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 36px;
  }
  .cta-section h2 em { color: var(--salbei); font-style: italic; font-weight: 500; }
  .cta-section .sub {
    font-size: 16px; font-weight: 300; color: var(--creme-dim);
    max-width: 540px; margin: 0 auto 48px;
    line-height: 1.6;
  }
  .cta-section .cta-row { justify-content: center; }

  /* ====================== FOOTER ====================== */
  footer {
    background: #060606;
    padding: 80px 48px 40px;
    border-top: 1px solid var(--creme-faint);
    position: relative;
    z-index: 10;
  }
  /* Mehr Kontrast für Footer-Text — Shader scheint nicht mehr durch */
  footer .footer-brand p,
  footer .footer-contact,
  footer .footer-contact a,
  footer .footer-col a {
    color: rgba(239, 230, 210, 0.78);
  }
  footer .footer-bottom { color: rgba(239, 230, 210, 0.55); }
  footer .footer-bottom a { color: rgba(239, 230, 210, 0.55); }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px; margin: 0 auto;
  }
  .footer-brand p {
    color: var(--creme-dim); font-size: 14px;
    font-weight: 300; line-height: 1.6; margin-top: 20px;
    max-width: 320px;
  }
  .footer-contact {
    margin-top: 28px;
    display: flex; flex-direction: column; gap: 8px;
    font-size: 13px; color: var(--creme-dim);
  }
  .footer-contact a { color: var(--creme-dim); text-decoration: none; transition: color 0.3s var(--ease); }
  .footer-contact a:hover { color: var(--salbei); }

  .footer-col h4 {
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--salbei); margin-bottom: 20px; font-weight: 600;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a {
    color: var(--creme-dim); text-decoration: none; font-size: 13px;
    transition: color 0.3s var(--ease);
  }
  .footer-col a:hover { color: var(--salbei); }

  .footer-bottom {
    max-width: 1400px; margin: 60px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--creme-faint);
    display: flex; justify-content: space-between;
    font-size: 11px; color: var(--creme-mid);
    letter-spacing: 1px;
  }
  .footer-bottom a { color: var(--creme-mid); text-decoration: none; margin-left: 24px; }
  .footer-bottom a:hover { color: var(--salbei); }

  /* === ANIMATIONS === */
  @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
  @keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
  @keyframes scrollLeft { to { transform: translateX(-50%); } }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
  }

  /* Scroll-reveal */
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* === SHADER BG === */
  .shader-bg {
    position: fixed; inset: 0; z-index: 0;
    pointer-events: none;
    opacity: 0.85;
  }

  /* === FILM GRAIN === */
  .grain {
    position: fixed; inset: -100%; width: 300%; height: 300%;
    pointer-events: none; z-index: 9997;
    opacity: 0.06;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1   0 0 0 0 1   0 0 0 0 1   0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    animation: grainShift 0.6s steps(6) infinite;
    mix-blend-mode: overlay;
  }
  @keyframes grainShift {
    0%   { transform: translate(0,0); }
    20%  { transform: translate(-3%,-2%); }
    40%  { transform: translate(2%,-3%); }
    60%  { transform: translate(-2%,3%); }
    80%  { transform: translate(3%,2%); }
    100% { transform: translate(0,0); }
  }

  /* === H2 WORD STAGGER REVEAL (no clipping, no descender issues) === */
  h2 .word-reveal {
    display: inline-block;
    /* NO overflow:hidden — descenders (g, p, y, ß) stay visible */
  }
  h2 .word-reveal > span {
    display: inline-block;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  }
  h2.revealed .word-reveal > span {
    opacity: 1;
    transform: translateY(0);
  }
  /* staggered delay set in JS via inline style */

  /* === SPOTLIGHT FOLLOWING CURSOR === */
  .spotlight {
    position: fixed; pointer-events: none;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(111,139,122,0.15) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: opacity 0.4s ease;
    will-change: transform;
    mix-blend-mode: screen;
  }

  /* === CURSOR LABEL === */
  .cursor-label {
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    background: var(--salbei); color: var(--schwarz);
    font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 100px;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s var(--ease);
    will-change: transform;
    display: flex; align-items: center; gap: 8px;
  }
  .cursor-label.show { transform: translate(-50%, -50%) scale(1); }
  .cursor-label svg { width: 10px; height: 10px; }

  /* === MOUNTAIN LAYERS - independent parallax === */
  .mountain-bg svg path { will-change: transform; }

  /* === CLICK RIPPLE === */
  .ripple {
    position: fixed; pointer-events: none;
    border-radius: 50%;
    background: var(--salbei);
    width: 12px; height: 12px;
    transform: translate(-50%, -50%) scale(0);
    z-index: 9000;
    mix-blend-mode: difference;
    animation: rippleOut 0.8s var(--ease) forwards;
  }
  @keyframes rippleOut {
    to { transform: translate(-50%, -50%) scale(15); opacity: 0; }
  }

  /* === TYPOGRAPHIC LOADER === */
  .loader {
    position: fixed; inset: 0;
    background: var(--schwarz);
    z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 0;
    transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
    overflow: hidden;
  }
  .loader.done { opacity: 0; visibility: hidden; }
  .loader-word {
    display: flex; gap: 0;
    overflow: hidden;
    line-height: 1;
    padding: 0.15em 0;
  }
  .loader-word.social {
    font-size: clamp(48px, 10vw, 140px);
    font-weight: 700; letter-spacing: 0.15em;
    color: var(--creme);
  }
  .loader-word.mountain {
    font-size: clamp(48px, 10vw, 140px);
    font-weight: 300; letter-spacing: 0.2em;
    color: var(--creme);
    margin-top: -0.08em;
  }
  .loader-letter {
    display: inline-block;
    opacity: 0; transform: translateY(110%);
    animation: letterDrop 0.7s var(--ease) forwards;
  }
  .loader-word.mountain .loader-letter {
    opacity: 0.6;
  }
  @keyframes letterDrop {
    to { opacity: 1; transform: translateY(0); }
  }
  .loader-word.mountain .loader-letter {
    animation-name: letterDropDim;
  }
  @keyframes letterDropDim {
    to { opacity: 0.6; transform: translateY(0); }
  }
  .loader-bar {
    margin-top: 40px;
    width: min(40vw, 240px);
    height: 1px;
    background: var(--creme-faint);
    position: relative;
    overflow: hidden;
  }
  .loader-bar::after {
    content: '';
    position: absolute; inset: 0;
    background: var(--salbei);
    transform: scaleX(0);
    transform-origin: left;
    animation: loadBar 2s var(--ease) forwards;
  }
  @keyframes loadBar {
    to { transform: scaleX(1); }
  }
  .loader-meta {
    margin-top: 24px;
    font-size: 10px; letter-spacing: 4px;
    color: var(--creme-mid);
    opacity: 0;
    animation: fadeInDelay 0.6s 0.8s forwards;
  }
  @keyframes fadeInDelay { to { opacity: 1; } }

  /* === SCROLL PROGRESS === */
  .scroll-progress {
    position: fixed; top: 0; left: 0;
    width: 0%; height: 2px;
    background: var(--salbei);
    z-index: 1000;
    transition: width 0.1s linear;
  }

  /* === MAGNETIC BUTTON === */
  .btn { will-change: transform; }

  /* === 3D CARD TILT === */
  .service-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    will-change: transform;
    transition: transform 0.3s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
  }
  .service-card > * { transform: translateZ(20px); transition: transform 0.4s var(--ease); }
  .service-card:hover > * { transform: translateZ(40px); }

  /* === STAT COUNTER === */
  .stat-num.counting strong { display: inline-block; }

  /* === SECTION COUNTER === */
  .section-counter {
    position: fixed; right: 32px; bottom: 32px;
    font-size: 11px; letter-spacing: 3px;
    color: var(--creme-mid); z-index: 50;
    display: flex; gap: 4px; align-items: center;
    mix-blend-mode: difference;
    transition: opacity 0.4s var(--ease);
    opacity: 0;
  }
  .section-counter.visible { opacity: 1; }
  .section-counter .num { color: var(--salbei); font-weight: 600; }

  /* === GLITCH / FLICKER ON LOGO === */
  .logo-mini.celebrating svg {
    animation: celebrate 1s var(--ease);
  }
  @keyframes celebrate {
    0% { transform: scale(1) rotate(0); }
    25% { transform: scale(1.2) rotate(-5deg); }
    50% { transform: scale(0.9) rotate(5deg); }
    75% { transform: scale(1.1) rotate(-2deg); }
    100% { transform: scale(1) rotate(0); }
  }

  /* === SHIMMER ON MARQUEE HOVER === */
  .marquee:hover .marquee-track { animation-play-state: paused; }

  /* === SCRAMBLE === */
  .scramble { display: inline-block; }

  /* === RESPONSIVE === */
  /* === MOBILE NAV === */
  .mobile-menu-btn {
    display: none;
    background: transparent; border: none;
    padding: 8px; cursor: pointer;
    width: 32px; height: 32px;
    flex-direction: column; justify-content: center;
    gap: 6px;
  }
  .mobile-menu-btn span {
    display: block; width: 20px; height: 2px;
    background: var(--creme);
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }
  body.menu-open .mobile-menu-btn span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
  body.menu-open .mobile-menu-btn span:nth-child(2) { opacity: 0; }
  body.menu-open .mobile-menu-btn span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }

  .mobile-menu {
    position: fixed; inset: 0;
    background: var(--schwarz);
    z-index: 99;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    gap: 32px;
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
  }
  body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
  .mobile-menu a {
    color: var(--creme); text-decoration: none;
    font-size: clamp(28px, 7vw, 42px);
    font-weight: 300; letter-spacing: -0.02em;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s var(--ease);
  }
  body.menu-open .mobile-menu a {
    opacity: 1; transform: translateY(0);
  }
  body.menu-open .mobile-menu a:nth-child(1) { transition-delay: 0.1s; }
  body.menu-open .mobile-menu a:nth-child(2) { transition-delay: 0.16s; }
  body.menu-open .mobile-menu a:nth-child(3) { transition-delay: 0.22s; }
  body.menu-open .mobile-menu a:nth-child(4) { transition-delay: 0.28s; }
  body.menu-open .mobile-menu a:nth-child(5) { transition-delay: 0.34s; }
  .mobile-menu a:hover { color: var(--salbei); }
  .mobile-menu-footer {
    position: absolute; bottom: 32px;
    display: flex; flex-direction: column; gap: 6px;
    text-align: center;
    font-size: 13px; color: var(--creme-dim);
    opacity: 0; transition: opacity 0.5s var(--ease) 0.4s;
  }
  body.menu-open .mobile-menu-footer { opacity: 1; }
  .mobile-menu-footer a { font-size: 14px; }

  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .case-1, .case-2, .case-3, .case-4 { grid-column: span 12; }
    .value-header, .services-header, .faq-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    nav { padding: 14px 20px; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    section { padding: 70px 20px; }
    .hero { padding: 110px 20px 60px; min-height: auto; }
    body { cursor: auto; }
    .cursor, .spotlight, .cursor-label, .section-counter { display: none; }
    .grain { animation-duration: 1.2s; opacity: 0.04; } /* less aggressive on mobile */
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .side-label { display: none; }
    .hero-eyebrow { font-size: 10px; letter-spacing: 3px; }
    .claim { font-size: clamp(40px, 13vw, 64px); }
    .hero-sub { font-size: 15px; }
    .cta-row { gap: 16px; }
    .btn { padding: 16px 24px; font-size: 11px; }
    .hero-meta { gap: 20px; margin-top: 36px; font-size: 9px; letter-spacing: 2px; }
    .value-item {
      grid-template-columns: 40px 1fr 20px;
      gap: 16px; padding: 22px 0;
    }
    .value-text { font-size: 18px; }
    .value-item:hover { padding-left: 0; } /* disable hover-shift on touch */
    .marquee { padding: 36px 0; }
    .marquee-track { font-size: 32px; }
    .service-card { padding: 32px 24px; min-height: 280px; }
    .stat-num { font-size: 56px; }
    .cases { padding: 70px 20px; }
    .cases-header { margin-bottom: 40px; }
    .case { padding: 28px; min-height: 360px; }
    .case-arrow { top: 24px; right: 24px; width: 36px; height: 36px; }
    .case-bignum { font-size: 64px; }
    .case-name { font-size: 22px; }
    .partners-strip { padding: 40px 0; }
    .partners-track { font-size: 22px; gap: 32px; }
    .faq { padding: 80px 20px; }
    .faq-q { font-size: 16px; gap: 16px; padding-right: 4px; }
    .cta-section { padding: 100px 20px; }
    .cta-section h2 { font-size: clamp(40px, 12vw, 64px); }
    .nav-cta { padding: 10px 16px; font-size: 10px; }
    .cases-meta { text-align: left; }
    /* Bigger tap targets */
    .nav-cta, .btn, .faq-item, .case, .service-card, .value-item, .partner { min-height: 44px; }
  }
  @media (max-width: 480px) {
    .marquee-track { font-size: 26px; }
    .stat-num { font-size: 48px; }
    .case-bignum { font-size: 52px; }
    .loader-word.social, .loader-word.mountain {
      font-size: 48px; letter-spacing: 0.1em;
    }
    .loader-word.mountain { letter-spacing: 0.14em; }
  }
  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    .grain, .marquee-track, .partners-track { animation: none !important; }
  }
/* ============================================
   HOTFIX v2 — appended fixes
   ============================================ */

/* === DROPDOWN MENU === */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  cursor: pointer;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid var(--creme-faint);
  padding: 12px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s var(--ease);
  z-index: 200;
  margin-top: 8px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  font-size: 12px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase;
  color: var(--creme) !important;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav-dropdown-menu a:hover {
  background: rgba(111,139,122,0.12);
  color: var(--salbei) !important;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a span {
  color: var(--salbei);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.5px;
}

/* === HERO META — kein Springen mehr === */
.hero-meta {
  display: flex !important;
  flex-wrap: wrap;
  gap: 32px 48px;
  margin-top: 56px;
  align-items: center;
}
.hero-meta > span {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--creme-mid);
}

/* === Footer Brand — Logo-Größe forciert === */
footer .logo-mini { display: inline-flex; align-items: center; gap: 14px; }
footer .logo-mini svg { width: 42px !important; height: 20px !important; flex-shrink: 0 !important; }
footer .logo-text { display: flex !important; flex-direction: column !important; gap: 1px !important; font-size: 11px !important; line-height: 1.1 !important; }
footer .logo-text .social { font-weight: 700 !important; letter-spacing: 4px !important; }
footer .logo-text .mountain { font-weight: 300 !important; letter-spacing: 7px !important; color: var(--creme-dim) !important; }

/* === Mobile Kontakt-Button polish === */
@media (max-width: 768px) {
  nav { gap: 12px; }
  .nav-cta {
    padding: 11px 18px !important;
    font-size: 10px !important;
    letter-spacing: 2px !important;
    border-radius: 0;
    line-height: 1;
  }
  /* Hero meta — kompakter, 2 Spalten auf Mobile */
  .hero-meta { gap: 16px 24px; margin-top: 40px; font-size: 9px; letter-spacing: 2px; }
  /* Dropdown wird auf Mobile zur normalen Liste */
  .nav-dropdown { display: none; }
}

/* === Logo im Header: nicht klickfähig durchgängig — sicherstellen dass es zur Startseite verlinkt === */
nav .logo-mini { cursor: pointer; }

/* === Page-Transition: keine wiederkehrende Loader-Animation === */
body:not(.is-front) .loader {
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

/* === HOTFIX v3 — Contrast & Polish === */

/* "Weitere Leistungen" Cards — lesbarer Text */
.service-card {
  background: rgba(239,230,210,0.045) !important;
  border: 1px solid rgba(239,230,210,0.12) !important;
}
.service-card:hover {
  background: rgba(111,139,122,0.08) !important;
  border-color: var(--salbei-dim) !important;
}
.service-card .service-title {
  color: var(--creme) !important;
  font-weight: 500 !important;
}
.service-card .service-desc {
  color: rgba(239,230,210,0.78) !important;
}
.service-card .service-num {
  color: var(--salbei) !important;
  font-weight: 700 !important;
  letter-spacing: 3px !important;
}
.service-card .service-link {
  color: var(--creme) !important;
  font-weight: 700 !important;
}
.service-card .service-link:hover {
  color: var(--salbei) !important;
}

/* Kontakt-Button Desktop polish */
.nav-cta {
  padding: 14px 26px !important;
  font-size: 11px !important;
  letter-spacing: 3px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  border: 1px solid transparent;
  position: relative;
}
.nav-cta:hover {
  background: var(--salbei) !important;
  color: var(--creme) !important;
}
@media (max-width: 768px) {
  .nav-cta {
    padding: 12px 18px !important;
    font-size: 10px !important;
    letter-spacing: 2px !important;
  }
}

/* Loader hide bei Übergang sicherstellen */
.loader.done { opacity: 0 !important; visibility: hidden !important; pointer-events: none !important; }

/* === HOTFIX v3 — Contrast, Mobile, Polish === */

/* "Vertrauen aus Tirol" Label — lesbar machen */
.partners-strip-label {
  color: var(--salbei) !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  opacity: 1 !important;
}

/* Side-Label "EST 2020 INNSBRUCK TIROL" — lesbar machen */
.side-label {
  color: rgba(239, 230, 210, 0.55) !important;
  font-weight: 600 !important;
  font-size: 10px !important;
}

/* Marquee Tags — bessere Sichtbarkeit */
.marquee-track {
  color: var(--creme) !important;
}
.marquee-track .dot {
  color: var(--salbei) !important;
  opacity: 1;
}

/* === DROPDOWN MENU REFINED === */
.nav-dropdown-menu {
  background: rgba(10,10,10,0.98) !important;
  backdrop-filter: blur(30px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(30px) saturate(1.4) !important;
  border: 1px solid rgba(239,230,210,0.18) !important;
  padding: 16px 0 !important;
  min-width: 280px !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6) !important;
  border-radius: 0 !important;
}
.nav-dropdown-menu a {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  padding: 14px 24px !important;
  font-size: 11px !important;
  letter-spacing: 2px !important;
  font-weight: 600 !important;
  border-bottom: 1px solid rgba(239,230,210,0.05);
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover {
  background: rgba(111,139,122,0.15) !important;
  padding-left: 30px !important;
  color: var(--creme) !important;
}
.nav-dropdown-menu a span {
  color: var(--salbei) !important;
  font-weight: 700 !important;
  font-size: 10px !important;
  min-width: 16px;
}

/* === MOBILE FIXES === */
@media (max-width: 768px) {
  /* Stats — 1 Spalte statt 2x2 damit nichts abgeschnitten wird */
  .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .stat {
    padding-left: 20px !important;
  }
  .stat-num {
    font-size: 64px !important;
  }
  .stat-label {
    font-size: 11px !important;
    letter-spacing: 2.5px !important;
  }
  .stat-desc {
    font-size: 14px !important;
    color: rgba(239,230,210,0.75) !important;
  }

  /* Nav — Kontakt-Button kleiner damit nichts überlappt */
  nav {
    padding: 12px 16px !important;
    gap: 8px !important;
  }
  .nav-cta {
    padding: 10px 14px !important;
    font-size: 9px !important;
    letter-spacing: 1.5px !important;
  }
  .nav-logo-text, .logo-text {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    font-size: 9px !important;
  }
  .logo-mini svg, .nav-logo svg {
    width: 32px !important;
    height: 15px !important;
  }

  /* Partners-strip-label lesbar auf Mobile */
  .partners-strip-label {
    font-size: 10px !important;
    padding: 0 20px;
    text-align: center;
  }

  /* Cases-Grid auf Mobile sauber stacken */
  .cases-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .case-1, .case-2, .case-3, .case-4 {
    grid-column: 1 / -1 !important;
  }

  /* Marquee kompakter */
  .marquee, .partners-strip {
    overflow-x: hidden;
  }

  /* Side-Label auf Mobile ausblenden — gibt eh kein Platz */
  .side-label {
    display: none !important;
  }
}

/* Mobile sehr klein */
@media (max-width: 420px) {
  .stat-num { font-size: 52px !important; }
  .nav-cta {
    padding: 9px 12px !important;
    font-size: 9px !important;
  }
  .logo-text .social { letter-spacing: 3px !important; }
  .logo-text .mountain { letter-spacing: 5px !important; }
}

/* === HOTFIX v4 — MAXIMUM SPECIFICITY === */

/* "Vertrauen aus Tirol" Label — VOLLE Creme, klar lesbar */
body .partners-strip-label,
.partners-strip .partners-strip-label {
  color: var(--creme) !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  letter-spacing: 4px !important;
  opacity: 1 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Side-Label "EST · 2020" reposition: deutlich weiter rein, kein Rand mehr */
body .side-label {
  right: 60px !important;
  top: 55% !important;
  color: var(--creme) !important;
  opacity: 0.7 !important;
  font-weight: 600 !important;
  font-size: 11px !important;
  letter-spacing: 4px !important;
}
@media (max-width: 1100px) {
  body .side-label { display: none !important; }
}

/* Dropdown — Nummern entfernen, sauberer Look */
body .nav-dropdown-menu a span {
  display: none !important;
}
body .nav-dropdown-menu a {
  padding: 16px 28px !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  color: rgba(239,230,210,0.85) !important;
  font-size: 11px !important;
  border-bottom: 1px solid rgba(239,230,210,0.06) !important;
}
body .nav-dropdown-menu a:hover {
  background: rgba(111,139,122,0.18) !important;
  color: var(--creme) !important;
  padding-left: 34px !important;
}
body .nav-dropdown-menu a:last-child { border-bottom: none !important; }

/* === Mobile MAXIMUM specificity === */
@media (max-width: 768px) {
  body .stats-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    max-width: 100% !important;
  }
  body .stat {
    padding-left: 16px !important;
    border-left-width: 2px !important;
  }
  body .stat-num {
    font-size: 56px !important;
    line-height: 0.9 !important;
  }
  body .stat-label {
    font-size: 11px !important;
    margin-bottom: 8px !important;
  }
  body .stat-desc {
    font-size: 13px !important;
    color: rgba(239,230,210,0.78) !important;
    line-height: 1.45 !important;
  }

  /* Cases-Grid: garantiert eine Spalte */
  body .cases-grid {
    display: grid !important;
    grid-template-columns: minmax(0,1fr) !important;
    gap: 16px !important;
    width: 100% !important;
  }
  body .case-1,
  body .case-2,
  body .case-3,
  body .case-4 {
    grid-column: 1 / -1 !important;
    width: 100% !important;
  }

  /* Marquee Label auf Mobile */
  body .partners-strip-label {
    font-size: 10px !important;
    letter-spacing: 3px !important;
    padding: 0 16px !important;
    text-align: center;
  }

  /* Hero claim auf Mobile kleiner damit nichts überläuft */
  body .claim {
    font-size: clamp(36px, 11vw, 60px) !important;
  }
}

/* === Extracted Elementor Images === */
.sm-elementor-img {
  margin: 32px 0;
  border-radius: 0;
  overflow: hidden;
}
.sm-elementor-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Service-Prose erweitern für Elementor-extracted content */
.service-prose h1, .service-prose h2, .service-prose h3, .service-prose h4 {
  color: var(--creme);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.service-prose h1 { font-size: clamp(32px, 4vw, 56px); margin: 64px 0 24px; }
.service-prose h2 { font-size: clamp(24px, 2.4vw, 36px); margin: 56px 0 20px; }
.service-prose h3 { font-size: clamp(20px, 2vw, 28px); margin: 40px 0 16px; }
.service-prose h4 { font-size: clamp(17px, 1.6vw, 22px); margin: 32px 0 12px; }
.service-prose h2:first-child, .service-prose h1:first-child { margin-top: 0; }
.service-prose p {
  margin-bottom: 20px;
  color: var(--creme-dim);
  font-size: 17px;
  line-height: 1.75;
}
.service-prose a { color: var(--salbei); text-decoration: underline; text-underline-offset: 4px; }
.service-prose strong { color: var(--creme); font-weight: 600; }
.service-prose em { color: var(--salbei); font-style: italic; }
.service-prose img { max-width: 100%; height: auto; }
@media (max-width: 768px) {
  .service-prose h1 { font-size: clamp(28px, 8vw, 40px); }
  .service-prose h2 { font-size: clamp(22px, 6vw, 30px); }
  .service-prose p { font-size: 15px; }
}

/* === HOTFIX v5 — MAXIMUM VISIBILITY === */

/* Word-Reveal Animation komplett DEAKTIVIEREN damit Text immer voll sichtbar */
body h2 .word-reveal,
body h2 .word-reveal > span {
  display: inline !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
body h2 { color: var(--creme) !important; font-weight: 400 !important; }
body h2 em { color: var(--salbei) !important; }

/* Section labels voll sichtbar */
body .section-label {
  color: var(--creme) !important;
  font-weight: 600 !important;
  opacity: 1 !important;
}
body .section-num { color: var(--salbei) !important; }

/* Value-Liste: Text klar sichtbar */
body .value-text { color: var(--creme) !important; font-weight: 300 !important; }
body .value-text strong { color: var(--creme) !important; font-weight: 600 !important; }
body .value-num { color: var(--creme-mid) !important; font-weight: 700 !important; }
body .v-arrow { color: var(--creme-mid) !important; }

/* Hero-Sub mehr Kontrast */
body .hero-sub { color: rgba(239, 230, 210, 0.92) !important; }

/* Hero-Meta lesbar */
body .hero-meta > span {
  color: rgba(239, 230, 210, 0.75) !important;
  font-weight: 500 !important;
}
body .hero-meta .pulse-dot { background: var(--salbei) !important; }

/* Shader-BG dezenter — damit Text immer Kontrast hat */
body .shader-bg { opacity: 0.55 !important; }

/* Grid-Overlay dezenter */
body .grid-overlay { opacity: 0.25 !important; }

/* FAQ-Text mehr Kontrast */
body .faq-q { color: var(--creme) !important; font-weight: 400 !important; }
body .faq-a { color: rgba(239, 230, 210, 0.82) !important; }

/* CTA-Section bigtext lesbar */
body .cta-section h2 { color: var(--creme) !important; }
body .cta-section .sub { color: rgba(239, 230, 210, 0.85) !important; }

/* Case-Cards Text lesbar */
body .case .case-name { color: var(--creme) !important; font-weight: 500 !important; }
body .case .case-desc { color: rgba(239, 230, 210, 0.82) !important; }
body .case .case-bignum { color: var(--creme) !important; }
body .case .case-tag { color: var(--salbei) !important; font-weight: 600 !important; }

/* Service-Card Text auf JEDER Seite lesbar */
body .service-card .service-title { color: var(--creme) !important; font-weight: 500 !important; }
body .service-card .service-desc { color: rgba(239, 230, 210, 0.82) !important; }
body .service-card .service-link { color: var(--creme) !important; }

/* Service-Prose Content (extracted Elementor or Fallback) */
body .service-prose h1,
body .service-prose h2,
body .service-prose h3,
body .service-prose h4 { color: var(--creme) !important; }
body .service-prose p { color: rgba(239, 230, 210, 0.85) !important; }
body .service-prose ul li { color: rgba(239, 230, 210, 0.85) !important; }
body .service-prose ul li strong { color: var(--creme) !important; }
body .service-prose strong { color: var(--creme) !important; }

/* Footer hat Background, also volle Lesbarkeit */
footer * { color: inherit; }

/* === HOTFIX v6 — Header/Hamburger Polish + Final === */

/* Header / Nav sauberer */
body nav {
  background: rgba(10,10,10,0.85) !important;
  backdrop-filter: blur(28px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(28px) saturate(1.4) !important;
  border-bottom: 1px solid rgba(239,230,210,0.08) !important;
  padding: 18px 40px !important;
}
body nav .nav-links {
  gap: 40px !important;
}
body nav .nav-links a {
  font-size: 12px !important;
  letter-spacing: 2px !important;
  font-weight: 500 !important;
  color: var(--creme) !important;
}
body nav .nav-cta {
  background: var(--creme) !important;
  color: var(--schwarz) !important;
  padding: 13px 24px !important;
  font-size: 11px !important;
  letter-spacing: 2.5px !important;
  font-weight: 700 !important;
}

/* Hamburger Mobile-Menu polished */
body .mobile-menu-btn {
  display: none;
  background: transparent !important;
  border: none !important;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 0;
}
body .mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--creme);
  border-radius: 0;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
body.menu-open .mobile-menu-btn span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
body.menu-open .mobile-menu-btn span:nth-child(2) { opacity: 0; }
body.menu-open .mobile-menu-btn span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }

/* Mobile Menu Fullscreen Overlay */
body .mobile-menu {
  position: fixed; inset: 0;
  background: rgba(10,10,10,0.98) !important;
  backdrop-filter: blur(40px);
  z-index: 9990;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
  padding: 60px 24px;
}
body.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
}
body .mobile-menu a {
  color: var(--creme) !important;
  font-size: clamp(24px, 6vw, 36px) !important;
  font-weight: 400 !important;
  letter-spacing: 1px !important;
  text-decoration: none;
  text-transform: none !important;
  padding: 8px 0;
  transition: color 0.2s var(--ease);
}
body .mobile-menu a:hover { color: var(--salbei) !important; }
body .mobile-menu-footer {
  position: absolute;
  bottom: 40px;
  left: 0; right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--creme-dim);
}
body .mobile-menu-footer a {
  font-size: 14px !important;
  color: var(--creme-dim) !important;
}

@media (max-width: 768px) {
  body nav { padding: 12px 16px !important; gap: 8px !important; }
  body nav .nav-links { display: none !important; }
  body nav .nav-cta { display: none !important; }
  body nav .mobile-menu-btn { display: flex !important; }
  body nav .logo-mini svg { width: 30px !important; height: 14px !important; }
}

/* Service-Page Hero Layout sauberer */
body .hero .hero-eyebrow {
  margin-bottom: 28px !important;
  color: var(--salbei) !important;
  font-weight: 600 !important;
  letter-spacing: 3px !important;
}

/* Sicherstellen dass ALLES gut lesbar ist (Catchall) */
body section h1,
body section h2,
body section h3 {
  color: var(--creme) !important;
}

/* === HOTFIX v7 — Buttons + Case-Bignum === */

/* Buttons mit maximaler Specificity — wurden plötzlich 26px statt 12px */
html body .btn,
html body a.btn,
html body button.btn,
html body .btn-primary,
html body .btn-ghost,
html body a.btn-primary,
html body a.btn-ghost {
  font-size: 12px !important;
  letter-spacing: 2.5px !important;
  font-weight: 700 !important;
  padding: 18px 32px !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}
html body .btn-ghost {
  padding: 6px 0 !important;
  background: transparent !important;
  border-bottom: 1px solid var(--creme-mid) !important;
}
html body .btn-primary svg,
html body .btn-ghost svg { width: 14px !important; height: 10px !important; }

/* Case-Bignum — sup darf nicht zu groß werden, kein Wrap-Bruch */
body .case-bignum {
  font-size: clamp(48px, 7vw, 110px) !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: baseline !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  overflow: hidden !important;
}
body .case-bignum sup {
  font-size: 0.18em !important;
  font-weight: 500 !important;
  color: var(--salbei) !important;
  margin-left: 10px !important;
  vertical-align: top !important;
  display: inline-block !important;
  line-height: 1.2 !important;
  white-space: normal !important;
  max-width: 60% !important;
  letter-spacing: 1px !important;
  text-transform: none !important;
}
@media (max-width: 768px) {
  body .case-bignum { font-size: 56px !important; flex-wrap: wrap !important; }
  body .case-bignum sup { font-size: 0.22em !important; }
}

/* === HOTFIX v8 — Logo clickable === */
html body nav a.logo-mini {
  cursor: pointer !important;
  pointer-events: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 14px !important;
  text-decoration: none !important;
  color: inherit !important;
  transition: opacity 0.3s var(--ease);
}
html body nav a.logo-mini:hover { opacity: 0.75; }
html body nav a.logo-mini svg,
html body nav a.logo-mini .logo-text,
html body nav a.logo-mini .logo-text * {
  pointer-events: none !important;
}

/* === FINAL v9 — Service-Prose stark erhöhter Kontrast + Buttons === */

/* Service-Prose deutlich heller — über Shader nicht ausgewaschen */
html body .service-prose,
html body .service-prose p,
html body .service-prose li {
  color: var(--creme) !important;
}
html body .service-prose p { color: rgba(239,230,210,0.9) !important; }
html body .service-prose ul li { color: rgba(239,230,210,0.9) !important; }
html body .service-prose ul li strong { color: var(--creme) !important; }
html body .service-prose strong { color: var(--creme) !important; }
html body .service-prose h2 { 
  color: var(--creme) !important;
  font-size: clamp(28px, 3vw, 44px) !important;
  font-weight: 300 !important;
  margin: 56px 0 24px !important;
  letter-spacing: -0.02em !important;
}
html body .service-prose h2:first-child { margin-top: 0 !important; }
html body .service-prose a {
  color: var(--salbei) !important;
  text-decoration: underline !important;
  text-underline-offset: 4px !important;
}

/* === SERVICE-PROSE Visual Upgrade === */
html body .service-content {
  padding: 100px 48px !important;
  position: relative;
  z-index: 5;
}
html body .service-prose {
  max-width: 880px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.75;
  color: var(--creme) !important;
}

/* h2 — Section Trenner mit Linie */
html body .service-prose h2 {
  font-size: clamp(28px, 3.4vw, 48px) !important;
  font-weight: 300 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.1 !important;
  margin: 80px 0 32px !important;
  padding-top: 56px !important;
  position: relative !important;
  color: var(--creme) !important;
}
html body .service-prose h2::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 1px;
  background: var(--salbei);
}
html body .service-prose h2:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
html body .service-prose h2:first-child::before { display: none; }

/* h3 — Paket-Header */
html body .service-prose h3 {
  font-size: clamp(20px, 2vw, 28px) !important;
  font-weight: 500 !important;
  color: var(--salbei) !important;
  letter-spacing: -0.02em !important;
  margin: 48px 0 16px !important;
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 14px !important;
}
html body .service-prose h3::before {
  content: '/';
  color: var(--creme-mid);
  font-weight: 300;
  font-size: 0.7em;
}

/* p — bessere Lesbarkeit + erste p nach h2 als Lead */
html body .service-prose p {
  font-size: 17px !important;
  line-height: 1.75 !important;
  color: rgba(239,230,210,0.88) !important;
  margin: 0 0 22px !important;
  max-width: 720px;
}
html body .service-prose h2 + p {
  font-size: 19px !important;
  color: var(--creme) !important;
  font-weight: 300 !important;
  margin-bottom: 32px !important;
}

/* Lists — Cards-like Look */
html body .service-prose ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 32px 0 !important;
  display: grid;
  gap: 4px;
}
html body .service-prose ul li {
  padding: 22px 28px 22px 56px !important;
  position: relative !important;
  background: rgba(239,230,210,0.025) !important;
  border-left: 2px solid var(--salbei) !important;
  color: rgba(239,230,210,0.9) !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
  transition: background 0.3s var(--ease), padding-left 0.3s var(--ease);
}
html body .service-prose ul li:hover {
  background: rgba(111,139,122,0.08) !important;
  padding-left: 64px !important;
}
html body .service-prose ul li::before {
  content: '→';
  position: absolute;
  left: 24px; top: 22px;
  color: var(--salbei);
  font-weight: 700;
  font-size: 18px;
}
html body .service-prose ul li strong {
  color: var(--creme) !important;
  font-weight: 600 !important;
  display: block;
  margin-bottom: 4px;
}

/* Images — bigger, with frame */
html body .service-prose figure.sm-img {
  margin: 64px 0 !important;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--creme-faint);
}
html body .service-prose figure.sm-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(10,10,10,0.4) 100%);
  pointer-events: none;
}
html body .service-prose figure.sm-img img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.92) contrast(1.05);
  transition: filter 0.4s var(--ease), transform 0.5s var(--ease);
}
html body .service-prose figure.sm-img:hover img {
  filter: brightness(1) contrast(1);
  transform: scale(1.02);
}

/* Buttons innerhalb des Content */
html body .service-prose p a.btn-primary {
  background: var(--creme) !important;
  color: var(--schwarz) !important;
  display: inline-flex !important;
  padding: 16px 28px !important;
  font-size: 12px !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  margin: 16px 0 !important;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  border-radius: 0 !important;
  align-items: center !important;
}
html body .service-prose p a.btn-primary:hover {
  background: var(--salbei) !important;
  color: var(--creme) !important;
}

/* Value-Items als Links jetzt clickable styling */
html body a.value-item {
  display: grid !important;
  grid-template-columns: 60px 1fr 60px !important;
  align-items: center !important;
  gap: 40px !important;
  padding: 32px 0 !important;
  border-bottom: 1px solid var(--creme-faint) !important;
  text-decoration: none !important;
  color: inherit !important;
  cursor: pointer !important;
  transition: padding-left 0.3s var(--ease), background 0.3s var(--ease) !important;
}
html body a.value-item:hover {
  padding-left: 20px !important;
  background: rgba(111,139,122,0.04) !important;
}
html body a.value-item:hover .v-arrow {
  transform: translateX(10px) !important;
  color: var(--salbei) !important;
}
html body a.value-item:hover .value-text {
  color: var(--salbei) !important;
}

@media (max-width: 768px) {
  html body .service-content { padding: 60px 20px !important; }
  html body .service-prose p { font-size: 15px !important; }
  html body .service-prose h2 { margin: 56px 0 20px !important; padding-top: 36px !important; }
  html body .service-prose ul li { padding: 18px 20px 18px 44px !important; font-size: 14px !important; }
  html body .service-prose ul li::before { left: 18px; top: 18px; }
  html body .service-prose figure.sm-img { margin: 40px 0 !important; }
  html body a.value-item { grid-template-columns: 40px 1fr 24px !important; gap: 16px !important; padding: 24px 0 !important; }
}

/* ============================================================
   POLISH v2 — User-Feedback-Fixes (Final Pass)
   ============================================================ */

/* === BUTTONS: subtler, kein Blend-Effekt mehr === */
html body .btn-primary,
html body a.btn-primary,
html body button.btn-primary {
  background: transparent !important;
  color: var(--creme) !important;
  border: 1px solid var(--creme) !important;
  padding: 16px 28px !important;
  position: relative;
  overflow: hidden;
}
html body .btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--creme);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease);
  z-index: 0;
}
html body .btn-primary > * { position: relative; z-index: 1; transition: color 0.4s var(--ease); }
html body .btn-primary:hover { color: var(--schwarz) !important; }
html body .btn-primary:hover::before { transform: translateX(0); }

/* btn-ghost — unauffälliger */
html body .btn-ghost,
html body a.btn-ghost {
  color: var(--creme) !important;
  background: transparent !important;
  border-bottom: 1px solid rgba(239,230,210,0.4) !important;
  padding: 6px 0 !important;
}
html body .btn-ghost:hover {
  color: var(--salbei) !important;
  border-color: var(--salbei) !important;
}

/* === Service-Prose: Bilder mit border-radius === */
html body .service-prose figure.sm-img,
html body .sm-elementor-img {
  border-radius: 24px !important;
  overflow: hidden !important;
  border: 1px solid rgba(239,230,210,0.08) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
html body .service-prose figure.sm-img img {
  border-radius: 0 !important;
}

/* Service-Prose Buttons (Jetzt anfragen / Alle Leistungen / Telefon) — subtler */
html body .service-prose p a.btn-primary,
html body .service-prose p a[class*="btn"] {
  background: transparent !important;
  color: var(--creme) !important;
  border: 1px solid var(--creme) !important;
  padding: 14px 24px !important;
  font-size: 12px !important;
  letter-spacing: 2.5px !important;
}
html body .service-prose p a.btn-primary:hover {
  background: var(--creme) !important;
  color: var(--schwarz) !important;
}

/* Telefon-Buttons in Service-Prose → "Jetzt anrufen" Text statt Nummer */
html body .service-prose p a[href^="tel:"] {
  font-size: 0 !important;
  position: relative;
}
html body .service-prose p a[href^="tel:"]::before {
  content: 'Jetzt anrufen';
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

/* === Service Dropdown — moderner Pfeil === */
html body .nav-dropdown > a {
  position: relative;
  padding-right: 18px !important;
}
html body .nav-dropdown > a::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s var(--ease);
}
html body .nav-dropdown:hover > a::after {
  transform: translateY(-30%) rotate(225deg);
}
/* Remove the old ↓ char */
html body .nav-dropdown > a {
  font-size: 0 !important;
}
html body .nav-dropdown > a::first-letter {
  font-size: 0 !important;
}
html body .nav-dropdown > a span,
html body .nav-dropdown > a::placeholder { font-size: 0; }
/* Better: explicitly set the visible label */
html body .nav-dropdown > a {
  position: relative;
  font-size: 0 !important;
}
html body .nav-dropdown > a::before {
  content: 'Service';
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
  color: inherit;
}

/* === FOOTER: kompakter, moderner === */
html body footer {
  padding: 60px 48px 28px !important;
  background: #060606 !important;
}
html body footer .footer-grid {
  gap: 40px !important;
  grid-template-columns: 2fr 1fr 1fr 1fr !important;
}
html body footer .footer-brand p {
  font-size: 13px !important;
  margin-top: 16px !important;
  line-height: 1.55 !important;
  max-width: 280px;
}
html body footer .footer-contact {
  margin-top: 20px !important;
  gap: 6px !important;
  font-size: 12px !important;
}
html body footer .footer-col h4 {
  margin-bottom: 16px !important;
  font-size: 10px !important;
  letter-spacing: 3px !important;
}
html body footer .footer-col ul { gap: 8px !important; }
html body footer .footer-col a { font-size: 12px !important; }
html body footer .footer-bottom {
  margin-top: 40px !important;
  padding-top: 20px !important;
  font-size: 10px !important;
}
@media (max-width: 768px) {
  html body footer { padding: 50px 20px 24px !important; }
  html body footer .footer-grid { gap: 32px !important; }
}

/* === CTA-SECTION: weniger Spacer === */
html body .cta-section {
  padding: 110px 48px !important;
}
html body .cta-section h2 {
  font-size: clamp(40px, 6vw, 88px) !important;
  margin-bottom: 28px !important;
}
html body .cta-section .sub {
  font-size: 15px !important;
  margin-bottom: 36px !important;
  max-width: 480px;
}
@media (max-width: 768px) {
  html body .cta-section { padding: 80px 20px !important; }
}

/* === DROHNE-PAKETE: Listen mit h3 vorher → werden zu Cards === */
html body .service-prose h3 + ul {
  background: rgba(239,230,210,0.03) !important;
  border: 1px solid rgba(239,230,210,0.12) !important;
  border-radius: 20px !important;
  padding: 32px !important;
  margin-top: 12px !important;
  margin-bottom: 24px !important;
}
html body .service-prose h3 + ul li {
  background: transparent !important;
  border-left: none !important;
  padding: 10px 0 10px 24px !important;
  border-bottom: 1px solid rgba(239,230,210,0.08);
}
html body .service-prose h3 + ul li:last-child { border-bottom: none; }
html body .service-prose h3 + ul li:hover {
  background: transparent !important;
  padding-left: 32px !important;
}
html body .service-prose h3 + ul li::before {
  left: 0; top: 12px;
}

/* Pakete Layout — Grid auf Desktop */
@media (min-width: 900px) {
  html body .service-prose {
    /* Allow more width for prose to accommodate package cards */
  }
}

/* === KONTAKTFORMULAR — sauberes professionelles Design === */
.sm-form {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}
.sm-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.sm-form-field { display: flex; flex-direction: column; gap: 8px; }
.sm-form-field.full { grid-column: 1 / -1; }
.sm-form-field label {
  font-size: 10px !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  color: var(--salbei) !important;
  font-weight: 600 !important;
  margin-bottom: 0 !important;
}
.sm-form input[type="text"],
.sm-form input[type="email"],
.sm-form input[type="tel"],
.sm-form textarea,
.sm-form select {
  background: rgba(239,230,210,0.04) !important;
  border: 1px solid rgba(239,230,210,0.15) !important;
  color: var(--creme) !important;
  padding: 14px 18px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  border-radius: 8px !important;
  width: 100% !important;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease) !important;
}
.sm-form input:focus,
.sm-form textarea:focus,
.sm-form select:focus {
  outline: none !important;
  border-color: var(--salbei) !important;
  background: rgba(239,230,210,0.06) !important;
}
.sm-form textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.sm-form select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 7' stroke='%236F8B7A' stroke-width='1.5' fill='none'><path d='M1 1l5 5 5-5'/></svg>"); background-repeat: no-repeat; background-position: right 18px center; padding-right: 44px !important; }
.sm-form select option { background: #0A0A0A; color: var(--creme); }
.sm-form button[type="submit"] {
  background: transparent !important;
  color: var(--creme) !important;
  border: 1px solid var(--creme) !important;
  padding: 16px 32px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  cursor: pointer;
  margin-top: 8px;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 0 !important;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.sm-form button[type="submit"]:hover {
  background: var(--creme) !important;
  color: var(--schwarz) !important;
}
.sm-form button[type="submit"] svg { width: 14px; height: 10px; }
.sm-form-disclaimer {
  font-size: 12px !important;
  color: rgba(239,230,210,0.55) !important;
  margin-top: 4px !important;
}
.sm-form-error {
  background: rgba(225, 90, 60, 0.12);
  border: 1px solid rgba(225, 90, 60, 0.3);
  color: rgba(239,230,210,0.9);
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 14px;
}
.sm-form-success {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--salbei);
  border-radius: 20px;
  background: rgba(111,139,122,0.06);
}
.sm-form-success .success-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  color: var(--salbei);
}
.sm-form-success h3 {
  font-size: 24px !important;
  font-weight: 400 !important;
  color: var(--creme) !important;
  margin-bottom: 12px !important;
}
.sm-form-success p {
  color: rgba(239,230,210,0.78) !important;
  font-size: 15px;
}
@media (max-width: 600px) {
  .sm-form-row { grid-template-columns: 1fr; gap: 16px; }
}

/* === POLISH v3 — Spacing + Dropdown clean === */

/* Hero — Abstände kompakter zwischen Sub, CTA und Meta */
html body .hero-sub { margin-bottom: 32px !important; }
html body .hero-meta { margin-top: 36px !important; }
html body .cta-row { gap: 16px !important; }

/* === Dropdown SAUBER (font-size hack raus) === */
html body .nav-dropdown > a {
  font-size: 12px !important;
  letter-spacing: 2px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 4px 0 !important;
  position: relative;
}
html body .nav-dropdown > a::before {
  content: '→' !important;
}
html body .nav-dropdown > a::after {
  content: '' !important;
  display: inline-block !important;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s var(--ease);
  position: static !important;
  margin-left: 4px;
}
html body .nav-dropdown:hover > a::after {
  transform: rotate(225deg) translateY(-2px);
}

/* === POLISH v4 — 5 Cases Layout + FAQ Spacing === */

/* Cases-Grid: 5 Cards mit asymmetric Layout */
html body .case-1 { grid-column: span 7 !important; }
html body .case-2 { grid-column: span 5 !important; }
html body .case-3 { grid-column: span 5 !important; }
html body .case-4 { grid-column: span 7 !important; }

@media (max-width: 1024px) {
  html body .case-1,
  html body .case-2,
  html body .case-3,
  html body .case-4,
  html body .case-5 { grid-column: span 12 !important; }
}

/* FAQ und andere h2 — mehr breathing space damit Descender Platz haben */
html body .faq h2,
html body .value h2,
html body .services h2,
html body .cases h2,
html body .cta-section h2 {
  line-height: 1.1 !important;
  padding-bottom: 0.15em !important;
}

/* Section padding generell etwas mehr Luft auf Mobile */
@media (max-width: 768px) {
  html body section { padding: 80px 20px !important; }
  html body .hero { padding: 110px 20px 70px !important; }
}

/* === MOBILE: Card-Innenabstände nicht zu eng === */
@media (max-width: 768px) {
  html body .case { padding: 32px !important; }
  html body .case-name { line-height: 1.2 !important; padding-bottom: 0.1em !important; }
  html body .case-bignum { padding-bottom: 0.1em !important; }
}

/* ============================================================
   VISUAL UPGRADE — Service-Seiten mit Charakter
   ============================================================ */

/* === Button-Group: gruppierte Buttons nebeneinander === */
html body .service-prose .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin: 24px 0 40px;
}
html body .service-prose .btn-group p {
  margin: 0 !important;
  display: inline-flex;
}
html body .service-prose .btn-group p:nth-child(n+2) a.btn-primary {
  /* Zweiter Button: subtiler "Ghost" Style */
  background: transparent !important;
  border: 1px solid rgba(239,230,210,0.3) !important;
  color: var(--creme) !important;
}
html body .service-prose .btn-group p:nth-child(n+2) a.btn-primary:hover {
  background: rgba(239,230,210,0.06) !important;
  border-color: var(--salbei) !important;
  color: var(--salbei) !important;
}

/* === Service-Page: Hero deutlich impactvoller === */
html body .hero {
  position: relative;
  overflow: hidden;
}
html body .hero::after {
  content: '';
  position: absolute;
  top: 20%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(111,139,122,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

/* === Service-Prose: Visual Rhythm + Accent === */

/* Erster Lead-Paragraph (nach h1/h2 erste Sektion): GROß + Creme */
html body .service-prose h2:first-child + p,
html body .service-prose h2 + p {
  font-size: clamp(20px, 1.8vw, 26px) !important;
  line-height: 1.5 !important;
  color: var(--creme) !important;
  font-weight: 300 !important;
  max-width: 760px;
  margin-bottom: 36px !important;
}

/* h2 — größer + dramatischer Section-Marker */
html body .service-prose h2 {
  font-size: clamp(32px, 4.5vw, 60px) !important;
  font-weight: 200 !important;
  letter-spacing: -0.03em !important;
  margin-top: 120px !important;
  padding-top: 80px !important;
  position: relative !important;
}
html body .service-prose h2::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 80px; height: 1px;
  background: var(--salbei);
}
html body .service-prose h2::after {
  content: '';
  position: absolute;
  top: -4px; left: 80px;
  width: 8px; height: 8px;
  background: var(--salbei);
  border-radius: 50%;
}
html body .service-prose h2:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
html body .service-prose h2:first-child::before,
html body .service-prose h2:first-child::after {
  display: none;
}

/* Listen — moderne Cards mit Salbei-Akzent */
html body .service-prose ul li {
  background: linear-gradient(135deg, rgba(239,230,210,0.04) 0%, rgba(111,139,122,0.04) 100%) !important;
  border: 1px solid rgba(239,230,210,0.08) !important;
  border-left: 3px solid var(--salbei) !important;
  border-radius: 0 12px 12px 0 !important;
  padding: 24px 28px 24px 56px !important;
  position: relative !important;
  transition: transform 0.3s var(--ease), border-left-width 0.3s var(--ease), background 0.3s var(--ease) !important;
}
html body .service-prose ul li:hover {
  transform: translateX(8px);
  border-left-width: 5px !important;
  background: linear-gradient(135deg, rgba(111,139,122,0.1) 0%, rgba(239,230,210,0.04) 100%) !important;
}
html body .service-prose ul li::before {
  content: '→' !important;
  position: absolute !important;
  left: 22px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: var(--salbei) !important;
  font-weight: 700 !important;
  font-size: 20px !important;
}

/* Drohne-Paket-Cards (h3 + ul) — wirklich Card-Look */
html body .service-prose h3 {
  margin-top: 64px !important;
  padding: 16px 0 8px !important;
  border-bottom: 1px solid var(--creme-faint);
  font-size: clamp(20px, 2vw, 28px) !important;
  letter-spacing: -0.01em !important;
  font-weight: 500 !important;
  color: var(--salbei) !important;
  display: flex !important;
  align-items: baseline !important;
  gap: 14px !important;
}
html body .service-prose h3::before {
  content: '◆';
  font-size: 12px;
  color: var(--salbei);
}

/* Bilder noch größer + mit Decorative Frame */
html body .service-prose figure.sm-img {
  margin: 80px -60px !important;
  border-radius: 28px !important;
  position: relative;
  isolation: isolate;
}
html body .service-prose figure.sm-img::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(111,139,122,0.2);
  border-radius: 36px;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 900px) {
  html body .service-prose figure.sm-img { margin: 56px -20px !important; }
  html body .service-prose figure.sm-img::before { display: none; }
}

/* === Service-Section Background-Akzent === */
html body .service-content {
  position: relative;
  overflow: hidden;
}
html body .service-content::before {
  content: '';
  position: absolute;
  top: 10%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(111,139,122,0.08) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
html body .service-prose { position: relative; z-index: 2; }

/* === Section Number Floating in Background === */
html body .hero::before {
  content: attr(data-section-num);
  position: absolute;
  bottom: -60px;
  right: -20px;
  font-size: 28vw;
  font-weight: 900;
  color: rgba(239,230,210,0.025);
  letter-spacing: -0.05em;
  line-height: 0.8;
  pointer-events: none;
  z-index: 0;
  font-family: 'Inter', sans-serif;
}

/* === Decorative Berg-Linie zwischen Sektionen === */
html body .service-content::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--salbei), transparent);
}

/* === Mobile Spacing === */
@media (max-width: 768px) {
  html body .service-prose h2 {
    margin-top: 80px !important;
    padding-top: 56px !important;
    font-size: clamp(26px, 9vw, 40px) !important;
  }
  html body .service-prose h2 + p {
    font-size: 17px !important;
  }
  html body .service-prose ul li {
    padding: 18px 18px 18px 44px !important;
  }
  html body .service-prose ul li::before {
    left: 16px !important;
    font-size: 16px !important;
  }
  html body .service-prose .btn-group {
    flex-direction: column;
    align-items: stretch;
  }
  html body .service-prose .btn-group p a.btn-primary {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   FINAL POLISH — Mobile-Fixes + Berg-Animation
   ============================================================ */

/* === 1. Impressum + Page Mobile Layout === */
@media (max-width: 768px) {
  html body .page-content,
  html body section.page-content {
    padding: 100px 20px 60px !important;
  }
  html body .page-content .container,
  html body section.page-content > .container,
  html body section.page-content > div {
    max-width: 100% !important;
    padding: 0 !important;
  }
  html body .page-content h1,
  html body section.page-content h1 {
    font-size: clamp(36px, 10vw, 56px) !important;
    line-height: 1.05 !important;
    margin-bottom: 32px !important;
    padding-bottom: 0.1em !important;
  }
  html body .page-content .hero-sub,
  html body section.page-content p {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }
}

/* === 2. Footer Mobile — sauberer, kompakter, lesbarer === */
@media (max-width: 768px) {
  html body footer {
    padding: 48px 24px 24px !important;
  }
  html body footer .footer-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
    text-align: left !important;
  }
  html body footer .footer-brand {
    border-bottom: 1px solid rgba(239,230,210,0.08);
    padding-bottom: 32px;
  }
  html body footer .footer-brand .nav-logo,
  html body footer .footer-brand .logo-mini {
    margin-bottom: 16px;
  }
  html body footer .footer-brand p {
    font-size: 14px !important;
    max-width: 100% !important;
    margin-top: 12px !important;
  }
  html body footer .footer-contact {
    margin-top: 16px !important;
    gap: 8px !important;
    font-size: 13px !important;
  }
  html body footer .footer-col h4 {
    font-size: 10px !important;
    letter-spacing: 3px !important;
    margin-bottom: 14px !important;
  }
  html body footer .footer-col ul { gap: 10px !important; }
  html body footer .footer-col a { font-size: 14px !important; }
  html body footer .footer-bottom {
    margin-top: 32px !important;
    padding-top: 20px !important;
    flex-direction: column !important;
    gap: 12px !important;
    text-align: center !important;
    align-items: center !important;
  }
  html body footer .footer-bottom > div {
    display: flex !important;
    gap: 20px !important;
    justify-content: center !important;
  }
  html body footer .footer-bottom > div a {
    margin-left: 0 !important;
  }
}

/* === 3. Berge im Hintergrund: GROßER, ANIMIERT, ATMET === */
html body .mountain-bg {
  height: 80% !important;
  bottom: -10% !important;
  width: 120% !important;
  left: -10% !important;
  animation: mountainBreathe 16s ease-in-out infinite;
}
@keyframes mountainBreathe {
  0%, 100% { transform: translateX(0) translateY(0) scale(1); }
  33% { transform: translateX(-1.5%) translateY(-1%) scale(1.02); }
  66% { transform: translateX(1.5%) translateY(0.5%) scale(1.01); }
}
/* Mobile: weniger aggressiv, aber trotzdem da */
@media (max-width: 768px) {
  html body .mountain-bg {
    height: 65% !important;
    bottom: 0 !important;
    width: 130% !important;
    left: -15% !important;
    opacity: 0.85;
  }
  html body .mountain-bg svg path {
    /* Make ranges denser auf mobile via stroke modifiers */
  }
}

/* === 4. Mobile Menu Footer (mail/tel) — komplett raus === */
html body .mobile-menu-footer { display: none !important; }

/* === Bonus: Mobile Menu — schöner zentriert === */
@media (max-width: 768px) {
  html body .mobile-menu {
    justify-content: center !important;
    padding: 60px 40px !important;
  }
  html body .mobile-menu a {
    font-size: clamp(28px, 8vw, 42px) !important;
    padding: 12px 0 !important;
  }
}

/* ============================================================
   APPLE-STYLE GLOW + WOW Service-Pages
   ============================================================ */

/* Glow-Headline für Service-Hero — Brand-harmonisch */
.glow-headline {
  position: relative;
  display: inline-block;
  font-weight: 200;
  letter-spacing: -0.04em;
  color: var(--creme);
  isolation: isolate;
  z-index: 1;
}
.glow-headline::before {
  content: attr(data-glow);
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--salbei) 0%, var(--creme) 30%, #d4a373 50%, var(--salbei) 70%, var(--creme) 100%);
  background-size: 220% 220%;
  filter: blur(28px) brightness(0.9);
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
  border-radius: 80px;
  animation: glowShift 14s ease-in-out infinite;
}
.glow-headline::after {
  content: attr(data-glow);
  position: absolute;
  inset: 0;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  background: linear-gradient(120deg, var(--salbei) 0%, var(--creme) 35%, #d4a373 55%, var(--salbei) 75%, var(--creme) 100%);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: blur(2px) brightness(1.3);
  mix-blend-mode: screen;
  z-index: 0;
  pointer-events: none;
  animation: glowShift 14s ease-in-out infinite;
}
@keyframes glowShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .glow-headline::before, .glow-headline::after { animation: none !important; }
}

/* === Service-Hero: BIG, dramatic, with glow === */
html body .hero .glow-headline {
  font-size: clamp(48px, 11vw, 160px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.04em !important;
}

/* Service-Page Hero — generally MORE dramatic */
html body .hero {
  min-height: 90vh !important;
  display: flex !important;
  align-items: center !important;
}
html body .hero .hero-inner {
  width: 100%;
}

/* === WOW Section Dividers (decorative big numbers + lines) === */
.wow-divider {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 80px 0 32px;
  padding-top: 40px;
  border-top: 1px solid var(--creme-faint);
}
.wow-divider-num {
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--salbei);
  font-family: 'Instrument Serif', serif;
  font-style: italic;
}
.wow-divider-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--creme-mid);
  font-weight: 600;
}

/* === SCROLL EFFECTS: Mountain slide + Shader intensify === */
html body .mountain-bg {
  will-change: transform, opacity;
  transition: opacity 0.6s ease-out;
}
html body .mountain-bg.mountain-slide {
  /* JS adds inline transform per-frame, this just enables hardware accel */
}

/* Shader Intensität via Custom-Property steuerbar */
html body .shader-bg {
  opacity: var(--shader-strength, 0.55);
  transition: opacity 0.6s ease-out;
  will-change: opacity;
}

/* ============================================================
   PAGE ENTER ANIMATION (Loader-Replacement)
   ============================================================ */

/* Body fade-in (KEIN transform — würde fixed-position cursor brechen) */
html body {
  animation: pageEnter 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes pageEnter {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Salbei Light-Sweep — fährt einmal von links nach rechts beim Laden */
.page-enter-sweep {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99990;
  background: linear-gradient(105deg,
    transparent 0%,
    transparent 40%,
    rgba(111, 139, 122, 0.18) 48%,
    rgba(239, 230, 210, 0.10) 50%,
    rgba(111, 139, 122, 0.18) 52%,
    transparent 60%,
    transparent 100%
  );
  background-size: 250% 100%;
  background-position: -100% 0;
  animation: lightSweep 1.4s cubic-bezier(0.7, 0, 0.3, 1) 0.1s forwards;
  opacity: 0;
}
@keyframes lightSweep {
  0%   { background-position: -100% 0; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { background-position: 200% 0; opacity: 0; }
}

/* Salbei-Glow Pulse vom Zentrum — subtil, einmalig */
.page-enter-sweep::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 139, 122, 0.35) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: centerPulse 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.05s forwards;
  filter: blur(40px);
}
@keyframes centerPulse {
  0%   { width: 0; height: 0; opacity: 0; }
  30%  { width: 600px; height: 600px; opacity: 1; }
  100% { width: 1600px; height: 1600px; opacity: 0; }
}

/* Loader-Reste komplett ausblenden (für Cache-Browser, die noch HTML cachen) */
.loader { display: none !important; }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  html body { animation: none !important; }
  .page-enter-sweep { display: none !important; }
}

/* ============================================================
   MOUNTAINS — Massive, dramatic, multi-layer animated
   ============================================================ */

/* Mountains füllen die ganze Hero-Höhe statt nur Bottom-Bereich */
html body .mountain-bg {
  height: 100% !important;
  bottom: 0 !important;
  top: 0 !important;
  width: 130% !important;
  left: -15% !important;
  opacity: 1 !important;
  pointer-events: none !important;
  z-index: 1 !important;
}
html body .mountain-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Jeder Path bekommt eigene Animation für mehr Leben */
html body .mountain-bg svg path {
  transform-origin: center bottom;
  will-change: transform;
}
html body .mountain-bg svg path:nth-child(1) {
  /* Hintergrund: subtile sway */
  animation: mountainSway1 22s ease-in-out infinite;
  opacity: 1;
}
html body .mountain-bg svg path:nth-child(2) {
  /* Mid: opposite sway */
  animation: mountainSway2 18s ease-in-out infinite;
}
html body .mountain-bg svg path:nth-child(3) {
  /* Foreground: stärker, schneller */
  animation: mountainSway3 14s ease-in-out infinite;
}

@keyframes mountainSway1 {
  0%, 100% { transform: translateX(0) scaleY(1) skewX(0deg); }
  50%      { transform: translateX(-2%) scaleY(1.03) skewX(0.3deg); }
}
@keyframes mountainSway2 {
  0%, 100% { transform: translateX(0) scaleY(1) skewX(0deg); }
  50%      { transform: translateX(1.5%) scaleY(1.04) skewX(-0.4deg); }
}
@keyframes mountainSway3 {
  0%, 100% { transform: translateX(0) scaleY(1) skewX(0deg); }
  50%      { transform: translateX(-1%) scaleY(1.06) skewX(0.5deg); }
}

/* Glow-Headline-Effekt deutlich subtiler — kein Apple-Rainbow mehr */
html body .glow-headline { font-weight: 200; }
html body .glow-headline::before {
  background: radial-gradient(ellipse at center, rgba(111,139,122,0.35) 0%, rgba(239,230,210,0.1) 40%, transparent 70%) !important;
  filter: blur(50px) !important;
  opacity: 0.7 !important;
  animation: none !important;
  border-radius: 100px !important;
}
html body .glow-headline::after { display: none !important; }

/* Mobile: Berge auch dramatisch */
@media (max-width: 768px) {
  html body .mountain-bg {
    height: 100% !important;
    width: 160% !important;
    left: -30% !important;
  }
}

/* ============================================================
   SCHLEIER ÜBERALL — Shader-BG sichtbar durch alle Sektionen
   ============================================================ */

/* Sections transparent damit Shader durchscheint */
html body section,
html body .stats,
html body .value,
html body .services,
html body .cases,
html body .partners,
html body .faq,
html body .cta-section,
html body .service-content,
html body .other-services {
  background: transparent !important;
}

/* Marquee/Partners-strip: leichter Schleier-Layer drauf, nicht solid */
html body .marquee,
html body .partners-strip {
  background: linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.8) 100%) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Shader Background: deutlich präsenter überall */
html body .shader-bg {
  opacity: 0.85 !important;
  z-index: 0 !important;
}

/* Body: schwarz bleibt als Fallback, aber kein opaker Block */
html body { background-color: var(--schwarz); }

/* Berge als SUBTILER fixed Background — folgt mit beim Scrollen */
html body .global-mountain-fixed {
  position: fixed;
  bottom: -10%;
  left: -10%;
  width: 120%;
  height: 50vh;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
  will-change: transform;
}
html body .global-mountain-fixed svg {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 768px) {
  html body .global-mountain-fixed { opacity: 0.25; height: 40vh; }
}

/* ============================================================
   HARMONIE PASS — Service-Pages an Homepage angleichen
   + Endless-Scroll-Bug killen
   ============================================================ */

/* Overflow-Control global — kein horizontaler/vertikaler Bug-Scroll */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

/* === Service-Prose vereinfachen — wie Homepage Value-List === */

/* h2: kein Salbei-Punkt mehr, nur subtile Linie */
html body .service-prose h2 {
  font-size: clamp(28px, 3.5vw, 48px) !important;
  font-weight: 300 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.1 !important;
  margin: 80px 0 24px !important;
  padding-top: 56px !important;
  position: relative !important;
  color: var(--creme) !important;
}
html body .service-prose h2::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 1px;
  background: var(--salbei);
}
html body .service-prose h2::after { display: none !important; }
html body .service-prose h2:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Lead-Paragraph subtiler */
html body .service-prose h2 + p,
html body .service-prose h2:first-child + p {
  font-size: 17px !important;
  color: rgba(239,230,210,0.85) !important;
  font-weight: 300 !important;
  margin-bottom: 28px !important;
}

/* Listen — wie Homepage Value-List: einfach mit Border-Bottom */
html body .service-prose ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 24px 0 !important;
  display: block !important;
  gap: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
}
html body .service-prose ul li {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--creme-faint) !important;
  border-left: none !important;
  border-radius: 0 !important;
  padding: 24px 0 24px 56px !important;
  position: relative !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
  color: rgba(239,230,210,0.85) !important;
  transition: padding-left 0.3s var(--ease) !important;
  transform: none !important;
}
html body .service-prose ul li:first-child {
  border-top: 1px solid var(--creme-faint) !important;
}
html body .service-prose ul li:hover {
  background: transparent !important;
  transform: none !important;
  padding-left: 64px !important;
  border-left-width: 0 !important;
}
html body .service-prose ul li::before {
  content: '→' !important;
  position: absolute !important;
  left: 0 !important;
  top: 24px !important;
  transform: none !important;
  color: var(--salbei) !important;
  font-weight: 700 !important;
  font-size: 18px !important;
}
html body .service-prose ul li strong {
  color: var(--creme) !important;
  font-weight: 600 !important;
  display: inline !important;
  margin-bottom: 0 !important;
}

/* Bilder — minimal rounded, keine decorative outline */
html body .service-prose figure.sm-img,
html body .sm-elementor-img {
  margin: 56px 0 !important;
  border-radius: 12px !important;
  border: 1px solid var(--creme-faint) !important;
  box-shadow: none !important;
  overflow: hidden;
}
html body .service-prose figure.sm-img::before,
html body .service-prose figure.sm-img::after { display: none !important; }
html body .service-prose figure.sm-img img {
  filter: none !important;
  border-radius: 0 !important;
  transition: transform 0.5s var(--ease);
}
html body .service-prose figure.sm-img:hover img {
  transform: scale(1.02);
}

/* h3 (z.B. Drohne-Pakete) — subtiler */
html body .service-prose h3 {
  font-size: 20px !important;
  font-weight: 500 !important;
  color: var(--creme) !important;
  letter-spacing: -0.01em !important;
  margin: 48px 0 12px !important;
  padding-top: 0 !important;
  border-bottom: none !important;
  display: block !important;
}
html body .service-prose h3::before {
  content: '→' !important;
}

/* h3 + ul: keine Card mehr */
html body .service-prose h3 + ul {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin-top: 8px !important;
}

/* Hero-Glow auf Service-Pages: komplett raus (war zu Apple-style) */
html body .hero .glow-headline,
html body .hero h1.glow-headline {
  /* Falls noch irgendwo gesetzt — kein Glow */
}
html body .glow-headline::before { display: none !important; }
html body .glow-headline::after { display: none !important; }

/* Service-Content/CTA: weniger Padding gegen Endless-Scroll */
html body .service-content { padding: 80px 48px !important; }
html body .other-services { padding: 80px 48px !important; }
html body .cta-section { padding: 100px 48px !important; }
@media (max-width: 768px) {
  html body .service-content { padding: 60px 20px !important; }
  html body .other-services { padding: 60px 20px !important; }
  html body .cta-section { padding: 70px 20px !important; }
}

/* Global Mountain Fixed: nicht zu weit nach unten ragen */
html body .global-mountain-fixed {
  bottom: 0 !important;
  height: 45vh !important;
}

/* Page-Enter-Sweep ::after Pulse: explizit limited */
.page-enter-sweep::after {
  max-width: 1600px !important;
  max-height: 1600px !important;
}

/* === Service-Hero: gleicher Look wie Homepage Hero === */
html body .hero h1.claim {
  letter-spacing: -0.03em !important;
}

/* === MOUNTAIN FIX — moderate Höhe, kein Stacking === */
html body .mountain-bg {
  height: 60% !important;
  top: auto !important;
  bottom: 0 !important;
  width: 110% !important;
  left: -5% !important;
  opacity: 0.9 !important;
}
/* Mountain Sway-Animation: subtiler, nicht so extrem */
html body .mountain-bg svg path:nth-child(1),
html body .mountain-bg svg path:nth-child(2),
html body .mountain-bg svg path:nth-child(3) {
  animation: none !important;
  transform: none !important;
}

/* Global Mountain: weg */
html body .global-mountain-fixed { display: none !important; }

@media (max-width: 768px) {
  html body .mountain-bg {
    height: 50% !important;
    width: 120% !important;
    left: -10% !important;
  }
}

/* === CURSOR FIX — z-index hierarchie === */
.page-enter-sweep {
  z-index: 5 !important; /* unter cursor */
}
.page-enter-sweep, .page-enter-sweep::after {
  animation-fill-mode: forwards !important;
}

/* Cursor explizit über allem */
html body .cursor {
  z-index: 99999 !important;
  pointer-events: none !important;
  position: fixed !important;
  display: block !important;
}
html body .cursor-label {
  z-index: 100000 !important;
}
html body .spotlight {
  z-index: 1 !important;
}

/* Mobile: kein custom cursor */
@media (hover: none), (pointer: coarse), (max-width: 768px) {
  html body .cursor,
  html body .cursor-label,
  html body .spotlight { display: none !important; }
  html body { cursor: auto !important; }
}

/* ============================================================
   ENDLESS-SCROLL DEEP FIX — alle Overflow-Quellen abdichten
   ============================================================ */

/* ROOT: hartes overflow management */
html {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  height: auto !important;
  max-width: 100vw !important;
}
html body {
  overflow-x: hidden !important;
  overflow-y: visible !important;
  height: auto !important;
  min-height: 100vh;
  max-width: 100vw !important;
  position: relative !important;
}

/* Alle Sections strikt: overflow hidden, kein Übergang */
html body section,
html body .cta-section,
html body .service-content,
html body .other-services,
html body .leistungen-list,
html body .partners,
html body .partners-strip,
html body .marquee,
html body .stats,
html body .value,
html body .services,
html body .cases,
html body .faq,
html body footer {
  overflow: hidden !important;
  position: relative !important;
}

/* Shader-Background: garantiert Viewport-Size, nicht größer */
html body .shader-bg {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
  z-index: 0 !important;
}

/* Hero Pseudo-Elements limitieren */
html body .hero::before,
html body .hero::after {
  max-width: 100vw !important;
  max-height: 100vh !important;
  pointer-events: none;
}

/* Mountain-bg streng begrenzt */
html body .mountain-bg {
  max-height: 100% !important;
  max-width: 130% !important;
  overflow: hidden;
}

/* Grain & Grid Overlay strikt Viewport */
html body .grain,
html body .grid-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
}

/* Page-Enter-Sweep nach Animation komplett raus */
.page-enter-sweep {
  position: fixed !important;
  inset: 0 !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
}

/* CTA Pseudo-Elements (große Hintergrund-Glows) */
html body .cta-section::before,
html body .cta-section::after,
html body .service-content::before,
html body .service-content::after {
  max-width: 100vw !important;
  max-height: 100vh !important;
  pointer-events: none;
}

/* Hero min-height nicht über 100vh */
html body .hero {
  min-height: 90vh !important;
  max-height: none;
}

/* CTA section padding zurück ins normale */
html body .cta-section {
  padding: 80px 48px !important;
}
@media (max-width: 768px) {
  html body .cta-section { padding: 60px 20px !important; }
}

/* === PERFORMANCE — Faster perceived load === */

/* Body fade quicker damit Content sofort sichtbar */
html body {
  animation-duration: 0.4s !important;
}

/* Page-Enter Sweep schneller */
.page-enter-sweep {
  animation-duration: 0.9s !important;
  animation-delay: 0s !important;
}
.page-enter-sweep::after {
  animation-duration: 1.0s !important;
  animation-delay: 0s !important;
}

/* Reduce grain frame-rate für CPU-Schonung */
.grain {
  animation-duration: 1.5s !important;
}

/* Lazy critical: Shader nur sichtbar wenn geladen */
.shader-bg:not(.ready) { opacity: 0; }
.shader-bg.ready { transition: opacity 0.8s ease; }

/* === PERFORMANCE FINAL — Content & Cursor SOFORT === */

/* Body fade weg - Content sichtbar from frame 1 */
html body {
  animation: none !important;
  opacity: 1 !important;
}

/* Page-Enter-Sweep nicht blockierend, schneller */
.page-enter-sweep,
.page-enter-sweep::after {
  animation-duration: 0.8s !important;
  pointer-events: none !important;
}

/* Cursor sofort sichtbar, Animation nur für Transformation */
html body .cursor {
  opacity: 1 !important;
  transition: opacity 0.2s, width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s var(--ease) !important;
}

/* Shader fadet sanft ein wenn ready, blockiert nichts beim Start */
.shader-bg { opacity: 0; transition: opacity 0.8s ease; }
.shader-bg.ready { opacity: 0.85; }

/* === SMOOTH TRANSITIONS — keine Trennstriche zwischen Sektionen === */

/* Mountain-BG: weicher Fade nach unten (kein harter Schnitt) */
html body .mountain-bg {
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 25%, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
          mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 25%, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
}

/* Hero → Section Übergang glätten */
html body .hero {
  position: relative;
}
html body .hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.6) 70%, var(--schwarz) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Sections: weiche Top-Border statt scharfer Linie */
html body section,
html body .cta-section,
html body .partners,
html body .faq,
html body .stats,
html body .other-services {
  border-top: none !important;
}
/* Sanfter Trenn-Gradient als ::before statt Border */
html body section + section::before,
html body .cta-section::before,
html body .other-services::before {
  /* CTA section already has a ::before for radial gradient — skip override */
}

/* Section Cross-Fade: jede Section hat oben einen sanften Übergang */
html body .value::before,
html body .services::before,
html body .stats::before,
html body .cases::before,
html body .faq::before,
html body .partners::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Marquee / Partners-Strip: weichere Backgrounds (kein hartes Edge) */
html body .marquee,
html body .partners-strip {
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.4) 100%) !important;
  border-top: none !important;
  border-bottom: none !important;
}

/* Cases-Header / Section-Header: kein hard border-bottom */
html body section .section-label,
html body section .section-num {
  /* shadow-light, no hard border */
}

/* === FINAL FINAL — Page-Enter weg, Berge ZURÜCK aber sauber === */

/* Page-Enter-Sweep komplett weg */
.page-enter-sweep,
.page-enter-sweep::before,
.page-enter-sweep::after {
  display: none !important;
  animation: none !important;
}

/* Berge wieder sichtbar — global-mountain-fixed bleibt aus, nur eine Bergkette */
html body .global-mountain-fixed { display: none !important; }

/* Mountain-BG: GRÖSSER + WENIGER Layer (siehe template-Anpassung), sauber integriert */
html body .mountain-bg {
  display: block !important;
  position: absolute !important;
  bottom: 0 !important;
  left: -8% !important;
  top: auto !important;
  width: 116% !important;
  height: 70% !important;
  max-height: 80vh !important;
  max-width: 116% !important;
  opacity: 0.85 !important;
  pointer-events: none !important;
  z-index: 1 !important;
  /* Sanfter Fade nach OBEN und UNTEN damit kein harter Schnitt */
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 18%, rgba(0,0,0,1) 45%, rgba(0,0,0,1) 78%, rgba(0,0,0,0) 100%) !important;
          mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 18%, rgba(0,0,0,1) 45%, rgba(0,0,0,1) 78%, rgba(0,0,0,0) 100%) !important;
}
html body .mountain-bg svg {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}

/* Subtile Atem-Animation auf dem ganzen Mountain-Wrapper (nicht auf einzelne Paths) */
@keyframes mountainBreathe {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-1%, -0.4%) scale(1.012); }
}
html body .mountain-bg {
  animation: mountainBreathe 22s ease-in-out infinite;
}

/* Mobile: Berge bleiben, aber kleiner */
@media (max-width: 768px) {
  html body .mountain-bg {
    height: 45% !important;
    width: 130% !important;
    left: -15% !important;
    opacity: 0.75 !important;
  }
}

/* Hero-Section: kein opaker Background, Berge dürfen durchscheinen */
html body .hero {
  background: transparent !important;
}
html body .hero::after {
  background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.65) 70%, rgba(10,10,10,0.85) 100%) !important;
}

/* Shader-Schleier bleibt präsent — Berge legen sich darüber */
html body .shader-bg {
  opacity: 1 !important;
}
html body .shader-bg.ready {
  opacity: 1 !important;
}

/* ============================================================
   RESCUE PASS — Cursor garantiert sichtbar + h1 slideUp garantiert
   ============================================================ */

/* Cursor: dezent + durchsichtig. Salbei-Tönung, leichter Glow, keine harten Kanten. */
html body .cursor {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 14px !important;
  height: 14px !important;
  background: rgba(111, 139, 122, 0.35) !important;
  border: 1px solid rgba(239, 230, 210, 0.35) !important;
  border-radius: 50% !important;
  pointer-events: none !important;
  mix-blend-mode: normal !important;
  z-index: 99999 !important;
  opacity: 1 !important;
  backdrop-filter: blur(2px) !important;
  -webkit-backdrop-filter: blur(2px) !important;
  box-shadow: 0 0 10px rgba(111, 139, 122, 0.25) !important;
  transform: translate(50vw, 50vh) translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease) !important;
  will-change: transform;
  display: block !important;
}
html body .cursor.hover {
  width: 44px !important;
  height: 44px !important;
  background: rgba(239, 230, 210, 0.15) !important;
  border-color: rgba(239, 230, 210, 0.3) !important;
  box-shadow: 0 0 20px rgba(239, 230, 210, 0.15) !important;
}
html body .spotlight {
  mix-blend-mode: normal !important;
  z-index: 1 !important;
  opacity: 0.5;
}
html body .cursor-label {
  z-index: 100000 !important;
}

/* Mobile: kein custom cursor, system cursor zurück */
@media (hover: none), (pointer: coarse), (max-width: 768px) {
  html body .cursor,
  html body .cursor-label,
  html body .spotlight { display: none !important; }
  html body { cursor: auto !important; }
}

/* H1 SLIDE-UP garantieren — keine späteren Overrides erlaubt */
@keyframes smSlideUpClaim {
  0%   { opacity: 0; transform: translateY(110%); }
  100% { opacity: 1; transform: translateY(0); }
}
html body .claim .line {
  display: block !important;
  overflow: hidden !important;
}
html body .claim .line > span {
  display: inline-block !important;
  opacity: 0;
  transform: translateY(110%);
  animation: smSlideUpClaim 1.05s cubic-bezier(0.7, 0, 0.3, 1) forwards !important;
  will-change: transform, opacity;
}
html body .claim .line:nth-child(1) > span { animation-delay: 0.15s !important; }
html body .claim .line:nth-child(2) > span { animation-delay: 0.45s !important; }

/* Hero-Inner darf nicht clippen damit Animation glatt rauskommt */
html body .hero .hero-inner { overflow: visible !important; }

/* Reduced Motion: keine Animation, aber sichtbar */
@media (prefers-reduced-motion: reduce) {
  html body .claim .line > span {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   PAGE-COMPACT (Impressum etc.) — kein Hero, direkter Content
   ============================================================ */
html body .page-compact {
  background: transparent !important;
}
/* Bei page.php sind keine Berge mehr — page-compact ersetzt den hero komplett */
html body .page-compact .hero-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--salbei);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
html body .page-compact .hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--salbei);
}
html body .page-compact .page-title-compact {
  color: var(--creme);
  /* Kein slide-up Animation override — Titel SOFORT da */
  animation: none !important;
  transform: none !important;
  opacity: 1 !important;
}
@media (max-width: 768px) {
  html body .page-compact {
    padding: 110px 20px 60px !important;
  }
  html body .page-compact .page-title-compact {
    font-size: clamp(36px, 11vw, 56px) !important;
  }
}

/* ============================================================
   COOKIEYES BANNER — sichtbar + klickbar GARANTIEREN
   ============================================================ */
html body .cky-consent-container,
html body .cky-modal,
html body .cky-preference-center,
html body .cky-overlay,
html body .cky-btn-revisit-wrapper,
html body .cky-revisit-bottom-left,
html body .cky-revisit-bottom-right {
  z-index: 2147483647 !important;
  pointer-events: auto !important;
}
html body .cky-consent-container *,
html body .cky-modal *,
html body .cky-preference-center * {
  pointer-events: auto !important;
}
html body .cky-btn,
html body .cky-btn-accept,
html body .cky-btn-reject,
html body .cky-btn-preferences,
html body .cky-btn-customize,
html body .cky-banner-btn-close,
html body .cky-close-icon,
html body button[class*="cky-"] {
  pointer-events: auto !important;
  cursor: pointer !important;
  position: relative !important;
  z-index: 1 !important;
}

/* WICHTIG: Shader BLEIBT ganz hinten (z-index 0) damit Content sichtbar ist */
html body .shader-bg,
html body canvas.shader-bg {
  z-index: 0 !important;
  pointer-events: none !important;
}
/* Cursor + Overlays moderat — NIEMALS über dem Content */
html body .cursor       { z-index: 9999 !important;  pointer-events: none !important; }
html body .cursor-label { z-index: 10000 !important; pointer-events: none !important; }
html body .spotlight    { z-index: 1 !important;     pointer-events: none !important; }
html body .grain        { z-index: 2 !important;     pointer-events: none !important; }
html body .grid-overlay { z-index: 2 !important;     pointer-events: none !important; }

/* ============================================================
   SPACING-PASS — übertriebene Abstände auf vernünftige Werte
   ============================================================ */

/* Hero — kompakter, kein 100vh-Block */
html body .hero {
  min-height: auto !important;
  padding: 130px 48px 80px !important;
}
@media (max-width: 768px) {
  html body .hero {
    padding: 110px 20px 60px !important;
  }
}

/* Service-Hero (template-service.php / template-service-overview.php) */
html body section.hero[style*="min-height:70vh"],
html body section.hero[style*="min-height:80vh"] {
  min-height: 42vh !important;
  padding: 130px 48px 60px !important;
}
@media (max-width: 768px) {
  html body section.hero[style*="min-height:70vh"],
  html body section.hero[style*="min-height:80vh"] {
    padding: 110px 20px 40px !important;
  }
}

/* Section-Padding-Pass — alle Sections gleichmäßig */
html body .value,
html body .services,
html body .cases,
html body .stats,
html body .partners,
html body .faq,
html body .service-content,
html body .other-services,
html body .leistungen-list {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}
@media (max-width: 768px) {
  html body .value,
  html body .services,
  html body .cases,
  html body .stats,
  html body .partners,
  html body .faq,
  html body .service-content,
  html body .other-services,
  html body .leistungen-list {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}

/* CTA-Section — moderates Padding */
html body .cta-section {
  padding: 100px 48px !important;
}
@media (max-width: 768px) {
  html body .cta-section {
    padding: 70px 20px !important;
  }
}

/* Gaps zwischen Items kleiner */
html body .services-grid { gap: 48px !important; margin-bottom: 48px !important; }
html body .cases-grid    { gap: 48px !important; margin-bottom: 48px !important; }

/* Marquee + Partners-Strip flacher */
html body .marquee {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}
html body .partners-strip {
  padding-top: 36px !important;
  padding-bottom: 36px !important;
}

/* H2-Section-Header Abstände kleiner */
html body section h2,
html body .section-label + h2 {
  margin-bottom: 40px !important;
}

/* Stats-Grid kompakter */
html body .stats-grid { gap: 32px !important; }

/* Margin-bottom 80px Pauschal-Killer für Items in Grids */
html body .case + .case,
html body .service-card + .service-card { margin-top: 0 !important; }

/* Footer Abstand vom letzten Content kleiner */
html body footer {
  padding-top: 64px !important;
  padding-bottom: 32px !important;
}
@media (max-width: 768px) {
  html body footer {
    padding-top: 48px !important;
    padding-bottom: 24px !important;
  }
}

/* CTA-Title margin-bottom dezenter */
html body .cta-section h2 { margin-bottom: 20px !important; }
html body .cta-section .sub { margin-bottom: 32px !important; }

/* ============================================================
   INITIAL-VIEWPORT FIX — kein Fade-in für Content im ersten Screen
   ============================================================ */

/* page-compact (Impressum etc.): NIEMALS fade-in */
html body .page-compact,
html body .page-compact.reveal,
html body section.page-compact {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

/* Erste Section auf JEDER Seite — sofort sichtbar */
html body section:first-of-type,
html body section:first-of-type.reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* Auch Service-Content (template-service) sofort sichtbar */
html body .service-content,
html body .service-content.reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* Hero immer sofort sichtbar */
html body .hero,
html body .hero.reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* ============================================================
   COOKIEYES FIX (surgical) — NUR cky-Klassen, nichts anderes
   ============================================================ */
html body .cky-consent-container,
html body .cky-modal,
html body .cky-preference-center,
html body .cky-overlay,
html body .cky-btn-revisit-wrapper,
html body div[class*="cky-revisit-"] {
  z-index: 2147483647 !important;
  pointer-events: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
}
html body .cky-consent-container *,
html body .cky-modal *,
html body .cky-preference-center * {
  pointer-events: auto !important;
}
html body button[class*="cky-"],
html body .cky-btn,
html body .cky-btn-accept,
html body .cky-btn-reject,
html body .cky-btn-preferences,
html body .cky-btn-customize,
html body .cky-banner-btn-close,
html body .cky-close-icon {
  pointer-events: auto !important;
  cursor: pointer !important;
}

/* ============================================================
   MOBILE PASS — Cases/Stats/Partners/FAQ/Kontakt sauber
   ============================================================ */
@media (max-width: 768px) {

  /* GLOBAL: horizontal overflow strikt killen */
  html, body { overflow-x: hidden !important; }
  html body .hero,
  html body section,
  html body .cta-section { overflow-x: clip !important; }

  /* CASES — Cards kompakter, sauber im Viewport */
  html body .cases-grid { gap: 32px !important; margin-bottom: 32px !important; }
  html body .case {
    padding: 32px 20px !important;
    border-radius: 18px !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
  html body .case .case-eyebrow,
  html body .case .case-tags-row {
    font-size: 10px !important;
    letter-spacing: 1.5px !important;
  }
  html body .case h3,
  html body .case .case-title {
    font-size: clamp(28px, 7vw, 40px) !important;
    line-height: 1.05 !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    hyphens: auto !important;
    max-width: 100% !important;
  }
  html body .case p,
  html body .case .case-desc {
    font-size: 15px !important;
    line-height: 1.55 !important;
  }

  /* Tags müssen UMBRECHEN, nicht horizontal scrollen */
  html body .case .case-tags,
  html body .case-tags-row,
  html body .case .tag-row,
  html body .case ul,
  html body .case .tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    overflow: visible !important;
    margin-top: 16px !important;
  }
  html body .case .tag,
  html body .case .case-tag,
  html body .case-tags span,
  html body .case-tags li {
    font-size: 10px !important;
    padding: 6px 10px !important;
    letter-spacing: 1.2px !important;
    flex-shrink: 1 !important;
  }

  /* Big-Number in Cases skaliert mit Viewport */
  html body .case .big-num,
  html body .case .case-bignum,
  html body .case .stat-num,
  html body .case strong {
    font-size: clamp(56px, 16vw, 96px) !important;
    line-height: 1 !important;
  }

  /* STATS — kompakt + ohne Box-Boundaries die clipping verursachen */
  html body .stats-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
  }
  html body .stats-grid .stat,
  html body .stat {
    padding: 24px 16px !important;
    border-radius: 14px !important;
  }
  html body .stat-num,
  html body .stat strong {
    font-size: clamp(36px, 11vw, 60px) !important;
    line-height: 1 !important;
  }
  html body .stat-label {
    font-size: 11px !important;
    letter-spacing: 1.5px !important;
    margin-top: 8px !important;
  }

  /* PARTNERS-STRIP / Marquee — kein Overflow-Clipping einzelner Wörter */
  html body .partners-strip,
  html body .marquee {
    overflow: hidden !important;
  }
  html body .partners-track,
  html body .marquee-track {
    gap: 32px !important;
    padding-right: 32px !important;
  }
  html body .partners-track > *,
  html body .marquee-track > * {
    font-size: 22px !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
  }

  /* FAQ — Header darf nicht clipping bekommen */
  html body .faq h2,
  html body section.faq h2,
  html body .faq-header h2 {
    font-size: clamp(36px, 9vw, 56px) !important;
    line-height: 1.05 !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    hyphens: none !important;
    padding-right: 12px !important;
    max-width: 100% !important;
  }
  html body .faq h2 em,
  html body .faq h2 .accent {
    display: inline !important;
    white-space: normal !important;
  }
  html body .faq-item {
    padding: 20px 16px !important;
  }
  html body .faq-q,
  html body .faq-item > h3,
  html body .faq-item > strong {
    font-size: 17px !important;
    line-height: 1.35 !important;
  }
  html body .faq-a {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  /* KONTAKT — riesigen leeren Abstand killen */
  html body.page-template-template-kontakt .hero,
  html body .kontakt-hero,
  html body .kontakt-page .hero {
    padding: 110px 20px 32px !important;
    min-height: auto !important;
  }
  html body.page-template-template-kontakt .hero + section,
  html body .kontakt-hero + section,
  html body .kontakt-page section + section {
    padding-top: 40px !important;
    margin-top: 0 !important;
  }
  /* Falls "Lass uns kurz reden" als Hero-Section, kein extra margin-bottom */
  html body .hero .cta-row,
  html body .hero .hero-sub {
    margin-bottom: 0 !important;
  }
  /* Generell: leere Hero-Sections nach Subline sollen nicht 200px Padding haben */
  html body .hero {
    padding-bottom: 32px !important;
  }
  /* Form-Section direkt unter Hero anschließen */
  html body .sm-form,
  html body .kontakt-form,
  html body section.form-section {
    padding-top: 16px !important;
  }

}


/* ============================================================
   PINPOINT FIXES — nur die 3 Probleme, nichts anderes
   ============================================================ */

/* 1. "VERTRAUEN AUS TIROL UND DARÜBER HINAUS" muss komplett passen */
@media (max-width: 768px) {
  html body .partners-label,
  html body .partners .section-label,
  html body .partners-strip + *,
  html body .partners > *:first-child,
  html body section.partners .section-label,
  html body .partners-strip-label {
    font-size: 9px !important;
    letter-spacing: 1.5px !important;
    white-space: normal !important;
    word-spacing: normal !important;
    text-align: center !important;
    padding: 0 16px !important;
    max-width: 100% !important;
  }
  /* Sicherheitsnetz: alles in .partners darf umbrechen */
  html body .partners *,
  html body section.partners * {
    max-width: 100% !important;
  }
}

/* 2. FAQ-Header "Antworten, bevor du fragst" — "be" wird nicht mehr abgeschnitten */
@media (max-width: 768px) {
  html body .faq,
  html body section.faq {
    padding-left: 20px !important;
    padding-right: 20px !important;
    overflow-x: hidden !important;
  }
  html body .faq-grid {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
  html body .faq h2,
  html body section.faq h2 {
    font-size: clamp(28px, 8vw, 42px) !important;
    line-height: 1.1 !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    text-align: left !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    max-width: 100% !important;
    white-space: normal !important;
  }
}

/* 3. FAQ-Items MÜSSEN sichtbar sein (Reveal-Animation darf sie nicht verstecken) */
html body .faq-item,
html body .faq-list .faq-item,
html body section.faq .faq-item {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  transform: none !important;
}
html body .faq-list {
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

/* Service-Hero Desktop: NICHT anfassen — User-Wunsch */

/* ============================================================
   LOGO PLAYGROUND — spielerische Logo-Variationen (Brand-Page)
   ============================================================ */
html body .logo-playground {
  margin: 0 0 48px;
  padding: 0 0 8px;
  position: relative;
  text-align: center;
}
html body .logo-playground .lp-intro {
  text-align: center;
  margin: 0 auto 28px;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
html body .logo-playground .lp-eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--salbei);
  margin: 0 0 14px;
  font-weight: 600;
  text-align: center;
}
html body .logo-playground .lp-line {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.5;
  color: var(--creme);
  max-width: 580px;
  margin: 0 auto;
  font-weight: 300;
  text-align: center;
  text-wrap: balance;
}
html body .logo-playground .lp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 auto;
  max-width: 720px;
}
html body .logo-playground .lp-card {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(239, 230, 210, 0.12);
  border-radius: 14px;
  background: rgba(239, 230, 210, 0.025);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.7,0,0.3,1), background 0.5s ease, border-color 0.5s ease;
  cursor: default;
}
html body .logo-playground .lp-card svg {
  width: 72%;
  height: auto;
  transition: transform 0.6s cubic-bezier(0.7,0,0.3,1);
}
html body .logo-playground .lp-label {
  position: absolute;
  bottom: 10px;
  left: 14px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(239, 230, 210, 0.45);
  font-weight: 600;
  transition: color 0.4s ease;
}
html body .logo-playground .lp-card:hover {
  background: rgba(111, 139, 122, 0.08);
  border-color: rgba(111, 139, 122, 0.4);
  transform: translateY(-4px);
}
html body .logo-playground .lp-card:hover svg { transform: scale(1.05); }
html body .logo-playground .lp-card:hover .lp-label { color: var(--salbei); }

/* Individuelle Spiel-Animationen */
html body .logo-playground .lp-card-1 svg { animation: lpFloat 6s ease-in-out infinite; }
html body .logo-playground .lp-card-2:hover svg { transform: scale(1.1) rotate(-2deg); }
html body .logo-playground .lp-card-3 svg path { animation: lpDash 8s linear infinite; }
html body .logo-playground .lp-card-4:hover svg { transform: scale(1.25); }
html body .logo-playground .lp-card-5 svg g { animation: lpLayerShift 5s ease-in-out infinite; }
html body .logo-playground .lp-card-5 svg g:nth-child(2) { animation-delay: 0.3s; }
html body .logo-playground .lp-card-5 svg g:nth-child(3) { animation-delay: 0.6s; }
html body .logo-playground .lp-card-6 svg { animation: lpRotate 14s linear infinite; }

@keyframes lpFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
@keyframes lpDash {
  0%   { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -40; }
}
@keyframes lpLayerShift {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(3px); }
}
@keyframes lpRotate {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Tag-Reihe unter den Cards */
html body .logo-playground .lp-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
}
html body .logo-playground .lp-tag {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--creme);
  padding: 8px 14px;
  border: 1px solid rgba(239, 230, 210, 0.18);
  border-radius: 100px;
  font-weight: 600;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
html body .logo-playground .lp-tag:hover {
  border-color: var(--salbei);
  color: var(--salbei);
  background: rgba(111, 139, 122, 0.06);
}

@media (max-width: 768px) {
  html body .logo-playground { padding: 24px 0; margin-bottom: 56px; }
  html body .logo-playground .lp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  html body .logo-playground .lp-line { font-size: 16px; }
}

/* ============================================================
   IMPRESSUM MOBILE — Lange URLs sauber umbrechen
   ============================================================ */
@media (max-width: 768px) {
  html body .service-prose a,
  html body .page-compact a,
  html body .service-prose p,
  html body .page-compact p {
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    hyphens: auto !important;
  }
  /* Links bekommen safe-wrap auch wenn kein Leerzeichen vorhanden */
  html body .service-prose a[href^="http"],
  html body .page-compact a[href^="http"] {
    overflow-wrap: anywhere !important;
    word-break: break-all !important;
  }
  /* Karten/Boxen im Impressum: Padding kompakter + max-width sicher */
  html body .service-prose blockquote,
  html body .service-prose .impressum-box,
  html body .page-compact blockquote,
  html body .page-compact > div,
  html body .page-compact .impressum-section {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }
}

/* ============================================================
   SERVICES-GRID — Sauber für 4 Karten (2×2 statt 3+1 hängend)
   ============================================================ */
@media (min-width: 769px) {
  html body .services-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 768px) {
  html body .services-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

/* Logo-Page: weniger Padding um die Spielwiese (gegen viel Whitespace) */
html body .service-content:has(.logo-playground) { padding-top: 56px !important; padding-bottom: 56px !important; }
@media (max-width: 768px) {
  html body .service-content:has(.logo-playground) { padding-top: 32px !important; padding-bottom: 40px !important; }
}
/* Tighter Grid auf Desktop wenn Cards 6 sind */
@media (min-width: 769px) {
  html body .logo-playground .lp-grid { max-width: 760px; gap: 14px; }
  html body .logo-playground .lp-card { aspect-ratio: 17 / 9; }
}

/* ============================================================
   WEITERE LEISTUNGEN — 5 Cards sauber in einer Reihe
   ============================================================ */
html body .other-services-grid {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}
@media (min-width: 1100px) {
  html body .other-services-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 769px) and (max-width: 1099px) {
  html body .other-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  html body .other-services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
html body .other-services-card {
  min-height: 180px !important;
  padding: 22px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  border-radius: 14px !important;
}
html body .other-services-card .service-num {
  font-size: 10px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: var(--salbei) !important;
  margin-bottom: 4px !important;
}
html body .other-services-card .service-title {
  font-size: clamp(16px, 1.4vw, 20px) !important;
  font-weight: 500 !important;
  letter-spacing: -0.01em !important;
  margin: 0 0 6px !important;
  line-height: 1.15 !important;
  color: var(--creme) !important;
}
html body .other-services-card .service-desc {
  font-size: 13px !important;
  line-height: 1.5 !important;
  color: rgba(239, 230, 210, 0.65) !important;
  flex: 1;
  margin: 0 !important;
}
html body .other-services-card .service-link {
  font-size: 10px !important;
  letter-spacing: 1.5px !important;
  margin-top: auto !important;
}


/* === DROHNE PAGE ONLY (page-id 1161) — keine Pfeile/Icons in Listen === */
body.page-id-1161 .service-prose ul li::before,
body.page-id-1161 .service-prose ul li::after,
body.page-id-1161 .elementor-icon-list-icon,
body.page-id-1161 .elementor-icon-list-item > i,
body.page-id-1161 .elementor-icon-list-item > svg,
body.page-id-1161 .elementor-widget-icon-list .elementor-icon-list-icon {
  display: none !important;
  content: none !important;
}
body.page-id-1161 .elementor-icon-list-text {
  padding-left: 0 !important;
  margin-left: 0 !important;
}
body.page-id-1161 .service-prose ul li,
body.page-id-1161 .elementor-icon-list-item {
  padding-left: 24px !important;
}

/* === DROHNE PLAYGROUND — Shot-Type Cards (logo-style) === */
html body .drohne-playground { margin: 0 0 56px; padding: 0; text-align: center; }
html body .drohne-playground .dp-intro { margin: 0 auto 32px; max-width: 640px; display: flex; flex-direction: column; align-items: center; }
html body .drohne-playground .dp-eyebrow { font-size: 10px; letter-spacing: 3px; color: var(--salbei); margin-bottom: 14px; font-weight: 600; }
html body .drohne-playground .dp-line { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.5; color: var(--creme); max-width: 580px; text-align: center; }
html body .drohne-playground .dp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 0 auto; max-width: 760px; }
html body .drohne-playground .dp-card { position: relative; aspect-ratio: 17 / 9; border: 1px solid rgba(239,230,210,0.12); border-radius: 14px; background: rgba(239,230,210,0.025); display: flex; align-items: center; justify-content: center; overflow: hidden; transition: transform 0.5s ease, background 0.5s ease, border-color 0.5s ease; }
html body .drohne-playground .dp-card svg { width: 56%; height: auto; transition: transform 0.6s ease; }
html body .drohne-playground .dp-card:hover { background: rgba(111,139,122,0.08); border-color: rgba(111,139,122,0.4); transform: translateY(-4px); }
html body .drohne-playground .dp-card:hover svg { transform: scale(1.08); }
html body .drohne-playground .dp-label { position: absolute; bottom: 10px; left: 14px; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(239,230,210,0.45); font-weight: 600; transition: color 0.4s ease; }
html body .drohne-playground .dp-card:hover .dp-label { color: var(--salbei); }
html body .drohne-playground .dp-tag-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 28px; }
html body .drohne-playground .dp-tag { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--creme); padding: 8px 14px; border: 1px solid rgba(239,230,210,0.18); border-radius: 100px; font-weight: 600; transition: border-color 0.3s, color 0.3s, background 0.3s; }
html body .drohne-playground .dp-tag:hover { border-color: var(--salbei); color: var(--salbei); background: rgba(111,139,122,0.06); }

/* === DROHNE PACKAGES === */
html body .dp-packages { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 32px 0 16px; }
html body .dp-package { background: rgba(239,230,210,0.025); border: 1px solid rgba(239,230,210,0.12); border-radius: 18px; padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 10px; transition: border-color 0.3s, background 0.3s; }
html body .dp-package:hover { border-color: rgba(111,139,122,0.4); background: rgba(111,139,122,0.05); }
html body .dp-package .dp-package-num { font-size: 10px; letter-spacing: 3px; color: var(--salbei); font-weight: 700; }
html body .dp-package h3 { font-size: clamp(22px, 2.2vw, 28px) !important; font-weight: 400 !important; letter-spacing: -0.01em; color: var(--creme); margin: 0 0 4px !important; }
html body .dp-package ul { margin: 4px 0 16px !important; padding: 0 !important; list-style: none !important; display: flex; flex-direction: column; gap: 6px !important; }
html body .dp-package ul li { font-size: 14px !important; line-height: 1.5 !important; color: rgba(239,230,210,0.78) !important; padding: 0 0 0 16px !important; position: relative !important; background: transparent !important; border: none !important; border-left: none !important; }
html body .dp-package ul li::before { content: '·' !important; position: absolute !important; left: 4px !important; top: -2px !important; color: var(--salbei) !important; font-weight: 700 !important; font-size: 22px !important; }
html body .dp-package .dp-package-cta { display: inline-block; margin-top: auto; padding: 14px 20px; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600; color: var(--creme); border: 1px solid var(--creme); border-radius: 0; text-decoration: none !important; text-align: center; transition: background 0.3s, color 0.3s; }
html body .dp-package .dp-package-cta:hover { background: var(--creme); color: var(--schwarz); }
html body .dp-price-note { font-size: 13px; color: rgba(239,230,210,0.55); font-style: italic; margin: 24px 0 0; text-align: center; }

/* Mobile responsive */
@media (max-width: 768px) {
  html body .drohne-playground .dp-grid { grid-template-columns: 1fr 1fr; }
  html body .dp-packages { grid-template-columns: 1fr; }
}

/* === DROHNE PLAYGROUND === */
html body .drohne-playground { margin: 0 0 56px; padding: 0; text-align: center; }
html body .drohne-playground .dp-intro { margin: 0 auto 32px; max-width: 640px; display: flex; flex-direction: column; align-items: center; }
html body .drohne-playground .dp-eyebrow { font-size: 10px; letter-spacing: 3px; color: var(--salbei); margin-bottom: 14px; font-weight: 600; }
html body .drohne-playground .dp-line { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.5; color: var(--creme); max-width: 580px; text-align: center; }
html body .drohne-playground .dp-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 14px !important; margin: 0 auto !important; max-width: 760px !important; }
html body .drohne-playground .dp-card { position: relative; aspect-ratio: 17 / 9; border: 1px solid rgba(239,230,210,0.12); border-radius: 14px; background: rgba(239,230,210,0.025); display: flex !important; align-items: center; justify-content: center; overflow: hidden; transition: all 0.5s ease; padding: 0 !important; margin: 0 !important; }
html body .drohne-playground .dp-card svg { width: 56% !important; height: auto !important; max-height: 70% !important; transition: transform 0.6s ease; }
html body .drohne-playground .dp-card:hover { background: rgba(111,139,122,0.08); border-color: rgba(111,139,122,0.4); transform: translateY(-4px); }
html body .drohne-playground .dp-card:hover svg { transform: scale(1.08); }
html body .drohne-playground .dp-label { position: absolute !important; bottom: 10px; left: 14px; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(239,230,210,0.45); font-weight: 600; }
html body .drohne-playground .dp-card:hover .dp-label { color: var(--salbei); }
html body .drohne-playground .dp-tag-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 28px; }
html body .drohne-playground .dp-tag { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--creme); padding: 8px 14px; border: 1px solid rgba(239,230,210,0.18); border-radius: 100px; font-weight: 600; }
html body .dp-packages { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 18px !important; margin: 32px 0 16px !important; }
html body .dp-package { background: rgba(239,230,210,0.025); border: 1px solid rgba(239,230,210,0.12); border-radius: 18px; padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 10px; }
html body .dp-package:hover { border-color: rgba(111,139,122,0.4); background: rgba(111,139,122,0.05); }
html body .dp-package .dp-package-num { font-size: 10px; letter-spacing: 3px; color: var(--salbei); font-weight: 700; }
html body .dp-package h3 { font-size: clamp(22px, 2.2vw, 28px) !important; font-weight: 400 !important; color: var(--creme); margin: 0 0 4px !important; }
html body .dp-package ul { margin: 4px 0 16px !important; padding: 0 !important; list-style: none !important; display: flex; flex-direction: column; gap: 6px !important; }
html body .dp-package ul li { font-size: 14px !important; line-height: 1.5 !important; color: rgba(239,230,210,0.78) !important; padding: 0 0 0 16px !important; position: relative !important; background: transparent !important; border: none !important; border-left: none !important; }
html body .dp-package ul li::before { content: '·' !important; position: absolute !important; left: 4px !important; top: -2px !important; color: var(--salbei) !important; font-size: 22px !important; }
html body .dp-package .dp-package-cta { display: inline-block; margin-top: auto; padding: 14px 20px; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600; color: var(--creme); border: 1px solid var(--creme); text-decoration: none !important; text-align: center; }
html body .dp-package .dp-package-cta:hover { background: var(--creme); color: var(--schwarz); }
html body .dp-price-note { font-size: 13px; color: rgba(239,230,210,0.55); font-style: italic; margin: 24px 0 0; text-align: center; }
@media (max-width: 768px) { html body .drohne-playground .dp-grid { grid-template-columns: 1fr 1fr !important; } html body .dp-packages { grid-template-columns: 1fr !important; } }

/* === DROHNE PLAYGROUND COMPACT — 6 in einer Reihe statt riesige Cards === */
html body .drohne-playground { margin: 0 auto 56px !important; padding: 0 !important; max-width: 920px !important; }
html body .drohne-playground .dp-grid {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 10px !important;
  max-width: 920px !important;
  margin: 0 auto !important;
}
html body .drohne-playground .dp-card {
  aspect-ratio: 1 / 1 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 14px 8px !important;
  border: 1px solid rgba(239,230,210,0.12) !important;
  border-radius: 12px !important;
  background: rgba(239,230,210,0.03) !important;
  transition: all 0.4s ease !important;
}
html body .drohne-playground .dp-card:hover {
  border-color: rgba(111,139,122,0.5) !important;
  background: rgba(111,139,122,0.08) !important;
  transform: translateY(-3px) !important;
}
html body .drohne-playground .dp-card svg {
  width: 60% !important;
  height: auto !important;
  max-height: 38px !important;
  display: block !important;
  transition: transform 0.4s ease !important;
}
html body .drohne-playground .dp-card:hover svg { transform: scale(1.1) !important; }
html body .drohne-playground .dp-label {
  position: static !important;
  display: block !important;
  font-size: 9px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: rgba(239,230,210,0.55) !important;
  font-weight: 600 !important;
  text-align: center !important;
  margin: 0 !important;
  bottom: auto !important;
  left: auto !important;
}
html body .drohne-playground .dp-card:hover .dp-label { color: var(--salbei) !important; }
@media (max-width: 900px) {
  html body .drohne-playground .dp-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 480px) {
  html body .drohne-playground .dp-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* === DROHNE PACKAGES — final force === */
html body div.dp-packages {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
  margin: 48px 0 32px !important;
  padding: 0 !important;
  max-width: 100% !important;
}
html body div.dp-package {
  background: rgba(239,230,210,0.04) !important;
  border: 1px solid rgba(239,230,210,0.15) !important;
  border-radius: 20px !important;
  padding: 32px 32px 36px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  transition: all 0.3s ease !important;
}
html body div.dp-package:hover {
  border-color: rgba(111,139,122,0.5) !important;
  background: rgba(111,139,122,0.06) !important;
  transform: translateY(-4px) !important;
}
html body div.dp-package .dp-package-num {
  font-size: 11px !important;
  letter-spacing: 3px !important;
  color: var(--salbei) !important;
  font-weight: 700 !important;
  margin: 0 !important;
  padding: 0 !important;
}
html body div.dp-package h3 {
  font-size: clamp(24px, 2.4vw, 32px) !important;
  font-weight: 400 !important;
  color: var(--creme) !important;
  margin: 0 0 4px !important;
  padding: 0 !important;
}
html body div.dp-package ul {
  list-style: none !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}
html body div.dp-package ul li {
  font-size: 15px !important;
  line-height: 1.5 !important;
  color: rgba(239,230,210,0.78) !important;
  padding: 0 0 0 20px !important;
  margin: 0 !important;
  position: relative !important;
  background: transparent !important;
  border: none !important;
  border-left: none !important;
}
html body div.dp-package ul li::before {
  content: '·' !important;
  position: absolute !important;
  left: 4px !important;
  top: 0 !important;
  color: var(--salbei) !important;
  font-size: 26px !important;
  line-height: 1 !important;
  width: auto !important;
  height: auto !important;
  transform: none !important;
  background: transparent !important;
}
html body div.dp-package ul li::after {
  display: none !important;
  content: none !important;
}
html body div.dp-package a.dp-package-cta {
  display: inline-block !important;
  margin-top: auto !important;
  padding: 14px 24px !important;
  font-size: 11px !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  color: var(--creme) !important;
  border: 1px solid var(--creme) !important;
  text-decoration: none !important;
  text-align: center !important;
  background: transparent !important;
  transition: all 0.3s ease !important;
}
html body div.dp-package a.dp-package-cta:hover {
  background: var(--creme) !important;
  color: var(--schwarz) !important;
}
@media (max-width: 768px) {
  html body div.dp-packages { grid-template-columns: 1fr !important; }
}

/* === DROHNE PLAYGROUND 3x2 GRID - FINAL FORCE === */
html body div.drohne-playground { 
  margin: 0 auto 48px !important; 
  max-width: 720px !important; 
}
html body div.drohne-playground .dp-intro { 
  text-align: center !important; 
  max-width: 560px !important; 
  margin: 0 auto 32px !important; 
}
html body div.drohne-playground .dp-eyebrow { 
  display: block !important; 
  font-size: 10px !important; 
  letter-spacing: 3px !important; 
  color: var(--salbei) !important; 
  margin-bottom: 12px !important; 
  font-weight: 600 !important; 
}
html body div.drohne-playground .dp-line { 
  font-size: 16px !important; 
  line-height: 1.55 !important; 
  color: var(--creme) !important; 
  margin: 0 !important; 
}
html body div.drohne-playground div.dp-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 12px !important;
  margin: 0 auto !important;
  max-width: 720px !important;
  padding: 0 !important;
}
html body div.drohne-playground div.dp-card {
  aspect-ratio: 16 / 10 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  padding: 16px 12px !important;
  border: 1px solid rgba(239,230,210,0.12) !important;
  border-radius: 14px !important;
  background: rgba(239,230,210,0.03) !important;
  transition: all 0.4s ease !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
}
html body div.drohne-playground div.dp-card:hover {
  border-color: rgba(111,139,122,0.5) !important;
  background: rgba(111,139,122,0.08) !important;
  transform: translateY(-3px) !important;
}
html body div.drohne-playground div.dp-card svg {
  width: 48% !important;
  height: auto !important;
  max-width: 80px !important;
  max-height: 42px !important;
  display: block !important;
  transition: transform 0.4s ease !important;
}
html body div.drohne-playground div.dp-card:hover svg { transform: scale(1.1) !important; }
html body div.drohne-playground div.dp-card span.dp-label {
  position: static !important;
  font-size: 10px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: rgba(239,230,210,0.55) !important;
  font-weight: 600 !important;
  text-align: center !important;
  margin: 0 !important;
  bottom: auto !important;
  left: auto !important;
  top: auto !important;
  right: auto !important;
  width: auto !important;
}
html body div.drohne-playground div.dp-card:hover span.dp-label { color: var(--salbei) !important; }
html body div.drohne-playground div.dp-tag-row { 
  display: flex !important; 
  flex-wrap: wrap !important; 
  gap: 8px !important; 
  justify-content: center !important; 
  margin: 28px auto 0 !important; 
  max-width: 720px !important;
}
html body div.drohne-playground span.dp-tag { 
  font-size: 10px !important; 
  letter-spacing: 2px !important; 
  text-transform: uppercase !important; 
  color: var(--creme) !important; 
  padding: 8px 14px !important; 
  border: 1px solid rgba(239,230,210,0.18) !important; 
  border-radius: 100px !important; 
  font-weight: 600 !important; 
}
@media (max-width: 768px) {
  html body div.drohne-playground div.dp-grid { grid-template-columns: 1fr 1fr !important; }
}

/* === LOGO PAGE (page-id 2243) — Striche statt Pfeile in Listen === */
html body.page-id-2243 section.service-content .service-prose ul li::before{
  content:"—" !important;
  color:#6F8B7A !important;
  font-size:14px !important;
  font-weight:600 !important;
  position:absolute !important;
  left:0 !important;
  top:50% !important;
  transform:translateY(-50%) !important;
  background:transparent !important;
  width:14px !important;
  height:auto !important;
}
html body.page-id-2243 section.service-content .service-prose ul li::after{
  display:none !important;
  content:none !important;
}
html body.page-id-2243 section.service-content .service-prose ul li{
  padding:22px 28px 22px 32px !important;
  background:rgba(239,230,210,0.025) !important;
  border-left:2px solid #6F8B7A !important;
  position:relative !important;
}
