/* ─── RESET & BASE ──────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }

    :root {
      --bg:          #F0F4F7;
      --white:       #FFFFFF;
      --navy:        #1A2F4A;
      --navy-mid:    #2C4A6E;
      --navy-deep:   #0F1F33;
      --amber:       #6BB3D9;
      --amber-lt:    #8BC9E8;
      --amber-pale:  #E8F4F8;
      --amber-glow:  rgba(107,179,217,.18);
      --muted:       #8A9BAE;
      --border:      #E8E5DF;
      --card-bg:     #FFFFFF;
      --ff-head:     'Cormorant Garamond', 'Georgia', serif;
      --ff-body:     'Plus Jakarta Sans', system-ui, sans-serif;
      --ease:        cubic-bezier(.22,1,.36,1);
      --ease-spring: cubic-bezier(.34,1.56,.64,1);
      --r-sm:        10px;
      --r-md:        16px;
      --r-lg:        24px;
      --r-xl:        32px;
      --shadow-sm:   0 2px 10px rgba(26,26,46,.06);
      --shadow-md:   0 8px 28px rgba(26,26,46,.10);
      --shadow-lg:   0 20px 60px rgba(26,26,46,.15);
      --shadow-xl:   0 32px 80px rgba(26,26,46,.20);
    }

    body {
      background: var(--bg);
      color: var(--navy);
      font-family: var(--ff-body);
      font-weight: 400;
      line-height: 1.7;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
    }

    img { display: block; max-width: 100%; height: auto; }
    a   { color: inherit; text-decoration: none; }

    /* Accessible focus ring — visible keyboard nav, invisible on click */
    :focus-visible {
      outline: 2.5px solid var(--amber);
      outline-offset: 3px;
      border-radius: 4px;
    }
    :focus:not(:focus-visible) { outline: none; }

    /* iOS input zoom prevention */
    @supports (-webkit-touch-callout: none) {
      input, select, textarea {
        font-size: max(16px, 1em) !important;
      }
    }

    /* ─── GRAIN ─────────────────────────────────────────────── */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: .018;
      pointer-events: none;
      z-index: 9999;
    }

    /* ─── TYPOGRAPHY ────────────────────────────────────────── */
    h1, h2, h3 {
      font-family: var(--ff-head);
      line-height: 1.15;
      letter-spacing: -.02em;
    }
    /* Cormorant Garamond is an optical serif — needs +15% larger sizes */
    h1 { font-size: clamp(2.5rem, 5.5vw, 4.8rem); font-weight: 700; }
    h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; }
    h3 { font-size: clamp(1.05rem, 2vw, 1.35rem); font-weight: 600; }
    p  { color: #4A4A60; max-width: 65ch; font-size: clamp(.9rem, 1.5vw, 1rem); }

    .pill-label {
      display: inline-flex;
      align-items: center;
      gap: .45em;
      padding: .4em 1em;
      border-radius: 999px;
      background: var(--amber-pale);
      border: 1px solid rgba(107,179,217,.25);
      font-family: var(--ff-body);
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--amber);
    }

    .effekte-liste li {
      display: flex;
      gap: 0.5em;
    }
    .effekte-liste li strong {
      min-width: 6.5em;
      flex-shrink: 0;
    }
    .pill-label .dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--amber);
      flex-shrink: 0;
    }

    /* ─── BUTTONS ───────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: .5em;
      padding: .7em 1.8em;
      border-radius: 999px;
      font-family: var(--ff-body);
      font-size: .92rem;
      font-weight: 600;
      letter-spacing: .01em;
      cursor: pointer;
      transition: all .28s var(--ease);
      border: 2px solid transparent;
      position: relative;
      overflow: hidden;
    }
    .btn-primary {
      background: var(--amber);
      color: #fff;
      border-color: var(--amber);
      box-shadow: 0 4px 20px rgba(107,179,217,.3);
      animation: ctaPulse 3s ease infinite;
    }
    .btn-primary:hover {
      background: var(--amber-lt);
      border-color: var(--amber-lt);
      transform: translateY(-2px) scale(1.03);
      box-shadow: 0 12px 36px rgba(107,179,217,.5);
      animation: none;
    }
    /* shimmer sweep */
    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      left: -80%;
      width: 50%;
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,.32) 50%,
        transparent 100%
      );
      transform: skewX(-18deg);
      animation: btnShimmer 4s ease infinite 1.2s;
      pointer-events: none;
    }
    .btn-primary:hover::before { animation: none; opacity: 0; }
    /* arrow micro-animation on hover */
    .btn-primary .btn-arrow {
      display: inline-block;
      transition: transform .25s var(--ease-spring);
    }
    .btn-primary:hover .btn-arrow { transform: translateX(4px); }

    @keyframes ctaPulse {
      0%, 100% {
        box-shadow: 0 4px 20px rgba(107,179,217,.3),
                    0 0 0 0 rgba(107,179,217,.28);
      }
      55% {
        box-shadow: 0 4px 20px rgba(107,179,217,.3),
                    0 0 0 10px rgba(107,179,217,.0);
      }
    }
    @keyframes ctaPulseBlack {
      0%, 100% {
        box-shadow: 0 4px 20px rgba(26,26,46,.25),
                    0 0 0 0 rgba(26,26,46,.35);
      }
      55% {
        box-shadow: 0 4px 20px rgba(26,26,46,.25),
                    0 0 0 12px rgba(26,26,46,.0);
      }
    }
    @keyframes btnShimmer {
      0%   { left: -80%; opacity: 1; }
      40%  { left: 130%; opacity: 1; }
      41%  { opacity: 0; }
      100% { left: 130%; opacity: 0; }
    }
    .btn-ghost {
      background: rgba(255,255,255,.12);
      color: #fff;
      border-color: rgba(255,255,255,.35);
      backdrop-filter: blur(8px);
    }
    .btn-ghost:hover {
      background: rgba(255,255,255,.22);
      border-color: rgba(255,255,255,.7);
      transform: translateY(-2px);
    }
    .btn-outline {
      background: transparent;
      color: var(--amber);
      border-color: var(--amber);
    }
    .btn-outline:hover {
      background: var(--amber);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(107,179,217,.3);
    }

    /* ─── LAYOUT ─────────────────────────────────────────────── */
    .section { padding: 96px 0; }
    .container { width: 92%; max-width: 1160px; margin: 0 auto; }
    .section-head { margin-bottom: 4rem; }
    .section-head .pill-label { margin-bottom: 1.2rem; }
    .section-head h2 { margin-bottom: .7rem; }
    .section-head p { max-width: 52ch; }
    .section-head.center { text-align: center; }
    .section-head.center p { margin: 0 auto; }

    /* ─── SCROLL ANIMATIONS ──────────────────────────────────── */
    [data-anim] {
      opacity: 0;
      -webkit-transition:
        opacity 1.1s cubic-bezier(.16,1,.3,1),
        -webkit-transform 1.1s cubic-bezier(.16,1,.3,1);
      transition:
        opacity 1.1s cubic-bezier(.16,1,.3,1),
        transform 1.1s cubic-bezier(.16,1,.3,1);
    }
    /* Mobile: moderatere Distanzen */
    [data-anim="fade-up"]    { -webkit-transform: translateY(32px);  transform: translateY(32px);  }
    [data-anim="fade-down"]  { -webkit-transform: translateY(-20px); transform: translateY(-20px); }
    [data-anim="fade-left"]  { -webkit-transform: translateX(32px);  transform: translateX(32px);  }
    [data-anim="fade-right"] { -webkit-transform: translateX(-32px); transform: translateX(-32px); }
    [data-anim="zoom"]       { -webkit-transform: scale(.93);        transform: scale(.93);        }
    [data-anim="zoom-up"]    { -webkit-transform: scale(.93) translateY(24px); transform: scale(.93) translateY(24px); }

    [data-anim].in-view {
      opacity: 1;
      -webkit-transform: none;
              transform: none;
    }

    /* Desktop: größere Distanzen, noch langsamer */
    @media (min-width: 769px) {
      [data-anim] {
        -webkit-transition:
          opacity 1.4s cubic-bezier(.16,1,.3,1),
          -webkit-transform 1.4s cubic-bezier(.16,1,.3,1);
        transition:
          opacity 1.4s cubic-bezier(.16,1,.3,1),
          transform 1.4s cubic-bezier(.16,1,.3,1);
      }
      [data-anim="fade-up"]    { -webkit-transform: translateY(72px);  transform: translateY(72px);  }
      [data-anim="fade-down"]  { -webkit-transform: translateY(-40px); transform: translateY(-40px); }
      [data-anim="fade-left"]  { -webkit-transform: translateX(80px);  transform: translateX(80px);  }
      [data-anim="fade-right"] { -webkit-transform: translateX(-80px); transform: translateX(-80px); }
      [data-anim="zoom"]       { -webkit-transform: scale(.85);        transform: scale(.85);        }
      [data-anim="zoom-up"]    { -webkit-transform: scale(.87) translateY(52px); transform: scale(.87) translateY(52px); }
    }

    /* Stagger delays — großzügiger für langsamere Effekte */
    [data-delay="1"] { -webkit-transition-delay: .12s; transition-delay: .12s; }
    [data-delay="2"] { -webkit-transition-delay: .26s; transition-delay: .26s; }
    [data-delay="3"] { -webkit-transition-delay: .40s; transition-delay: .40s; }
    [data-delay="4"] { -webkit-transition-delay: .54s; transition-delay: .54s; }
    [data-delay="5"] { -webkit-transition-delay: .68s; transition-delay: .68s; }
    [data-delay="6"] { -webkit-transition-delay: .82s; transition-delay: .82s; }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
      [data-anim] {
        opacity: 1 !important;
        -webkit-transform: none !important;
        transform: none !important;
        -webkit-transition: none !important;
        transition: none !important;
      }
      .hero-anim {
        opacity: 1 !important;
        -webkit-transform: none !important;
        transform: none !important;
      }
    }

    /* ══════════════════════════════════════════════════════════
       NAVIGATION
    ══════════════════════════════════════════════════════════ */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 18px 0;
      transition: padding .45s var(--ease);
    }
    .nav.scrolled { padding: 10px 0; }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 52px;
      width: 92%;
      max-width: 1160px;
      margin: 0 auto;
      background: rgba(255,255,255,.94);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid rgba(0,0,0,.06);
      border-radius: 999px;
      padding: 0 6px 0 1.6rem;
      box-shadow: 0 4px 28px rgba(26,26,46,.10);
    }

    .nav-logo {
      font-family: var(--ff-head);
      font-size: 1.22rem;
      font-weight: 700;
      color: var(--navy);
      white-space: nowrap;
      letter-spacing: -.02em;
      line-height: 1;
    }
    .nav-logo span { color: var(--amber); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      font-size: .82rem;
      font-weight: 500;
      color: rgba(26,26,46,.6);
      letter-spacing: .02em;
      transition: color .22s;
      position: relative;
      padding: .25em 0;
      line-height: 1;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0; left: 50%;
      width: 0; height: 1px;
      background: var(--amber);
      transition: width .3s var(--ease), left .3s var(--ease);
      border-radius: 1px;
    }
    .nav-links a:hover::after { width: 100%; left: 0; }
    .nav-links a:hover { color: var(--navy); }

    /* ─── DROPDOWN NAVIGATION ───────────────────────────────── */
    .nav-dropdown {
      position: relative;
    }
    .nav-dropdown > a {
      display: inline-flex;
      align-items: center;
      gap: .35em;
    }
    .dropdown-arrow {
      width: 8px;
      height: 8px;
      border-right: 2px solid var(--amber);
      border-bottom: 2px solid var(--amber);
      transform: rotate(45deg) translateY(-2px);
      transition: transform .3s cubic-bezier(.34,1.56,.64,1);
    }
    .nav-dropdown:hover .dropdown-arrow {
      transform: rotate(225deg) translateY(0);
    }
    .nav-dropdown-menu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(8px);
      min-width: 200px;
      background: rgba(255,255,255,.98);
      border: 1px solid rgba(0,0,0,.08);
      border-radius: var(--r-md);
      padding: .5rem 0;
      list-style: none;
      opacity: 0;
      visibility: hidden;
      transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
      box-shadow: 0 12px 40px rgba(26,26,46,.15);
    }
    .nav-dropdown:hover .nav-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }
    .nav-dropdown-menu li {
      padding: 0;
    }
    .nav-dropdown-menu a {
      display: block;
      padding: .6rem 1.2rem;
      font-size: .8rem;
      color: rgba(26,26,46,.7);
      transition: background .2s, color .2s, padding-left .2s;
    }
    .nav-dropdown-menu a::after {
      display: none;
    }
    .nav-dropdown-menu a:hover {
      background: rgba(107,179,217,.12);
      color: var(--amber);
      padding-left: 1.5rem;
    }

    /* Mobile drawer sub-links */
    .nav-drawer-label {
      display: block;
      font-family: var(--ff-body);
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.4);
      padding: 1.2rem 0 .5rem;
      border-bottom: none;
    }
    .nav-drawer-sub {
      font-size: 1.2rem !important;
      padding-left: 1rem !important;
      color: rgba(255,255,255,.6) !important;
    }
    .nav-drawer-sub:hover {
      color: var(--amber) !important;
      padding-left: 1.5rem !important;
    }

    .nav-cta { flex-shrink: 0; }
    .nav-cta .btn {
      padding: .6em 1.35em;
      font-size: .82rem;
      animation: ctaPulseBlack 2s ease-in-out infinite;
    }
    .nav-cta .btn::before { display: none; }

    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 4.5px;
      cursor: pointer;
      padding: 8px;
      background: none;
      border: none;
      margin-right: 2px;
    }
    .nav-toggle span {
      display: block;
      width: 20px; height: 1.5px;
      background: var(--navy);
      border-radius: 2px;
      transition: all .3s var(--ease);
    }
    /* animated X on open */
    .nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    /* mobile menu drawer */
    .nav-drawer {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(18,18,32,.96);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      z-index: 999;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-end;
      gap: 0;
      padding: 0 7vw 2.4rem;
      opacity: 0;
      -webkit-transition: opacity .55s var(--ease);
      transition: opacity .55s var(--ease);
      pointer-events: none;
    }
    .nav-drawer.open {
      display: flex;
      opacity: 1;
      pointer-events: all;
    }
    /* divider line between links */
    .nav-drawer-links {
      width: 100%;
      display: flex;
      flex-direction: column;
      border-top: 1px solid rgba(255,255,255,.08);
      margin-bottom: 1.6rem;
    }
    /* links start hidden — JS drives reveal */
    .nav-drawer-links a {
      font-family: var(--ff-head);
      font-size: 1.55rem;
      font-weight: 600;
      color: rgba(255,255,255,.78);
      padding: .75rem 0;
      border-bottom: 1px solid rgba(255,255,255,.07);
      letter-spacing: -.01em;
      display: block;
      opacity: 0;
      -webkit-transform: translateY(22px);
      transform: translateY(22px);
      -webkit-transition: opacity .55s var(--ease), -webkit-transform .55s var(--ease), color .2s, padding-left .22s var(--ease);
      transition: opacity .55s var(--ease), transform .55s var(--ease), color .2s, padding-left .22s var(--ease);
    }
    .nav-drawer-links a:hover {
      color: var(--amber);
      padding-left: .5rem;
    }
    /* cta starts hidden too */
    .nav-drawer-cta {
      width: 100%;
      opacity: 0;
      -webkit-transform: translateY(18px);
      transform: translateY(18px);
      -webkit-transition: opacity .55s var(--ease), -webkit-transform .55s var(--ease);
      transition: opacity .55s var(--ease), transform .55s var(--ease);
    }
    .nav-drawer-cta .btn {
      width: 100%;
      justify-content: center;
      font-size: .95rem;
    }
    /* small logo + close row at top */
    .nav-drawer-top {
      position: absolute;
      top: 0; left: 0; right: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem 7vw;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .nav-drawer-brand {
      font-family: var(--ff-head);
      font-size: 1rem;
      font-weight: 700;
      color: rgba(255,255,255,.6);
      letter-spacing: -.01em;
    }
    .nav-drawer-brand span { color: var(--amber); }
    .nav-drawer-close {
      color: rgba(255,255,255,.5);
      font-size: 1.6rem;
      line-height: 1;
      cursor: pointer;
      background: none;
      border: none;
      padding: .25rem;
      transition: color .2s;
    }
    .nav-drawer-close:hover { color: #fff; }

    /* ══════════════════════════════════════════════════════════
       HERO
    ══════════════════════════════════════════════════════════ */
    .hero {
      position: relative;
      min-height: 100svh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding-bottom: 0;
    }
    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 20%;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.2s ease;
      will-change: opacity;
    }
    /* === Mobile Hero Video === */
    @media (max-width: 768px) {
      .hero-video { display: block; }
      .hero::before {
        display: none;
        z-index: 0;
      }
    }
    .hero-overlay {
      background: linear-gradient(
        to bottom,
        rgba(10,10,22,.45) 0%,
        rgba(10,10,22,.55) 40%,
        rgba(10,10,22,.8) 100%
      );
    }
    /* additional vignette sides */
    .hero-overlay::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 30% 60%, transparent 30%, rgba(10,10,22,.55) 100%);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 4vw;
      max-width: 1100px;
      text-align: center;
      will-change: transform;
    }

    /* ── Hero entrance: transition-based (kein @keyframes — zuverlässig auf iOS) ── */
    /* Initialzustand: unsichtbar. JS setzt transition + finalen State per inline style. */
    .hero-anim {
      opacity: 0;
      -webkit-transform: translateY(28px);
              transform: translateY(28px);
    }
    /* h1 bekommt größeren Versatz für mehr Drama */
    .hero-content h1.hero-anim {
      -webkit-transform: translateY(46px);
              transform: translateY(46px);
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: .6em;
      background: rgba(20,20,30,.7);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 999px;
      color: #fff;
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      padding: .45em 1.2em;
      margin-bottom: 1rem;
    }
    .hero-badge .pulse {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--amber-lt);
      animation: pulse-dot 2.4s ease infinite;
      flex-shrink: 0;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: .4; transform: scale(.65); }
    }

    .hero h1 {
      color: #fff;
      font-size: clamp(2rem, 5vw, 3.6rem);
      font-style: italic;
      font-weight: 700;
      line-height: 1.08;
      margin-bottom: .8rem;
      text-shadow:
        0 2px 4px rgba(0,0,0,.8),
        0 4px 12px rgba(0,0,0,.6),
        0 8px 40px rgba(0,0,0,.5);
      letter-spacing: -.02em;
    }
    .hero-sub {
      color: #fff;
      font-size: clamp(.9rem, 1.6vw, 1.08rem);
      font-weight: 700;
      letter-spacing: .04em;
      margin-bottom: 1.4rem;
      text-align: center;
      text-shadow:
        0 1px 3px rgba(0,0,0,.7),
        0 3px 10px rgba(0,0,0,.5);
    }
    /* Typewriter Effect */
    .tw-cursor {
      display: inline-block;
      width: 3px;
      height: 1em;
      background: var(--amber);
      margin-left: 2px;
      vertical-align: text-bottom;
      animation: blink 0.8s step-end infinite;
    }
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }
    .typewriter-text { display: inline; }
    .tw-char { display: inline; }
    .hero-btns {
      display: flex;
      gap: .9rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 3.5rem;
    }

    /* floating stat cards */
    .hero-stats {
      display: none; /* hidden on all devices */
    }
    .hero-stats.visible { opacity: 1; transform: none; }
    .hero-stat-card {
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.2);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-radius: var(--r-md);
      padding: .9rem 1.2rem;
      display: flex;
      align-items: center;
      gap: .9rem;
      min-width: 170px;
    }
    .hero-stat-icon {
      width: 36px; height: 36px;
      background: rgba(107,179,217,.25);
      border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .hero-stat-icon svg { width: 18px; height: 18px; color: #F0B84A; }
    .hero-stat-info strong {
      display: block;
      font-size: 1.15rem;
      font-weight: 700;
      font-family: var(--ff-head);
      color: #fff;
      line-height: 1.1;
    }
    .hero-stat-info span {
      font-size: .7rem;
      color: rgba(255,255,255,.55);
      letter-spacing: .05em;
    }

    .hero-scroll {
      display: none; /* hidden on all devices */
    }
    .hero-scroll-line {
      width: 1px; height: 36px;
      background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
      border-radius: 1px;
    }
    @keyframes scroll-bob {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(7px); }
    }

    /* ══════════════════════════════════════════════════════════
       TRUST BAR
    ══════════════════════════════════════════════════════════ */
    .trust-bar {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      position: relative;
    }
    .trust-bar-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.8rem 2rem;
      border-right: 1px solid var(--border);
      transition: background .2s;
    }
    .trust-item:last-child { border-right: none; }
    .trust-item:hover { background: var(--amber-pale); }
    .trust-icon {
      width: 44px; height: 44px;
      background: var(--amber-pale);
      border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: background .2s, transform .2s var(--ease-spring);
    }
    .trust-item:hover .trust-icon { background: rgba(107,179,217,.2); transform: scale(1.08); }
    .trust-icon svg { width: 20px; height: 20px; }
    .trust-text strong {
      display: block;
      font-size: .9rem;
      font-weight: 600;
      color: var(--navy);
    }
    .trust-text span { font-size: .77rem; color: var(--muted); }

    /* ══════════════════════════════════════════════════════════
       WAS IST TROCKENEISSTRAHLEN
    ══════════════════════════════════════════════════════════ */
    .leistungen-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }
    .leistungen-text .section-head { margin-bottom: 2rem; }
    .leistungen-text p { margin-bottom: 1.4rem; }
    .leistungen-text h3 {
      margin: 2rem 0 .8rem;
      font-size: 1.05rem;
    }
    .leistungen-text ul {
      margin: 1rem 0 1.4rem 0;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: .75rem;
    }
    .leistungen-text li {
      display: flex;
      align-items: flex-start;
      gap: .8rem;
      color: #4A4A60;
      font-size: .94rem;
    }
    .leistungen-text li::before {
      content: '';
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--amber);
      margin-top: .5rem;
      flex-shrink: 0;
    }

    .leistungen-visual {
      position: sticky;
      top: 100px;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .leistungen-img-main {
      border-radius: var(--r-lg);
      overflow: hidden;
      box-shadow: var(--shadow-xl);
      position: relative;
      max-width: 550px;
      background: var(--bg);
    }
    .leistungen-img-main img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform .6s var(--ease);
    }
    .leistungen-img-main:hover img { transform: scale(1.04); }
    .leistungen-img-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,.6));
      color: rgba(255,255,255,.75);
      font-size: .78rem;
      padding: 2.5rem 1.3rem .9rem;
      font-style: italic;
    }
    /* floating effect card on image */
    .leistungen-img-badge {
      position: absolute;
      top: 1.2rem; right: 1.2rem;
      background: rgba(255,255,255,.15);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,.25);
      border-radius: var(--r-sm);
      padding: .7rem 1rem;
      color: #fff;
      font-size: .78rem;
      font-weight: 600;
    }
    .leistungen-img-badge strong { display: block; font-size: 1.2rem; font-family: var(--ff-head); }

    /* ══════════════════════════════════════════════════════════
       DREI SCHRITTE
    ══════════════════════════════════════════════════════════ */
    .steps-section { background: var(--navy-deep); }
    .steps-section .section-head h2 { color: #fff; }
    .steps-section .section-head p { color: rgba(255,255,255,.55); }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      position: relative;
    }
    /* connecting line */
    .steps-grid::before {
      content: '';
      position: absolute;
      top: 56px;
      left: calc(100% / 6);
      right: calc(100% / 6);
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(107,179,217,.4) 20%, rgba(107,179,217,.4) 80%, transparent);
      z-index: 0;
      pointer-events: none;
    }

    .step-card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.07);
      border-radius: var(--r-lg);
      padding: 2.5rem 2rem;
      transition: background .3s, border-color .3s, transform .3s var(--ease);
      position: relative;
      z-index: 1;
    }
    .step-card:hover {
      background: rgba(107,179,217,.09);
      border-color: rgba(107,179,217,.3);
      transform: translateY(-4px);
    }
    .step-number {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: rgba(107,179,217,.15);
      border: 1.5px solid rgba(107,179,217,.35);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--ff-head);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--amber-lt);
      margin-bottom: 1.5rem;
    }
    .step-card h3 {
      font-family: var(--ff-body);
      font-size: 1.05rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: .7rem;
    }
    .step-card p {
      font-size: .87rem;
      color: rgba(255,255,255,.5);
      max-width: none;
    }

    /* ══════════════════════════════════════════════════════════
       ANWENDUNGSGEBIETE – BENTO GRID
    ══════════════════════════════════════════════════════════ */
    .anw-section { background: var(--bg); }

    .bento-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.2rem;
    }
    .bento-card {
      background: var(--card-bg);
      border-radius: var(--r-lg);
      padding: 2.2rem 2rem;
      border: 1px solid var(--border);
      transition: box-shadow .3s, transform .3s var(--ease), border-color .3s;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      min-height: 180px;
    }
    .bento-card:hover {
      box-shadow: var(--shadow-md);
      border-color: rgba(107,179,217,.25);
      transform: translateY(-3px);
    }

    .bento-icon {
      width: 50px; height: 50px;
      background: var(--amber-pale);
      border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center;
      transition: transform .25s var(--ease-spring);
    }
    .bento-card:hover .bento-icon { transform: scale(1.1) rotate(-4deg); }
    .bento-icon svg { width: 24px; height: 24px; color: var(--amber); }
    .bento-card h3 {
      font-family: var(--ff-body);
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--navy);
    }
    .bento-card p {
      font-size: .84rem;
      color: var(--muted);
      max-width: none;
    }
    /* Bento Card Popup Modal */
    .bento-modal {
      position: fixed;
      inset: 0;
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      opacity: 0;
      visibility: hidden;
      transition: opacity .3s, visibility .3s;
    }
    .bento-modal.open {
      opacity: 1;
      visibility: visible;
    }
    .bento-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(10,10,22,.7);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }
    .bento-modal-content {
      position: relative;
      background: var(--white);
      border-radius: var(--r-lg);
      padding: 2.5rem;
      max-width: 500px;
      width: 100%;
      box-shadow: var(--shadow-xl);
      transform: translateY(20px) scale(0.95);
      transition: transform .3s var(--ease);
    }
    .bento-modal.open .bento-modal-content {
      transform: translateY(0) scale(1);
    }
    .bento-modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 36px;
      height: 36px;
      border: none;
      background: var(--bg);
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s, transform .2s;
    }
    .bento-modal-close:hover {
      background: var(--amber-pale);
      transform: scale(1.1);
    }
    .bento-modal-close svg {
      width: 18px;
      height: 18px;
      color: var(--navy);
    }
    .bento-modal-icon {
      width: 56px;
      height: 56px;
      background: var(--amber-pale);
      border-radius: var(--r-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.2rem;
    }
    .bento-modal-icon svg {
      width: 28px;
      height: 28px;
      color: var(--amber);
    }
    .bento-modal h3 {
      font-family: var(--ff-heading);
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: .8rem;
    }
    .bento-modal-text p {
      font-size: .95rem;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 1rem;
    }
    .bento-modal-text p:last-child {
      margin-bottom: 0;
    }

    /* Legal Modal (Impressum / Datenschutz) */
    .legal-modal {
      position: fixed;
      inset: 0;
      z-index: 10001;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      opacity: 0;
      visibility: hidden;
      transition: opacity .3s, visibility .3s;
    }
    .legal-modal.open {
      opacity: 1;
      visibility: visible;
    }
    .legal-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(10,10,22,.75);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }
    .legal-modal-content {
      position: relative;
      background: var(--white);
      border-radius: var(--r-lg);
      padding: 2.5rem;
      max-width: 680px;
      width: 100%;
      max-height: 85vh;
      overflow-y: auto;
      box-shadow: var(--shadow-xl);
      transform: translateY(20px) scale(0.95);
      transition: transform .3s var(--ease);
    }
    .legal-modal.open .legal-modal-content {
      transform: translateY(0) scale(1);
    }
    .legal-modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 40px;
      height: 40px;
      border: none;
      background: var(--bg);
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s, transform .2s;
    }
    .legal-modal-close:hover {
      background: var(--amber-pale);
      transform: scale(1.1);
    }
    .legal-modal-close svg {
      width: 20px;
      height: 20px;
      color: var(--navy);
    }
    .legal-modal h2 {
      font-family: var(--ff-head);
      font-size: 1.8rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 1.5rem;
      padding-right: 2rem;
    }
    .legal-modal h3 {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--navy);
      margin: 1.5rem 0 .6rem;
    }
    .legal-modal p {
      font-size: .92rem;
      color: #4A4A60;
      line-height: 1.7;
      margin-bottom: .8rem;
    }
    .legal-modal ul {
      margin: .5rem 0 1rem 1.2rem;
      font-size: .92rem;
      color: #4A4A60;
      line-height: 1.7;
    }
    .legal-modal a {
      color: var(--amber);
      text-decoration: underline;
    }
    @media (max-width: 600px) {
      .legal-modal-content {
        padding: 1.8rem 1.4rem;
        max-height: 90vh;
      }
      .legal-modal h2 { font-size: 1.5rem; }
    }

    /* ══════════════════════════════════════════════════════════
       WARUM RUTTLOFF
    ══════════════════════════════════════════════════════════ */
    .warum-section { background: var(--white); }
    .warum-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }

    .usp-list { list-style: none; display: flex; flex-direction: column; gap: .9rem; margin-top: 2rem; }
    .usp-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.2rem 1.3rem;
      border-radius: var(--r-md);
      background: transparent;
      border: 1px solid transparent;
      transition: background .2s, border-color .2s, transform .2s var(--ease);
    }
    .usp-item:hover {
      background: var(--amber-pale);
      border-color: rgba(107,179,217,.2);
      transform: translateX(4px);
    }
    .usp-check {
      width: 24px; height: 24px;
      background: var(--amber);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-top: .12rem;
      transition: transform .2s var(--ease-spring);
    }
    .usp-item:hover .usp-check { transform: scale(1.15); }
    .usp-check svg { width: 11px; height: 11px; }
    .usp-item strong { display: block; font-size: 1.05rem; font-weight: 600; margin-bottom: .2rem; }
    .usp-item span { font-size: .92rem; color: var(--muted); line-height: 1.5; }

    /* CTA card */
    .cta-card {
      background: var(--navy);
      border-radius: var(--r-xl);
      padding: 3rem;
      position: sticky;
      top: 100px;
      overflow: hidden;
    }
    /* subtle radial glow */
    .cta-card::before {
      content: '';
      position: absolute;
      top: -40px; right: -40px;
      width: 220px; height: 220px;
      background: radial-gradient(circle, rgba(107,179,217,.3), transparent 70%);
      pointer-events: none;
    }
    .cta-card .pill-label {
      background: rgba(107,179,217,.2);
      border-color: rgba(107,179,217,.35);
      color: var(--amber-lt);
      margin-bottom: 1.2rem;
    }
    .cta-card h3 {
      font-size: clamp(1.6rem, 3.5vw, 2.2rem);
      font-weight: 700;
      color: #fff;
      margin-bottom: .9rem;
      line-height: 1.3;
    }
    .cta-card > p {
      color: rgba(255,255,255,.55);
      font-size: 1.05rem;
      margin-bottom: 2.2rem;
      max-width: none;
    }
    .stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: .6rem;
      margin-bottom: 2.4rem;
    }
    .stat-item {
      background: rgba(107,179,217,.08);
      border: 1px solid rgba(107,179,217,.25);
      border-radius: var(--r-sm);
      padding: 1rem .5rem;
      text-align: center;
      min-width: 0;
    }
    .stat-item strong {
      display: block;
      font-size: clamp(1.1rem, 2.5vw, 1.6rem);
      font-family: var(--ff-heading);
      font-weight: 700;
      color: var(--amber);
      line-height: 1.1;
      margin-bottom: .25rem;
    }
    .stat-item strong .count-up {
      font-size: inherit;
      color: inherit;
    }
    .stat-item > span { font-size: clamp(.55rem, 1.2vw, .7rem); color: rgba(255,255,255,.6); letter-spacing: .03em; text-transform: uppercase; font-weight: 600; }

    /* ══════════════════════════════════════════════════════════
       GALERIE
    ══════════════════════════════════════════════════════════ */
    .galerie-section { background: var(--bg); }
    .galerie-mosaic {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: 260px 260px;
      gap: .9rem;
    }
    .galerie-item {
      position: relative;
      overflow: hidden;
      border-radius: var(--r-md);
      cursor: zoom-in;
    }
    /* first item spans 2 rows */
    .galerie-item:first-child {
      grid-row: span 2;
    }
    .galerie-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform .55s var(--ease);
    }
    .galerie-item:hover img { transform: scale(1.07); }
    .galerie-overlay {
      position: absolute;
      inset: 0;
      background: rgba(26,26,46,0);
      display: flex; align-items: center; justify-content: center;
      transition: background .3s;
    }
    .galerie-item:hover .galerie-overlay { background: rgba(26,26,46,.35); }
    .galerie-zoom {
      opacity: 0;
      transform: scale(.7);
      transition: all .3s var(--ease-spring);
      color: #fff;
    }
    .galerie-zoom svg { width: 34px; height: 34px; }
    .galerie-item:hover .galerie-zoom { opacity: 1; transform: scale(1); }
    /* LIGHTBOX */
    .lightbox {
      display: none;
      position: fixed; inset: 0;
      background: rgba(0,0,0,.94);
      backdrop-filter: blur(12px);
      z-index: 2000;
      align-items: center; justify-content: center;
      padding: 1.5rem;
      cursor: zoom-out;
    }
    .lightbox.open { display: flex; }
    .lightbox img {
      max-width: 90vw; max-height: 87vh;
      object-fit: contain;
      border-radius: var(--r-md);
      box-shadow: 0 40px 100px rgba(0,0,0,.6);
      cursor: default;
    }
    .lightbox-close {
      position: absolute;
      top: 1.2rem; right: 1.5rem;
      color: rgba(255,255,255,.6);
      font-size: 2rem;
      line-height: 1;
      cursor: pointer;
      background: none;
      border: none;
      transition: color .2s;
    }
    .lightbox-close:hover { color: #fff; }

    /* ══════════════════════════════════════════════════════════
       TESTIMONIALS
    ══════════════════════════════════════════════════════════ */
    .testimonials-section { background: var(--white); }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .testimonial-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 2rem 1.8rem;
      transition: box-shadow .3s, transform .3s var(--ease), border-color .3s;
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }
    .testimonial-card:hover {
      box-shadow: var(--shadow-md);
      border-color: rgba(107,179,217,.25);
      transform: translateY(-4px);
    }
    .testimonial-stars {
      display: flex;
      gap: .25rem;
      color: var(--amber);
    }
    .testimonial-stars svg { width: 18px; height: 18px; fill: currentColor; }
    .testimonial-quote {
      font-size: .95rem;
      font-style: italic;
      color: #4A4A60;
      line-height: 1.7;
      flex-grow: 1;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding-top: 1rem;
      border-top: 1px solid var(--border);
    }
    .testimonial-avatar {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: var(--amber-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--ff-head);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--amber);
      flex-shrink: 0;
    }
    .testimonial-info strong {
      display: block;
      font-size: .9rem;
      font-weight: 600;
      color: var(--navy);
    }
    .testimonial-info span {
      font-size: .78rem;
      color: var(--muted);
    }

    @media (max-width: 900px) {
      .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .testimonials-grid { grid-template-columns: 1fr; }
      .testimonial-card { padding: 1.6rem 1.4rem; }
    }

    /* ══════════════════════════════════════════════════════════
       KONTAKT
    ══════════════════════════════════════════════════════════ */
    .kontakt-section { background: var(--navy-deep); }
    .kontakt-section .section-head h2 { color: #fff; }
    .kontakt-section .section-head p { color: rgba(255,255,255,.5); }

    .kontakt-grid {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 3.5rem;
      align-items: start;
    }

    /* form card */
    .form-card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--r-xl);
      padding: 2.8rem;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group {
      position: relative;
      margin-bottom: 1.2rem;
    }
    .form-group label {
      position: absolute;
      left: 1.1rem;
      top: 50%;
      transform: translateY(-50%);
      font-size: .92rem;
      font-weight: 500;
      color: rgba(255,255,255,.4);
      pointer-events: none;
      transition: all .2s ease;
      background: transparent;
      padding: 0 .3rem;
    }
    .form-group.textarea-group label {
      top: 1rem;
      transform: translateY(0);
    }
    .form-group label .req { color: var(--amber); margin-left: 2px; }
    /* Floating state */
    .form-group input:focus ~ label,
    .form-group input:not(:placeholder-shown) ~ label,
    .form-group textarea:focus ~ label,
    .form-group textarea:not(:placeholder-shown) ~ label,
    .form-group select:focus ~ label,
    .form-group select:not([value=""]):valid ~ label,
    .form-group select.has-value ~ label {
      top: 0;
      transform: translateY(-50%);
      font-size: .7rem;
      font-weight: 600;
      color: var(--amber);
      background: var(--navy);
      letter-spacing: .04em;
      text-transform: uppercase;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 1rem 1.1rem;
      background: rgba(255,255,255,.06);
      border: 1.5px solid rgba(255,255,255,.1);
      border-radius: var(--r-sm);
      font-family: var(--ff-body);
      font-size: .92rem;
      color: #fff;
      outline: none;
      appearance: none;
      -webkit-appearance: none;
      transition: border-color .2s, background .2s, box-shadow .2s;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: transparent; }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--amber);
      background: rgba(107,179,217,.07);
      box-shadow: 0 0 0 3px rgba(107,179,217,.15);
    }
    .form-group select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right .9rem center;
      padding-right: 2.5rem;
      cursor: pointer;
    }
    .form-group select option { background: var(--navy-mid); color: #fff; }
    .form-group textarea { resize: vertical; min-height: 100px; }

    .gdpr-group {
      display: flex; align-items: flex-start; gap: .75rem;
      margin-bottom: 1.6rem;
    }
    .gdpr-group input[type="checkbox"] {
      width: 17px; height: 17px; min-width: 17px;
      margin-top: 3px;
      accent-color: var(--amber);
      cursor: pointer;
    }
    .gdpr-group label {
      font-size: .78rem;
      color: rgba(255,255,255,.4);
      line-height: 1.5;
    }
    .gdpr-group label a { color: var(--amber-lt); text-decoration: underline; text-underline-offset: 2px; }
    .form-submit {
      width: 100%; padding: 1rem;
      font-size: .97rem;
      border: none; border-radius: 999px;
      cursor: pointer;
    }

    /* contact info card */
    .contact-info-card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--r-xl);
      padding: 2.2rem;
      position: sticky;
      top: 100px;
    }
    .contact-info-card .pill-label {
      background: rgba(107,179,217,.15);
      border-color: rgba(107,179,217,.3);
      color: var(--amber-lt);
      margin-bottom: 1rem;
    }
    .contact-info-card h3 { color: #fff; font-size: 1.15rem; margin-bottom: 1.2rem; }
    .contact-row {
      display: flex; align-items: center; gap: .9rem;
      margin-bottom: 1rem;
    }
    .contact-row-icon {
      width: 40px; height: 40px;
      background: rgba(107,179,217,.15);
      border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .contact-row-icon svg { width: 17px; height: 17px; color: var(--amber-lt); }
    .contact-row-text strong {
      display: block;
      font-size: .75rem;
      font-weight: 600;
      color: rgba(255,255,255,.4);
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-bottom: .15rem;
    }
    .contact-row-text a,
    .contact-row-text span { font-size: .93rem; font-weight: 500; color: rgba(255,255,255,.85); }
    .contact-row-text a:hover { color: var(--amber-lt); }
    .contact-divider { height: 1px; background: rgba(255,255,255,.07); margin: 1.2rem 0; }
    .contact-note {
      background: rgba(107,179,217,.12);
      border: 1px solid rgba(107,179,217,.2);
      border-radius: var(--r-sm);
      padding: 0.9rem 1rem;
      font-size: .82rem;
      color: rgba(255,255,255,.65);
      line-height: 1.45;
    }
    .contact-note strong { display: block; margin-bottom: .3rem; color: var(--amber-lt); }

    /* ══════════════════════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════════════════════ */
    .footer {
      background: var(--navy-deep);
      border-top: 1px solid rgba(255,255,255,.06);
      padding: 3.5rem 0 2rem;
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 2rem;
      margin-bottom: 2.5rem;
    }
    .footer-logo {
      font-family: var(--ff-head);
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
    }
    .footer-logo span { color: var(--amber); }
    .footer-slogan {
      font-size: .8rem;
      color: rgba(255,255,255,.35);
      font-style: italic;
      margin-top: .4rem;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: .6rem;
    }
    .footer-links a {
      font-size: .83rem;
      color: rgba(255,255,255,.4);
      transition: color .2s;
    }
    .footer-links a:hover { color: var(--amber); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.06);
      padding-top: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }
    .footer-copy { font-size: .75rem; color: rgba(255,255,255,.25); }
    .footer-quick { display: flex; gap: 1.5rem; }
    .footer-quick a {
      font-size: .8rem;
      color: rgba(255,255,255,.35);
      transition: color .2s;
    }
    .footer-quick a:hover { color: var(--amber); }

    /* ══════════════════════════════════════════════════════════
       MOBILE CTA BAR
    ══════════════════════════════════════════════════════════ */
    .mobile-bar {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 900;
      padding: .85rem 1rem;
      background: var(--white);
      border-top: 1px solid var(--border);
      box-shadow: 0 -8px 32px rgba(26,26,46,.12);
      /* hidden below screen until hero is passed */
      transform: translateY(100%);
      transition: transform .4s cubic-bezier(.22,1,.36,1);
    }
    .mobile-bar.visible {
      transform: translateY(0);
    }
    .mobile-bar-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .6rem;
    }
    .mobile-bar a {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .5rem;
      padding: .85rem;
      border-radius: 999px;
      font-family: var(--ff-body);
      font-size: .88rem;
      font-weight: 600;
    }
    .mobile-bar .call-btn {
      background: var(--navy);
      color: #fff;
    }
    .mobile-bar .quote-btn {
      background: var(--amber);
      color: #fff;
    }

    /* ══════════════════════════════════════════════════════════
       RESPONSIVE — MOBILE FIRST
    ══════════════════════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .kontakt-grid { grid-template-columns: 1fr; }
      .contact-info-card { position: static; }
      .cta-card { position: static; }
    }

    @media (max-width: 900px) {
      .leistungen-grid { grid-template-columns: 1fr; }
      .leistungen-visual { position: static; }
      .leistungen-img-main { max-width: 100%; }
      .warum-grid { grid-template-columns: 1fr; }
      .bento-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      /* Layout */
      .section { padding: 56px 0; }
      .container { width: 94%; }
      .section-head { margin-bottom: 2.6rem; }

      /* Nav */
      .nav { padding: 12px 0; }
      .nav .nav-links, .nav .nav-cta { display: none; }
      .nav-toggle { display: flex; }

      /* Hero — mobile: content centered */
      .hero {
        align-items: center;
        justify-content: center;
        padding-bottom: 0;
      }
      .hero-scroll { display: none; }
      /* Video shifted up beyond container bounds */
      .hero-video {
        object-position: 50% 0%;
        -webkit-transform: translateY(-12%);
        transform: translateY(-12%);
      }
      .hero-content { text-align: left; padding: 0 5vw; }
      .hero-btns { justify-content: flex-start; }
      .hero-stats { display: none; }
      /* Tighter type scale */
      .hero h1 {
        font-size: clamp(1.85rem, 7.5vw, 2.8rem);
        line-height: 1.08;
        margin-bottom: 0.7rem;
      }
      .hero h1 br { display: inline; } /* restore line break on mobile */
      .hero-sub {
        font-size: .84rem;
        margin-bottom: 1rem;
      }
      /* Badge: more prominent background for readability */
      .hero-badge {
        margin-bottom: 0.9rem;
        background: rgba(20,20,30,.65);
        border-color: rgba(107,179,217,.5);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        color: #fff;
      }
      .hero-btns {
        flex-direction: column;
        align-items: stretch;
        gap: .45rem;
      }
      .hero-btns .btn {
        justify-content: center;
        width: 100%;
        min-height: 42px;
        padding-top: .6rem;
        padding-bottom: .6rem;
      }

      /* Trust bar */
      .trust-bar-grid { justify-content: center; }
      .trust-item { border-right: none; border-bottom: 1px solid var(--border); padding: 1.4rem 1.2rem; }
      .trust-item:last-child { border-bottom: none; }

      /* Steps */
      .steps-grid { grid-template-columns: 1fr; gap: 1rem; }
      .steps-grid::before { display: none; }
      .step-card { padding: 1.8rem 1.5rem; }

      /* Bento */
      .bento-grid { grid-template-columns: 1fr; gap: .9rem; }
      .bento-card { padding: 1.6rem 1.4rem; min-height: auto; }

      /* Galerie */
      .galerie-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 180px;
        gap: .6rem;
      }
      .galerie-item:first-child { grid-row: span 2; }

      /* CTA card */
      .cta-card { padding: 2rem 1.6rem; }
      .stat-item > span { font-size: .65rem; }

      /* Form */
      .form-row { grid-template-columns: 1fr; }
      .form-card { padding: 1.8rem 1.4rem; }
      .contact-info-card { padding: 1.8rem 1.4rem; }

      /* Footer */
      .footer-inner { flex-direction: column; gap: 1.5rem; }
      .footer-links { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: .8rem 1.5rem; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: .5rem; }
      .footer-quick { flex-wrap: wrap; gap: .8rem 1.2rem; }

      /* Mobile sticky bar */
      .mobile-bar { display: none !important; }
      body { padding-bottom: 0; }
    }

    @media (max-width: 520px) {
      .trust-bar-grid { flex-direction: column; align-items: stretch; }
      .trust-item { border-right: none; width: 100%; justify-content: flex-start; padding-left: 2rem; }
      .trust-text { min-width: 200px; }
      .stats-row { grid-template-columns: repeat(3, 1fr); gap: .4rem; }
      .stat-item strong { font-size: 1.2rem; }
      .stat-item { padding: .7rem .4rem; }
      .stat-item > span { font-size: .6rem; }

      /* Hero super small */
      .hero h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
      .hero-badge { font-size: .65rem; }

      /* Galerie single col on very small */
      .galerie-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
      }
      .galerie-item { aspect-ratio: 4/3; }
      .galerie-item:first-child { grid-row: span 1; }
    }

    /* === NEUE FUNKTION: Before/After Slider === */
    .ba-slider-wrapper {
      position: relative;
      aspect-ratio: 4/3;
      max-height: 500px;
      max-width: 800px;
      margin: 0 auto 2rem;
      border-radius: var(--r-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    @media (max-width: 768px) {
      .ba-slider-wrapper { max-height: 350px; }
    }

    /* === NEUE FUNKTION: Galerie Karussell === */
    .galerie-carousel-wrapper {
      position: relative;
      margin-top: 2rem;
    }
    .galerie-carousel {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      gap: 1rem;
      padding: 0.5rem 15%;
      scrollbar-width: none;
    }
    .galerie-carousel::-webkit-scrollbar { display: none; }
    .galerie-slide {
      flex: 0 0 50%;
      scroll-snap-align: start;
      border-radius: var(--r-lg);
      overflow: hidden;
      cursor: zoom-in;
      aspect-ratio: 16/10;
      max-height: 300px;
    }
    .galerie-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s ease;
    }
    .galerie-slide:hover img { transform: scale(1.03); }
    .galerie-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      box-shadow: var(--shadow-md);
      transition: background .2s, transform .2s;
    }
    .galerie-nav:hover { background: var(--amber-pale); transform: translateY(-50%) scale(1.05); }
    .galerie-nav svg { width: 20px; height: 20px; color: var(--navy); }
    .galerie-nav-prev { left: -24px; }
    .galerie-nav-next { right: -24px; }
    .galerie-carousel-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 1.2rem;
    }
    .galerie-carousel-dots .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--border);
      cursor: pointer;
      transition: background .2s, transform .2s;
    }
    .galerie-carousel-dots .dot:hover { transform: scale(1.2); }
    .galerie-carousel-dots .dot.active { background: var(--amber); }
    @media (max-width: 768px) {
      .galerie-nav { display: none; }
      .galerie-carousel { padding: 0.5rem 7%; }
      .galerie-slide { flex: 0 0 75%; max-height: 220px; }
    }
    @media (max-width: 520px) {
      .galerie-carousel { padding: 0.5rem 4%; }
      .galerie-slide { flex: 0 0 85%; max-height: 180px; }
    }
    .ba-slider {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
      cursor: ew-resize;
    }
    .ba-slider img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 85%;
      pointer-events: none;
      user-select: none;
    }
    .ba-before {
      z-index: 1;
      clip-path: inset(0 50% 0 0);
    }
    .ba-after {
      z-index: 0;
    }
    .ba-before-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 50%;
      height: 100%;
      background: rgba(0,0,0,0.25);
      z-index: 2;
      pointer-events: none;
    }
    .ba-label {
      position: absolute;
      top: 1.2rem;
      padding: .5rem 1rem;
      background: rgba(0,0,0,0.6);
      color: #fff;
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      border-radius: 4px;
      z-index: 10;
      pointer-events: none;
    }
    .ba-label-before { left: 1.2rem; }
    .ba-label-after { right: 1.2rem; }
    .ba-handle {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 2px;
      background: #fff;
      z-index: 5;
      transform: translateX(-50%);
      pointer-events: none;
    }
    .ba-handle-circle {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 44px;
      height: 44px;
      background: #fff;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(0,0,0,0.3);
      font-size: 1.1rem;
      color: var(--navy);
      pointer-events: none;
    }

    /* === NEUE FUNKTION: Sticky Bottom Bar Mobile === */
    .sticky-bottom-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      height: 56px;
      background: #111;
      z-index: 1000;
      padding: 8px;
    }
    .sticky-bottom-bar-inner {
      display: flex;
      gap: 8px;
      height: 100%;
    }
    .sticky-bottom-bar a {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .5rem;
      border-radius: 8px;
      font-weight: 600;
      font-size: .9rem;
      transition: transform .15s ease;
    }
    .sticky-bottom-bar a:active { transform: scale(0.97); }
    .sticky-bottom-bar .sbb-call {
      background: #fff;
      color: #111;
    }
    .sticky-bottom-bar .sbb-whatsapp {
      background: #25D366;
      color: #fff;
    }
    @media (max-width: 768px) {
      .sticky-bottom-bar { display: none !important; }
      body { padding-bottom: 0 !important; }
    }

    /* === NEUE FUNKTION: WhatsApp Floating Button Desktop === */
    .whatsapp-float {
      display: none;
      position: fixed;
      bottom: 48px;
      right: 48px;
      width: 68px;
      height: 68px;
      background: #25D366;
      border-radius: 50%;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.5);
      z-index: 999;
      transition: transform .2s ease, box-shadow .2s ease;
      animation: waPulse 1.8s ease infinite;
    }
    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 32px rgba(37,211,102,0.6);
      animation: none;
    }
    .whatsapp-float svg {
      width: 34px;
      height: 34px;
      fill: #fff;
    }
    .whatsapp-float::after {
      content: 'Direkt auf WhatsApp schreiben';
      position: absolute;
      right: 64px;
      top: 50%;
      transform: translateY(-50%);
      background: #111;
      color: #fff;
      padding: .5rem .9rem;
      border-radius: 6px;
      font-size: .78rem;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s ease;
    }
    .whatsapp-float:hover::after { opacity: 1; }
    @keyframes waPulse {
      0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.45); }
      50% { box-shadow: 0 6px 24px rgba(37,211,102,0.5), 0 0 0 18px rgba(37,211,102,0); }
    }
    /* === Phone Floating Button === */
    .phone-float {
      display: none;
      position: fixed;
      bottom: 128px;
      right: 48px;
      width: 68px;
      height: 68px;
      background: var(--navy);
      border-radius: 50%;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(26,26,46,0.4);
      z-index: 999;
      transition: transform .2s ease, box-shadow .2s ease;
      animation: phonePulse 2s ease infinite;
    }
    .phone-float:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 32px rgba(26,26,46,0.5);
      animation: none;
    }
    .phone-float svg {
      width: 30px;
      height: 30px;
      stroke: #fff;
      fill: none;
    }
    .phone-float::after {
      content: 'Jetzt anrufen';
      position: absolute;
      right: 80px;
      top: 50%;
      transform: translateY(-50%);
      background: #111;
      color: #fff;
      padding: .5rem .9rem;
      border-radius: 6px;
      font-size: .78rem;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s ease;
    }
    .phone-float:hover::after { opacity: 1; }
    @keyframes phonePulse {
      0%, 100% { box-shadow: 0 6px 24px rgba(26,26,46,0.4), 0 0 0 0 rgba(26,26,46,0.35); }
      50% { box-shadow: 0 6px 24px rgba(26,26,46,0.4), 0 0 0 14px rgba(26,26,46,0); }
    }
    @keyframes phonePulseWhite {
      0%, 100% { box-shadow: 0 6px 24px rgba(255,255,255,0.3), 0 0 0 0 rgba(255,255,255,0.4); }
      50% { box-shadow: 0 6px 24px rgba(255,255,255,0.3), 0 0 0 14px rgba(255,255,255,0); }
    }
    .phone-float.on-dark {
      animation: phonePulseWhite 2s ease infinite;
    }
    .phone-float.on-dark:hover {
      box-shadow: 0 8px 32px rgba(255,255,255,0.4);
    }

    /* Desktop: beide Buttons sichtbar */
    @media (min-width: 769px) {
      .whatsapp-float, .phone-float { display: flex; }
    }
    /* Mobile: Buttons übereinander */
    @media (max-width: 768px) {
      .whatsapp-float, .phone-float {
        display: flex;
        width: 60px;
        height: 60px;
        right: 28px;
      }
      .whatsapp-float {
        bottom: 28px;
      }
      .phone-float {
        bottom: 100px;
      }
      .whatsapp-float svg { width: 30px; height: 30px; }
      .phone-float svg { width: 26px; height: 26px; }
      .whatsapp-float::after, .phone-float::after { display: none; }
    }
    @media (prefers-reduced-motion: reduce) {
      .whatsapp-float, .phone-float { animation: none; }
    }

    /* === NEUE FUNKTION: Testimonials Carousel Mobile === */
    @media (max-width: 768px) {
      .testimonials-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 1rem;
        scrollbar-width: none;
      }
      .testimonials-grid::-webkit-scrollbar { display: none; }
      .testimonial-card {
        flex: 0 0 85vw;
        scroll-snap-align: start;
      }
    }
    .carousel-dots {
      display: none;
      justify-content: center;
      gap: 8px;
      margin-top: 1rem;
    }
    .carousel-dots .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--border);
      transition: background .2s ease;
      cursor: pointer;
    }
    .carousel-dots .dot.active { background: var(--amber); }
    @media (max-width: 768px) {
      .carousel-dots { display: flex; }
    }

    /* === NEUE FUNKTION: 2-Step Contact Form Mobile === */
    .form-step-indicator {
      display: none;
      justify-content: center;
      margin-bottom: 1.5rem;
    }
    .form-step-pill {
      background: rgba(107,179,217,.2);
      color: var(--amber-lt);
      padding: .4rem 1rem;
      border-radius: 999px;
      font-size: .75rem;
      font-weight: 600;
    }
    .form-step-2-fields { display: block; }
    .form-back-link {
      display: none;
      color: var(--amber-lt);
      font-size: .85rem;
      margin-bottom: 1rem;
      cursor: pointer;
    }
    .form-back-link:hover { text-decoration: underline; }
    .form-next-btn {
      display: none;
      width: 100%;
      padding: 1rem;
      font-size: .97rem;
      border: none;
      border-radius: 999px;
      cursor: pointer;
      background: var(--amber);
      color: #fff;
      font-weight: 600;
    }
    @media (max-width: 768px) {
      .form-step-indicator { display: flex; }
      .form-step-2-fields { display: none; }
      .form-step-2-fields.visible { display: block; }
      .form-step-1-fields.hidden { display: none; }
      .form-next-btn { display: block; }
      .form-next-btn.hidden { display: none; }
      .form-submit.mobile-hidden { display: none; }
      .form-submit.mobile-visible { display: block; }
      .form-back-link.visible { display: block; }
    }

    /* === NEUE FUNKTION: Touch Ripple === */
    .bento-card {
      position: relative;
      overflow: hidden;
    }
    .ripple {
      position: absolute;
      border-radius: 50%;
      background: rgba(255,255,255,0.3);
      transform: scale(0);
      animation: rippleAnim 500ms ease-out forwards;
      pointer-events: none;
    }
    @keyframes rippleAnim {
      to {
        transform: scale(2.5);
        opacity: 0;
      }
    }

    /* === NEUE FUNKTION: Scroll Indicator Hero === */
    .hero-scroll-new {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .5rem;
      color: rgba(255,255,255,0.6);
      font-size: .7rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      z-index: 10;
      transition: opacity .3s ease;
    }
    .hero-scroll-new.hidden { opacity: 0; }
    .scroll-chevron {
      width: 24px;
      height: 24px;
      animation: scrollBounce 1.5s ease infinite;
    }
    @keyframes scrollBounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(6px); }
    }
    @media (prefers-reduced-motion: reduce) {
      .scroll-chevron { animation: none; }
    }
    @media (max-width: 768px) {
      .hero-scroll-new { display: none; }
    }

    /* ══════════════════════════════════════════════════════════
       SERVICE PAGE COMPONENTS
    ══════════════════════════════════════════════════════════ */

    /* Service Hero (Static Image) */
    .service-hero {
      position: relative;
      height: 50vh;
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    .service-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(15,31,51,.7) 0%, rgba(15,31,51,.85) 100%);
    }
    .service-hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 0 2rem;
    }
    .service-hero h1 {
      color: #fff;
      margin-bottom: 1rem;
    }
    .service-hero p {
      color: rgba(255,255,255,.75);
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto 2rem;
    }

    /* Service Cards */
    .service-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
    @media (max-width: 768px) {
      .service-cards {
        grid-template-columns: 1fr;
      }
    }
    .service-card {
      background: var(--card-bg);
      border-radius: var(--r-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    }
    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
    .service-card-image {
      position: relative;
      aspect-ratio: 16/9;
      overflow: hidden;
      background: var(--navy-deep);
    }
    .service-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .service-card-body {
      padding: 1.5rem;
    }
    .service-card-body h3 {
      margin-bottom: .5rem;
      color: var(--navy);
    }
    .service-card-body p {
      font-size: .9rem;
      color: var(--muted);
      margin: 0;
    }

    /* Service Carousel (reuses galerie styles) */
    .service-carousel-wrapper {
      position: relative;
    }
    .service-carousel {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      gap: 0;
    }
    .service-carousel::-webkit-scrollbar { display: none; }
    .service-carousel .galerie-slide {
      flex: 0 0 100%;
      scroll-snap-align: start;
    }

    /* CTA Banner */
    .cta-banner {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      border-radius: var(--r-xl);
      padding: 4rem 2rem;
      text-align: center;
    }
    .cta-banner h2 {
      color: #fff;
      margin-bottom: 1rem;
    }
    .cta-banner p {
      color: rgba(255,255,255,.65);
      margin: 0 auto 2rem;
      max-width: 500px;
    }
    @media (max-width: 768px) {
      .cta-banner {
        padding: 3rem 1.5rem;
        border-radius: var(--r-lg);
      }
    }