
:root {
    --teal-deep: #0A2E2A;
    --teal-primary: #0B6B63;
    --teal-mid: #0E8A80;
    --teal-accent: #50FFB1;
    --cream: #F7F5F0;
    --cream-dark: #E8E4DC;
    --bg: #F0ECE0;
    --text: #575761;
    --secondary: #D1BE9C;
    --gold: #C9A84C;
  }

  html { scroll-behavior: smooth; }
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  a { text-decoration: none; color: inherit; }

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--teal-deep);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  .nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 3rem;
    opacity: 0;
    animation: fadeDown 1s 1.8s ease forwards;
    transition: background 0.5s cubic-bezier(0.16,1,0.3,1),
                box-shadow 0.5s cubic-bezier(0.16,1,0.3,1),
                padding 0.5s cubic-bezier(0.16,1,0.3,1);
  }
  .nav--scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(10,46,42,0.06), 0 8px 30px rgba(10,46,42,0.05);
    padding: 1rem 3rem;
    mix-blend-mode: normal;
  }
  .nav-logo {
    height: 36px;
    filter: brightness(0) invert(1);
    transition: filter 0.5s cubic-bezier(0.16,1,0.3,1);
  }
  .nav--scrolled .nav-logo { filter: none; }

  .nav-links { display: flex; align-items: center; gap: 2rem; }

  .nav-link {
    position: relative;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--cream);
    transition: color 0.3s cubic-bezier(0.16,1,0.3,1);
  }
  .nav-link::after {
    content: '';
    position: absolute; bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--teal-accent);
    transition: width 0.3s cubic-bezier(0.16,1,0.3,1);
  }
  .nav-link:hover::after { width: 100%; }
  .nav--scrolled .nav-link { color: var(--teal-deep); }
  .nav--scrolled .nav-link::after { background: var(--teal-primary); }
  .nav--scrolled .nav-link:hover { color: var(--teal-primary); }

  .nav-contact {
    position: relative; overflow: hidden; isolation: isolate;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--cream); text-decoration: none;
    border: 1px solid rgba(247,245,240,0.3);
    padding: 0.6rem 1.6rem; border-radius: 100px;
    transition: color 0.3s 0.1s cubic-bezier(0.16,1,0.3,1),
                border-color 0.4s cubic-bezier(0.16,1,0.3,1);
  }
  .nav-contact::before {
    content: ''; position: absolute; inset: 0;
    background: var(--cream);
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    z-index: -1; border-radius: 100px;
  }
  .nav-contact:hover::before { transform: translateX(0); }
  .nav-contact:hover { color: var(--teal-deep); border-color: var(--cream); }
  .nav--scrolled .nav-contact { color: var(--teal-primary); border-color: rgba(11,107,99,0.25); }
  .nav--scrolled .nav-contact::before { background: var(--teal-primary); }
  .nav--scrolled .nav-contact:hover { color: #fff; border-color: var(--teal-primary); }

  /* ── HAMBURGER ── */
  .nav-hamburger {
    display: none;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 5px; width: 44px; height: 44px;
    background: none; border: none; cursor: pointer; padding: 0; z-index: 101;
  }
  .nav-hamburger span {
    display: block; width: 24px; height: 1.5px;
    background: var(--cream);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
                opacity 0.3s, width 0.4s cubic-bezier(0.16,1,0.3,1);
  }
  .nav--scrolled .nav-hamburger span { background: var(--teal-deep); }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* ── MOBILE OVERLAY ── */
  .mobile-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(10,46,42,0.97); backdrop-filter: blur(12px);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16,1,0.3,1);
  }
  .mobile-overlay.open { opacity: 1; pointer-events: all; }
  .mobile-overlay-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    width: 44px; height: 44px;
    background: none; border: none; cursor: pointer;
    color: rgba(247,245,240,0.5); display: flex; align-items: center; justify-content: center;
    transition: color 0.3s;
  }
  .mobile-overlay-close:hover { color: var(--cream); }
  .mobile-overlay-close svg { width: 24px; height: 24px; }
  .mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
  .mobile-nav-link {
    font-family: 'Lora', serif; font-size: 2rem; font-weight: 400;
    color: rgba(247,245,240,0.35); text-align: center; padding: 0.5rem 2rem;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1),
                transform 0.5s cubic-bezier(0.16,1,0.3,1),
                color 0.3s;
  }
  .mobile-nav-link:hover { color: var(--cream); }
  .mobile-overlay.open .mobile-nav-link:nth-child(1) { opacity:1; transform:translateY(0); transition-delay:.05s; }
  .mobile-overlay.open .mobile-nav-link:nth-child(2) { opacity:1; transform:translateY(0); transition-delay:.13s; }
  .mobile-overlay.open .mobile-nav-link:nth-child(3) { opacity:1; transform:translateY(0); transition-delay:.21s; }
  .mobile-nav-contact {
    display: inline-block; margin-top: 2rem;
    font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--teal-deep); background: var(--teal-accent);
    padding: 0.8rem 2rem; border-radius: 100px;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.5s 0.29s cubic-bezier(0.16,1,0.3,1),
                transform 0.5s 0.29s cubic-bezier(0.16,1,0.3,1);
  }
  .mobile-overlay.open .mobile-nav-contact { opacity:1; transform:translateY(0); }

  /* ── SCROLL-TO-TOP ── */
  .scroll-top {
    position: fixed; bottom: 2.5rem; right: 2.5rem; z-index: 90;
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--teal-deep);
    border: 1px solid rgba(80,255,177,0.15);
    box-shadow: 0 4px 20px rgba(10,46,42,0.25);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    opacity: 0; transform: translateY(12px); pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16,1,0.3,1),
                transform 0.4s cubic-bezier(0.16,1,0.3,1),
                background 0.3s, border-color 0.3s, box-shadow 0.3s;
  }
  .scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
  .scroll-top:hover {
    background: var(--teal-primary); border-color: rgba(80,255,177,0.3);
    transform: translateY(-3px); box-shadow: 0 8px 30px rgba(10,46,42,0.3);
  }
  .scroll-top svg { width: 20px; height: 20px; color: var(--cream); transition: transform 0.3s cubic-bezier(0.16,1,0.3,1); }
  .scroll-top:hover svg { transform: translateY(-2px); }
  .scroll-top.pulse { animation: stPulse 0.3s cubic-bezier(0.16,1,0.3,1); }
  @keyframes stPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(0.9); } }
  .scroll-top-tooltip {
    position: absolute; right: calc(100% + 12px);
    white-space: nowrap;
    background: var(--teal-deep); color: var(--cream);
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.05em;
    padding: 0.4rem 0.8rem; border-radius: 6px;
    opacity: 0; transform: translateX(6px);
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    pointer-events: none;
  }
  .scroll-top:hover .scroll-top-tooltip { opacity: 1; transform: translateX(0); }

  /* ── HERO ── */
  .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
  }

  /* Video / Image background */
  .hero-media {
    position: absolute; inset: 0;
    z-index: 1;
    will-change: transform;
  }
  .hero-media video,
  .hero-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .hero-media img {
    animation: kenBurns 20s ease-in-out infinite alternate;
  }
  .hero-media video ~ img { display: none; }

  @keyframes kenBurns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.08) translate(-1%, -1%); }
  }

  /* Gradient overlays */
  .hero-overlay {
    position: absolute; inset: 0; z-index: 2;
    background:
      linear-gradient(180deg,
        rgba(10,46,42,0.3) 0%,
        rgba(10,46,42,0.1) 40%,
        rgba(10,46,42,0.6) 70%,
        rgba(10,46,42,0.92) 100%
      );
  }
  .hero-grain {
    position: absolute; inset: 0; z-index: 3;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 128px;
    pointer-events: none;
  }

  /* Content */
  .hero-content {
    position: relative; z-index: 10;
    padding: 0 3rem 5rem;
    max-width: 900px;
    width: 100%;
    will-change: transform, opacity;
  }

  .hero-eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-accent);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: revealUp 0.8s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .hero-title {
    font-family: 'Lora', serif;
    font-weight: 500;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--cream);
    margin-bottom: 1.5rem;
  }
  .hero-title .line {
    display: block;
    overflow: hidden;
  }
  .hero-title .line span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: lineReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .hero-title .line:nth-child(1) span { animation-delay: 0.8s; }
  .hero-title .line:nth-child(2) span { animation-delay: 0.95s; }
  .hero-title .line:nth-child(3) span { animation-delay: 1.1s; }

  @keyframes lineReveal {
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(247,245,240,0.7);
    max-width: 520px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: revealUp 0.8s 1.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .hero-cta-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: revealUp 0.8s 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--teal-deep);
    background: var(--teal-accent);
    padding: 1rem 2.2rem;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
  }
  .btn-primary::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--cream);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 100px;
  }
  .btn-primary:hover::before { transform: scaleX(1); }
  .btn-primary span { position: relative; z-index: 1; }
  .btn-primary svg { position: relative; z-index: 1; width: 16px; height: 16px; }

  .btn-ghost {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--cream);
    text-decoration: none;
    border-bottom: 1px solid rgba(247,245,240,0.3);
    padding-bottom: 2px;
    transition: border-color 0.3s;
  }
  .btn-ghost:hover {
    border-color: var(--teal-accent);
    color: var(--teal-accent);
  }

  /* Scroll indicator */
  .hero-scroll {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    z-index: 10;
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    opacity: 0;
    animation: revealUp 0.8s 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    color: rgba(247,245,240,0.4);
  }
  .scroll-line {
    width: 1px; height: 48px;
    background: rgba(80,255,177,0.4);
    position: relative;
    overflow: hidden;
  }
  .scroll-line::after {
    content: '';
    position: absolute; top: -100%; left: 0;
    width: 100%; height: 100%;
    background: var(--teal-accent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0% { top: -100%; }
    50% { top: 0; }
    100% { top: 100%; }
  }

  /* Trust badges */
  .hero-trust {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex; gap: 2.5rem;
    opacity: 0;
    animation: revealUp 0.8s 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .trust-item {
    text-align: center;
    color: rgba(247,245,240,0.5);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .trust-item strong {
    display: block;
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.2rem;
  }

  /* Animations */
  @keyframes revealUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .hero-content { padding: 0 1.5rem 7rem; }
    .hero-trust { gap: 1.5rem; bottom: 1.2rem; }
    .hero-scroll { display: none; }
    .hero-title { font-size: clamp(2rem, 8vw, 3.5rem); }
  }

/* === services-final-v3.html === */
.services { padding: 8rem 0 5rem; }

  /* ── Header ── */
  .s-header {
    max-width: 1200px; margin: 0 auto 3.5rem; padding: 0 3rem;
    display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem;
    opacity: 0; transform: translateY(18px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .s-header.visible { opacity: 1; transform: translateY(0); }

  .s-label {
    font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--teal-mid); margin-bottom: 0.8rem;
    display: flex; align-items: center; gap: 0.5rem;
  }
  .s-label-dot { width: 5px; height: 5px; background: var(--teal-accent); border-radius: 50%; }
  .s-title {
    font-family: 'Lora', serif; font-weight: 400;
    font-size: clamp(2rem, 3.5vw, 2.8rem); line-height: 1.2;
    letter-spacing: -0.015em; max-width: 500px;
  }
  .s-title em { font-style: italic; color: var(--teal-primary); }
  .s-header-right { max-width: 300px; text-align: right; }
  .s-desc { font-size: 0.9rem; font-weight: 300; line-height: 1.65; color: var(--text); }

  /* ═══════════════════════════════
     CARDS
     ═══════════════════════════════ */
  .cards {
    max-width: 1200px; margin: 0 auto; padding: 0 3rem;
    display: flex; flex-direction: column; gap: 0.75rem;
  }

  .card {
    position: relative;
    background: #FFFFFF;
    border-radius: 20px;
    min-height: 200px;
    display: flex; align-items: center;
    cursor: pointer;
    overflow: visible;
    transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    /* scroll reveal */
    opacity: 0; transform: translateY(18px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.6s ease,
                scale 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .card.visible { opacity: 1; transform: translateY(0); }
  .card:nth-child(2).visible { transition-delay: 0.08s; }
  .card:nth-child(3).visible { transition-delay: 0.16s; }

  .card:hover { background: var(--teal-deep); scale: 1.015; box-shadow: 0 24px 64px rgba(10,46,42,0.12); }

  /* ── Card inner ── */
  .card-inner {
    padding: 3.2rem 3rem;
    display: flex; align-items: center; gap: 1.8rem;
    position: relative; z-index: 5;
    width: 100%;
  }

  /* Icon */
  .card-icon {
    width: 54px; height: 54px; flex-shrink: 0;
    border-radius: 14px; background: rgba(11,107,99,0.06);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.4s;
  }
  .card:hover .card-icon { background: rgba(80,255,177,0.1); }
  .card-icon svg { width: 24px; height: 24px; color: var(--teal-primary); transition: color 0.4s; }
  .card:hover .card-icon svg { color: var(--teal-accent); }

  /* Text block */
  .card-text { flex: 1; max-width: 560px; }

  .card-name {
    font-family: 'Lora', serif; font-weight: 600;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.02em;
    line-height: 1.1; color: var(--teal-deep); transition: color 0.4s;
  }
  .card:hover .card-name { color: var(--cream); }

  /* Description — reveals on hover */
  .card-hint {
    font-size: 0.9rem; font-weight: 300; line-height: 1.65;
    color: rgba(247,245,240,0.55); max-width: 480px;
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.4s 0.1s, margin 0.5s;
    margin-top: 0;
  }
  .card:hover .card-hint { max-height: 100px; opacity: 1; margin-top: 0.7rem; }

  /* Tags — reveal on hover */
  .card-tags {
    display: flex; gap: 0.45rem; flex-wrap: wrap;
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.5s 0.05s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.4s 0.15s, margin 0.5s;
    margin-top: 0;
  }
  .card:hover .card-tags { max-height: 40px; opacity: 1; margin-top: 0.9rem; }

  .card-tag {
    font-size: 0.62rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--teal-accent); border: 1px solid rgba(80,255,177,0.18);
    background: rgba(80,255,177,0.05);
    padding: 0.28rem 0.7rem; border-radius: 100px;
  }

  /* Arrow */
  .card-arrow {
    width: 20px; height: 20px; flex-shrink: 0;
    color: var(--cream-dark); transition: all 0.4s;
  }
  .card:hover .card-arrow { color: var(--teal-accent); transform: translateX(4px); }

  /* ═══ FLOATING IMAGE — Jamm style ═══
     Always right, vertically centered,
     overflows the card, rotated, wobble on hover */
  .card-float {
    position: absolute;
    right: 3%;
    top: 50%;
    z-index: 4;
    width: 360px;
    aspect-ratio: 4/3;
    border-radius: 14px;
    overflow: hidden;
    pointer-events: none;
    box-shadow: 0 25px 65px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.04);
    /* Hidden */
    opacity: 0;
    transform: translateY(-50%) translateX(60px) rotate(6deg) scale(0.85);
    transition: opacity 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
                transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .card-float img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .card:hover .card-float img { transform: scale(1.08); }

  /* Hover → slide in + wobble */
  .card:hover .card-float {
    opacity: 1;
    transform: translateY(-50%) translateX(0) rotate(4deg) scale(1);
  }
  .card:nth-child(1):hover .card-float { animation: w1 4s ease-in-out 0.5s infinite; }
  .card:nth-child(2):hover .card-float { animation: w2 4.5s ease-in-out 0.5s infinite; }
  .card:nth-child(3):hover .card-float { animation: w3 5s ease-in-out 0.5s infinite; }

  @keyframes w1 {
    0%, 100% { transform: translateY(-50%) rotate(4deg) scale(1); }
    25% { transform: translateY(calc(-50% - 6px)) rotate(2.5deg) scale(1.01); }
    50% { transform: translateY(calc(-50% + 4px)) rotate(5.5deg) scale(0.995); }
    75% { transform: translateY(calc(-50% - 2px)) rotate(3.5deg) scale(1.005); }
  }
  @keyframes w2 {
    0%, 100% { transform: translateY(-50%) rotate(4deg) scale(1); }
    30% { transform: translateY(calc(-50% + 5px)) rotate(2deg) scale(1.008); }
    60% { transform: translateY(calc(-50% - 4px)) rotate(5deg) scale(0.996); }
    85% { transform: translateY(calc(-50% + 2px)) rotate(3deg) scale(1.003); }
  }
  @keyframes w3 {
    0%, 100% { transform: translateY(-50%) rotate(4deg) scale(1); }
    20% { transform: translateY(calc(-50% - 5px)) rotate(5.5deg) scale(1.012); }
    45% { transform: translateY(calc(-50% + 3px)) rotate(2.5deg) scale(0.994); }
    70% { transform: translateY(calc(-50% - 3px)) rotate(4.5deg) scale(1.006); }
  }

  /* ── CTA ── */
  .s-cta {
    max-width: 1200px; margin: 3.5rem auto 0; padding: 0 3rem;
    display: flex; justify-content: center; align-items: center; gap: 2rem;
    opacity: 0; transform: translateY(18px);
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .s-cta.visible { opacity: 1; transform: translateY(0); }

  .cta-text { font-family: 'Lora', serif; font-size: 1.15rem; }
  .cta-text em { font-style: italic; color: var(--teal-primary); }

  .btn-teal {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--cream); background: var(--teal-primary);
    padding: 0.95rem 2.2rem; border-radius: 100px;
    white-space: nowrap;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                background 0.4s ease;
    position: relative; overflow: hidden;
  }
  .btn-teal::before {
    content: ''; position: absolute; inset: 0; background: var(--teal-deep);
    border-radius: 100px; transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .btn-teal:hover::before { transform: scaleX(1); }
  .btn-teal:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(10,46,42,0.2); }
  .btn-teal span, .btn-teal svg { position: relative; z-index: 1; }
  .btn-teal svg { width: 14px; height: 14px; }

  /* ── Responsive ── */
  @media (max-width: 900px) {
    .s-header { flex-direction: column; align-items: flex-start; padding: 0 1.5rem; }
    .s-header-right { text-align: left; }
    .cards { padding: 0 1.2rem; }
    .card-inner { padding: 2.5rem 1.5rem; flex-wrap: wrap; gap: 1rem; }
    .card-icon { display: none; }
    .card-float { display: none; }
    .card-name { font-size: clamp(1.5rem, 7vw, 2.2rem); }
    .s-cta { flex-direction: column; text-align: center; padding: 0 1.5rem; }
  }

/* === prozess-final.html === */
.prozess { padding: 8rem 0 6rem; }

  .p-header {
    max-width: 1200px; margin: 0 auto 4rem; padding: 0 3rem;
    text-align: center;
    opacity: 0; transform: translateY(18px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .p-header.visible { opacity: 1; transform: translateY(0); }

  .p-label {
    font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--teal-mid); margin-bottom: 1rem;
    display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  }
  .p-label-line { width: 24px; height: 1.5px; background: var(--teal-accent); border-radius: 2px; }
  .p-title {
    font-family: 'Lora', serif; font-weight: 400;
    font-size: clamp(2rem, 3.5vw, 2.8rem); line-height: 1.2;
    max-width: 520px; margin: 0 auto 0.8rem;
  }
  .p-title em { font-style: italic; color: var(--teal-primary); }
  .p-sub {
    font-size: 0.92rem; font-weight: 300; color: var(--text);
    max-width: 460px; margin: 0 auto; line-height: 1.6;
  }

  .steps-wrap {
    max-width: 1200px; margin: 0 auto; padding: 0 3rem;
    position: relative;
  }

  /* Animated dashed connector — no dots */
  .connector-line {
    position: absolute;
    top: 38%; left: calc(33.33% + 0.625rem); right: calc(33.33% + 0.625rem);
    height: 2px; z-index: 0; overflow: hidden;
  }
  .connector-line::before,
  .connector-line::after {
    content: ''; position: absolute; top: 0; bottom: 0;
    background: repeating-linear-gradient(90deg, var(--teal-accent) 0px, var(--teal-accent) 6px, transparent 6px, transparent 14px);
    opacity: 0.25;
    transform: scaleX(0); transform-origin: left;
  }
  .connector-line::before { left: 0; right: 50%; transition: transform 0.7s 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
  .connector-line::after  { left: 50%; right: 0;  transition: transform 0.7s 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
  .connector-line.visible::before,
  .connector-line.visible::after { transform: scaleX(1); }

  .steps {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem; position: relative; z-index: 2;
  }

  .step {
    background: #fff; border-radius: 20px;
    display: flex; flex-direction: column; overflow: hidden;
    opacity: 0; transform: translateY(22px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s;
  }
  .step.visible { opacity: 1; transform: translateY(0); }
  .step:nth-child(1).visible { transition-delay: 0s; }
  .step:nth-child(2).visible { transition-delay: 0.08s; }
  .step:nth-child(3).visible { transition-delay: 0.16s; }

  .step:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(10,46,42,0.1);
  }

  /* Illustration */
  .step-illo {
    width: 100%; aspect-ratio: 1/1; overflow: hidden;
    background: var(--cream);
    display: flex; align-items: center; justify-content: center;
  }
  .step-illo img {
    width: 82%; height: 82%; object-fit: contain;
    /* Very subtle breathe — barely noticeable, almost subliminal */
    animation: subtleBreath 7s ease-in-out infinite;
    animation-play-state: paused;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .step.visible .step-illo img { animation-play-state: running; }
  .step:nth-child(1) .step-illo img { animation-duration: 7s; }
  .step:nth-child(2) .step-illo img { animation-duration: 8s; animation-delay: 1s; }
  .step:nth-child(3) .step-illo img { animation-duration: 9s; animation-delay: 2s; }

  @keyframes subtleBreath {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.015); }
  }

  .step:hover .step-illo img {
    animation-play-state: paused;
    transform: scale(1.06) translateY(-6px);
  }

  .step-body {
    padding: 1.6rem 1.8rem 2rem;
    flex-grow: 1; display: flex; flex-direction: column;
  }

  .step-tag {
    font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--teal-accent);
    background: var(--teal-deep); display: inline-block;
    padding: 0.22rem 0.6rem; border-radius: 100px;
    width: fit-content; margin-bottom: 0.8rem;
    transition: box-shadow 0.4s;
  }
  .step:hover .step-tag { box-shadow: 0 0 16px rgba(80,255,177,0.25); }

  .step-name {
    font-family: 'Lora', serif; font-weight: 500;
    font-size: 1.3rem; line-height: 1.25; margin-bottom: 0.5rem;
  }

  .step-desc {
    font-size: 0.85rem; font-weight: 300; line-height: 1.65;
    color: var(--text); margin-bottom: 1.3rem; flex-grow: 1;
  }

  .step-meta { display: flex; gap: 0.4rem; flex-wrap: wrap; }
  .step-chip {
    font-size: 0.58rem; font-weight: 600; letter-spacing: 0.05em;
    text-transform: uppercase; color: var(--teal-primary);
    background: rgba(11,107,99,0.06);
    padding: 0.22rem 0.6rem; border-radius: 100px;
    transition: background 0.3s;
  }
  .step:hover .step-chip { background: rgba(11,107,99,0.1); }

  .p-cta {
    max-width: 1200px; margin: 3.5rem auto 0; padding: 0 3rem;
    text-align: center;
    opacity: 0; transform: translateY(18px);
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .p-cta.visible { opacity: 1; transform: translateY(0); }


  @media (max-width: 900px) {
    .steps { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .connector-line { display: none; }
    .p-header { padding: 0 1.5rem; }
    .steps-wrap { padding: 0 1.2rem; }
    .p-cta { padding: 0 1.5rem; }
  }

/* === vn-final.html === */
.vn{padding:8rem 0 6rem}

  .vn-header{
    max-width:1200px;margin:0 auto 5rem;padding:0 3rem;
    text-align:center;
    opacity:0;transform:translateY(18px);
    transition:all .8s cubic-bezier(.22,1,.36,1)
  }
  .vn-header.visible{opacity:1;transform:translateY(0)}
  .vn-label{font-size:.68rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:var(--teal-mid);margin-bottom:1rem;display:flex;align-items:center;justify-content:center;gap:.6rem}
  .vn-label-line{width:24px;height:1.5px;background:var(--teal-accent)}
  .vn-title{font-family:"Lora",serif;font-weight:400;font-size:clamp(2rem,3.5vw,2.8rem);line-height:1.2;max-width:520px;margin:0 auto .8rem}
  .vn-title em{font-style:italic;color:var(--teal-primary)}
  .vn-sub{font-size:.92rem;font-weight:300;color:var(--text);max-width:440px;margin:0 auto;line-height:1.6}

  .vn-items{max-width:1200px;margin:0 auto;padding:0 3rem;display:flex;flex-direction:column;gap:5rem}

  .vn-item{
    display:grid;grid-template-columns:1.15fr 0.85fr;gap:3rem;align-items:center;
    opacity:0;transform:translateY(18px);
    transition:all .8s cubic-bezier(.22,1,.36,1)
  }
  .vn-item.visible{opacity:1;transform:translateY(0)}
  .vn-item:nth-child(2){grid-template-columns:0.85fr 1.15fr}
  .vn-item:nth-child(2) .vn-slider-card{order:2}
  .vn-item:nth-child(2) .vn-item-text{order:1;text-align:right}
  .vn-item:nth-child(2) .vn-item-chips{justify-content:flex-end}
  .vn-item:nth-child(2) .vn-item-quote{text-align:right}
  .vn-item:nth-child(2).visible{transition-delay:.15s}

  /* ── Slider card ── */
  .vn-slider-card{
    background:#fff;border-radius:20px;overflow:hidden;
    box-shadow:0 8px 40px rgba(10,46,42,.06);
    transition:box-shadow .4s,transform .4s
  }
  .vn-slider-card:hover{
    box-shadow:0 24px 70px rgba(10,46,42,.12);
    transform:translateY(-4px)
  }

  .slider{position:relative;width:100%;aspect-ratio:16/10;overflow:hidden;cursor:col-resize;user-select:none;-webkit-user-select:none;border-radius:20px}
  .slider img{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;pointer-events:none}
  .img-nachher{z-index:1}
  .img-vorher{z-index:2;clip-path:inset(0 20% 0 0)}

  /* Handle */
  .handle{position:absolute;top:0;bottom:0;left:80%;z-index:10;width:2px;background:rgba(255,255,255,.9);transform:translateX(-50%);pointer-events:none;transition:left .8s cubic-bezier(.22,1,.36,1)}
  .handle::before{
    content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
    width:48px;height:48px;background:#fff;border-radius:50%;
    box-shadow:0 4px 24px rgba(0,0,0,.15);
    animation:handlePulse 2.5s ease-in-out infinite
  }
  .handle::after{
    content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
    width:18px;height:18px;z-index:1;
    background:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 16' fill='none' stroke='%230B6B63' stroke-width='2.5' stroke-linecap='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 1L2 8l5 7'/%3E%3Cpath d='M17 1l5 7-5 7'/%3E%3C/svg%3E") center/contain no-repeat
  }

  @keyframes handlePulse{
    0%,100%{box-shadow:0 4px 24px rgba(0,0,0,.15)}
    50%{box-shadow:0 4px 24px rgba(0,0,0,.15),0 0 0 8px rgba(11,107,99,.1)}
  }

  /* Slide hint text */
  .slide-hint{
    position:absolute;bottom:.8rem;left:50%;transform:translateX(-50%);z-index:12;
    font-size:.58rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;
    color:var(--cream);background:rgba(10,46,42,.6);backdrop-filter:blur(6px);
    padding:.3rem .9rem;border-radius:100px;pointer-events:none;
    opacity:1;transition:opacity .5s
  }
  .slider.touched .slide-hint{opacity:0}

  .slider .s-label{position:absolute;bottom:.8rem;z-index:5;font-size:.55rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;padding:.25rem .7rem;border-radius:100px;pointer-events:none;backdrop-filter:blur(4px)}
  .l-vorher{left:.8rem;background:rgba(10,46,42,.75);color:var(--cream)}
  .l-nachher{right:.8rem;background:rgba(80,255,177,.85);color:var(--teal-deep)}

  /* ── Text side ── */
  .vn-item-eyebrow{font-size:.65rem;font-weight:600;letter-spacing:.15em;text-transform:uppercase;color:var(--teal-mid);margin-bottom:.6rem}

  .vn-item-title{font-family:"Lora",serif;font-weight:500;font-size:clamp(1.4rem,2.5vw,1.9rem);line-height:1.25;margin-bottom:1rem}
  .vn-item-title em{font-style:italic;color:var(--teal-primary)}

  /* Animated stat */
  .vn-stat{display:inline-flex;align-items:baseline;gap:.3rem;margin-bottom:1rem}
  .vn-stat-num{
    font-family:"Lora",serif;font-size:2.4rem;font-weight:600;color:var(--teal-primary);line-height:1;
    opacity:0;transform:translateY(10px);
    transition:all .6s .3s cubic-bezier(.22,1,.36,1)
  }
  .vn-item.visible .vn-stat-num{opacity:1;transform:translateY(0)}
  .vn-stat-label{font-size:.75rem;font-weight:400;color:var(--text)}

  .vn-item-desc{font-size:.9rem;font-weight:300;line-height:1.7;color:var(--text);margin-bottom:1.2rem;max-width:380px}
  .vn-item:nth-child(2) .vn-item-desc{margin-left:auto}

  /* Quote */
  .vn-item-quote{
    margin-bottom:1.5rem;padding-left:1rem;
    border-left:2px solid var(--teal-accent);
    font-family:"Lora",serif;font-style:italic;
    font-size:.88rem;line-height:1.6;color:var(--teal-deep);
    opacity:0;transform:translateY(10px);
    transition:all .6s .5s cubic-bezier(.22,1,.36,1)
  }
  .vn-item:nth-child(2) .vn-item-quote{
    border-left:none;border-right:2px solid var(--teal-accent);
    padding-left:0;padding-right:1rem
  }
  .vn-item.visible .vn-item-quote{opacity:1;transform:translateY(0)}
  .vn-item-quote-author{
    display:block;font-family:"Outfit",sans-serif;font-style:normal;
    font-size:.7rem;font-weight:500;color:var(--text);margin-top:.3rem;
    letter-spacing:.03em
  }

  /* Chips on white bg for more contrast */
  .vn-item-chips{display:flex;gap:.4rem;flex-wrap:wrap}
  .chip{
    font-size:.6rem;font-weight:600;letter-spacing:.05em;text-transform:uppercase;
    color:var(--teal-primary);background:#fff;
    border:1px solid rgba(11,107,99,.1);
    padding:.28rem .7rem;border-radius:100px;
    transition:all .3s
  }
  .chip{cursor:pointer}
  .chip:hover{background:var(--teal-primary);color:#fff;border-color:var(--teal-primary)}

  /* ── CTA ── */
  .vn-cta{
    max-width:1200px;margin:4rem auto 0;padding:0 3rem;text-align:center;
    opacity:0;transform:translateY(18px);transition:all .7s cubic-bezier(.22,1,.36,1)
  }
  .vn-cta.visible{opacity:1;transform:translateY(0)}

  @media(max-width:900px){
    .vn-item,.vn-item:nth-child(2){grid-template-columns:1fr;gap:1.5rem}
    .vn-item:nth-child(2) .vn-slider-card{order:1}
    .vn-item:nth-child(2) .vn-item-text{order:2;text-align:left}
    .vn-item:nth-child(2) .vn-item-chips{justify-content:flex-start}
    .vn-item:nth-child(2) .vn-item-desc{margin-left:0}
    .vn-item:nth-child(2) .vn-item-quote{border-right:none;border-left:2px solid var(--teal-accent);padding-right:0;padding-left:1rem}
    .vn-items{padding:0 1.2rem;gap:3rem}
    .vn-header{padding:0 1.5rem}
    .vn-cta{padding:0 1.5rem}
  }

/* === trust-final.html === */
/* ═══ DARK BAND ═══ */
  .trust{background:var(--teal-deep);padding:8rem 0;position:relative;overflow:hidden}
  .trust::after{
    content:"";position:absolute;inset:0;opacity:.03;pointer-events:none;
    background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size:128px
  }

  .trust-inner{max-width:1200px;margin:0 auto;padding:0 3rem;position:relative;z-index:2}

  /* ── Top: centered storytelling ── */
  .trust-top{
    text-align:center;max-width:720px;margin:0 auto 4rem
  }

  .trust-label{
    font-size:.68rem;font-weight:600;letter-spacing:.22em;text-transform:uppercase;
    color:var(--teal-accent);margin-bottom:1.5rem;
    display:flex;align-items:center;justify-content:center;gap:.6rem;
    opacity:0;transform:translateY(18px);
    transition:all .7s cubic-bezier(.22,1,.36,1)
  }
  .trust-label.visible{opacity:1;transform:translateY(0)}
  .trust-label-line{width:24px;height:1.5px;background:var(--teal-accent);opacity:.5}

  /* Monogram instead of generic icon */
  .trust-monogram{
    width:72px;height:72px;margin:0 auto 1.8rem;
    border-radius:50%;
    background:linear-gradient(135deg, rgba(80,255,177,.1), rgba(14,138,128,.15));
    border:1px solid rgba(80,255,177,.15);
    display:flex;align-items:center;justify-content:center;
    opacity:0;transform:translateY(18px) scale(.85);
    transition:all .7s .1s cubic-bezier(.34,1.56,.64,1)
  }
  .trust-monogram.visible{opacity:1;transform:translateY(0) scale(1)}
  .trust-monogram span{
    font-family:"Lora",serif;font-size:1.8rem;font-weight:600;
    color:var(--teal-accent);line-height:1
  }

  .trust-title{
    font-family:"Lora",serif;font-weight:400;
    font-size:clamp(2rem,3.5vw,2.8rem);line-height:1.2;
    color:var(--cream);margin-bottom:1.5rem;
    opacity:0;transform:translateY(18px);
    transition:all .7s .15s cubic-bezier(.22,1,.36,1)
  }
  .trust-title.visible{opacity:1;transform:translateY(0)}
  .trust-title em{font-style:italic;color:var(--secondary)}

  /* Big quote with line-by-line reveal */
  .trust-quote{
    font-family:"Lora",serif;font-style:italic;
    font-size:clamp(1.1rem,2vw,1.35rem);line-height:1.6;
    color:rgba(247,245,240,.7);margin-bottom:1.2rem;
    position:relative;display:inline-block
  }
  .trust-quote-mark{
    display:block;font-size:3.5rem;color:var(--teal-accent);
    font-family:"Lora",serif;line-height:.6;margin-bottom:.8rem;
    opacity:0;transform:scale(.5);
    transition:all .5s .2s cubic-bezier(.34,1.56,.64,1)
  }
  .trust-quote-mark.visible{opacity:.6;transform:scale(1)}

  .trust-quote .q-line{
    display:block;
    opacity:0;transform:translateY(12px);
    transition:all .6s cubic-bezier(.22,1,.36,1)
  }
  .trust-quote .q-line.visible{opacity:1;transform:translateY(0)}
  .trust-quote .q-line:nth-child(2){transition-delay:.1s}
  .trust-quote .q-line:nth-child(3){transition-delay:.2s}

  .trust-author{
    font-family:"Outfit",sans-serif;font-style:normal;
    font-size:.78rem;font-weight:500;color:var(--secondary);
    letter-spacing:.03em;margin-bottom:0;
    opacity:0;transform:translateY(10px);
    transition:all .6s .4s cubic-bezier(.22,1,.36,1)
  }
  .trust-author.visible{opacity:1;transform:translateY(0)}

  /* ── Divider with animated width ── */
  .trust-divider{
    width:60px;height:1px;margin:0 auto 3.5rem;
    background:linear-gradient(90deg, transparent, rgba(80,255,177,.3), transparent);
    transform:scaleX(0);
    transition:transform 1s .2s cubic-bezier(.22,1,.36,1)
  }
  .trust-divider.visible{transform:scaleX(1)}

  /* ── Two-column story ── */
  .trust-story{
    display:grid;grid-template-columns:1fr 1fr;gap:3rem;
    max-width:900px;margin:0 auto 4.5rem
  }
  .trust-story-col{
    opacity:0;transform:translateY(18px);
    transition:all .7s cubic-bezier(.22,1,.36,1)
  }
  .trust-story-col.visible{opacity:1;transform:translateY(0)}
  .trust-story-col:nth-child(2){transition-delay:.12s}
  .trust-story p{
    font-size:.9rem;font-weight:300;line-height:1.75;
    color:rgba(247,245,240,.5)
  }

  /* ── Stats row — WHITE cards for consistency ── */
  .trust-stats{
    display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;
    margin-bottom:3rem
  }
  .tstat{
    background:#fff;border-radius:20px;padding:2rem 1.2rem;text-align:center;
    opacity:0;transform:translateY(18px);
    transition:all .6s cubic-bezier(.22,1,.36,1),box-shadow .4s,transform .4s
  }
  .tstat.visible{opacity:1;transform:translateY(0)}
  .tstat:nth-child(2).visible{transition-delay:.08s}
  .tstat:nth-child(3).visible{transition-delay:.16s}
  .tstat:nth-child(4).visible{transition-delay:.24s}
  .tstat:hover{
    transform:translateY(-8px);
    box-shadow:0 24px 48px rgba(0,0,0,.12)
  }

  .tstat-icon{
    width:44px;height:44px;margin:0 auto .8rem;
    border-radius:12px;background:rgba(11,107,99,.06);
    display:flex;align-items:center;justify-content:center;
    transition:background .5s cubic-bezier(0.34,1.56,0.64,1)
  }
  .tstat:hover .tstat-icon{background:var(--teal-primary)}
  .tstat-icon svg{width:20px;height:20px;color:var(--teal-primary);transition:color .5s}
  .tstat:hover .tstat-icon svg{color:#fff}

  /* Counter animation */
  .tstat-num{
    font-family:"Lora",serif;font-size:2.4rem;font-weight:600;
    color:var(--teal-deep);line-height:1;margin-bottom:.3rem;
    display:inline-block;
    transition:transform .4s cubic-bezier(0.34,1.56,0.64,1)
  }
  .tstat:hover .tstat-num { transform:scale(1.05) }
  .tstat-label{font-size:.72rem;font-weight:400;color:var(--text)}

  /* ── Bottom trust badges ── */
  .trust-badges{
    display:flex;justify-content:center;gap:2.5rem;flex-wrap:wrap;
    opacity:0;transform:translateY(15px);
    transition:all .7s .3s cubic-bezier(.22,1,.36,1)
  }
  .trust-badges.visible{opacity:1;transform:translateY(0)}
  .trust-badge{
    display:flex;align-items:center;gap:.5rem;
    font-size:.72rem;font-weight:500;color:rgba(247,245,240,.4);
    transition:color .3s
  }
  .trust-badge{cursor:pointer}
  .trust-badge:hover{color:rgba(247,245,240,.7)}
  .trust-badge svg{width:16px;height:16px;color:var(--teal-accent);opacity:.5;transition:opacity .3s}
  .trust-badge:hover svg{opacity:.8}

  @media(max-width:900px){
    .trust-inner{padding:0 1.5rem}
    .trust-story{grid-template-columns:1fr;gap:1rem}
    .trust-stats{grid-template-columns:1fr 1fr}
    .trust-badges{gap:1.5rem}
  }

/* === testimonials-final.html === */
.testimonials{padding:8rem 0 6rem}

  /* ── Header with rating badge ── */
  .t-header{
    max-width:1200px;margin:0 auto 3.5rem;padding:0 3rem;text-align:center;
    opacity:0;transform:translateY(18px);transition:all .8s cubic-bezier(.22,1,.36,1)
  }
  .t-header.visible{opacity:1;transform:translateY(0)}
  .t-label{font-size:.68rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:var(--teal-mid);margin-bottom:1rem;display:flex;align-items:center;justify-content:center;gap:.6rem}
  .t-label-line{width:24px;height:1.5px;background:var(--teal-accent)}
  .t-title{font-family:"Lora",serif;font-weight:400;font-size:clamp(2rem,3.5vw,2.8rem);line-height:1.2;max-width:520px;margin:0 auto .8rem}
  .t-title em{font-style:italic;color:var(--teal-primary)}

  /* Rating badge inline */
  .t-rating{
    display:inline-flex;align-items:center;gap:.8rem;
    background:#fff;border-radius:100px;padding:.5rem 1.4rem .5rem .7rem;
    box-shadow:0 4px 20px rgba(10,46,42,.05);
    margin-top:.8rem
  }
  .t-rating-stars{display:flex;gap:.12rem}
  .t-rating-stars svg{width:15px;height:15px;fill:var(--gold);color:var(--gold)}
  .t-rating-score{font-family:"Lora",serif;font-size:1.05rem;font-weight:600;color:var(--teal-deep)}
  .t-rating-text{font-size:.72rem;font-weight:400;color:var(--text)}

  /* ── Marquee wrapper with fade edges ── */
  .t-marquee-wrap{
    position:relative;
    margin-bottom:1rem;
    opacity:0;transform:translateY(18px);
    transition:all .8s .1s cubic-bezier(.22,1,.36,1)
  }
  .t-marquee-wrap.visible{opacity:1;transform:translateY(0)}

  /* Fade edges */
  .t-marquee-wrap::before,
  .t-marquee-wrap::after{
    content:"";position:absolute;top:0;bottom:0;width:120px;z-index:5;pointer-events:none
  }
  .t-marquee-wrap::before{left:0;background:linear-gradient(90deg,var(--bg),transparent)}
  .t-marquee-wrap::after{right:0;background:linear-gradient(270deg,var(--bg),transparent)}

  .t-marquee{overflow:hidden;padding:.5rem 0}
  .t-marquee:hover .t-row,
  .t-marquee:focus-within .t-row,
  .footer-ticker:focus-within .ticker-row{animation-play-state:paused}

  .t-row{
    display:flex;gap:1.25rem;width:max-content
  }
  .t-row.row-1{animation:scrollLeft 50s linear infinite}
  .t-row.row-2{animation:scrollRight 60s linear infinite}

  @keyframes scrollLeft{
    0%{transform:translateX(0)}
    100%{transform:translateX(-50%)}
  }
  @keyframes scrollRight{
    0%{transform:translateX(-50%)}
    100%{transform:translateX(0)}
  }

  /* ── Card ── */
  .t-card{
    background:#fff;border-radius:20px;padding:1.8rem 1.6rem;
    min-width:380px;max-width:380px;flex-shrink:0;
    display:flex;flex-direction:column;
    border:1px solid transparent;
    transition:all .4s cubic-bezier(.22,1,.36,1)
  }
  .t-card:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 50px rgba(10,46,42,.07);
    border-color:rgba(11,107,99,.1)
  }

  .t-stars{display:flex;gap:.15rem;margin-bottom:.8rem}
  .t-stars svg{width:14px;height:14px;fill:var(--gold);color:var(--gold)}

  .t-text{font-size:.88rem;line-height:1.65;color:var(--text);margin-bottom:1.2rem;flex-grow:1}

  .t-footer{display:flex;align-items:center;gap:.8rem}
  .t-avatar{
    width:38px;height:38px;border-radius:50%;flex-shrink:0;
    background:linear-gradient(135deg,rgba(11,107,99,.08),rgba(209,190,156,.12));
    display:flex;align-items:center;justify-content:center;
    font-family:"Lora",serif;font-size:.88rem;font-weight:600;color:var(--teal-primary)
  }
  .t-author{font-size:.8rem;font-weight:600;color:var(--teal-deep)}
  .t-role{font-size:.65rem;font-weight:400;color:var(--text)}

  @media(max-width:768px){
    .t-card{min-width:300px;max-width:300px}
    .t-header{padding:0 1.5rem}
    .t-marquee-wrap::before,.t-marquee-wrap::after{width:40px}
  }

/* === faq-final.html === */
.faq{padding:8rem 0 6rem}

  /* ═══ TWO-COLUMN LAYOUT: sticky visual left, accordion right ═══ */
  .faq-wrap{
    max-width:1200px;margin:0 auto;padding:0 3rem;
    display:grid;grid-template-columns:.42fr .58fr;gap:3.5rem;align-items:start
  }

  /* ── Left: sticky panel ── */
  .faq-left{
    position:sticky;top:6rem;
    opacity:0;transform:translateY(18px);
    transition:all .8s cubic-bezier(.22,1,.36,1)
  }
  .faq-left.visible{opacity:1;transform:translateY(0)}

  .faq-label{font-size:.68rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:var(--teal-mid);margin-bottom:.8rem;display:flex;align-items:center;gap:.5rem}
  .faq-label-dot{width:5px;height:5px;background:var(--teal-accent);border-radius:50%}

  .faq-title{font-family:"Lora",serif;font-weight:400;font-size:clamp(2rem,3.5vw,2.8rem);line-height:1.2;margin-bottom:1rem}
  .faq-title em{font-style:italic;color:var(--teal-primary)}

  .faq-desc{font-size:.88rem;font-weight:300;line-height:1.65;color:var(--text);margin-bottom:2rem;max-width:360px}

  /* Illustration */
  .faq-illo{
    width:100%;max-width:300px;aspect-ratio:1/1;
    display:flex;align-items:center;justify-content:center;
    margin-bottom:2rem;
    animation:subtleBreathe 8s ease-in-out infinite
  }
  .faq-illo img{width:85%;height:85%;object-fit:contain}
  @keyframes subtleBreathe{
    0%,100%{transform:scale(1)}
    50%{transform:scale(1.015)}
  }

  /* Contact mini card */
  .faq-contact{
    background:#fff;border-radius:16px;padding:1.3rem 1.5rem;
    display:flex;align-items:center;gap:1rem;
    box-shadow:0 4px 20px rgba(10,46,42,.04);
    transition:all .4s
  }
  .faq-contact:hover{transform:translateY(-2px);box-shadow:0 12px 40px rgba(10,46,42,.08)}

  .faq-contact-icon{
    width:44px;height:44px;flex-shrink:0;border-radius:12px;
    background:var(--teal-primary);
    display:flex;align-items:center;justify-content:center
  }
  .faq-contact-icon svg{width:20px;height:20px;color:#fff}
  .faq-contact-text{font-size:.78rem;font-weight:400;color:var(--text);line-height:1.4}
  .faq-contact-text strong{display:block;font-size:.88rem;font-weight:600;color:var(--teal-deep)}

  /* ── Right: accordion ── */
  .faq-right{
    opacity:0;transform:translateY(18px);
    transition:all .8s .12s cubic-bezier(.22,1,.36,1)
  }
  .faq-right.visible{opacity:1;transform:translateY(0)}

  .faq-item{
    background:#fff;border-radius:16px;margin-bottom:.6rem;
    overflow:hidden;cursor:pointer;
    border:1px solid transparent;
    transition:all .35s cubic-bezier(.22,1,.36,1)
  }
  .faq-item:hover{border-color:rgba(11,107,99,.08);background:rgba(11,107,99,.018);transition:background .3s ease,border-color .3s ease}
  .faq-item.open{border-color:rgba(11,107,99,.12);box-shadow:0 8px 30px rgba(10,46,42,.05)}

  .faq-q{
    padding:1.3rem 1.5rem;display:flex;align-items:center;justify-content:space-between;gap:1rem
  }

  .faq-q-text{
    font-family:"Lora",serif;font-weight:500;font-size:.98rem;
    line-height:1.35;color:var(--teal-deep);transition:color .3s;flex:1
  }
  .faq-item:hover .faq-q-text,.faq-item.open .faq-q-text{color:var(--teal-primary)}

  .faq-toggle{
    width:32px;height:32px;flex-shrink:0;
    border-radius:50%;background:rgba(11,107,99,.05);
    display:flex;align-items:center;justify-content:center;
    transition:all .4s cubic-bezier(.22,1,.36,1)
  }
  .faq-item.open .faq-toggle{background:var(--teal-primary);transform:rotate(45deg)}
  .faq-toggle svg{width:12px;height:12px;color:var(--teal-primary);transition:color .3s}
  .faq-item.open .faq-toggle svg{color:#fff}

  .faq-a{
    max-height:0;overflow:hidden;
    transition:max-height .5s cubic-bezier(.22,1,.36,1)
  }
  .faq-item.open .faq-a{max-height:250px}

  .faq-a-inner{
    padding:0 1.5rem 1.3rem;
    font-size:.88rem;font-weight:300;line-height:1.75;color:var(--text);
    opacity:0;transform:translateY(-6px);
    transition:all .4s .08s cubic-bezier(.22,1,.36,1)
  }
  .faq-item.open .faq-a-inner{opacity:1;transform:translateY(0)}
  .faq-a-inner strong{font-weight:600;color:var(--teal-deep)}

  /* Accent bar on open item */
  .faq-item::before{
    content:"";display:block;height:2px;
    background:linear-gradient(90deg,var(--teal-accent),var(--teal-primary));
    transform:scaleX(0);transform-origin:left;
    transition:transform .5s cubic-bezier(.22,1,.36,1)
  }
  .faq-item.open::before{transform:scaleX(1)}

  /* ── Bottom CTA (full width) ── */
  .faq-cta{
    max-width:1200px;margin:4rem auto 0;padding:0 3rem;
    display:flex;justify-content:center;align-items:center;gap:2rem;
    opacity:0;transform:translateY(18px);transition:all .7s cubic-bezier(.22,1,.36,1)
  }
  .faq-cta.visible{opacity:1;transform:translateY(0)}
  .cta-text{font-family:"Lora",serif;font-size:1.1rem}
  .cta-text em{font-style:italic;color:var(--teal-primary)}


  @media(max-width:900px){
    .faq-wrap{grid-template-columns:1fr;gap:2rem;padding:0 1.2rem}
    .faq-left{position:static}
    .faq-illo{max-width:200px;margin:0 auto 1.5rem}
    .faq-cta{flex-direction:column;text-align:center;padding:0 1.5rem}
  }

/* === footer-final.html === */
.cta{
    background:var(--teal-deep);padding:8rem 3rem;
    position:relative;overflow:hidden;text-align:center
  }
  .cta::after{
    content:"";position:absolute;inset:0;opacity:.025;pointer-events:none;
    background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size:128px
  }

  /* ═══ THE GIANT GRADIENT S ═══ */
  .cta-bg-s{
    position:absolute;top:50%;left:50%;
    transform:translate(-50%,-50%);
    font-family:"Lora",serif;font-weight:700;font-size:clamp(30rem,45vw,50rem);
    line-height:1;
    background:linear-gradient(160deg, rgba(80,255,177,.13) 0%, rgba(14,138,128,.07) 40%, rgba(209,190,156,.09) 100%);
    -webkit-background-clip:text;-webkit-text-fill-color:transparent;
    background-clip:text;
    pointer-events:none;user-select:none;
    animation:sPulse 10s ease-in-out infinite
  }
  @keyframes sPulse{
    0%,100%{opacity:1;transform:translate(-50%,-50%) scale(1)}
    50%{opacity:.8;transform:translate(-50%,-50%) scale(1.02)}
  }

  /* Glow orb behind the S */
  .cta-glow{
    position:absolute;top:45%;left:55%;
    width:clamp(300px,40vw,500px);height:clamp(300px,40vw,500px);
    background:radial-gradient(circle, rgba(80,255,177,.1) 0%, transparent 70%);
    border-radius:50%;filter:blur(60px);
    pointer-events:none;
    animation:glowFloat 12s ease-in-out infinite
  }
  @keyframes glowFloat{
    0%,100%{transform:translate(-50%,-50%) scale(1)}
    33%{transform:translate(-45%,-55%) scale(1.1)}
    66%{transform:translate(-55%,-45%) scale(.95)}
  }
  .cta-glow2{
    position:absolute;top:60%;left:35%;
    width:clamp(200px,25vw,350px);height:clamp(200px,25vw,350px);
    background:radial-gradient(circle, rgba(209,190,156,.08) 0%, transparent 70%);
    border-radius:50%;filter:blur(50px);
    pointer-events:none;
    animation:glowFloat2 15s ease-in-out infinite
  }
  @keyframes glowFloat2{
    0%,100%{transform:translate(-50%,-50%) scale(1)}
    50%{transform:translate(-40%,-60%) scale(1.15)}
  }

  .cta-inner{max-width:900px;margin:0 auto;position:relative;z-index:2}

  .cta-label{
    font-size:.68rem;font-weight:600;letter-spacing:.22em;text-transform:uppercase;
    color:var(--teal-accent);margin-bottom:2rem;
    display:flex;align-items:center;justify-content:center;gap:.6rem;
    opacity:0;transform:translateY(18px);transition:all .7s cubic-bezier(.22,1,.36,1)
  }
  .cta-label.visible{opacity:1;transform:translateY(0)}
  .cta-label-line{width:24px;height:1.5px;background:var(--teal-accent);opacity:.5}

  .cta-headline{font-family:"Lora",serif;font-weight:400;font-size:clamp(2.2rem,5vw,3.5rem);line-height:1.15;color:var(--cream);margin-bottom:2rem}
  .cta-line{display:block;opacity:0;transform:translateY(18px);transition:all .7s cubic-bezier(.22,1,.36,1)}
  .cta-line.visible{opacity:1;transform:translateY(0)}
  .cta-line:nth-child(2){transition-delay:.1s}
  .cta-line:nth-child(3){transition-delay:.2s}
  .cta-line em{font-style:italic;color:var(--secondary)}
  .cta-line .accent{color:var(--teal-accent)}

  .cta-phone{
    display:block;margin:0 auto 1rem;
    font-family:"Lora",serif;font-weight:600;
    font-size:clamp(2rem,5.5vw,3.8rem);letter-spacing:.02em;
    color:var(--teal-accent);line-height:1;
    opacity:0;transform:translateY(18px);
    transition:all .8s .3s cubic-bezier(.22,1,.36,1)
  }
  .cta-phone.visible{opacity:1;transform:translateY(0)}
  .cta-phone:hover{color:var(--cream);letter-spacing:.04em;transition:all .4s}

  .cta-hours{
    font-size:.82rem;font-weight:300;color:rgba(247,245,240,.35);margin-bottom:2.5rem;
    opacity:0;transition:all .6s .4s cubic-bezier(.22,1,.36,1)
  }
  .cta-hours.visible{opacity:1}

  .cta-actions{
    display:flex;justify-content:center;gap:1rem;flex-wrap:wrap;
    opacity:0;transform:translateY(15px);transition:all .7s .45s cubic-bezier(.22,1,.36,1)
  }
  .cta-actions.visible{opacity:1;transform:translateY(0)}

  .btn-accent{display:inline-flex;align-items:center;gap:.5rem;font-family:"Outfit",sans-serif;font-size:.82rem;font-weight:600;letter-spacing:.04em;text-transform:uppercase;color:var(--teal-deep);background:var(--teal-accent);padding:1rem 2.2rem;border-radius:100px;transition:all .4s cubic-bezier(.22,1,.36,1)}
  .btn-accent:hover{background:var(--cream);transform:translateY(-2px);box-shadow:0 12px 40px rgba(0,0,0,.2)}
  .btn-accent svg{width:14px;height:14px}
  .btn-ghost{display:inline-flex;align-items:center;gap:.5rem;font-family:"Outfit",sans-serif;font-size:.82rem;font-weight:500;color:rgba(247,245,240,.5);padding:1rem 1.5rem;border-radius:100px;transition:all .3s}
  .btn-ghost:hover{color:var(--cream)}
  .btn-ghost svg{width:14px;height:14px}

  /* ═══ FOOTER ═══ */
  .footer{background:var(--teal-deep);padding:0 3rem 0;position:relative}
  .footer-divider{max-width:1200px;margin:0 auto;height:1px;background:linear-gradient(90deg,transparent,rgba(247,245,240,.06),transparent)}
  .footer-main{max-width:1200px;margin:0 auto;padding:3.5rem 0 3rem;display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start}

  .footer-brand{display:flex;align-items:flex-start;gap:1.2rem}
  .footer-monogram{width:56px;height:56px;border-radius:16px;flex-shrink:0;background:linear-gradient(135deg,rgba(80,255,177,.1),rgba(14,138,128,.15));border:1px solid rgba(80,255,177,.12);display:flex;align-items:center;justify-content:center;font-family:"Lora",serif;font-size:1.5rem;font-weight:700;color:var(--teal-accent)}
  .footer-brand-name{font-family:"Lora",serif;font-size:1.2rem;font-weight:600;color:var(--cream);margin-bottom:.3rem}
  .footer-brand-desc{font-size:.8rem;font-weight:300;line-height:1.6;color:rgba(247,245,240,.35);max-width:320px}

  .footer-contacts{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem}
  .footer-contact{display:flex;align-items:flex-start;gap:.6rem}
  .footer-contact-icon{width:32px;height:32px;flex-shrink:0;border-radius:10px;background:rgba(80,255,177,.06);display:flex;align-items:center;justify-content:center}
  .footer-contact-icon svg{width:14px;height:14px;color:var(--teal-accent);opacity:.7}
  .footer-contact-label{font-size:.6rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:rgba(247,245,240,.25);margin-bottom:.15rem}
  .footer-contact-value{font-size:.85rem;font-weight:500;color:rgba(247,245,240,.6);line-height:1.4;transition:color .3s}
  a:hover .footer-contact-value{color:var(--cream)}

  .footer-ticker{max-width:1200px;margin:0 auto;padding:1.5rem 0;overflow:hidden;border-top:1px solid rgba(247,245,240,.04);border-bottom:1px solid rgba(247,245,240,.04);position:relative}
  .footer-ticker::before,.footer-ticker::after{content:"";position:absolute;top:0;bottom:0;width:80px;z-index:2;pointer-events:none}
  .footer-ticker::before{left:0;background:linear-gradient(90deg,var(--teal-deep),transparent)}
  .footer-ticker::after{right:0;background:linear-gradient(270deg,var(--teal-deep),transparent)}
  .ticker-row{display:flex;gap:2rem;width:max-content;animation:tickerScroll 60s linear infinite}
  @keyframes tickerScroll{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
  .ticker-item{font-size:.68rem;font-weight:500;letter-spacing:.08em;text-transform:uppercase;color:rgba(247,245,240,.15);white-space:nowrap;display:flex;align-items:center;gap:2rem}
  .ticker-dot{width:3px;height:3px;border-radius:50%;background:rgba(80,255,177,.2)}

  .footer-bottom{max-width:1200px;margin:0 auto;padding:1.5rem 0;display:flex;justify-content:space-between;align-items:center;gap:1rem;flex-wrap:wrap}
  .footer-copy{font-size:.7rem;font-weight:400;color:rgba(247,245,240,.2)}
  .footer-links{display:flex;gap:1.5rem}
  .footer-links a{font-size:.7rem;font-weight:400;color:rgba(247,245,240,.3)}
  .footer-links a:hover{color:rgba(247,245,240,.5)}

  @media(max-width:900px){.cta{padding:6rem 1.5rem}.footer{padding:0 1.5rem}.footer-main{grid-template-columns:1fr;gap:2rem}.footer-contacts{grid-template-columns:1fr}.footer-bottom{flex-direction:column;align-items:flex-start}}

  /* ── Befund 5: Mobile Lesebarkeit — Mindestgröße 1rem ── */
  @media (max-width: 900px) {
    .step-desc, .faq-a-inner, .t-text, .vn-item-desc { font-size: 1rem; }
    .faq-q-text { font-size: 1rem; }
  }

  /* ── Befund 6: Service Cards Mobile — Hover-Inhalte immer sichtbar ── */
  @media (max-width: 900px) {
    .card-hint { max-height: 120px; opacity: 1; margin-top: 0.7rem; color: var(--text); }
    .card-tags { max-height: none; opacity: 1; margin-top: 0.9rem; }
    .card-name { color: var(--teal-deep); }
  }

  /* ── Befund 4: prefers-reduced-motion ── */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    .reveal-text-inner { transform: none !important; transition: none !important; }
  }

  /* ── Punkt 5: Focus-States Barrierefreiheit ── */
  a:focus-visible,
  button:focus-visible,
  [tabindex="0"]:focus-visible {
    outline: 2px solid var(--teal-accent);
    outline-offset: 3px;
    border-radius: 4px;
  }

  /* ── Punkt 6: Section divider between light sections ── */
  .section-divider {
    width: 120px; height: 1px;
    background: var(--cream-dark);
    margin: 0 auto;
  }

  /* ── Punkt 7: Hero scroll indicator hide on scroll ── */
  .hero-scroll { transition: opacity 0.6s ease; }
  .hero-scroll.scroll-hidden { opacity: 0 !important; pointer-events: none; }

  /* ── Punkt 8: Trust stats hover refined ── */
  .tstat { transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease; }

  /* ── A1: Nav scroll-awareness — handled by premium nav CSS above ── */

  /* ── A5: Improved scroll-reveal easing ── */
  .s-header, .p-header, .vn-header, .t-header, .faq-left, .faq-right {
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
    transition-duration: 0.75s !important;
  }

  /* ── B1: Wave dividers ── */
  .wave-divider { display: block; width: 100%; line-height: 0; overflow: hidden; position: relative; z-index: 1; }
  .wave-divider svg { display: block; width: 100%; height: 56px; }
  .wave-to-dark { background: var(--bg); }
  .wave-to-light { background: var(--teal-deep); }

  /* ── B6: FAQ accordion — grid-template-rows ── */
  .faq-a {
    display: grid;
    grid-template-rows: 0fr;
    max-height: none !important;
    transition: grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1) !important;
  }
  .faq-a-inner { overflow: hidden; }
  .faq-item.open .faq-a { grid-template-rows: 1fr; max-height: none !important; }

  /* ── C1: Per-word hero reveal ── */
  .word-wrap { display: inline-block; overflow: hidden; vertical-align: bottom; line-height: 1.15; padding-bottom: 0.15em; margin-bottom: -0.15em; }
  .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: wordReveal 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  @keyframes wordReveal { to { opacity: 1; transform: translateY(0); } }


/* Aktiver Nav-Link */
.nav-link--active::after {
  width: 100% !important;
  background: var(--teal-accent);
}
.nav--scrolled .nav-link--active {
  color: var(--teal-primary);
}
.nav--scrolled .nav-link--active::after {
  background: var(--teal-primary);
}
/* Page Transition */
body {
  animation: pageFadeIn 0.3s ease forwards;
}
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.page-transitioning {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
/* Fokus-States */
:focus-visible {
  outline: 2px solid var(--teal-accent);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--teal-accent);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) {
  outline: none;
}


/* ── Premium Polish: Text Reveal ── */
.reveal-text {
  overflow: hidden;
  display: block;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
}
.reveal-text-inner {
  display: block;
  transform: translateY(105%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-text.revealed .reveal-text-inner {
  transform: translateY(0);
}

/* ── Premium Polish: Counter Glow ── */
.tstat-num {
  transition: text-shadow 0.3s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tstat-num.count-complete {
  text-shadow: 0 0 30px rgba(80,255,177,0.4),
               0 0 60px rgba(80,255,177,0.2);
  animation: statPulse 0.6s ease forwards;
}
@keyframes statPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* ── Premium Polish: Scroll Progress Bar (horizontal) ── */
.scroll-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--teal-primary), var(--teal-accent));
  z-index: 9997;
  transition: width 0.1s linear;
}

/* ── WhatsApp Floating Button ── */
.whatsapp-float{position:fixed;bottom:2.5rem;right:5.5rem;width:52px;height:52px;background:#25D366;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 12px rgba(0,0,0,.2);z-index:999;transition:transform .3s ease,box-shadow .3s ease;text-decoration:none}
.whatsapp-float:hover{transform:scale(1.1);box-shadow:0 6px 20px rgba(0,0,0,.3)}
.whatsapp-tooltip{position:absolute;right:62px;background:#333;color:#fff;padding:4px 10px;border-radius:6px;font-size:13px;font-family:Outfit,sans-serif;white-space:nowrap;opacity:0;pointer-events:none;transition:opacity .3s ease}
.whatsapp-float:hover .whatsapp-tooltip{opacity:1}
@media(min-width:769px){.whatsapp-float{display:none}}

/* ── Sticky Mobile Bottom Bar ── */
.mobile-bottom-bar{display:none;position:fixed;bottom:0;left:0;right:0;background:var(--cream);box-shadow:0 -2px 12px rgba(0,0,0,.12);padding:.75rem 1rem;z-index:1000;gap:.75rem;transform:translateY(100%);transition:transform .4s cubic-bezier(0.16,1,0.3,1)}
.mobile-bottom-bar.visible{transform:translateY(0)}
.mobile-bar-btn{flex:1;display:flex;align-items:center;justify-content:center;gap:.5rem;padding:.75rem;border-radius:12px;font-family:Outfit,sans-serif;font-weight:600;font-size:.95rem;text-decoration:none;transition:background .2s ease}
.mobile-bar-call{background:var(--teal-primary);color:#fff}
.mobile-bar-call:hover{background:var(--teal-deep)}
.mobile-bar-wa{background:#25D366;color:#fff}
.mobile-bar-wa:hover{background:#20BD5A}
@media(max-width:768px){.mobile-bottom-bar{display:flex}}

/* ══════════════════════════════════════════════════════════
   HAUSHALTSAUFLÖSUNG PAGE — /leistungen/haushaltsaufloesung/
   ══════════════════════════════════════════════════════════ */

/* ── Global Reveal (is-visible) ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Shared Section Atoms ── */
.ha-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--teal-mid);
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.8rem;
}
.ha-label--light { color: rgba(80,255,177,0.7); }
.ha-label-dot {
  width: 5px; height: 5px; background: var(--teal-accent); border-radius: 50%;
}
.ha-section-title {
  font-family: 'Lora', serif; font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 2.8rem); line-height: 1.2;
  letter-spacing: -0.015em; color: var(--teal-deep);
}
.ha-section-title em { font-style: italic; color: var(--teal-primary); }
.ha-section-title--light { color: var(--cream); }
.ha-section-title--light em { color: var(--teal-accent); }
.ha-section-sub {
  font-size: 0.95rem; font-weight: 300; line-height: 1.65;
  color: var(--text); margin-top: 0.6rem; max-width: 540px;
}
.ha-section-header { max-width: 1200px; margin: 0 auto 3.5rem; padding: 0 3rem; }
.ha-section-header--light .ha-section-sub { color: rgba(247,245,240,0.6); }

/* ── Breadcrumb ── */
.ha-breadcrumb {
  font-family: 'Outfit', sans-serif; font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.04em; color: rgba(247,245,240,0.4);
  margin-bottom: 2rem; display: flex; align-items: center; gap: 0.4rem;
}
.ha-breadcrumb a {
  color: rgba(247,245,240,0.5);
  transition: color 0.3s cubic-bezier(0.16,1,0.3,1);
}
.ha-breadcrumb a:hover { color: var(--teal-accent); }
.ha-breadcrumb span { color: rgba(247,245,240,0.3); }
.ha-breadcrumb[data-reveal] { transform: translateX(-12px) translateY(0); }
.ha-breadcrumb[data-reveal].is-visible { transform: translateX(0); }

/* ══════════════════════════════
   HERO — ZONE A
   ══════════════════════════════ */
.ha-hero {
  background: #0A2E2A;
  color: var(--cream);
  min-height: 62vh;
  max-height: 780px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 3rem 5rem;
}
/* TODO: Sobald hero-haushaltsaufloesung.jpg vorhanden,
   background-image aktivieren und Gradient-Fallback entfernen */
.ha-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%,
    rgba(14, 138, 128, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.ha-hero__grain {
  position: absolute; inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px;
  pointer-events: none;
}
.ha-hero__content {
  position: relative; z-index: 10;
  max-width: 800px; width: 100%;
}
.ha-hero__title {
  font-family: 'Lora', serif; font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1;
  letter-spacing: -0.02em; color: var(--cream);
  margin-bottom: 1.5rem;
}
.ha-hero__title em { font-style: italic; color: var(--teal-accent); }
.ha-hero__sub {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1rem, 1.05vw, 1.125rem); font-weight: 300;
  line-height: 1.65; color: rgba(247,245,240,0.7);
  max-width: 560px; margin-bottom: 2rem;
}
.ha-hero__pills {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.ha-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  border: 1px solid rgba(80,255,177,0.3);
  color: var(--cream);
  background: rgba(80,255,177,0.08);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem; font-weight: 400;
  transition: background 0.3s cubic-bezier(0.16,1,0.3,1),
              transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.ha-pill:hover { transform: translateY(-2px); background: rgba(80,255,177,0.14); }
.ha-pill svg { width: 14px; height: 14px; color: var(--teal-accent); flex-shrink: 0; }
.ha-hero__cta {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}

/* ══════════════════════════════
   SERVICES — ZONE B
   ══════════════════════════════ */
.ha-services {
  background: var(--bg);
  padding: clamp(80px, 10vw, 120px) 0;
  border-radius: 32px 32px 0 0;
  margin-top: -32px;
  position: relative; z-index: 2;
}
.ha-services__inner { max-width: 1200px; margin: 0 auto; }
.ha-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0 3rem;
}
.ha-service-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: clamp(32px, 4vw, 48px);
  box-shadow: 0 4px 24px rgba(10, 46, 42, 0.06);
  transform-style: preserve-3d;
  /* reveal */
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.ha-service-card.visible { opacity: 1; transform: translateY(0); }
.ha-service-card:nth-child(2).visible { transition-delay: 100ms; }
.ha-service-card:nth-child(3).visible { transition-delay: 200ms; }
.ha-service-card:hover {
  transform: translateY(-6px) rotateX(2deg) rotateY(-1deg);
  box-shadow: 0 24px 64px rgba(10, 46, 42, 0.15);
}
.ha-service-card__icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 14px; background: rgba(11,107,99,0.06);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.ha-service-card__icon svg { width: 24px; height: 24px; color: var(--teal-primary); }
.ha-service-card__title {
  font-family: 'Lora', serif; font-weight: 600;
  font-size: 1.35rem; line-height: 1.2;
  color: var(--teal-deep); margin-bottom: 0.8rem;
}
.ha-service-card__text {
  font-size: clamp(1rem, 1.05vw, 1.125rem); font-weight: 400;
  line-height: 1.65; color: var(--text); margin-bottom: 1.2rem;
}
.ha-service-card__tags { display: flex; gap: 0.45rem; flex-wrap: wrap; }
.ha-card-tag {
  background: rgba(11, 107, 99, 0.08);
  color: var(--teal-primary);
  border-radius: 100px;
  padding: 4px 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem; font-weight: 500;
}

/* ══════════════════════════════
   PROZESS — CREAM
   ══════════════════════════════ */
.ha-prozess {
  background: var(--bg);
  color: var(--text);
  padding: clamp(60px, 8vw, 100px) 0;
}
.ha-prozess__inner { max-width: 1200px; margin: 0 auto; }
.ha-prozess__steps {
  display: flex; flex-direction: column;
  gap: 16px; padding: 0 3rem;
  position: relative;
}
.ha-prozess-step {
  display: flex; align-items: flex-start; gap: 28px;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px 36px;
  box-shadow: 0 2px 20px rgba(10, 46, 42, 0.07);
  border-left: none;
  /* reveal — from left */
  opacity: 0; transform: translateX(-20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.ha-prozess-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(10, 46, 42, 0.11);
}
.ha-prozess-step.visible,
.ha-prozess-step.is-visible { opacity: 1; transform: translateX(0); }
.ha-prozess-step:last-child { padding-bottom: 32px; }
.ha-prozess-step__left { flex-shrink: 0; }
.ha-prozess-nummer {
  color: var(--teal-primary);
  font-family: 'Lora', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 700; line-height: 1;
  position: relative; z-index: 1;
}
.ha-prozess-step__title {
  font-family: 'Lora', serif; font-weight: 600;
  font-size: 1.1rem; color: var(--teal-deep);
  margin-bottom: 8px;
}
.ha-prozess-step__text {
  font-size: 1.02rem; font-weight: 400;
  line-height: 1.65; color: var(--text);
  max-width: 480px; margin: 0;
}

/* ══════════════════════════════
   VN-SLIDER — ZONE B
   ══════════════════════════════ */
.ha-vn {
  background: var(--bg);
  padding: clamp(60px, 8vw, 100px) 0;
}
.ha-vn__inner { max-width: 1200px; margin: 0 auto; }
.ha-vn__card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(10, 46, 42, 0.10);
  margin: 0 3rem;
  /* reveal */
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.ha-vn__card.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════
   TRUST — ZONE B (Option A: Cream)
   ══════════════════════════════ */
.ha-trust {
  background: var(--bg);
  color: var(--text);
  padding: clamp(80px, 10vw, 140px) 0;
}
.ha-trust__inner { max-width: 1200px; margin: 0 auto; }
.ha-trust__stats {
  display: flex; justify-content: center; gap: clamp(3rem, 6vw, 6rem);
  margin-bottom: 4rem; padding: 0 3rem;
  /* reveal */
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.ha-trust__stats.visible { opacity: 1; transform: translateY(0); }
.ha-trust-stat { text-align: center; }
.ha-trust-stat__number {
  display: block;
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--teal-primary);
  font-family: 'Lora', serif; font-weight: 700;
  line-height: 1.1;
}
.ha-trust-stat__label {
  font-size: 0.85rem; font-weight: 400;
  color: var(--text); margin-top: 0.3rem;
  display: block;
}
.ha-trust__cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; padding: 0 3rem;
}
.ha-trust-card {
  background: #ffffff;
  border: 1px solid rgba(10,46,42,0.08);
  border-radius: 20px; padding: 32px;
  /* reveal */
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.ha-trust-card.visible { opacity: 1; transform: translateY(0); }
.ha-trust-card:nth-child(2).visible { transition-delay: 100ms; }
.ha-trust-card:nth-child(3).visible { transition-delay: 200ms; }
.ha-trust-card__stars {
  display: flex; gap: 2px; margin-bottom: 1rem;
}
.ha-trust-card__stars svg {
  width: 16px; height: 16px; fill: var(--teal-primary); color: var(--teal-primary);
}
.ha-trust-card__text {
  font-size: 0.95rem; line-height: 1.65; color: var(--text);
  margin-bottom: 1.5rem;
}
.ha-trust-card__author { display: flex; align-items: center; gap: 0.75rem; }
.ha-trust-card__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(11,107,99,0.08); color: var(--teal-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lora', serif; font-weight: 600; font-size: 0.9rem;
}
.ha-trust-card__name {
  font-weight: 600; font-size: 0.85rem; color: var(--teal-deep);
}
.ha-trust-card__role {
  font-size: 0.75rem; color: rgba(87,87,97,0.6);
}

/* ══════════════════════════════
   FAQ — ZONE B
   ══════════════════════════════ */
.ha-faq {
  background: var(--bg);
  padding: clamp(80px, 10vw, 120px) 0;
}
.ha-faq__inner { max-width: 800px; margin: 0 auto; }
.ha-faq__list {
  padding: 0 3rem;
  /* reveal */
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.ha-faq__list.visible { opacity: 1; transform: translateY(0); }
.ha-faq .faq-item {
  background: #FFFFFF;
  border-radius: 16px;
  border: none;
  box-shadow: 0 2px 16px rgba(10, 46, 42, 0.06);
  margin-bottom: 12px;
}
.ha-faq .faq-q-text {
  color: var(--teal-deep); font-weight: 600;
}
.ha-faq .faq-a-inner {
  color: var(--text);
  font-size: 1.02rem; line-height: 1.7;
}

/* ══════════════════════════════
   CTA — ZONE A
   ══════════════════════════════ */
.ha-cta {
  background: var(--teal-deep);
  color: var(--cream);
  padding: clamp(100px, 12vw, 160px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ha-cta__glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,138,128,0.2) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.ha-cta__inner {
  position: relative; z-index: 2;
  max-width: 700px; margin: 0 auto; padding: 0 3rem;
}
.ha-cta__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-family: 'Lora', serif; font-weight: 500;
  line-height: 1.15; margin-bottom: 1rem;
}
.ha-cta__accent { color: var(--teal-accent); }
.ha-cta__sub {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(247,245,240,0.6);
  margin-bottom: 2.5rem; line-height: 1.6;
}
.ha-cta__actions {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.ha-cta__link {
  font-size: 0.85rem; color: rgba(247,245,240,0.45);
  text-decoration: underline; text-underline-offset: 3px;
  /* reveal */
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.3s;
}
.ha-cta__link.visible { opacity: 1; transform: translateY(0); }
.ha-cta__link:hover { color: var(--teal-accent); }

/* ══════════════════════════════
   PREISE — ZONE B
   ══════════════════════════════ */
.ha-preise { background: var(--bg); padding: clamp(80px, 10vw, 120px) 0; }
.ha-preise__inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.ha-preise__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin: 48px 0 32px;
}
.ha-preis-card {
  background: #fff; border-radius: 20px;
  padding: 36px 28px; text-align: center;
  box-shadow: 0 4px 24px rgba(10,46,42,0.07);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.ha-preis-card:hover { transform: translateY(-4px); }
.ha-preis-card--featured {
  background: var(--teal-deep); color: var(--cream);
  transform: scale(1.04);
}
.ha-preis-card--featured:hover { transform: scale(1.04) translateY(-4px); }
.ha-preis-card__size {
  font-size: 0.875rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--teal-primary); margin-bottom: 8px;
}
.ha-preis-card--featured .ha-preis-card__size { color: var(--teal-accent); }
.ha-preis-card__from { font-size: 0.8rem; color: var(--text); margin: 0; }
.ha-preis-card--featured .ha-preis-card__from { color: rgba(247,245,240,0.6); }
.ha-preis-card__price {
  font-family: 'Lora', serif; font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700; color: var(--teal-deep); margin: 4px 0;
}
.ha-preis-card--featured .ha-preis-card__price { color: var(--teal-accent); }
.ha-preis-card__note { font-size: 0.8rem; color: var(--text); }
.ha-preis-card--featured .ha-preis-card__note { color: rgba(247,245,240,0.6); }
.ha-preise__hint svg {
  width: 14px; height: 14px; vertical-align: middle;
}
.ha-preise__hint {
  text-align: center; font-size: 0.9rem;
  color: var(--teal-primary); font-weight: 500;
  /* reveal */
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.ha-preise__hint.visible { opacity: 1; transform: translateY(0); }

/* ── Interne Verlinkung ── */
.ha-services__more {
  text-align: center; margin-top: 48px; padding: 0 3rem;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.ha-services__more.visible { opacity: 1; transform: translateY(0); }
.ha-services__more p { color: var(--text); font-size: 0.9rem; margin-bottom: 16px; }
.ha-services__more-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.ha-more-link {
  color: var(--teal-primary); font-weight: 600;
  text-decoration: none; padding: 8px 20px;
  border: 1.5px solid var(--teal-primary); border-radius: 100px;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.ha-more-link:hover {
  background: var(--teal-primary); color: var(--cream);
  transform: translateY(-2px);
}

/* ── ANIM 3: FAQ smooth height ── */
.faq-a {
  height: 0; overflow: hidden;
  transition: height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item--open .faq-toggle svg {
  transform: rotate(45deg);
}
.faq-toggle svg {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── ANIM 4: Preis-Cards scale-in ── */
.ha-preis-card[data-reveal] {
  transform: translateY(16px) scale(0.97); opacity: 0;
}
.ha-preis-card[data-reveal].is-visible {
  transform: translateY(0) scale(1); opacity: 1;
}
.ha-preis-card--featured[data-reveal].is-visible {
  transform: translateY(0) scale(1.04);
}

/* ── ANIM 5: Prozess Timeline ── */
.ha-prozess__steps::before {
  content: ''; position: absolute;
  left: calc(3rem + 28px); top: 0; bottom: 0;
  width: 2px; background: rgba(11, 107, 99, 0.15);
}
.ha-prozess__steps::after {
  content: ''; position: absolute;
  left: calc(3rem + 28px); top: 0;
  width: 2px; height: var(--timeline-progress, 0%);
  background: linear-gradient(to bottom, var(--teal-primary), var(--teal-mid));
  transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.ha-prozess-step.is-visible .ha-prozess-nummer::after {
  content: ''; position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(11, 107, 99, 0.3);
  animation: pulse-ring 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes pulse-ring {
  0%   { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ── ANIM 6: Trust count-up glow ── */
.ha-trust-stat__number { transition: text-shadow 0.3s ease; }
.ha-trust-stat__number.count-done {
  text-shadow: 0 0 32px rgba(80,255,177,0.6), 0 0 64px rgba(80,255,177,0.3);
  animation: glow-pulse 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes glow-pulse {
  0%   { text-shadow: 0 0 32px rgba(80,255,177,0.8), 0 0 64px rgba(80,255,177,0.4); }
  100% { text-shadow: none; }
}

/* ── ANIM 7: Sticky Nav CTA ── */
.nav-sticky-cta {
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--teal-accent); color: var(--teal-deep);
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 0.85rem;
  padding: 8px 20px; border-radius: 100px;
  text-decoration: none; white-space: nowrap;
  margin-left: 16px;
}
.nav-sticky-cta.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ── ANIM 8: Service Card icon rotation ── */
.ha-service-card__icon {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.ha-service-card:hover .ha-service-card__icon {
  transform: rotate(-8deg) scale(1.15);
}

/* ── Section Separator (Cream-zu-Cream) ── */
.section-sep {
  width: calc(100% - 96px); max-width: 1100px;
  margin: 0 auto; height: 1px;
  background: linear-gradient(to right, transparent, rgba(10,46,42,0.1) 20%, rgba(10,46,42,0.1) 80%, transparent);
}

/* ── Nav fix: sofort sichtbar auf Unterseiten ── */
body:has(.ha-hero) .nav { opacity: 1; animation: none; }

/* ══════════════════════════════
   RESPONSIVE — Haushaltsauflösung
   ══════════════════════════════ */
@media (max-width: 968px) {
  .ha-services__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .ha-trust__cards { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .ha-preise__grid { grid-template-columns: 1fr; max-width: 400px; margin: 48px auto 32px; }
  .ha-preis-card--featured { transform: none; }
  .ha-preis-card--featured:hover { transform: translateY(-4px); }
  .ha-preis-card--featured[data-reveal].is-visible { transform: translateY(0) scale(1); }
}
@media (max-width: 768px) {
  .ha-hero { min-height: auto; padding: 7rem 1.5rem 4rem; }
  .ha-hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .ha-hero__pills { gap: 0.4rem; }
  .ha-pill { font-size: 0.78rem; padding: 5px 12px; }
  .ha-section-header { padding: 0 1.5rem; }
  .ha-services__grid { padding: 0 1.5rem; }
  .ha-prozess__steps { padding: 0 1.5rem; }
  .ha-prozess__steps::before, .ha-prozess__steps::after { display: none; }
  .ha-prozess-step { gap: 1.2rem; padding-left: 1.2rem; }
  .ha-prozess-nummer { font-size: 2.2rem; }
  .ha-vn__card { margin: 0 1.5rem; }
  .ha-trust__stats { flex-direction: row; gap: 2rem; padding: 0 1.5rem; }
  .ha-trust__cards { padding: 0 1.5rem; }
  .ha-faq__list { padding: 0 1.5rem; }
  .ha-cta__inner { padding: 0 1.5rem; }
  .nav-sticky-cta { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   PREMIUM UPGRADE — Haushaltsaufloesung Subpage
   Appended 2026-04-01
   ══════════════════════════════════════════════════════════════ */

/* ── Phase 1: Hero Enhancements ── */
.ha-hero__watermark {
  position: absolute;
  right: -5%; bottom: -15%;
  font-family: 'Lora', serif;
  font-size: clamp(15rem, 25vw, 30rem);
  font-weight: 700;
  color: rgba(80, 255, 177, 0.03);
  line-height: 0.8;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}
.ha-hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 0.6;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.ha-hero__scroll.scroll-hidden { opacity: 0; pointer-events: none; }
.ha-hero__scroll svg {
  width: 24px; height: 24px;
  color: var(--cream);
  animation: haScrollBounce 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
@keyframes haScrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Word reveal for ha-hero title */
.ha-hero__title .word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
}
.ha-hero__title .word {
  display: inline-block;
  animation: haWordReveal 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes haWordReveal {
  from { transform: translateY(105%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ── Phase 2: Services Bento Grid + Double-Bezel ── */
.ha-services__grid {
  grid-template-columns: repeat(12, 1fr) !important;
}
.ha-service-card:nth-child(1) { grid-column: 1 / 8; }
.ha-service-card:nth-child(2) { grid-column: 8 / 13; }
.ha-service-card:nth-child(3) { grid-column: 1 / 6; }

/* Double-bezel outer shell */
.ha-service-card {
  background: rgba(255, 255, 255, 0.5) !important;
  padding: 3px !important;
  box-shadow: 0 4px 24px rgba(10, 46, 42, 0.06),
              0 0 0 1px rgba(11, 107, 99, 0.04) !important;
}
.ha-service-card__inner {
  background: #FFFFFF;
  border-radius: 18px;
  padding: clamp(28px, 4vw, 40px);
}
.ha-service-card.visible {
  opacity: 1; transform: translateY(0);
}
.ha-service-card:hover {
  box-shadow: 0 24px 64px rgba(10, 46, 42, 0.15),
              0 0 0 1px rgba(11, 107, 99, 0.06) !important;
}

/* Trust Badge Panel */
.ha-services__badge {
  grid-column: 6 / 13;
  background: var(--teal-deep);
  border-radius: 20px;
  padding: clamp(32px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 2rem;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.ha-services__badge.visible { opacity: 1; transform: translateY(0); }
.ha-services__badge-item { text-align: center; }
.ha-services__badge-num {
  display: block;
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--teal-accent);
  line-height: 1.1;
}
.ha-services__badge-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem; font-weight: 400;
  color: rgba(247, 245, 240, 0.7);
  margin-top: 0.3rem;
}

/* ── Phase 3: Preise Asymmetric ── */
.ha-preise__grid {
  grid-template-columns: 1.15fr 0.85fr !important;
  gap: 20px;
  align-items: stretch !important;
}
.ha-preis-card--featured {
  grid-row: 1 / 3;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  transform: none !important;
  position: relative;
}
.ha-preis-card--featured:hover {
  transform: translateY(-6px) !important;
}
.ha-preis-card--featured[data-reveal].is-visible {
  transform: translateY(0) !important;
}
.ha-preis-card__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal-accent);
  color: var(--teal-deep);
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
  z-index: 2;
}

/* ── Phase 4: Trust Staggered Grid ── */
.ha-trust__cards {
  grid-template-columns: repeat(12, 1fr) !important;
}
.ha-trust-card:nth-child(1) { grid-column: 1 / 7; }
.ha-trust-card:nth-child(2) { grid-column: 7 / 13; }
.ha-trust-card:nth-child(3) { grid-column: 3 / 11; }

/* Consolidated star SVG */
.ha-trust-card__stars svg {
  width: auto; height: 16px;
}

/* Trust Stats Capsules */
.ha-trust-stat {
  background: #fff !important;
  border-radius: 16px !important;
  padding: 24px 32px !important;
  box-shadow: 0 2px 16px rgba(10, 46, 42, 0.05) !important;
}

/* ── Phase 5: FAQ 2-Column Sticky ── */
.ha-faq__inner {
  max-width: 1200px !important;
  display: grid !important;
  grid-template-columns: 0.42fr 0.58fr !important;
  gap: 3.5rem !important;
  align-items: start !important;
  padding: 0 3rem;
}
.ha-faq__left {
  position: sticky;
  top: 6rem;
}
.ha-faq__left .ha-section-header {
  text-align: left;
  margin-bottom: 2rem;
}
.ha-faq__contact {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(10, 46, 42, 0.06);
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--teal-deep);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.ha-faq__contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(10, 46, 42, 0.1);
}
.ha-faq__contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(11, 107, 99, 0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ha-faq__contact-icon svg {
  width: 20px; height: 20px;
  color: var(--teal-primary);
}
.ha-faq__contact-label {
  font-size: 0.75rem; color: var(--text);
  font-weight: 400;
}
.ha-faq__contact-value {
  font-family: 'Lora', serif;
  font-weight: 600; font-size: 1.05rem;
  color: var(--teal-deep);
}
.ha-faq__right {
  padding: 0;
}

/* ── Phase 6: CTA Monogram ── */
.ha-cta__monogram {
  position: absolute;
  right: 5%; top: 50%;
  transform: translateY(-50%);
  font-family: 'Lora', serif;
  font-size: clamp(15rem, 25vw, 30rem);
  font-weight: 700;
  color: rgba(80, 255, 177, 0.04);
  line-height: 0.8;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

/* ── Phase 7: VN Double-Bezel Frame + Caption ── */
.ha-vn__frame {
  background: rgba(10, 46, 42, 0.04);
  border-radius: 24px;
  padding: 4px;
  margin: 0 3rem;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.ha-vn__frame.visible { opacity: 1; transform: translateY(0); }
.ha-vn__frame .ha-vn__card {
  margin: 0;
  border-radius: 20px 20px 0 0;
  opacity: 1; transform: none;
}
.ha-vn__caption {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 0 0 20px 20px;
}
.ha-vn__caption-text {
  font-size: 0.85rem; color: var(--text);
  font-family: 'Outfit', sans-serif;
}
.ha-vn__caption-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: rgba(11, 107, 99, 0.08);
  color: var(--teal-primary);
  font-size: 0.75rem; font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

/* ── Phase 8: Global Premium Polish ── */
.btn-primary:active, .btn-ghost:active {
  transform: scale(0.98) !important;
  transition: transform 0.1s !important;
}
.ha-label-dot {
  animation: haDotPulse 3s ease-in-out infinite;
}
@keyframes haDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.ha-section-header[data-reveal] {
  filter: blur(4px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.ha-section-header[data-reveal].is-visible {
  filter: blur(0);
}

/* ── Premium Responsive Overrides ── */
@media (max-width: 968px) {
  .ha-services__grid {
    grid-template-columns: 1fr !important;
    max-width: 560px; margin: 0 auto;
  }
  .ha-service-card:nth-child(1),
  .ha-service-card:nth-child(2),
  .ha-service-card:nth-child(3) { grid-column: auto; }
  .ha-services__badge { grid-column: auto; flex-direction: column; gap: 1.5rem; }

  .ha-preise__grid {
    grid-template-columns: 1fr !important;
    max-width: 400px; margin: 48px auto 32px;
  }
  .ha-preis-card--featured { grid-row: auto; }

  .ha-trust__cards {
    grid-template-columns: 1fr !important;
    max-width: 560px; margin: 0 auto;
  }
  .ha-trust-card:nth-child(1),
  .ha-trust-card:nth-child(2),
  .ha-trust-card:nth-child(3) { grid-column: auto; }

  .ha-faq__inner {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    padding: 0 1.5rem;
  }
  .ha-faq__left { position: static; }
  .ha-faq__right { padding: 0; }
}
@media (max-width: 768px) {
  .ha-hero__watermark { font-size: clamp(8rem, 30vw, 15rem); right: -10%; }
  .ha-hero__scroll { bottom: 1.5rem; }
  .ha-vn__frame { margin: 0 1.5rem; }
  .ha-vn__caption { flex-direction: column; gap: 0.5rem; text-align: center; }
  .ha-cta__monogram { font-size: clamp(8rem, 30vw, 15rem); right: -5%; }
  .ha-services__badge { padding: 24px; }
}

/* ══════════════════════════════════════════════════════════════
   ENTRÜMPELUNG PAGE — en- Prefix
   Eigene visuelle Sprache: anpackend, direkt, lösungsorientiert
   ══════════════════════════════════════════════════════════════ */

/* ── EN Hero: Split-Layout ── */
.en-hero {
  background: #0A2E2A;
  color: var(--cream);
  min-height: 62vh;
  max-height: 780px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 3rem 5rem;
}
.en-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 70% 50% at 70% 50%,
    rgba(14, 138, 128, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.en-hero__grain {
  position: absolute; inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px;
  pointer-events: none;
}
.en-hero__watermark {
  position: absolute;
  right: -3%; bottom: -12%;
  font-family: 'Lora', serif;
  font-size: clamp(15rem, 25vw, 30rem);
  font-weight: 700;
  color: rgba(80, 255, 177, 0.03);
  line-height: 0.8;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}
.en-hero__inner {
  position: relative; z-index: 10;
  max-width: 1200px; width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.en-hero__text { max-width: 600px; }
.en-hero__title {
  font-family: 'Lora', serif; font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 4.2rem); line-height: 1.1;
  letter-spacing: -0.02em; color: var(--cream);
  margin-bottom: 1.5rem;
}
.en-hero__title em { font-style: italic; color: var(--teal-accent); }
.en-hero__sub {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1rem, 1.05vw, 1.125rem); font-weight: 300;
  line-height: 1.65; color: rgba(247,245,240,0.7);
  max-width: 500px; margin-bottom: 2rem;
}
.en-hero__cta {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.en-hero__badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.en-hero-badge {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(80, 255, 177, 0.06);
  border: 1px solid rgba(80, 255, 177, 0.15);
  border-radius: 14px;
  padding: 14px 18px;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.en-hero-badge:hover {
  transform: translateY(-2px);
  background: rgba(80, 255, 177, 0.1);
}
.en-hero-badge__icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(80, 255, 177, 0.1);
  display: flex; align-items: center; justify-content: center;
}
.en-hero-badge__icon svg {
  width: 18px; height: 18px; color: var(--teal-accent);
}
.en-hero-badge__text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem; font-weight: 500;
  color: var(--cream);
}
.en-hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 10; opacity: 0.6;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.en-hero__scroll.scroll-hidden { opacity: 0; pointer-events: none; }
.en-hero__scroll svg {
  width: 24px; height: 24px; color: var(--cream);
  animation: haScrollBounce 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

/* Breadcrumb */
.en-breadcrumb {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem; font-weight: 400;
  color: rgba(247,245,240,0.4);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap;
}
.en-breadcrumb a { color: rgba(247,245,240,0.4); transition: color 0.3s; }
.en-breadcrumb a:hover { color: var(--teal-accent); }
.en-breadcrumb span[aria-hidden] { opacity: 0.3; }

body:has(.en-hero) .nav { opacity: 1; animation: none; }

/* ── EN Section Header (shared) ── */
.en-section-header {
  text-align: center; max-width: 700px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  padding: 0 3rem;
}
.en-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal-primary); margin-bottom: 1rem;
}
.en-label-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal-primary); display: inline-block;
  animation: haDotPulse 3s ease-in-out infinite;
}
.en-section-title {
  font-family: 'Lora', serif; font-weight: 500;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2; color: var(--teal-deep);
  margin-bottom: 0.8rem;
}
.en-section-title em { font-style: italic; color: var(--teal-primary); }
.en-section-sub {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1rem, 1.05vw, 1.125rem); font-weight: 300;
  line-height: 1.65; color: var(--text);
}
.en-section-header[data-reveal] {
  filter: blur(4px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.en-section-header[data-reveal].is-visible { filter: blur(0); }

/* ── EN Services: Horizontal Strip ── */
.en-services {
  background: var(--bg);
  padding: clamp(80px, 10vw, 120px) 0;
  border-radius: 32px 32px 0 0;
  margin-top: -32px;
  position: relative; z-index: 2;
}
.en-services__inner { max-width: 1200px; margin: 0 auto; }
.en-services__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding: 0 3rem;
}
.en-service-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 4px 24px rgba(10, 46, 42, 0.06);
  opacity: 0; transform: translateX(-18px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.en-service-card.visible { opacity: 1; transform: translateX(0); }
.en-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(10, 46, 42, 0.14);
}
.en-service-card__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px; background: rgba(11,107,99,0.06);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.en-service-card__icon svg { width: 22px; height: 22px; color: var(--teal-primary); }
.en-service-card__title {
  font-family: 'Lora', serif; font-weight: 600;
  font-size: 1.15rem; line-height: 1.2;
  color: var(--teal-deep); margin-bottom: 0.6rem;
}
.en-service-card__text {
  font-size: 0.95rem; font-weight: 400;
  line-height: 1.6; color: var(--text); margin-bottom: 1rem;
}
.en-service-card__tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.en-card-tag {
  background: rgba(11, 107, 99, 0.08);
  color: var(--teal-primary);
  border-radius: 100px;
  padding: 4px 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.03em;
}
.en-services__more {
  text-align: center; margin-top: 48px; padding: 0 3rem;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.en-services__more.visible { opacity: 1; transform: translateY(0); }
.en-services__more p {
  font-size: 0.85rem; color: var(--text); margin-bottom: 0.6rem;
}
.en-services__more-links { display: flex; justify-content: center; gap: 2rem; }
.en-more-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem; font-weight: 500;
  color: var(--teal-primary);
  transition: color 0.3s;
}
.en-more-link:hover { color: var(--teal-deep); }

/* ── EN Prozess: Zig-Zag ── */
.en-prozess { background: var(--bg); padding: clamp(80px, 10vw, 120px) 0; }
.en-prozess__inner { max-width: 900px; margin: 0 auto; padding: 0 3rem; }
.en-prozess__steps { display: flex; flex-direction: column; gap: 2.5rem; }
.en-prozess-step {
  display: flex; align-items: flex-start; gap: 2rem;
  opacity: 0; transform: translateX(-24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.en-prozess-step.visible { opacity: 1; transform: translateX(0); }
.en-prozess-step--right {
  flex-direction: row-reverse;
  text-align: right;
}
.en-prozess-step--right[data-reveal] {
  transform: translateX(24px);
}
.en-prozess-step--right.visible { transform: translateX(0); }
.en-prozess-step__number {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 16px;
  background: var(--teal-deep);
  color: var(--teal-accent);
  font-family: 'Lora', serif; font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.en-prozess-step__content { flex: 1; padding-top: 6px; }
.en-prozess-step__title {
  font-family: 'Lora', serif; font-weight: 600;
  font-size: 1.2rem; color: var(--teal-deep);
  margin-bottom: 0.5rem;
}
.en-prozess-step__text {
  font-size: 1.02rem; font-weight: 400;
  line-height: 1.65; color: var(--text);
}

/* ── EN Preise ── */
.en-preise { background: var(--bg); padding: clamp(80px, 10vw, 120px) 0; }
.en-preise__inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.en-preise__grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 20px; margin: 48px 0 32px;
  align-items: stretch;
}
.en-preis-card {
  background: #fff; border-radius: 20px;
  padding: 36px 28px; text-align: center;
  box-shadow: 0 4px 24px rgba(10,46,42,0.07);
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.3s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.4s cubic-bezier(0.16,1,0.3,1);
}
.en-preis-card.visible { opacity: 1; transform: translateY(0); }
.en-preis-card:hover { transform: translateY(-4px); }
.en-preis-card--featured {
  background: var(--teal-deep); color: var(--cream);
  grid-row: 1 / 3;
  display: flex; flex-direction: column;
  justify-content: center;
  position: relative;
}
.en-preis-card--featured:hover { transform: translateY(-6px); }
.en-preis-card__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal-accent);
  color: var(--teal-deep);
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
  z-index: 2;
}
.en-preis-card__size {
  font-size: 0.875rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--teal-primary); margin-bottom: 8px;
}
.en-preis-card--featured .en-preis-card__size { color: var(--teal-accent); }
.en-preis-card__from { font-size: 0.8rem; color: var(--text); margin: 0; }
.en-preis-card--featured .en-preis-card__from { color: rgba(247,245,240,0.6); }
.en-preis-card__price {
  font-family: 'Lora', serif; font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700; color: var(--teal-deep); margin: 4px 0;
}
.en-preis-card--featured .en-preis-card__price { color: var(--teal-accent); }
.en-preis-card__note { font-size: 0.8rem; color: var(--text); }
.en-preis-card--featured .en-preis-card__note { color: rgba(247,245,240,0.6); }
.en-preise__hint {
  text-align: center; font-size: 0.9rem;
  color: var(--teal-primary); font-weight: 500;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.en-preise__hint.visible { opacity: 1; transform: translateY(0); }

/* ── EN Trust ── */
.en-trust { background: var(--bg); padding: clamp(80px, 10vw, 120px) 0; }
.en-trust__inner { max-width: 1200px; margin: 0 auto; }
.en-trust__stats {
  display: flex; justify-content: center; gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(40px, 5vw, 64px);
  padding: 0 3rem;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.en-trust__stats.visible { opacity: 1; transform: translateY(0); }
.en-trust-stat {
  text-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 24px 32px;
  box-shadow: 0 2px 16px rgba(10, 46, 42, 0.05);
}
.en-trust-stat__number {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--teal-primary);
  font-family: 'Lora', serif; font-weight: 700;
  line-height: 1.1;
}
.en-trust-stat__label {
  font-size: 0.85rem; font-weight: 400;
  color: var(--text); margin-top: 0.3rem;
  display: block;
}
.en-trust__cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; padding: 0 3rem;
}
.en-trust-card {
  background: #ffffff;
  border: 1px solid rgba(10,46,42,0.08);
  border-radius: 20px; padding: 32px;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.en-trust-card.visible { opacity: 1; transform: translateY(0); }
.en-trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(10, 46, 42, 0.10);
}
.en-trust-card__stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.en-trust-card__stars svg { width: auto; height: 16px; fill: var(--teal-primary); color: var(--teal-primary); }
.en-trust-card__text { font-size: 0.95rem; line-height: 1.65; color: var(--text); margin-bottom: 1.5rem; }
.en-trust-card__author { display: flex; align-items: center; gap: 0.75rem; }
.en-trust-card__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(11,107,99,0.08); color: var(--teal-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lora', serif; font-weight: 600; font-size: 0.9rem;
}
.en-trust-card__name { font-weight: 600; font-size: 0.85rem; color: var(--teal-deep); }
.en-trust-card__role { font-size: 0.75rem; color: rgba(87,87,97,0.6); }

/* ── EN Vorher/Nachher ── */
.en-vn { background: var(--bg); padding: clamp(60px, 8vw, 100px) 0; }
.en-vn__inner { max-width: 1200px; margin: 0 auto; }
.en-vn__frame {
  background: rgba(10, 46, 42, 0.04);
  border-radius: 24px; padding: 4px;
  margin: 0 3rem;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.en-vn__frame.visible { opacity: 1; transform: translateY(0); }
.en-vn__card {
  background: #FFFFFF; border-radius: 20px 20px 0 0;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(10, 46, 42, 0.10);
}
.en-vn__caption {
  padding: 16px 24px;
  display: flex; justify-content: space-between; align-items: center;
  background: #fff; border-radius: 0 0 20px 20px;
}
.en-vn__caption-text {
  font-size: 0.85rem; color: var(--text);
  font-family: 'Outfit', sans-serif;
}
.en-vn__caption-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: rgba(11, 107, 99, 0.08);
  color: var(--teal-primary);
  font-size: 0.75rem; font-weight: 600;
  padding: 4px 12px; border-radius: 100px;
}

/* ── EN FAQ: Full-Width Centered ── */
.en-faq { background: var(--bg); padding: clamp(80px, 10vw, 120px) 0; }
.en-faq__inner { max-width: 800px; margin: 0 auto; }
.en-faq__list {
  padding: 0 3rem;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.en-faq__list.visible { opacity: 1; transform: translateY(0); }
.en-faq .faq-item {
  background: #FFFFFF;
  border-radius: 16px;
  border: none;
  box-shadow: 0 2px 16px rgba(10, 46, 42, 0.06);
  margin-bottom: 12px;
}
.en-faq .faq-q-text { color: var(--teal-deep); font-weight: 600; }
.en-faq .faq-a-inner { color: var(--text); font-size: 1.02rem; line-height: 1.7; }
.en-faq__contact {
  display: flex; align-items: center; gap: 1rem;
  max-width: 400px; margin: 2rem auto 0;
  background: #fff; border-radius: 16px; padding: 20px 24px;
  box-shadow: 0 2px 16px rgba(10, 46, 42, 0.06);
  text-decoration: none; color: var(--teal-deep);
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.en-faq__contact.visible { opacity: 1; transform: translateY(0); }
.en-faq__contact:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(10, 46, 42, 0.1); }
.en-faq__contact-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(11, 107, 99, 0.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.en-faq__contact-icon svg { width: 20px; height: 20px; color: var(--teal-primary); }
.en-faq__contact-label { font-size: 0.75rem; color: var(--text); font-weight: 400; }
.en-faq__contact-value {
  font-family: 'Lora', serif; font-weight: 600; font-size: 1.05rem;
  color: var(--teal-deep);
}

/* ── EN CTA ── */
.en-cta {
  background: var(--teal-deep); color: var(--cream);
  padding: clamp(100px, 12vw, 160px) 0;
  text-align: center; position: relative; overflow: hidden;
}
.en-cta__glow {
  position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,138,128,0.2) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.en-cta__monogram {
  position: absolute; right: 5%; top: 50%;
  transform: translateY(-50%);
  font-family: 'Lora', serif;
  font-size: clamp(15rem, 25vw, 30rem); font-weight: 700;
  color: rgba(80, 255, 177, 0.04);
  line-height: 0.8; pointer-events: none; z-index: 1;
  user-select: none;
}
.en-cta__inner {
  position: relative; z-index: 10;
  max-width: 700px; margin: 0 auto; padding: 0 3rem;
}
.en-cta__title {
  font-family: 'Lora', serif; font-weight: 500;
  font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.2;
  color: var(--cream); margin-bottom: 1rem;
}
.en-cta__accent { color: var(--teal-accent); font-style: italic; }
.en-cta__sub {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(247,245,240,0.6); line-height: 1.65;
  margin-bottom: 2.5rem;
}
.en-cta__actions {
  display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
}
.en-cta__link {
  display: inline-block; margin-top: 1.2rem;
  font-size: 0.85rem; font-weight: 400;
  color: rgba(247,245,240,0.4);
  transition: color 0.3s;
}
.en-cta__link:hover { color: var(--teal-accent); }

/* Reveal states for EN CTA */
.en-cta__title, .en-cta__sub, .en-cta__actions, .en-cta__link {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.en-cta__title.visible, .en-cta__sub.visible,
.en-cta__actions.visible, .en-cta__link.visible {
  opacity: 1; transform: translateY(0);
}

/* ── EN Responsive ── */
@media (max-width: 968px) {
  .en-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .en-hero__badges { grid-template-columns: 1fr 1fr; }
  .en-services__strip { grid-template-columns: repeat(2, 1fr); }
  .en-preise__grid { grid-template-columns: 1fr; max-width: 400px; margin: 48px auto 32px; }
  .en-preis-card--featured { grid-row: auto; }
  .en-trust__cards { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .en-trust__stats { flex-wrap: wrap; }
  .en-prozess-step, .en-prozess-step--right {
    flex-direction: row; text-align: left;
  }
  .en-prozess-step--right[data-reveal] { transform: translateX(-24px); }
}
@media (max-width: 768px) {
  .en-hero { min-height: auto; padding: 7rem 1.5rem 4rem; }
  .en-hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .en-hero__badges { grid-template-columns: 1fr; }
  .en-hero__watermark { font-size: clamp(8rem, 30vw, 15rem); right: -10%; }
  .en-hero__scroll { bottom: 1.5rem; }
  .en-section-header { padding: 0 1.5rem; }
  .en-services__strip { grid-template-columns: 1fr; padding: 0 1.5rem; }
  .en-prozess__inner { padding: 0 1.5rem; }
  .en-prozess-step { gap: 1.2rem; }
  .en-prozess-step__number { width: 44px; height: 44px; font-size: 1.2rem; }
  .en-trust__stats { padding: 0 1.5rem; }
  .en-trust__cards { padding: 0 1.5rem; }
  .en-faq__list { padding: 0 1.5rem; }
  .en-cta__inner { padding: 0 1.5rem; }
  .en-vn__frame { margin: 0 1.5rem; }
  .en-vn__caption { flex-direction: column; gap: 0.5rem; text-align: center; }
  .en-cta__monogram { font-size: clamp(8rem, 30vw, 15rem); right: -5%; }
  .nav-sticky-cta { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   NACHLASSVERWERTUNG PAGE — nv- Prefix
   Still. Würdevoll. Editorial. Wie ein hochwertiges Magazin.
   Bewusst langsamere Animationen, mehr Lora, mehr Weißraum.
   ══════════════════════════════════════════════════════════════ */

/* ── NV Hero: Zentriert, Still, Editorial ── */
.nv-hero {
  background: #0A2E2A;
  color: var(--cream);
  min-height: 55vh;
  max-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 9rem 3rem 6rem;
  text-align: center;
}
.nv-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%,
    rgba(14, 138, 128, 0.10) 0%, transparent 70%);
  pointer-events: none;
}
.nv-hero__grain {
  position: absolute; inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px;
  pointer-events: none;
}
.nv-hero__content {
  position: relative; z-index: 10;
  max-width: 700px; width: 100%;
}
.nv-hero__title {
  font-family: 'Lora', serif; font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem); line-height: 1.2;
  letter-spacing: -0.01em; color: var(--cream);
  margin-bottom: 1.8rem;
}
.nv-hero__title em {
  font-style: italic; color: var(--teal-accent);
  display: block; margin-top: 0.2em;
}
.nv-hero__sub {
  font-family: 'Lora', serif;
  font-size: clamp(1rem, 1.1vw, 1.15rem); font-weight: 400;
  font-style: italic;
  line-height: 1.8; color: rgba(247,245,240,0.6);
  max-width: 520px; margin: 0 auto 2.5rem;
}
.nv-hero__cta {
  display: flex; justify-content: center;
}

/* Soft CTA Button (NV-spezifisch) */
.nv-btn-soft {
  display: inline-flex; align-items: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream);
  border: 1px solid rgba(247, 245, 240, 0.25);
  padding: 0.85rem 2.2rem;
  border-radius: 100px;
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}
.nv-btn-soft:hover {
  background: rgba(247, 245, 240, 0.08);
  border-color: rgba(247, 245, 240, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Breadcrumb */
.nv-breadcrumb {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem; font-weight: 400;
  color: rgba(247,245,240,0.35);
  margin-bottom: 2rem;
  display: flex; align-items: center; justify-content: center;
  gap: 0.4rem; flex-wrap: wrap;
}
.nv-breadcrumb a { color: rgba(247,245,240,0.35); transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.nv-breadcrumb a:hover { color: var(--teal-accent); }
.nv-breadcrumb span[aria-hidden] { opacity: 0.3; }

body:has(.nv-hero) .nav { opacity: 1; animation: none; }

/* ── NV Reveal: Pure opacity fades, no translateY ── */
.nv-hero [data-reveal],
.nv-intro [data-reveal],
.nv-leistungen [data-reveal],
.nv-prozess [data-reveal],
.nv-trust [data-reveal],
.nv-faq [data-reveal],
.nv-cta [data-reveal] {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.nv-hero [data-reveal].is-visible,
.nv-intro [data-reveal].is-visible,
.nv-leistungen [data-reveal].is-visible,
.nv-prozess [data-reveal].is-visible,
.nv-trust [data-reveal].is-visible,
.nv-faq [data-reveal].is-visible,
.nv-cta [data-reveal].is-visible {
  opacity: 1;
}

/* ── NV Section Separator ── */
.nv-section-sep {
  width: 100%; max-width: 600px;
  height: 1px; margin: 0 auto;
  background: rgba(10, 46, 42, 0.1);
}

/* ── NV Intro: Editorial Prosa with Drop-Cap ── */
.nv-intro {
  background: var(--bg);
  padding: clamp(100px, 12vw, 160px) 0 clamp(48px, 6vw, 72px);
  border-radius: 32px 32px 0 0;
  margin-top: -32px;
  position: relative; z-index: 2;
}
.nv-intro__inner {
  max-width: 680px; margin: 0 auto; padding: 0 3rem;
}
.nv-intro__text {
  font-family: 'Lora', serif;
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  font-weight: 400; line-height: 1.85;
  color: var(--text);
  text-align: center;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.nv-intro__text.visible,
.nv-intro__text.is-visible { opacity: 1; }

/* ── NV Section Header ── */
.nv-section-header {
  text-align: center; max-width: 600px;
  margin: 0 auto clamp(56px, 7vw, 96px);
  padding: 0 3rem;
}
.nv-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal-primary); margin-bottom: 1rem;
}
.nv-label-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal-primary); display: inline-block;
  animation: nvDotPulse 4s ease-in-out infinite;
}
@keyframes nvDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}
.nv-section-title {
  font-family: 'Lora', serif; font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.25; color: var(--teal-deep);
  margin-bottom: 0.8rem;
}
.nv-section-title em { font-style: italic; color: var(--teal-primary); }
.nv-section-sub {
  font-family: 'Lora', serif;
  font-size: clamp(0.95rem, 1vw, 1.08rem); font-weight: 400;
  font-style: italic;
  line-height: 1.7; color: var(--text);
}
.nv-section-header[data-reveal] {
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.nv-section-header[data-reveal].is-visible { opacity: 1; }

/* ── NV Leistungen: Vertikale Prosa-Blöcke ── */
.nv-leistungen {
  background: var(--bg);
  padding: clamp(72px, 9vw, 120px) 0;
}
.nv-leistungen__inner { max-width: 800px; margin: 0 auto; padding: 0 3rem; }
.nv-leistungen__items { display: flex; flex-direction: column; gap: 3.5rem; }
.nv-leistung {
  display: flex; align-items: flex-start; gap: 1.5rem;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.nv-leistung.is-visible { opacity: 1; }
.nv-leistung__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 14px; background: rgba(11,107,99,0.06);
  display: flex; align-items: center; justify-content: center;
  margin-top: 4px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.nv-leistung:hover .nv-leistung__icon {
  transform: scale(1.08);
}
.nv-leistung__icon svg { width: 22px; height: 22px; color: var(--teal-primary); }
.nv-leistung__body { flex: 1; }
.nv-leistung__title {
  font-family: 'Lora', serif; font-weight: 600;
  font-size: 1.2rem; color: var(--teal-deep);
  margin-bottom: 0.5rem;
}
.nv-leistung__text {
  font-family: 'Lora', serif;
  font-size: 1.02rem; font-weight: 400;
  line-height: 1.75; color: var(--text);
}
.nv-leistungen__more {
  text-align: center; margin-top: 4rem;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.nv-leistungen__more.is-visible { opacity: 1; }
.nv-leistungen__more p {
  font-size: 0.85rem; color: var(--text); margin-bottom: 0.6rem;
  font-family: 'Outfit', sans-serif;
}
.nv-leistungen__more-links { display: flex; justify-content: center; gap: 2rem; }
.nv-more-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem; font-weight: 500;
  color: var(--teal-primary);
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nv-more-link:hover {
  color: var(--teal-deep);
  transform: translateY(-2px);
}

/* ── NV Prozess: Vertikale Timeline ── */
.nv-prozess {
  background: var(--bg);
  padding: clamp(100px, 12vw, 160px) 0;
}
.nv-prozess__inner { max-width: 700px; margin: 0 auto; padding: 0 3rem; }
.nv-prozess__timeline {
  position: relative;
  padding-left: 32px;
}
/* Vertikale Linie */
.nv-prozess__timeline::before {
  content: '';
  position: absolute;
  left: 3px; top: 8px; bottom: 8px;
  width: 1px;
  background: rgba(10, 46, 42, 0.1);
}
.nv-prozess-step {
  position: relative;
  padding-bottom: clamp(48px, 6vw, 72px);
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.nv-prozess-step:last-child { padding-bottom: 0; }
.nv-prozess-step.is-visible { opacity: 1; }
/* Kreis-Marker auf der Timeline */
.nv-prozess-step__marker {
  position: absolute;
  left: -32px; top: 6px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal-primary);
  transform: translateX(calc(-50% + 3.5px));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.nv-prozess-step.is-visible .nv-prozess-step__marker {
  box-shadow: 0 0 0 4px rgba(11, 107, 99, 0.12);
}
.nv-prozess-step__content {
  padding-left: 0;
}
.nv-prozess-step__label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal-primary); margin-bottom: 0.5rem;
}
.nv-prozess-step__title {
  font-family: 'Lora', serif; font-weight: 500;
  font-style: italic;
  font-size: 1.4rem; color: var(--teal-deep);
  margin-bottom: 0.8rem;
}
.nv-prozess-step__text {
  font-family: 'Lora', serif;
  font-size: 1.02rem; font-weight: 400;
  line-height: 1.75; color: var(--text);
  max-width: 520px;
}

/* ── NV Trust: Editorial Pullquotes on Cream ── */
.nv-trust {
  background: var(--bg);
  padding: clamp(100px, 12vw, 160px) 0;
}
.nv-trust__inner { max-width: 700px; margin: 0 auto; padding: 0 3rem; }
.nv-trust__quotes { display: flex; flex-direction: column; gap: 0; }
.nv-quote {
  text-align: center;
  padding: clamp(40px, 5vw, 56px) clamp(24px, 4vw, 48px);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.nv-quote.is-visible { opacity: 1; }
/* Dekoratives Anführungszeichen */
.nv-quote__mark::before {
  content: '\201C';
  display: block;
  font-family: 'Lora', serif;
  font-size: clamp(3.5rem, 5vw, 5rem);
  line-height: 1;
  color: rgba(11, 107, 99, 0.12);
  margin-bottom: 0.5rem;
}
.nv-quote__text {
  font-family: 'Lora', serif;
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  font-weight: 400; font-style: italic;
  line-height: 1.85; color: var(--teal-deep);
  margin-bottom: 1.5rem;
  max-width: 580px; margin-left: auto; margin-right: auto;
}
.nv-quote__author {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.15rem;
}
.nv-quote__name {
  font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: 0.85rem;
  color: var(--teal-deep);
}
.nv-quote__context {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem; font-weight: 400;
  color: rgba(87, 87, 97, 0.6);
}
/* Separator between quotes */
.nv-quote-sep {
  width: 60px; height: 1px;
  background: rgba(10, 46, 42, 0.1);
  margin: 0 auto;
}

/* ── NV FAQ: Zentriert, Ruhig ── */
.nv-faq {
  background: var(--bg);
  padding: clamp(100px, 12vw, 140px) 0;
}
.nv-faq__inner { max-width: 700px; margin: 0 auto; }
.nv-faq__list {
  padding: 0 3rem;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.nv-faq__list.is-visible { opacity: 1; }
.nv-faq .faq-item {
  background: #FFFFFF;
  border-radius: 16px; border: none;
  box-shadow:
    0 1px 2px rgba(10, 46, 42, 0.04),
    0 4px 16px rgba(10, 46, 42, 0.04);
  margin-bottom: 12px;
}
.nv-faq .faq-q-text {
  color: var(--teal-deep); font-weight: 500;
}
.nv-faq .faq-a-inner {
  color: var(--text);
  font-family: 'Lora', serif;
  font-size: 1rem; line-height: 1.8;
}

/* ── NV CTA: Still, kein Druck — mehr Padding ── */
.nv-cta {
  background: var(--teal-deep); color: var(--cream);
  padding: clamp(120px, 15vw, 200px) 0;
  text-align: center; position: relative; overflow: hidden;
}
.nv-cta__glow {
  position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,138,128,0.12) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.nv-cta__inner {
  position: relative; z-index: 10;
  max-width: 600px; margin: 0 auto; padding: 0 3rem;
}
.nv-cta__title {
  font-family: 'Lora', serif; font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.5rem); line-height: 1.25;
  color: var(--cream); margin-bottom: 1.4rem;
}
.nv-cta__title em { font-style: italic; color: var(--teal-accent); }
.nv-cta__sub {
  font-family: 'Lora', serif;
  font-size: 1rem; font-weight: 400; font-style: italic;
  color: rgba(247,245,240,0.55); line-height: 1.75;
  margin-bottom: 3rem;
}
.nv-cta__actions {
  display: flex; justify-content: center;
}
.nv-cta__alt {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem; font-weight: 300;
  color: rgba(247,245,240,0.35);
  margin-top: 1.2rem;
}
.nv-cta__alt a {
  color: rgba(247,245,240,0.5);
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nv-cta__alt a:hover { color: var(--cream); }

/* Reveal states for NV CTA — pure opacity */
.nv-cta__title, .nv-cta__sub, .nv-cta__actions, .nv-cta__alt {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.nv-cta__title.visible, .nv-cta__sub.visible,
.nv-cta__actions.visible, .nv-cta__alt.visible,
.nv-cta__title.is-visible, .nv-cta__sub.is-visible,
.nv-cta__actions.is-visible, .nv-cta__alt.is-visible {
  opacity: 1;
}

/* ── NV Responsive ── */
@media (max-width: 768px) {
  .nv-hero { min-height: auto; padding: 7rem 1.5rem 4rem; }
  .nv-hero__title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .nv-intro__inner { padding: 0 1.5rem; }
  .nv-section-header { padding: 0 1.5rem; }
  .nv-leistungen__inner { padding: 0 1.5rem; }
  .nv-leistung { flex-direction: column; gap: 0.8rem; }
  .nv-prozess__inner { padding: 0 1.5rem; }
  .nv-prozess__timeline { padding-left: 28px; }
  .nv-prozess-step__marker { left: -28px; }
  .nv-trust__inner { padding: 0 1.5rem; }
  .nv-quote { padding: clamp(32px, 5vw, 40px) 0; }
  .nv-faq__list { padding: 0 1.5rem; }
  .nv-cta__inner { padding: 0 1.5rem; }
  .nv-section-sep { margin-left: 1.5rem; margin-right: 1.5rem; width: auto; max-width: none; }
}

/* ══════════════════════════════════════════════════════════════
   PREMIUM POLISH — Cross-Page Refinements
   ══════════════════════════════════════════════════════════════ */

/* ── Word-reveal for EN + NV hero titles ── */
.en-hero__title .word-wrap,
.nv-hero__title .word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
}
.en-hero__title .word {
  display: inline-block;
  animation: haWordReveal 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.nv-hero__title .word {
  display: inline-block;
  animation: haWordReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ── A4: Layered Shadows (alle Service/Trust/Preis Cards) ── */
.ha-service-card,
.en-service-card,
.ha-trust-card,
.en-trust-card,
.ha-preis-card,
.en-preis-card {
  box-shadow:
    0 1px 2px rgba(10,46,42,0.04),
    0 4px 16px rgba(10,46,42,0.04),
    0 12px 48px rgba(10,46,42,0.06) !important;
}
.ha-service-card:hover,
.en-service-card:hover,
.ha-trust-card:hover,
.en-trust-card:hover {
  box-shadow:
    0 2px 4px rgba(10,46,42,0.04),
    0 8px 32px rgba(10,46,42,0.06),
    0 24px 64px rgba(10,46,42,0.10) !important;
}

/* ── A2: Letter-Spacing auf EN/NV Section Titles ── */
.en-section-title { letter-spacing: -0.015em; }
.nv-section-title { letter-spacing: -0.015em; }

/* ── A1: Trust-Card Hover-States (fehlend) ── */
.ha-trust-card:hover,
.en-trust-card:hover {
  transform: translateY(-4px);
}
/* NV quotes are on transparent cream — no card hover needed */

/* ── A5: NV Drop-Cap (Editorial) ── */
.nv-intro__text::first-letter {
  font-family: 'Lora', serif;
  font-size: 3.8em;
  float: left;
  line-height: 0.75;
  margin-right: 0.1em;
  margin-top: 0.08em;
  color: var(--teal-primary);
  font-weight: 500;
}

/* ── A7: NV Zitatzeichen — now via .nv-quote__mark span ── */
/* Styling moved into main NV block via .nv-quote__mark::before */

/* ── C3: EN Icon-Rotation bei Hover ── */
.en-service-card__icon {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.en-service-card:hover .en-service-card__icon {
  transform: rotate(-8deg) scale(1.15);
}

/* ── A3: EN Prozess-Nummern als typografische Ziffern ── */
.en-prozess-step__number {
  width: auto !important; height: auto !important;
  background: none !important;
  color: var(--teal-primary) !important;
  font-size: clamp(2rem, 3vw, 2.8rem);
  opacity: 0.25;
  border-radius: 0;
}

/* ── A6: Pill-Button-Style auf EN/NV "Weitere Leistungen" ── */
.en-more-link,
.nv-more-link {
  border: 1px solid rgba(11, 107, 99, 0.2);
  border-radius: 100px;
  padding: 0.5rem 1.2rem;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.en-more-link:hover,
.nv-more-link:hover {
  color: var(--teal-deep);
  border-color: var(--teal-primary);
  transform: translateY(-2px);
}

/* ── B1: EN Double-Bezel auf Service-Cards ── */
.en-service-card {
  background: rgba(255, 255, 255, 0.5) !important;
  padding: 3px !important;
}
.en-service-card__inner {
  background: #FFFFFF;
  border-radius: 18px;
  padding: clamp(24px, 3vw, 36px);
}

/* ── B2: NV Leistungen als dezente weiße Cards ── */
.nv-leistung {
  background: #FFFFFF;
  border-radius: 20px;
  padding: clamp(28px, 3.5vw, 40px);
  border: 1px solid rgba(10, 46, 42, 0.05);
  box-shadow:
    0 1px 2px rgba(10,46,42,0.04),
    0 4px 16px rgba(10,46,42,0.04),
    0 12px 48px rgba(10,46,42,0.06);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nv-leistung:hover {
  box-shadow:
    0 2px 4px rgba(10,46,42,0.04),
    0 8px 32px rgba(10,46,42,0.06),
    0 24px 64px rgba(10,46,42,0.10);
}

/* ── B5: EN Trust-Stats Capsules ── */
.en-trust-stat {
  background: #fff !important;
  border-radius: 16px !important;
  padding: 24px 32px !important;
  box-shadow:
    0 1px 2px rgba(10,46,42,0.04),
    0 4px 16px rgba(10,46,42,0.04) !important;
}

/* ── NV Hero Watermark ── */
.nv-hero__watermark {
  position: absolute;
  right: -3%; bottom: -12%;
  font-family: 'Lora', serif;
  font-size: clamp(15rem, 25vw, 30rem);
  font-weight: 700;
  color: rgba(80, 255, 177, 0.02);
  line-height: 0.8;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

/* ── EN VN Double-Bezel Frame (Stitch mit HA) ── */
.en-vn__frame {
  background: rgba(10, 46, 42, 0.04) !important;
  border-radius: 24px !important;
  padding: 4px !important;
}
.en-vn__frame .en-vn__card {
  margin: 0;
  border-radius: 20px 20px 0 0;
  opacity: 1; transform: none;
}

/* ── C7: prefers-reduced-motion (Accessibility) ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal],
  .ha-service-card, .en-service-card, .nv-leistung,
  .ha-trust-card, .en-trust-card, .nv-quote,
  .ha-preis-card, .en-preis-card,
  .ha-prozess-step, .en-prozess-step, .nv-prozess-step,
  .nv-intro__text,
  .ha-faq__list, .en-faq__list, .nv-faq__list,
  .ha-services__badge, .en-services__more, .nv-leistungen__more,
  .ha-preise__hint, .en-preise__hint,
  .ha-cta__title, .en-cta__title, .nv-cta__title,
  .ha-cta__sub, .en-cta__sub, .nv-cta__sub,
  .ha-cta__actions, .en-cta__actions, .nv-cta__actions,
  .ha-cta__link, .en-cta__link, .nv-cta__alt {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* ── Responsive: NV Watermark mobile ── */
@media (max-width: 768px) {
  .nv-hero__watermark { font-size: clamp(8rem, 30vw, 15rem); right: -10%; }
}

/* ══════════════════════════════════════════════════════════════
   STAEDTESEITEN — st- Prefix
   Gemeinsame Styles fuer /staedte/[stadt]/
   Premium-Upgrade: tinted shadows, micro-interactions,
   city-specific variations, accessibility-safe typography
   ══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.st-hero {
  background: #0A2E2A;
  color: var(--cream);
  min-height: 62vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 3rem 6rem;
}
.st-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%,
    rgba(14, 138, 128, 0.18) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.st-hero__grain {
  position: absolute; inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px;
  pointer-events: none;
  z-index: 1;
}

/* ── Hero Watermark — base + per-city variations ── */
.st-hero__watermark {
  position: absolute;
  right: -5%; bottom: -15%;
  font-family: 'Lora', serif;
  font-size: clamp(15rem, 25vw, 30rem);
  font-weight: 700;
  color: rgba(80, 255, 177, 0.03);
  line-height: 0.8;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

/* City-specific watermark variations for visual variety */
[data-city="solingen"] .st-hero__watermark {
  right: -8%; bottom: -10%;
  font-size: clamp(14rem, 22vw, 28rem);
  color: rgba(80, 255, 177, 0.025);
}
[data-city="remscheid"] .st-hero__watermark {
  right: -3%; bottom: -20%;
  font-size: clamp(16rem, 28vw, 34rem);
  color: rgba(80, 255, 177, 0.02);
}
[data-city="hagen"] .st-hero__watermark {
  right: -6%; bottom: -12%;
  font-size: clamp(15rem, 24vw, 30rem);
  color: rgba(80, 255, 177, 0.035);
}
[data-city="velbert"] .st-hero__watermark {
  right: -4%; bottom: -18%;
  font-size: clamp(13rem, 20vw, 26rem);
  color: rgba(80, 255, 177, 0.03);
}
[data-city="schwelm"] .st-hero__watermark {
  right: -10%; bottom: -8%;
  font-size: clamp(16rem, 26vw, 32rem);
  color: rgba(80, 255, 177, 0.02);
}
[data-city="wuelfrath"] .st-hero__watermark {
  right: -2%; bottom: -22%;
  font-size: clamp(14rem, 23vw, 28rem);
  color: rgba(80, 255, 177, 0.025);
}
[data-city="mettmann"] .st-hero__watermark {
  right: -7%; bottom: -14%;
  font-size: clamp(15rem, 25vw, 30rem);
  color: rgba(80, 255, 177, 0.03);
}
[data-city="gevelsberg"] .st-hero__watermark {
  right: -5%; bottom: -16%;
  font-size: clamp(13rem, 21vw, 27rem);
  color: rgba(80, 255, 177, 0.035);
}
[data-city="ennepetal"] .st-hero__watermark {
  right: -9%; bottom: -10%;
  font-size: clamp(14rem, 22vw, 28rem);
  color: rgba(80, 255, 177, 0.02);
}
[data-city="hattingen"] .st-hero__watermark {
  right: -3%; bottom: -20%;
  font-size: clamp(15rem, 24vw, 30rem);
  color: rgba(80, 255, 177, 0.025);
}

/* City-specific hero gradient variations */
[data-city="solingen"] .st-hero__bg {
  background: radial-gradient(ellipse 75% 55% at 55% 45%,
    rgba(14, 138, 128, 0.16) 0%, transparent 65%);
}
[data-city="remscheid"] .st-hero__bg {
  background: radial-gradient(ellipse 85% 65% at 65% 55%,
    rgba(11, 107, 99, 0.20) 0%, transparent 72%);
}
[data-city="hagen"] .st-hero__bg {
  background: radial-gradient(ellipse 70% 70% at 50% 60%,
    rgba(14, 138, 128, 0.15) 0%, transparent 68%);
}
[data-city="velbert"] .st-hero__bg {
  background: radial-gradient(ellipse 90% 50% at 70% 40%,
    rgba(11, 107, 99, 0.17) 0%, transparent 70%);
}
[data-city="schwelm"] .st-hero__bg {
  background: radial-gradient(ellipse 80% 60% at 45% 55%,
    rgba(14, 138, 128, 0.19) 0%, transparent 68%);
}
[data-city="wuelfrath"] .st-hero__bg {
  background: radial-gradient(ellipse 75% 65% at 60% 45%,
    rgba(11, 107, 99, 0.16) 0%, transparent 72%);
}
[data-city="mettmann"] .st-hero__bg {
  background: radial-gradient(ellipse 85% 55% at 55% 50%,
    rgba(14, 138, 128, 0.18) 0%, transparent 70%);
}
[data-city="gevelsberg"] .st-hero__bg {
  background: radial-gradient(ellipse 70% 60% at 65% 55%,
    rgba(11, 107, 99, 0.15) 0%, transparent 65%);
}
[data-city="ennepetal"] .st-hero__bg {
  background: radial-gradient(ellipse 80% 70% at 50% 50%,
    rgba(14, 138, 128, 0.17) 0%, transparent 72%);
}
[data-city="hattingen"] .st-hero__bg {
  background: radial-gradient(ellipse 85% 55% at 40% 60%,
    rgba(11, 107, 99, 0.19) 0%, transparent 68%);
}

.st-hero__content {
  position: relative; z-index: 10;
  max-width: 800px; width: 100%;
}
.st-hero__title {
  font-family: 'Lora', serif; font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1;
  letter-spacing: -0.02em; color: var(--cream);
  margin-bottom: 1.5rem;
}
.st-hero__title em { font-style: italic; color: var(--teal-accent); }
.st-hero__sub {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.02rem, 1.1vw, 1.15rem); font-weight: 400;
  line-height: 1.65; color: rgba(247,245,240,0.75);
  max-width: 560px; margin-bottom: 2rem;
}
.st-hero__cta {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.st-hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 0.6;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.st-hero__scroll.scroll-hidden { opacity: 0; pointer-events: none; }
.st-hero__scroll svg {
  width: 24px; height: 24px;
  color: var(--cream);
  animation: haScrollBounce 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

/* Word reveal for st-hero title */
.st-hero__title .word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
}
.st-hero__title .word {
  display: inline-block;
  animation: haWordReveal 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Nav visibility on city pages */
body:has(.st-hero) .nav { opacity: 1; animation: none; }

/* ── Leistungen Cards — Premium ── */
.st-leistungen {
  background: var(--bg);
  padding: clamp(80px, 10vw, 120px) 0;
  border-radius: 32px 32px 0 0;
  margin-top: -32px;
  position: relative; z-index: 2;
}
.st-leistungen__inner { max-width: 1200px; margin: 0 auto; }
.st-leistungen__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0 3rem;
}
.st-leistung-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #FFFFFF;
  border-radius: 20px;
  padding: clamp(32px, 4vw, 48px);
  box-shadow: 0 4px 24px rgba(10, 46, 42, 0.06);
  cursor: pointer;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.st-leistung-card.visible { opacity: 1; transform: translateY(0); }
.st-leistung-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(10, 46, 42, 0.12),
              0 8px 16px rgba(11, 107, 99, 0.06);
}
.st-leistung-card:active {
  transform: translateY(-2px) scale(0.985);
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}
.st-leistung-card__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: rgba(11, 107, 99, 0.06);
  margin-bottom: 1.5rem;
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.st-leistung-card:hover .st-leistung-card__icon {
  background: rgba(11, 107, 99, 0.12);
  transform: scale(1.05);
}
.st-leistung-card__icon svg {
  width: 24px; height: 24px;
  color: var(--teal-primary);
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.st-leistung-card:hover .st-leistung-card__icon svg {
  color: var(--teal-mid);
}
.st-leistung-card__title {
  font-family: 'Lora', serif; font-weight: 600;
  font-size: 1.375rem;
  color: var(--teal-deep);
  margin-bottom: 0.75rem;
}
.st-leistung-card__text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.02rem; font-weight: 400;
  line-height: 1.65; color: var(--text);
  margin-bottom: 1.5rem;
}
.st-leistung-card__link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.925rem; font-weight: 500;
  color: var(--teal-primary);
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              gap 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.st-leistung-card__link span[aria-hidden] {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.st-leistung-card:hover .st-leistung-card__link {
  color: var(--teal-mid);
  gap: 0.65rem;
}
.st-leistung-card:hover .st-leistung-card__link span[aria-hidden] {
  transform: translateX(4px);
}

/* ── Lokal Section — Premium ── */
.st-lokal {
  background: var(--bg);
  padding: clamp(60px, 8vw, 100px) 0;
}
.st-lokal__inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 3rem;
}
.st-lokal__stadtteile {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-bottom: 3rem;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.st-lokal__stadtteile.visible { opacity: 1; transform: translateY(0); }

/* Stadtteil tags — staggered fade-in via JS (--st-index) */
.st-stadtteil {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(11, 107, 99, 0.18);
  color: var(--teal-deep);
  background: rgba(11, 107, 99, 0.04);
  border-radius: 100px;
  padding: 8px 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.925rem; font-weight: 400;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--st-index, 0) * 60ms);
}
.st-lokal__stadtteile.visible .st-stadtteil {
  opacity: 1; transform: translateY(0);
}
.st-stadtteil:hover {
  transform: translateY(-3px);
  background: rgba(11, 107, 99, 0.10);
  border-color: rgba(11, 107, 99, 0.35);
  box-shadow: 0 4px 16px rgba(10, 46, 42, 0.08);
}
.st-lokal__usps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.st-lokal__usps.visible { opacity: 1; transform: translateY(0); }
.st-usp {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.02rem; font-weight: 400;
  color: var(--teal-deep);
}
.st-usp svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--teal-primary);
}

/* Distanz-Pill im Hero */
.st-hero__distance {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--teal-accent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.6s;
  margin-top: 1rem;
}
.st-hero__distance.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* USP-Checkmarks Draw-on-Scroll */
.st-usp svg polyline,
.st-usp svg path {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  transition: stroke-dashoffset 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.st-usp.is-visible svg polyline,
.st-usp.is-visible svg path {
  stroke-dashoffset: 0;
}

/* ── Staedteseiten Responsive ── */
@media (max-width: 768px) {
  .st-hero {
    min-height: auto;
    padding: 7rem 1.5rem 5rem;
  }
  .st-hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .st-hero__watermark { font-size: clamp(8rem, 30vw, 15rem); right: -10%; }
  /* Override city-specific watermark on mobile — keep it simple */
  [data-city] .st-hero__watermark {
    font-size: clamp(8rem, 30vw, 15rem);
    right: -10%; bottom: -15%;
  }
  .st-hero__scroll { bottom: 1.5rem; }
  .st-leistungen__grid {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
  }
  .st-lokal__inner { padding: 0 1.5rem; }
  .st-lokal__usps { grid-template-columns: 1fr; }
}

/* ── Reduce motion for st- ── */
@media (prefers-reduced-motion: reduce) {
  .st-hero__title .word { animation: none !important; opacity: 1 !important; }
  .st-hero__scroll svg { animation: none !important; }
  .st-leistung-card,
  .st-lokal__stadtteile,
  .st-lokal__usps {
    opacity: 1 !important;
    transform: none !important;
  }
  .st-stadtteil {
    opacity: 1 !important;
    transform: none !important;
    transition-delay: 0ms !important;
  }
  .st-hero__distance {
    opacity: 1 !important;
    transform: none !important;
    transition-delay: 0ms !important;
  }
  .st-usp svg polyline,
  .st-usp svg path {
    stroke-dashoffset: 0 !important;
    transition: none !important;
  }
}
