    :root {
      --bg: #0b0e1a;
      --ink: #0b0e1a;
      --ink2: #1a2035;
      --green: #109e56; /* Darker green for WCAG contrast */
      --green-l: #23e882;
      --green-dim: rgba(29, 186, 110, 0.12);
      --cream: #f5f3ee;
      --white: #ffffff;
      --muted: #6b7184;
      --border: rgba(11, 14, 26, 0.1);
      --border-inv: rgba(255, 255, 255, 0.1);
      --r: 16px;
      --H: 'Bricolage Grotesque', sans-serif;
      --B: 'Instrument Sans', sans-serif;
      --M: 'IBM Plex Mono', monospace;
      --brand-mark: url('/assets/logo-mark.svg');
    }

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

    html {
      scroll-behavior: auto;
      font-size: 16px;
    }

    body {
      font-family: var(--B);
      background: var(--cream);
      color: var(--ink);
      overflow-x: hidden;
      
    }

    /* CUSTOM CURSOR */
    

    

    body:hover 

    a:hover~#cursor,
    button:hover~

    /* PAGE SYSTEM */
    .page {
      display: none;
      min-height: 100vh;
    }

    .page.active {
      display: block;
      animation: pageIn .4s ease;
    }

    @keyframes pageIn {
      from {
        opacity: 0;
        transform: translateY(18px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ════════════════════════════════ NAV ════════════════════════════════ */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 500;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 clamp(1.5rem, 5vw, 4rem);
      background: rgba(245, 243, 238, 0.88);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--H);
      font-weight: 800;
      font-size: 1.15rem;
      color: var(--ink);
      text-decoration: none;
      letter-spacing: -.03em;
      
    }

    .logo svg {
      display: none;
    }

    .logo::before,
    .preloader-brand::before,
    .footer-brand::before {
      content: '';
      flex-shrink: 0;
      background: var(--brand-mark) center/contain no-repeat;
    }

    .logo::before {
      width: 30px;
      height: 30px;
    }

    .logo-name {
      display: inline-block;
      transform-origin: top left;
      letter-spacing: 0;
    }

    .brand-animated .logo-name {
      animation: brandHingeReturn 1.55s cubic-bezier(.22, 1, .36, 1) both;
    }

    .dot {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      background: var(--green);
      box-shadow: 0 0 18px rgba(16, 158, 86, 0.35);
    }

    @keyframes brandHingeReturn {
      0% {
        transform: rotate(0) translateY(0);
        opacity: 1;
      }

      18% {
        transform: rotate(13deg);
      }

      31% {
        transform: rotate(-9deg);
      }

      43% {
        transform: rotate(7deg);
        opacity: 1;
      }

      54% {
        transform: rotate(88deg) translateY(18px);
        opacity: 0;
      }

      55% {
        transform: translateX(-24px);
        opacity: 0;
      }

      100% {
        transform: translateX(0);
        opacity: 1;
      }
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      font-size: .85rem;
      font-weight: 500;
      color: var(--muted);
      text-decoration: none;
      letter-spacing: .01em;
      
      position: relative;
      transition: color .2s;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0;
      height: 1.5px;
      background: var(--green);
      transition: width .25s;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--ink);
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%;
    }

    .nav-cta {
      background: var(--ink);
      color: var(--cream) !important;
      padding: .5rem 1.3rem;
      border-radius: 50px;
      font-weight: 600 !important;
      font-size: .82rem !important;
      position: relative;
      overflow: hidden;
      isolation: isolate;
      transition: background .2s, transform .15s !important;
    }

    .nav-cta::after {
      display: none !important;
    }

    .nav-cta:hover {
      background: var(--green) !important;
      color: var(--ink) !important;
      transform: scale(1.04);
    }

    /* ════ NAV BUTTON (Hamburger replacement) ════ */
    .nav-close-btn {
      display: flex;
      align-items: center;
      gap: .75rem;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--ink);
      padding: .35rem .5rem;
      border-radius: 6px;
      transition: opacity .2s;
    }
    .nav-close-btn:hover { opacity: .7; }

    .menu-button-text {
      overflow: hidden;
      height: 1.25em;
      display: flex;
      flex-direction: column;
    }
    .menu-button-text .p-large {
      font-family: var(--H);
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: .04em;
      text-transform: uppercase;
      line-height: 1.25;
      margin: 0;
      white-space: nowrap;
    }

    .icon-wrap {
      width: 18px;
      height: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .menu-button-icon { width: 100%; height: 100%; }

    /* ════ FULLSCREEN OVERLAY ════ */
    .nav-overlay-wrapper {
      position: fixed;
      inset: 0;
      z-index: 600;
      display: none; /* controlled via JS */
    }
    .nav-overlay-wrapper[data-nav="open"] { display: flex; }

    .overlay {
      position: absolute;
      inset: 0;
      background: rgba(10, 10, 10, .55);
      backdrop-filter: blur(4px);
      cursor: pointer;
    }

    .menu-content {
      position: absolute;
      top: 0;
      right: 0;
      width: min(560px, 90vw);
      height: 100dvh;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .menu-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    .backdrop-layer {
      position: absolute;
      inset: 0;
    }
    .backdrop-layer.first  { background: #0f1a13; }
    .backdrop-layer.second { background: #121e16; }
    .backdrop-layer:not(.first):not(.second) { background: #14201a; }

    /* Ambient shapes */
    .ambient-background-shapes {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .bg-shape {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity .3s;
    }
    .bg-shape.active { opacity: 1; }
    .shape-element { transform-origin: center; }

    /* Menu content layout */
    .menu-content-wrapper {
      position: relative;
      z-index: 10;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      height: 100%;
      padding: clamp(2.5rem, 6vh, 4rem) clamp(2.5rem, 8vw, 5rem);
      gap: 3rem;
      padding-top: clamp(2.5rem, 6vh, 4rem);
    }

    /* Menu logo */
    .menu-logo {
      display: flex;
      align-items: center;
      gap: 1rem;
      text-decoration: none;
      color: rgba(245, 243, 238, 0.95);
      margin-bottom: 1rem;
      transition: opacity 0.25s;
    }
    .menu-logo:hover {
      opacity: 0.8;
    }
    .menu-logo svg {
      flex-shrink: 0;
      width: 36px;
      height: 36px;
    }
    .menu-logo-text {
      font-family: var(--H);
      font-size: 1.15rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: rgba(245, 243, 238, 0.95);
    }

    .menu-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: .25rem;
    }

    .menu-list-item {
      overflow: hidden;
    }

    .nav-link {
      display: block;
      position: relative;
      text-decoration: none;
      padding: .65rem 0;
      cursor: pointer;
    }
    .nav-link-text {
      font-family: var(--H);
      font-size: clamp(2.2rem, 5.5vw, 3.4rem);
      font-weight: 800;
      color: rgba(245, 243, 238, .85);
      letter-spacing: -.02em;
      line-height: 1.05;
      margin: 0;
      transition: color .25s, letter-spacing .25s;
    }
    .nav-link:hover .nav-link-text,
    .nav-link.active .nav-link-text {
      color: var(--green);
      letter-spacing: -.01em;
    }
    .nav-link-hover-bg {
      position: absolute;
      inset: 0;
      border-radius: 6px;
      background: rgba(29, 186, 110, .06);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s cubic-bezier(.65,.01,.05,.99);
    }
    .nav-link:hover .nav-link-hover-bg { transform: scaleX(1); }

    /* Footer CTA inside menu */
    .menu-footer {
      padding-top: 1.5rem;
      border-top: 1px solid rgba(245,243,238,.1);
    }
    .menu-cta {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      font-size: .9rem;
    }

    /* Body scroll lock when menu is open */
    body.menu-open { overflow: hidden; }

    /* ════════════════════════════════ HOME ════════════════════════════════ */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-rows: 1fr auto;
      padding-top: 68px;
      overflow: hidden;
    }

    .hero-inner {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(8.5rem, 16vh, 12rem) clamp(1.5rem, 5vw, 4rem) 3rem;
      position: relative;
    }

    .hero-orb-stage {
      position: absolute;
      top: clamp(1.5rem, 4vh, 3rem);
      right: clamp(1.5rem, 5vw, 4rem);
      width: min(35vw, 520px);
      height: clamp(250px, 31vw, 440px);
      z-index: 0;
      pointer-events: auto;
      overflow: hidden;
      opacity: .96;
    }

    .hero-orb-stage canvas {
      display: block;
      width: 100%;
      height: 100%;
    }

    .hero-label,
    .hero-h1,
    .hero-sub-row {
      position: relative;
      z-index: 1;
    }

    .hero-label {
      font-family: var(--M);
      font-size: .72rem;
      letter-spacing: .12em;
      color: var(--green);
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: .6rem;
      margin-bottom: 2.5rem;
    }

    .hero-label::before {
      content: '';
      width: 24px;
      height: 1.5px;
      background: var(--green);
    }

    .hero-h1 {
      font-family: var(--H);
      font-size: clamp(3.2rem, 9vw, 8.5rem);
      font-weight: 800;
      line-height: .95;
      letter-spacing: -.05em;
      color: var(--ink);
      max-width: 1100px;
    }

    .hero-h1-static {
      display: inline;
    }

    .hero-tw-word {
      color: var(--green);
      display: inline-flex;
      align-items: center;
      gap: .1em;
      padding: 0;
      margin-left: .08em;
      min-width: 23ch;
      justify-content: flex-start;
      vertical-align: baseline;
      white-space: nowrap;
      line-height: 1;
    }

    .hero-sub-row {
      margin-top: 3.5rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: flex-start;
    }

    .hero-p {
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.75;
      max-width: 420px;
    }

    .hero-actions {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: flex-start;
    }

    .btn-ink {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      background: var(--ink);
      color: var(--cream);
      padding: .85rem 1.8rem;
      border-radius: 50px;
      font-family: var(--H);
      font-weight: 700;
      font-size: .9rem;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      isolation: isolate;
      transition: background .2s, transform .2s, box-shadow .2s;
    }

    .btn-green,
    .btn-dark {
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    .btn-ink::before,
    .nav-cta::before,
    .btn-submit::before,
    .btn-green::before,
    .btn-dark::before {
      content: '';
      position: absolute;
      inset: 3px;
      border-radius: inherit;
      background: linear-gradient(135deg, var(--green), var(--green-l));
      opacity: 0;
      transform: translate3d(-18%, 48%, 0) scale(.72);
      pointer-events: none;
      transition: transform .32s cubic-bezier(.22, 1, .36, 1), opacity .24s ease;
    }

    .btn-ink:hover::before,
    .nav-cta:hover::before,
    .btn-submit:hover::before,
    .btn-green:hover::before,
    .btn-dark:hover::before {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
    }

    .btn-ink:hover {
      background: var(--green);
      color: var(--ink);
      transform: translateY(-3px);
      box-shadow: 0 12px 36px rgba(29, 186, 110, .3);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      color: var(--muted);
      font-size: .85rem;
      font-weight: 500;
      text-decoration: none;
      
      transition: color .2s, gap .2s;
    }

    .btn-ghost:hover {
      color: var(--ink);
      gap: .8rem;
    }

    .btn-arrow {
      font-size: 1rem;
    }

    /* MARQUEE */
    .marquee-band {
      background: var(--ink);
      color: var(--cream);
      padding: 1.1rem 0;
      overflow: hidden;
      white-space: nowrap;
      border-top: 1px solid rgba(255, 255, 255, .05);
    }

    .marquee-track {
      display: inline-flex;
      gap: 0;
      animation: marquee 18s linear infinite;
    }

    .marquee-band:hover .marquee-track {
      animation-play-state: paused;
    }

    .marquee-track span {
      font-family: var(--H);
      font-size: .85rem;
      font-weight: 500;
      letter-spacing: .04em;
      padding: 0 2.5rem;
      opacity: .55;
    }

    .marquee-track .dot {
      color: var(--green);
      opacity: 1;
      padding: 0;
      font-size: 1.1rem;
    }

    @keyframes marquee {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    /* INTRO STRIP */
    .intro-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid var(--border);
    }

    .intro-cell {
      padding: 3rem clamp(1.5rem, 4vw, 3.5rem);
      border-right: 1px solid var(--border);
      transition: background .2s;
    }

    .intro-cell:last-child {
      border-right: none;
    }

    .intro-cell:hover {
      background: rgba(29, 186, 110, .06);
    }

    .intro-num {
      font-family: var(--M);
      font-size: .7rem;
      color: var(--green);
      letter-spacing: .1em;
      margin-bottom: 1rem;
    }

    .intro-cell h3 {
      font-family: var(--H);
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: .5rem;
    }

    .intro-cell p {
      color: var(--muted);
      font-size: .88rem;
      line-height: 1.65;
    }

    /* ── SERVICES PAGE ── */
    .page-hero {
      padding: calc(68px + 5rem) clamp(1.5rem, 5vw, 4rem) 4rem;
      border-bottom: 1px solid var(--border);
    }

    .page-label {
      font-family: var(--M);
      font-size: .7rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 1.2rem;
      display: flex;
      align-items: center;
      gap: .5rem;
    }

    .page-label::before {
      content: '';
      width: 20px;
      height: 1px;
      background: var(--green);
    }

    .page-h1 {
      font-family: var(--H);
      font-size: clamp(2.5rem, 6vw, 5.5rem);
      font-weight: 800;
      letter-spacing: -.05em;
      line-height: .95;
    }

    .page-h1 span {
      color: var(--green);
    }

    .page-sub {
      color: var(--muted);
      max-width: 480px;
      margin-top: 1.2rem;
      font-size: 1rem;
      line-height: 1.7;
    }

    /* ── SERVICES v2 – zwei Hauptkategorien ── */
    .services-categories {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border-top: 1px solid var(--border);
    }

    .svc-cat {
      padding: 2.5rem clamp(1.5rem, 4vw, 3rem);
      border-right: 1px solid var(--border);
      
    }

    .svc-cat:last-child {
      border-right: none;
    }

    /* Category tab bar */
    .svc-cat-tabs {
      display: flex;
      gap: .5rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }

    .svc-cat-tab {
      display: flex;
      align-items: center;
      gap: .5rem;
      padding: .55rem 1.1rem;
      border-radius: 50px;
      border: 1.5px solid var(--border);
      font-size: .82rem;
      font-weight: 600;
      
      background: transparent;
      color: var(--muted);
      transition: all .2s;
      font-family: var(--B);
    }

    .svc-cat-tab:hover {
      border-color: var(--green);
      color: var(--ink);
    }

    .svc-cat-tab.active {
      background: var(--ink);
      border-color: var(--ink);
      color: var(--cream);
    }

    .svc-cat-tab .tab-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green);
      flex-shrink: 0;
      display: none;
    }

    .svc-cat-tab.active .tab-dot {
      display: block;
    }

    /* Category heading */
    .svc-cat-head {
      padding-bottom: 1.5rem;
      margin-bottom: 2rem;
      border-bottom: 1px solid var(--border);
    }

    .svc-cat-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: var(--green-dim);
      border: 1.5px solid rgba(29, 186, 110, .25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .svc-cat-head h2 {
      font-family: var(--H);
      font-size: 1.7rem;
      font-weight: 800;
      letter-spacing: -.04em;
      margin-bottom: .35rem;
    }

    .svc-cat-head p {
      color: var(--muted);
      font-size: .92rem;
      line-height: 1.65;
    }

    /* Panels */
    .svc-panel {
      display: none;
    }

    .svc-panel.active {
      display: block;
      animation: panelIn .3s ease;
    }

    @keyframes panelIn {
      from {
        opacity: 0;
        transform: translateY(10px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .panel-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .panel-feat {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 1.4rem;
      transition: border-color .2s, transform .2s;
    }

    .panel-feat:hover {
      border-color: var(--green);
      transform: translateY(-2px);
    }

    .panel-feat h4 {
      font-family: var(--H);
      font-size: .9rem;
      font-weight: 700;
      margin-bottom: .4rem;
    }

    .panel-feat p {
      color: var(--muted);
      font-size: .82rem;
      line-height: 1.6;
    }

    .panel-platforms {
      background: var(--ink);
      color: var(--cream);
      border-radius: var(--r);
      padding: 1.6rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .panel-platforms h4 {
      font-family: var(--H);
      font-size: .95rem;
      font-weight: 700;
    }

    .plat-pills {
      display: flex;
      gap: .5rem;
      flex-wrap: wrap;
    }

    .plat-pill {
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 50px;
      padding: .25rem .85rem;
      font-size: .76rem;
      font-weight: 500;
    }

    .panel-cta-bar {
      margin-top: 1.5rem;
    }

    /* Legacy aliases for old panels still used */
    .service-panel {
      display: none;
    }

    .service-panel.active {
      display: block;
      animation: panelIn .3s ease;
    }

    .services-layout {
      display: grid;
      grid-template-columns: 280px 1fr;
      min-height: calc(100vh - 68px);
    }

    .services-nav {
      border-right: 1px solid var(--border);
      padding: 3rem 2rem;
      position: sticky;
      top: 68px;
      height: calc(100vh - 68px);
      overflow-y: auto;
    }

    .services-nav-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: .9rem 1rem;
      border-radius: 10px;
      
      margin-bottom: .3rem;
      transition: background .2s, color .2s;
      font-weight: 500;
      font-size: .9rem;
      color: var(--muted);
      border: 1px solid transparent;
    }

    .services-nav-item:hover,
    .services-nav-item.active {
      background: var(--ink);
      color: var(--cream);
      border-color: var(--ink);
    }

    .services-nav-item .tag {
      font-size: .65rem;
      opacity: .5;
      font-family: var(--M);
    }

    .services-panels {
      padding: 3rem clamp(1.5rem, 4vw, 3rem);
    }

    .panel-head {
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
      padding-bottom: 2.5rem;
      border-bottom: 1px solid var(--border);
      margin-bottom: 2.5rem;
    }

    .panel-icon {
      width: 60px;
      height: 60px;
      border-radius: 16px;
      flex-shrink: 0;
      background: var(--green-dim);
      border: 1.5px solid rgba(29, 186, 110, .25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
    }

    .panel-head h2 {
      font-family: var(--H);
      font-size: 2rem;
      font-weight: 800;
      letter-spacing: -.04em;
      margin-bottom: .4rem;
    }

    .panel-head p {
      color: var(--muted);
      font-size: .95rem;
    }

    /* ── PROCESS PAGE ── */
    .process-timeline {
      padding: 4rem clamp(1.5rem, 5vw, 4rem);
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 2rem;
      padding: 3rem 0;
      border-bottom: 1px solid var(--border);
      position: relative;
      transition: background .2s;
    }

    .timeline-item:last-child {
      border-bottom: none;
    }

    .tl-num {
      font-family: var(--H);
      font-size: 4rem;
      font-weight: 800;
      color: transparent;
      -webkit-text-stroke: 2px var(--border);
      line-height: 1;
      transition: color .3s, -webkit-text-stroke .3s;
      letter-spacing: -.04em;
    }

    .timeline-item:hover .tl-num {
      color: var(--green);
      -webkit-text-stroke-color: var(--green);
    }

    .tl-content h3 {
      font-family: var(--H);
      font-size: 1.6rem;
      font-weight: 800;
      letter-spacing: -.04em;
      margin-bottom: .6rem;
    }

    .tl-content p {
      color: var(--muted);
      font-size: .95rem;
      line-height: 1.75;
      max-width: 580px;
    }

    .tl-tags {
      display: flex;
      gap: .5rem;
      flex-wrap: wrap;
      margin-top: 1.2rem;
    }

    .tl-tag {
      background: var(--green-dim);
      color: var(--green);
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: .3rem .8rem;
      border-radius: 50px;
      font-family: var(--M);
    }

    /* ── PROCESS FLOW ANIMATION ── */
    
    /* Process page specific styles */
    .process-page {
      overflow-x: hidden;
    }
    
    /* Intro hero section before the flow animation */
    .process-intro-hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: calc(68px + 3rem) clamp(1.5rem, 5vw, 4rem) 3rem;
      background: linear-gradient(180deg, var(--cream) 0%, rgba(245, 243, 238, 0.95) 100%);
      text-align: center;
      position: relative;
    }
    
    .process-intro-content {
      max-width: 720px;
    }
    
    .process-intro-hero .page-label {
      color: var(--green);
      font-family: var(--M);
      font-size: .72rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    
    .process-intro-hero .page-h1 {
      font-family: var(--H);
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 800;
      letter-spacing: -.04em;
      line-height: 1.05;
      margin-bottom: 1.5rem;
      color: var(--ink);
    }
    
    .process-intro-text {
      font-size: 1.15rem;
      color: var(--muted);
      line-height: 1.7;
      max-width: 580px;
      margin: 0 auto 2.5rem;
    }
    
    .process-intro-stats {
      display: flex;
      gap: 2.5rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 1.5rem;
    }
    
    .process-stat {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .3rem;
    }
    
    .process-stat-num {
      font-family: var(--H);
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      font-weight: 800;
      color: var(--green);
      letter-spacing: -.02em;
    }
    
    .process-stat-label {
      font-family: var(--M);
      font-size: .68rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--muted);
    }
    
    .process-scroll-hint {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .4rem;
      color: var(--muted);
      font-family: var(--M);
      font-size: .7rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      animation: processScrollBounce 2s ease-in-out infinite;
    }
    
    .process-scroll-arrow {
      font-size: 1.2rem;
      color: var(--green);
    }
    
    @keyframes processScrollBounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }
    
    @media (max-width: 760px) {
      .process-intro-hero {
        padding: calc(68px + 2rem) 1.2rem 2rem;
      }
      
      .process-intro-stats {
        gap: 1.5rem;
      }
    }
    
    /* ── PROCESS FLOW ANIMATION ── */
    .process-flow-shell {
      position: relative;
    }

    /* Each section IS the full-screen panel and rotates in */
    .process-flow-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      position: relative;
      overflow: hidden;
      padding: clamp(3.5rem, 6vw, 6rem) clamp(2rem, 6vw, 6rem);
      will-change: transform;
      transform-origin: bottom left;
    }

    /* ── Palette backgrounds ── */
    .process-flow-section[data-section-color="cream"]       { background: var(--cream); }
    .process-flow-section[data-section-color="light"]       { background: #ede9df; }
    .process-flow-section[data-section-color="green-light"] { background: #c8ecda; }
    .process-flow-section[data-section-color="green"]       { background: #1dba6e; }
    .process-flow-section[data-section-color="green-dark"]  { background: #0a7a43; }
    .process-flow-section[data-section-color="ink"]         { background: var(--ink); }

    /* ── Text colours via local vars (set per palette) ── */
    .process-flow-section[data-section-color="cream"],
    .process-flow-section[data-section-color="light"] {
      --pf-heading:    var(--ink);
      --pf-body:       #5a6075;
      --pf-tag-bg:     rgba(29,186,110,.14);
      --pf-tag-fg:     #0a7a43;
      --pf-num:        rgba(11,14,26,.08);
      --pf-num-active: var(--green);
    }
    .process-flow-section[data-section-color="green-light"] {
      --pf-heading:    #0a3d22;
      --pf-body:       #2a6645;
      --pf-tag-bg:     rgba(10,122,67,.15);
      --pf-tag-fg:     #0a3d22;
      --pf-num:        rgba(10,61,34,.1);
      --pf-num-active: #0a7a43;
    }
    .process-flow-section[data-section-color="green"] {
      --pf-heading:    #fff;
      --pf-body:       rgba(255,255,255,.75);
      --pf-tag-bg:     rgba(255,255,255,.18);
      --pf-tag-fg:     #fff;
      --pf-num:        rgba(255,255,255,.12);
      --pf-num-active: #fff;
    }
    .process-flow-section[data-section-color="green-dark"] {
      --pf-heading:    #fff;
      --pf-body:       rgba(255,255,255,.68);
      --pf-tag-bg:     rgba(255,255,255,.14);
      --pf-tag-fg:     #fff;
      --pf-num:        rgba(255,255,255,.1);
      --pf-num-active: #fff;
    }
    .process-flow-section[data-section-color="ink"] {
      --pf-heading:    var(--cream);
      --pf-body:       rgba(245,243,238,.6);
      --pf-tag-bg:     rgba(29,186,110,.22);
      --pf-tag-fg:     var(--green-l);
      --pf-num:        rgba(255,255,255,.06);
      --pf-num-active: var(--green-l);
    }

    /* ── Step number — absolutely positioned bottom-right ── */
    .process-card-number {
      position: absolute;
      bottom: clamp(1.5rem, 4vw, 3rem);
      right: clamp(1.5rem, 4vw, 3rem);
      font-family: var(--H);
      font-size: clamp(5rem, 15vw, 16rem);
      font-weight: 800;
      color: var(--pf-num);
      letter-spacing: -.06em;
      line-height: 1;
      transition: color .4s ease;
      pointer-events: none;
      user-select: none;
    }

    .process-flow-section.is-active .process-card-number {
      color: var(--pf-num-active);
    }

    /* ─- Typography (no wrapper needed — direct children) ─- */
    .process-card-copy {
      position: relative;
      max-width: 720px;
    }

    .process-flow-section .process-card-copy h3 {
      font-family: var(--H);
      font-size: clamp(2.8rem, 6vw, 5.5rem);
      font-weight: 800;
      letter-spacing: -.04em;
      line-height: 1;
      color: var(--pf-heading);
      margin-bottom: 1.2rem;
    }

    .process-flow-section .process-card-copy p {
      font-size: clamp(1rem, 1.4vw, 1.2rem);
      line-height: 1.75;
      color: var(--pf-body);
      max-width: 580px;
    }

    /* ── Tags ── */
    .process-card-tags {
      display: flex;
      gap: .6rem;
      flex-wrap: wrap;
      margin-top: 1.5rem;
    }

    .process-card-tags span {
      background: var(--pf-tag-bg);
      color: var(--pf-tag-fg);
      padding: .35rem .85rem;
      border-radius: 999px;
      font-size: .73rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      font-family: var(--M);
    }

    /* ── Responsive ── */
    @media (max-width: 760px) {
      .process-flow-section {
        padding: 3rem 1.4rem 6rem;
        min-height: 100svh;
      }

      .process-card-number {
        right: 1rem;
        bottom: 1rem;
        font-size: 5rem;
      }

      .process-intro-hero {
        min-height: auto;
        padding: calc(68px + 2rem) 1.2rem 3rem;
      }

      .process-intro-stats {
        flex-direction: column;
        gap: 1.5rem;
      }

      .process-cta-section {
        min-height: auto;
        padding: 3rem 1.2rem;
      }
    }

    /* ── HOME TRUST ── */
    .home-trust {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
      gap: 3rem;
      padding: 5rem clamp(1.5rem, 5vw, 5rem);
      border-top: 1px solid var(--border);
      background: var(--white);
      align-items: center;
    }

    /* ── PROCESS PAGE CTA ── */
    .process-cta-section {
      min-height: 50vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4rem clamp(1.5rem, 5vw, 4rem);
      background: linear-gradient(180deg, var(--cream) 0%, var(--bg) 100%);
      text-align: center;
    }
    
    .process-cta-content {
      max-width: 600px;
    }
    
    .process-cta-content h2 {
      font-family: var(--H);
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      font-weight: 800;
      letter-spacing: -.03em;
      margin-bottom: 1rem;
      color: var(--cream);
    }
    
    .process-cta-content p {
      color: rgba(245, 243, 238, 0.6);
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 2rem;
    }
    
    /* Process page footer - standard styling */
    .process-footer {
      position: relative;
      z-index: 10;
    }

    /* ── HOME TRUST ── */
    .home-trust {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
      gap: 3rem;
      padding: 5rem clamp(1.5rem, 5vw, 5rem);
      border-top: 1px solid var(--border);
      background: var(--white);
      align-items: center;
    }

    .home-trust-copy h2 {
      font-family: var(--H);
      font-size: 3.25rem;
      font-weight: 800;
      line-height: 1.03;
      letter-spacing: 0;
      color: var(--ink);
      margin-bottom: 1rem;
    }

    .home-trust-copy h2 span {
      color: var(--green);
    }

    .home-trust-copy p {
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.75;
      max-width: 560px;
      margin-bottom: 1.6rem;
    }

    .home-trust-grid {
      display: grid;
      gap: 1rem;
    }

    .trust-card {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.5rem;
      transition: border-color .25s, transform .25s, background .25s;
    }

    .trust-card:hover {
      background: rgba(29, 186, 110, .06);
      border-color: rgba(29, 186, 110, .34);
      transform: translateX(4px);
    }

    .trust-card span {
      display: block;
      font-family: var(--M);
      font-size: .68rem;
      color: var(--green);
      letter-spacing: .08em;
      margin-bottom: .65rem;
    }

    .trust-card h3 {
      font-family: var(--H);
      font-size: 1.15rem;
      font-weight: 800;
      letter-spacing: 0;
      margin-bottom: .45rem;
    }

    .trust-card p {
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.65;
    }

    /* ── ABOUT PAGE ── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: calc(100vh - 68px);
    }

    .about-left {
      background: var(--ink);
      color: var(--cream);
      padding: 5rem clamp(2rem, 5vw, 4rem);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .about-brand-lockup {
      display: inline-flex;
      align-items: center;
      gap: .8rem;
      margin-bottom: 2.5rem;
      font-family: var(--H);
      font-size: 1.25rem;
      font-weight: 800;
      letter-spacing: 0;
      color: var(--cream);
    }

    .about-left h2 {
      font-family: var(--H);
      font-size: 3.35rem;
      font-weight: 800;
      letter-spacing: 0;
      line-height: 1.05;
    }

    .about-left h2 span {
      color: var(--green);
    }

    .about-manifesto {
      margin-top: 3rem;
    }

    .manifesto-item {
      border-top: 1px solid var(--border-inv);
      padding: 1.5rem 0;
    }

    .manifesto-item:last-child {
      border-bottom: 1px solid var(--border-inv);
    }

    .manifesto-item .m-label {
      font-family: var(--M);
      font-size: .65rem;
      color: var(--green);
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: .5rem;
    }

    .manifesto-item p {
      font-size: .9rem;
      color: rgba(245, 243, 238, .65);
      line-height: 1.65;
    }

    .about-right {
      padding: 5rem clamp(2rem, 5vw, 4rem);
    }

    .about-right .page-label {
      margin-bottom: 2rem;
    }

    .about-values {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 2.5rem;
    }

    .value-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 1.8rem;
      transition: border-color .3s, transform .3s;
    }

    .value-card:hover {
      border-color: var(--green);
      transform: translateY(-3px);
    }

    .value-icon {
      font-family: var(--M);
      font-size: .7rem;
      letter-spacing: .08em;
      color: var(--green);
      margin-bottom: .8rem;
    }

    .value-card h4 {
      font-family: var(--H);
      font-size: .95rem;
      font-weight: 700;
      letter-spacing: 0;
      margin-bottom: .4rem;
    }

    .value-card p {
      color: var(--muted);
      font-size: .82rem;
      line-height: 1.6;
    }

    .about-stat-row {
      margin-top: 3rem;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--r);
      overflow: hidden;
    }

    .astat {
      background: var(--white);
      padding: 1.8rem 1.2rem;
      text-align: center;
    }

    .astat .n {
      font-family: var(--H);
      font-size: 2rem;
      font-weight: 800;
      color: var(--ink);
      letter-spacing: -.04em;
    }

    .astat .l {
      font-size: .75rem;
      color: var(--muted);
      margin-top: .2rem;
    }

    /* ── ABOUT 3D MODEL ── */
    .about-model-wrapper {
      margin-top: 3rem;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .model-caption {
      font-family: var(--M);
      font-size: .68rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--ink);
      display: flex;
      align-items: center;
      gap: .6rem;
      font-weight: 500;
    }

    .pulse-dot {
      width: 6px;
      height: 6px;
      background-color: var(--green);
      border-radius: 50%;
      display: inline-block;
      position: relative;
    }

    @keyframes pulse-glow {
      0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(29, 186, 110, 0.7); }
      70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(29, 186, 110, 0); }
      100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(29, 186, 110, 0); }
    }

    .pulse-dot {
      animation: pulse-glow 2s infinite;
    }

    .about-model-container {
      width: 100%;
      height: 420px;
      background: #060813;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--r);
      position: relative;
      overflow: hidden;
      display: block;
    }

    #reliefCanvas {
      width: 100% !important;
      height: 100% !important;
      display: block;
      opacity: 0;
      transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .model-loader {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: #060813;
      z-index: 5;
      gap: 1rem;
      transition: opacity 0.5s ease;
    }

    .loader-spinner {
      width: 32px;
      height: 32px;
      border: 2px solid rgba(255, 255, 255, 0.15);
      border-top-color: var(--green);
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    .loader-text {
      font-family: var(--M);
      font-size: .72rem;
      letter-spacing: .05em;
      color: rgba(255, 255, 255, 0.65);
      text-transform: uppercase;
    }

    .model-hint {
      position: absolute;
      bottom: 12px;
      left: 50%;
      transform: translateX(-50%);
      font-family: var(--M);
      font-size: .62rem;
      letter-spacing: .04em;
      color: rgba(255, 255, 255, 0.5);
      pointer-events: none;
      text-align: center;
      white-space: nowrap;
      background: rgba(6, 8, 19, 0.8);
      backdrop-filter: blur(4px);
      padding: 0.3rem 0.8rem;
      border-radius: 50px;
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    @media(max-width:900px) {
      .about-model-container {
        height: 320px;
      }
    }

    /* ── CONTACT PAGE ── */
    .contact-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: calc(100vh - 68px);
    }

    .contact-left {
      background: var(--ink);
      color: var(--cream);
      padding: 5rem clamp(2rem, 5vw, 4rem);
      position: relative;
      overflow: hidden;
    }

    .contact-left::before {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(29, 186, 110, .15) 0%, transparent 70%);
      top: -100px;
      right: -100px;
      pointer-events: none;
    }

    .contact-left h2 {
      font-family: var(--H);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 800;
      letter-spacing: -.05em;
      line-height: 1.05;
      position: relative;
      z-index: 1;
    }

    .contact-left h2 span {
      color: var(--green);
    }

    .contact-left p {
      color: rgba(245, 243, 238, .6);
      margin-top: 1rem;
      font-size: .95rem;
      line-height: 1.7;
      position: relative;
      z-index: 1;
    }

    .contact-details {
      margin-top: 3rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      position: relative;
      z-index: 1;
    }

    .cd-item {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .cd-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      flex-shrink: 0;
      background: rgba(29, 186, 110, .12);
      border: 1px solid rgba(29, 186, 110, .2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .95rem;
    }

    .cd-item a,
    .cd-item span {
      color: rgba(245, 243, 238, .7);
      text-decoration: none;
      font-size: .9rem;
      transition: color .2s;
      
    }

    .cd-item a:hover {
      color: var(--green);
    }

    .contact-right {
      padding: 5rem clamp(2rem, 5vw, 4rem);
    }

    .contact-right .page-label {
      margin-bottom: 2rem;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .f-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .f-group label {
      display: block;
      font-family: var(--M);
      font-size: .67rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: .5rem;
    }

    .f-group input,
    .f-group textarea,
    .f-group select {
      width: 100%;
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 10px;
      padding: .8rem 1rem;
      color: var(--ink);
      font-family: var(--B);
      font-size: .92rem;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
      
      -webkit-appearance: none;
    }

    .f-group input:focus,
    .f-group textarea:focus,
    .f-group select:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(29, 186, 110, .1);
    }

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

    .f-group select option {
      background: var(--white);
      color: var(--ink);
    }

    .btn-submit {
      background: var(--ink);
      color: var(--cream);
      border: none;
      padding: 1rem 2rem;
      border-radius: 50px;
      font-family: var(--H);
      font-weight: 700;
      font-size: .95rem;
      
      letter-spacing: -.01em;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .6rem;
      position: relative;
      overflow: hidden;
      isolation: isolate;
      transition: background .2s, transform .15s, box-shadow .2s;
      margin-top: .3rem;
    }

    .btn-submit:hover {
      background: var(--green);
      color: var(--ink);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(29, 186, 110, .3);
    }

    .form-ok {
      display: none;
      text-align: center;
      padding: 3rem 2rem;
      background: rgba(29, 186, 110, .07);
      border: 1.5px solid rgba(29, 186, 110, .25);
      border-radius: 16px;
    }

    .form-ok .ok-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .form-ok h3 {
      font-family: var(--H);
      font-size: 1.4rem;
      font-weight: 800;
      margin-bottom: .5rem;
    }

    .form-ok p {
      color: var(--muted);
      font-size: .9rem;
    }

    /* FAQ on contact page */
    .faq-section {
      padding: 4rem clamp(1.5rem, 5vw, 4rem);
      background: var(--white);
      border-top: 1px solid var(--border);
    }

    .faq-section .page-label {
      margin-bottom: 2rem;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .faq-card {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: var(--r);
      overflow: hidden;
      transition: border-color .2s;
    }

    .faq-card:hover {
      border-color: var(--green);
    }

    .faq-q {
      width: 100%;
      background: none;
      border: none;
      color: var(--ink);
      font-family: var(--H);
      font-size: .92rem;
      font-weight: 700;
      letter-spacing: -.02em;
      text-align: left;
      padding: 1.2rem 1.4rem;
      
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }

    .faq-ico {
      font-size: .7rem;
      color: var(--green);
      transition: transform .3s;
      flex-shrink: 0;
    }

    .faq-card.open .faq-ico {
      transform: rotate(45deg);
    }

    /* FAQ answer uses grid rows trick for smooth open/close */
    .faq-a {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows .35s ease;
    }

    .faq-a-inner {
      overflow: hidden;
    }

    .faq-card.open .faq-a {
      grid-template-rows: 1fr;
    }

    .faq-a p {
      padding: .2rem 1.4rem 1.4rem;
      color: var(--muted);
      font-size: .87rem;
      line-height: 1.7;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--ink);
      color: var(--cream);
      padding: 4rem clamp(1.5rem, 5vw, 4rem) 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand {
      display: flex;
      align-items: flex-start;
      gap: .85rem;
    }

    .footer-brand::before {
      width: 30px;
      height: 30px;
      margin-top: .15rem;
    }

    .footer-brand p {
      color: rgba(245, 243, 238, .5);
      font-size: .83rem;
      line-height: 1.7;
      margin-top: 0;
      max-width: 220px;
    }

    .footer-col h5 {
      font-family: var(--M);
      font-size: .65rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(245, 243, 238, .3);
      margin-bottom: 1.2rem;
    }

    .footer-col a {
      display: block;
      color: rgba(245, 243, 238, .55);
      text-decoration: none;
      font-size: .85rem;
      margin-bottom: .7rem;
      
      transition: color .2s;
    }

    .footer-col a:hover {
      color: var(--green);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .06);
      padding-top: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-bottom p {
      font-size: .78rem;
      color: rgba(245, 243, 238, .3);
    }

    .socials {
      display: flex;
      gap: .7rem;
    }

    .soc {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(245, 243, 238, .4);
      font-size: .8rem;
      text-decoration: none;
      
      transition: border-color .2s, color .2s, background .2s;
    }

    .soc:hover {
      border-color: var(--green);
      color: var(--green);
      background: rgba(29, 186, 110, .08);
    }

    /* ACTIVE SERVICE nav highlight */
    .services-nav-item.active {
      background: var(--ink);
      color: var(--cream);
    }

    /* SCROLL REVEAL */
    .sr {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .6s ease, transform .6s ease;
    }

    .sr.v {
      opacity: 1;
      transform: none;
    }

    .sr-l {
      opacity: 0;
      transform: translateX(-20px);
      transition: opacity .6s ease, transform .6s ease;
    }

    .sr-l.v {
      opacity: 1;
      transform: none;
    }

    .sr-r {
      opacity: 0;
      transform: translateX(20px);
      transition: opacity .6s ease, transform .6s ease;
    }

    .sr-r.v {
      opacity: 1;
      transform: none;
    }

    [data-d="1"] {
      transition-delay: .1s;
    }

    [data-d="2"] {
      transition-delay: .2s;
    }

    [data-d="3"] {
      transition-delay: .3s;
    }

    [data-d="4"] {
      transition-delay: .4s;
    }

    /* RESPONSIVE */
    @media(max-width:900px) {
      .services-categories {
        grid-template-columns: 1fr;
      }

      .svc-cat {
        border-right: none;
        border-bottom: 1px solid var(--border);
      }

      .svc-cat:last-child {
        border-bottom: none;
      }

      .services-layout {
        grid-template-columns: 1fr;
      }

      .services-nav {
        position: static;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--border);
        display: flex;
        flex-wrap: wrap;
        gap: .5rem;
        padding: 1.5rem;
      }

      .services-nav-item .tag {
        display: none;
      }

      .about-grid,
      .contact-split,
      .home-trust {
        grid-template-columns: 1fr;
      }

      .faq-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .about-values {
        grid-template-columns: 1fr;
      }

      .home-trust {
        gap: 2rem;
      }

      .home-trust-copy h2,
      .about-left h2 {
        font-size: 2.4rem;
      }

      .hero-sub-row {
        grid-template-columns: 1fr;
      }

      .intro-strip {
        grid-template-columns: 1fr;
      }

      .intro-cell {
        border-right: none;
        border-bottom: 1px solid var(--border);
      }

      .f-row {
        grid-template-columns: 1fr;
      }

      .about-stat-row {
        grid-template-columns: 1fr 1fr;
      }
    }

    /* ── ANIMATED NAV ARROW ── */
    .nav-arrow {
      display: inline-block;
      animation: arrowBounce 1.2s ease-in-out infinite;
    }

    @keyframes arrowBounce {

      0%,
      100% {
        transform: translateX(0);
      }

      50% {
        transform: translateX(5px);
      }
    }

    /* ── TIPS PAGE ── */
    .tips-hero {
      padding: calc(68px + 4rem) clamp(1.5rem, 5vw, 4rem) 3rem;
      border-bottom: 1px solid var(--border);
    }

    .tips-filter-bar {
      display: flex;
      gap: .5rem;
      flex-wrap: wrap;
      margin-top: 2rem;
    }

    .tips-filter-btn {
      font-family: var(--B);
      font-size: .82rem;
      font-weight: 600;
      padding: .5rem 1.2rem;
      border-radius: 50px;
      border: 1.5px solid var(--border);
      background: transparent;
      color: var(--muted);
      
      transition: all .2s;
    }

    .tips-filter-btn:hover {
      border-color: var(--green);
      color: var(--ink);
    }

    .tips-filter-btn.active {
      background: var(--ink);
      border-color: var(--ink);
      color: var(--cream);
    }

    .tips-count {
      font-family: var(--M);
      font-size: .7rem;
      letter-spacing: .1em;
      color: var(--muted);
      text-transform: uppercase;
      padding: 3rem clamp(1.5rem, 5vw, 4rem) 1rem;
    }

    .tips-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 1rem;
      padding: 0 clamp(1.5rem, 5vw, 4rem) 4rem;
    }

    .tip-card-ie {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 1.5rem;
      
      transition: border-color .25s, transform .25s, box-shadow .25s;
      opacity: 0;
      transform: translateY(20px);
      animation: tipCardIn .4s ease forwards;
    }

    .tip-card-ie:hover {
      border-color: var(--green);
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(29, 186, 110, .1);
    }

    .tip-card-ie.open {
      border-color: var(--green);
      background: rgba(29, 186, 110, .04);
    }

    @keyframes tipCardIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .tip-card-ie:nth-child(1) {
      animation-delay: .05s;
    }

    .tip-card-ie:nth-child(2) {
      animation-delay: .1s;
    }

    .tip-card-ie:nth-child(3) {
      animation-delay: .15s;
    }

    .tip-card-ie:nth-child(4) {
      animation-delay: .2s;
    }

    .tip-card-ie:nth-child(5) {
      animation-delay: .25s;
    }

    .tip-card-ie:nth-child(6) {
      animation-delay: .3s;
    }

    .tip-card-ie:nth-child(7) {
      animation-delay: .35s;
    }

    .tip-card-ie:nth-child(8) {
      animation-delay: .4s;
    }

    .tip-top-ie {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .tip-icon-ie {
      font-size: 1.3rem;
      flex-shrink: 0;
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: var(--green-dim);
      border: 1px solid rgba(29, 186, 110, .2);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .tip-title-ie {
      font-family: var(--H);
      font-size: .95rem;
      font-weight: 700;
      color: var(--ink);
      line-height: 1.4;
      letter-spacing: -.02em;
    }

    .tip-badge {
      display: inline-flex;
      align-items: center;
      gap: .3rem;
      font-family: var(--M);
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: .25rem .75rem;
      border-radius: 50px;
      margin-top: .8rem;
    }

    .tip-badge-high {
      background: rgba(29, 186, 110, .12);
      color: var(--green);
      border: 1px solid rgba(29, 186, 110, .25);
    }

    .tip-badge-mid {
      background: rgba(250, 199, 117, .12);
      color: #c98a00;
      border: 1px solid rgba(250, 199, 117, .3);
    }

    .tip-body-ie {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows .35s ease;
    }

    .tip-body-ie-inner {
      overflow: hidden;
    }

    .tip-card-ie.open .tip-body-ie {
      grid-template-rows: 1fr;
    }

    .tip-body-ie-inner p {
      padding-top: 1rem;
      margin-top: .8rem;
      border-top: 1px solid var(--border);
      color: var(--muted);
      font-size: .87rem;
      line-height: 1.7;
    }

    .tip-body-ie-inner p strong {
      color: var(--ink);
      font-weight: 600;
    }

    .tip-action-ie {
      display: flex;
      align-items: center;
      gap: .4rem;
      margin-top: .8rem;
      font-size: .82rem;
      font-weight: 600;
      color: var(--green);
      font-family: var(--H);
    }

    .tip-action-ie::before {
      content: '→';
    }

    .tip-chevron {
      margin-left: auto;
      font-size: .7rem;
      color: var(--muted);
      transition: transform .3s, color .2s;
      flex-shrink: 0;
    }

    .tip-card-ie.open .tip-chevron {
      transform: rotate(180deg);
      color: var(--green);
    }

    .tips-cta-strip {
      background: var(--ink);
      padding: 4rem clamp(1.5rem, 5vw, 4rem);
      text-align: center;
    }

    @media(max-width:600px) {
      .tips-grid {
        grid-template-columns: 1fr;
      }

      .nav-links {
        display: none;
      }

      .ham {
        display: flex;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .hero-h1 {
        font-size: clamp(2.5rem, 11vw, 4rem);
      }

      .hero-inner {
        padding-top: 10.5rem;
      }

      .hero-orb-stage {
        top: 2rem;
        right: 1rem;
        left: auto;
        width: min(65vw, 280px);
        height: 210px;
        opacity: .9;
      }

      .panel-platforms {
        flex-direction: column;
      }

      .svc-cat-tabs {
        gap: .4rem;
      }

      .svc-cat-tab {
        font-size: .78rem;
        padding: .45rem .9rem;
      }
    }

    /* ── TYPEWRITER CURSOR ── */
    .tw-cursor {
      display: inline-block;
      width: 3px;
      height: .82em;
      background: var(--green);
      vertical-align: baseline;
      margin-left: 2px;
      margin-bottom: 0;
      align-self: flex-end;
      transform: translateY(-.03em);
      animation: twBlink .7s step-end infinite;
    }

    @keyframes twBlink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: 0
      }
    }

    /* ── COUNTER ANIMATION ── */
    .stat-counter {
      transition: color .3s;
    }

    /* ── PULSE CTA ── */
    .btn-pulse-wrap {
      position: relative;
      display: inline-flex;
    }

    .btn-pulse-wrap::before {
      content: '';
      position: absolute;
      inset: -5px;
      border-radius: 50px;
      border: 2px solid var(--green);
      opacity: .6;
      animation: pulseRing 2s ease-out infinite;
      pointer-events: none;
    }

    @keyframes pulseRing {
      0% {
        transform: scale(1);
        opacity: .6;
      }

      70% {
        transform: scale(1.1);
        opacity: 0;
      }

      100% {
        transform: scale(1.1);
        opacity: 0;
      }
    }

    /* ── TIPS PAGE IMPROVEMENTS ── */
    .tips-stats-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--r);
      overflow: hidden;
      margin: 2rem clamp(1.5rem, 5vw, 4rem) 0;
    }

    .tips-stat {
      background: var(--white);
      padding: 1.5rem 1.2rem;
      text-align: center;
    }

    .tips-stat .n {
      font-family: var(--H);
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--green);
      letter-spacing: -.04em;
    }

    .tips-stat .l {
      font-size: .75rem;
      color: var(--muted);
      margin-top: .2rem;
    }

    /* ── HOME HERO TYPEWRITER AREA ── */
    #tw-text {
      display: inline-block;
      min-width: 0;
      line-height: 1;
      font-variant-ligatures: none;
      white-space: nowrap;
      letter-spacing: -.03em;
    }

    /* ── COUNTER STATS on home ── */
    .home-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 1px;
      background: var(--border);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .home-stat {
      background: var(--cream);
      padding: 2rem 1.5rem;
      text-align: center;
      transition: background .2s;
    }

    .home-stat:hover {
      background: rgba(29, 186, 110, .06);
    }

    .home-stat-link {
      color: inherit;
      text-decoration: none;
      display: block;
      cursor: pointer;
    }

    .home-stat-link:focus-visible {
      outline: 2px solid var(--green);
      outline-offset: -4px;
    }

    .home-stat .n {
      font-family: var(--H);
      font-size: 2.2rem;
      font-weight: 800;
      letter-spacing: -.05em;
      color: var(--ink);
    }

    .home-stat .n span {
      color: var(--green);
    }

    .home-stat .l {
      font-size: .78rem;
      color: var(--muted);
      margin-top: .3rem;
      font-family: var(--M);
      letter-spacing: .04em;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 1;
      opacity: .025;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.15' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      background-size: 200px 200px;
    }

    body>* {
      position: relative;
      z-index: 2;
    }

    

    

    .progress-bar.visible {
      opacity: 1;
    }

    .progress-bar-fill {
      width: 0;
      height: 100%;
      background: linear-gradient(90deg, var(--green), var(--green-l));
      transform-origin: left;
      box-shadow: 0 0 18px rgba(29, 186, 110, .35);
    }

    .page-wipe {
      position: fixed;
      inset: 0;
      z-index: 980;
      background: var(--green);
      transform: translateX(-100%);
      pointer-events: none;
    }

    .preloader {
      position: fixed;
      inset: 0;
      z-index: 990;
      background: var(--cream);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform .7s cubic-bezier(.22, 1, .36, 1), opacity .45s ease;
      animation: preloaderAutoHide 0s 3s forwards;
    }

    @keyframes preloaderAutoHide {
      to { display: none; opacity: 0; pointer-events: none; }
    }

    .preloader.hide {
      transform: translateY(-100%);
      opacity: 0;
      pointer-events: none;
    }

    .preloader-inner {
      width: min(420px, calc(100vw - 3rem));
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.4rem;
      text-align: center;
    }

    .preloader-brand {
      display: inline-flex;
      align-items: center;
      gap: .85rem;
      font-family: var(--H);
      font-weight: 800;
      font-size: clamp(1.6rem, 5vw, 2.2rem);
      letter-spacing: -.04em;
    }

    .preloader-brand svg {
      display: none;
    }

    .preloader-brand::before {
      width: 38px;
      height: 38px;
    }

    .preloader-track {
      width: 100%;
      height: 6px;
      border-radius: 999px;
      background: rgba(11, 14, 26, .08);
      overflow: hidden;
    }

    .preloader-bar {
      width: 45%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--green), var(--green-l));
      animation: loaderBar 1.1s ease-in-out infinite;
    }

    @keyframes loaderBar {
      0% {
        transform: translateX(-100%);
      }

      100% {
        transform: translateX(260%);
      }
    }

    nav {
      transition: height .28s ease, padding .28s ease, box-shadow .28s ease, background .28s ease;
    }

    nav.nav-shrink {
      height: 52px;
      box-shadow: 0 14px 34px rgba(11, 14, 26, .08);
      background: rgba(245, 243, 238, 0.94);
    }

    nav.nav-shrink .logo {
      font-size: 1.02rem;
    }

    nav.nav-shrink .nav-links a,
    nav.nav-shrink .nav-cta {
      font-size: .78rem !important;
    }

    .nav-links a:focus-visible,
    .nav-cta:focus-visible,
    .btn-ink:focus-visible,
    .btn-ghost:focus-visible,
    .faq-q:focus-visible,
    .nav-close-btn:focus-visible,
    .nav-link:focus-visible,
    .tips-filter-btn:focus-visible,
    .svc-cat-tab:focus-visible,
    .btn-submit:focus-visible {
      outline: 2px solid var(--green);
      outline-offset: 4px;
    }

    .hero-h1.ready .hero-word-clip {
      display: inline-block;
      overflow: hidden;
      vertical-align: bottom;
      padding-bottom: .06em;
      margin-right: .12em;
    }

    .hero-h1.ready .hero-word {
      display: inline-block;
      transform: translateY(100%);
      opacity: 0;
      animation: wordReveal .6s cubic-bezier(.22, 1, .36, 1) forwards;
      animation-delay: var(--word-delay, 0ms);
    }

    .hero-h1.ready .hero-word.no-animate {
      transform: none;
      opacity: 1;
      animation: none;
    }

    @keyframes wordReveal {
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .magnetic {
      will-change: transform;
      transition: transform .22s ease, box-shadow .2s, background .2s, color .2s;
    }

    .spotlight-card,
    .hover-underline-card {
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    .spotlight-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(29, 186, 110, 0.12), transparent 60%);
      opacity: 0;
      transition: opacity .25s ease;
      pointer-events: none;
      z-index: 0;
    }

    .spotlight-card:hover::before,
    .spotlight-card:focus-within::before {
      opacity: 1;
    }

    .spotlight-card>* {
      position: relative;
      z-index: 1;
    }

    .hover-underline-card::after {
      content: '';
      position: absolute;
      left: 16%;
      right: 16%;
      bottom: 0;
      height: 2px;
      border-radius: 999px;
      background: var(--green);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform .28s ease;
      z-index: 2;
      pointer-events: none;
    }

    .hover-underline-card:hover::after,
    .hover-underline-card:focus-within::after {
      transform: scaleX(1);
    }

    .intro-cell,
    .panel-feat,
    .faq-card {
      position: relative;
    }

    .home-section {
      padding: 5.5rem clamp(1.5rem, 5vw, 4rem);
      border-top: 1px solid var(--border);
    }

    .testimonials-wrap {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
      margin-top: 2.25rem;
    }

    .testimonial-card {
      min-height: 100%;
      background: rgba(255, 255, 255, .52);
      border: 1px solid rgba(255, 255, 255, .48);
      border-radius: 18px;
      padding: 1.7rem;
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: 0 16px 38px rgba(11, 14, 26, .06);
      transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-3px);
      border-color: rgba(29, 186, 110, .32);
      box-shadow: 0 20px 44px rgba(11, 14, 26, .08);
    }

    .testimonial-stars {
      display: inline-flex;
      gap: .2rem;
      color: var(--green);
      font-size: 1rem;
      margin-bottom: 1rem;
    }

    .testimonial-card p {
      color: var(--ink2);
      line-height: 1.75;
      font-size: .92rem;
    }

    .testimonial-meta {
      margin-top: 1.5rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(11, 14, 26, .08);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .testimonial-name {
      font-family: var(--H);
      font-size: .98rem;
      font-weight: 700;
      letter-spacing: -.02em;
    }

    .testimonial-type {
      font-family: var(--M);
      font-size: .66rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--green);
      padding: .36rem .72rem;
      border-radius: 999px;
      background: rgba(29, 186, 110, .1);
      border: 1px solid rgba(29, 186, 110, .18);
    }

    .home-faq-grid {
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
      gap: 2.2rem;
      align-items: start;
    }

    .home-faq-copy p:last-child {
      color: var(--muted);
      max-width: 460px;
      line-height: 1.75;
    }

    .home-faq-list {
      display: grid;
      gap: .9rem;
    }

    .home-faq-list .faq-card {
      background: rgba(255, 255, 255, .82);
    }

    .toast-stack {
      position: fixed;
      right: 1.25rem;
      bottom: 6.2rem;
      z-index: 960;
      display: grid;
      gap: .7rem;
      width: min(360px, calc(100vw - 2rem));
      pointer-events: none;
    }

    .toast {
      background: rgba(11, 14, 26, .96);
      color: var(--cream);
      border-radius: 16px;
      padding: .95rem 1rem;
      box-shadow: 0 16px 40px rgba(11, 14, 26, .24);
      transform: translateY(18px);
      opacity: 0;
      transition: transform .28s ease, opacity .28s ease;
      border-left: 4px solid var(--green);
    }

    .toast.show {
      transform: translateY(0);
      opacity: 1;
    }

    .toast.error {
      border-left-color: #d94b4b;
    }

    .toast-title {
      font-family: var(--H);
      font-weight: 700;
      font-size: .92rem;
      margin-bottom: .2rem;
    }

    .toast p {
      font-size: .84rem;
      line-height: 1.6;
      color: rgba(245, 243, 238, .76);
    }

    .scramble-ready {
      min-width: 1px;
    }

    @media(max-width:900px) {

      .testimonials-wrap,
      .home-faq-grid {
        grid-template-columns: 1fr;
      }
    }

    @media(max-width:600px) {
      .toast-stack {
        right: 1rem;
        left: 1rem;
        width: auto;
        bottom: 1rem;
      }
    }

    /* ── NAV DROPDOWN ── */
    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown>a {
      display: flex;
      align-items: center;
      gap: .35rem;
    }

    .nav-dropdown-caret {
      font-size: .65rem;
      transition: transform .2s;
    }

    .nav-dropdown:hover .nav-dropdown-caret,
    .nav-dropdown.open .nav-dropdown-caret {
      transform: rotate(180deg);
    }

    .nav-dropdown-menu {
      position: absolute;
      top: calc(100% + 12px);
      left: 50%;
      transform: translateX(-50%) translateY(8px);
      min-width: 220px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: .5rem;
      list-style: none;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .2s, transform .2s, visibility .2s;
      box-shadow: 0 16px 40px rgba(11, 14, 26, .12);
      z-index: 600;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.open .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

    .nav-dropdown-menu a {
      display: block;
      padding: .65rem .9rem;
      border-radius: 10px;
      font-size: .84rem;
      color: var(--muted);
      text-decoration: none;
      transition: background .15s, color .15s;
    }

    .nav-dropdown-menu a::after {
      display: none !important;
    }

    .nav-dropdown-menu a:hover {
      background: var(--green-dim);
      color: var(--ink);
    }

    /* ── LEISTUNGEN MODAL ── */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(11, 14, 26, .55);
      backdrop-filter: blur(6px);
      z-index: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      opacity: 0;
      visibility: hidden;
      transition: opacity .25s, visibility .25s;
    }

    .modal-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    .modal-box {
      background: var(--cream);
      border-radius: 20px;
      width: min(480px, 100%);
      max-height: 90vh;
      overflow-y: auto;
      padding: 2rem;
      transform: translateY(16px) scale(.98);
      transition: transform .25s;
      border: 1px solid var(--border);
    }

    .modal-overlay.open .modal-box {
      transform: translateY(0) scale(1);
    }

    .modal-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .modal-head h3 {
      font-family: var(--H);
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -.04em;
    }

    .modal-close {
      background: none;
      border: 1px solid var(--border);
      border-radius: 50%;
      width: 36px;
      height: 36px;
      font-size: 1.1rem;
      
      color: var(--muted);
      flex-shrink: 0;
    }

    .modal-svc-list {
      display: grid;
      gap: .75rem;
    }

    .modal-svc-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      padding: 1.1rem 1.2rem;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      text-align: left;
      
      transition: border-color .2s, transform .15s;
      width: 100%;
    }

    .modal-svc-item:hover {
      border-color: var(--green);
      transform: translateY(-2px);
    }

    .modal-svc-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--green-dim);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .modal-svc-item h4 {
      font-family: var(--H);
      font-size: .95rem;
      font-weight: 700;
      margin-bottom: .25rem;
    }

    .modal-svc-item p {
      font-size: .82rem;
      color: var(--muted);
      line-height: 1.55;
    }

    /* ── STICKY MOBILE CTA ── */
    .sticky-mobile-cta {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 490;
      padding: .75rem 1rem calc(.75rem + env(safe-area-inset-bottom));
      background: rgba(245, 243, 238, .95);
      backdrop-filter: blur(16px);
      border-top: 1px solid var(--border);
      transform: translateY(100%);
      transition: transform .3s ease;
    }

    .sticky-mobile-cta.visible {
      transform: translateY(0);
    }

    .sticky-mobile-cta a {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .5rem;
      width: 100%;
      background: var(--ink);
      color: var(--cream);
      padding: .85rem 1.2rem;
      border-radius: 50px;
      font-family: var(--H);
      font-weight: 700;
      font-size: .9rem;
      text-decoration: none;
    }

    @media(max-width:768px) {
      .sticky-mobile-cta {
        display: block;
      }

      body.has-sticky-cta .toast-stack {
        bottom: 5.5rem;
      }
    }

    /* ── FAQ COLUMNS (independent accordions) ── */
    .faq-columns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      align-items: start;
    }

    .faq-col {
      display: grid;
      gap: 1rem;
    }

    @media(max-width:768px) {
      .faq-columns {
        grid-template-columns: 1fr;
      }
    }

    /* ── FAQ FOLLOW-UP ── */
    .faq-followup {
      margin-top: 2.5rem;
      padding: 2rem;
      background: var(--green-dim);
      border: 1px solid rgba(29, 186, 110, .2);
      border-radius: var(--r);
      display: flex;
      gap: 1.2rem;
      align-items: flex-start;
    }

    .faq-followup-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      flex-shrink: 0;
    }

    .faq-followup h3 {
      font-family: var(--H);
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: .4rem;
    }

    .faq-followup p {
      color: var(--muted);
      font-size: .88rem;
      line-height: 1.65;
      margin-bottom: .8rem;
    }

    .faq-followup a {
      color: var(--green);
      font-weight: 600;
      text-decoration: none;
      font-size: .88rem;
    }

    /* ── LEGAL PAGES ── */
    .legal-page {
      padding: calc(68px + 3rem) clamp(1.5rem, 5vw, 4rem) 4rem;
      max-width: 780px;
      margin: 0 auto;
    }

    .legal-page h1 {
      font-family: var(--H);
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 800;
      letter-spacing: -.04em;
      margin-bottom: .5rem;
    }

    .legal-page .legal-updated {
      font-family: var(--M);
      font-size: .72rem;
      color: var(--muted);
      margin-bottom: 2.5rem;
    }

    .legal-page h2 {
      font-family: var(--H);
      font-size: 1.15rem;
      font-weight: 700;
      margin: 2rem 0 .75rem;
    }

    .legal-page p,
    .legal-page li {
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.75;
      margin-bottom: .75rem;
    }

    .legal-page ul {
      padding-left: 1.2rem;
      margin-bottom: 1rem;
    }

    /* ── ABOUT FOUNDER ── */
    .founder-card {
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 20px;
      padding: 1.8rem;
      margin-top: 2rem;
    }

    .founder-card h3 {
      font-family: var(--H);
      font-size: 1.3rem;
      font-weight: 800;
      margin-bottom: .2rem;
    }

    .founder-role {
      font-family: var(--M);
      font-size: .7rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: .8rem;
    }

    .founder-card p {
      color: rgba(245, 243, 238, .65);
      font-size: .88rem;
      line-height: 1.7;
    }

    .about-proof {
      margin-top: 2rem;
      padding: 1.8rem;
      border-radius: 16px;
      background: var(--ink);
      color: var(--cream);
    }

    .about-proof h3 {
      font-family: var(--H);
      font-size: 1.25rem;
      font-weight: 800;
      letter-spacing: 0;
      margin-bottom: .65rem;
    }

    .about-proof p {
      color: rgba(245, 243, 238, .66);
      font-size: .9rem;
      line-height: 1.7;
      margin-bottom: 1.3rem;
    }

    /* ── INTRO ICONS (no numbering) ── */
    .intro-icon {
      font-size: 1.5rem;
      margin-bottom: .8rem;
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--green-dim);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .intro-label {
      font-family: var(--M);
      font-size: .68rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: .5rem;
    }

    /* ── KI PAGE ── */
    .ki-hero-img {
      width: 100%;
      max-height: 320px;
      object-fit: cover;
      border-radius: var(--r);
      margin: 2rem 0;
      border: 1px solid var(--border);
    }

    .ki-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1rem;
      padding: 0 clamp(1.5rem, 5vw, 4rem) 4rem;
    }

    .ki-feat-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 1.6rem;
      transition: border-color .2s;
    }

    .ki-feat-card:hover {
      border-color: var(--green);
    }

    .ki-feat-card h3 {
      font-family: var(--H);
      font-size: 1rem;
      font-weight: 700;
      margin: .6rem 0 .4rem;
    }

    .ki-feat-card p {
      font-size: .86rem;
      color: var(--muted);
      line-height: 1.65;
    }

    .price-signal {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      margin-top: 1rem;
      padding: .5rem 1rem;
      background: var(--green-dim);
      border: 1px solid rgba(29, 186, 110, .25);
      border-radius: 50px;
      font-family: var(--M);
      font-size: .72rem;
      color: var(--ink);
      letter-spacing: .04em;
    }

    /* ── TIPS VISUAL UPGRADE ── */
    .tips-hero {
      background: linear-gradient(180deg, var(--cream) 0%, rgba(29, 186, 110, .04) 100%);
    }

    .tips-grid {
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 1.25rem;
    }

    .tip-card-ie {
      border-radius: 18px;
      padding: 1.6rem 1.7rem;
      background: linear-gradient(145deg, var(--white) 0%, rgba(245, 243, 238, .6) 100%);
      box-shadow: 0 2px 12px rgba(11, 14, 26, .04);
    }

    .tip-card-ie:hover {
      box-shadow: 0 12px 36px rgba(29, 186, 110, .12);
    }

    .tip-icon-ie {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      font-size: 1.4rem;
    }

    .tips-stats-row {
      background: var(--ink);
      border: none;
      border-radius: 0;
      margin: 0;
    }

    .tips-stats-row .tips-stat {
      background: transparent;
      color: var(--cream);
      border-right: 1px solid rgba(255, 255, 255, .08);
    }

    .tips-stats-row .tips-stat:last-child {
      border-right: none;
    }

    .tips-stats-row .tips-stat .n {
      color: var(--green);
    }

    .tips-stats-row .tips-stat .l {
      color: rgba(245, 243, 238, .5);
    }

    .tips-filter-btn.active {
      background: var(--green);
      border-color: var(--green);
      color: var(--ink);
    }

    .tips-noscript-fallback {
      padding: 0 clamp(1.5rem, 5vw, 4rem) 2rem;
      color: var(--muted);
      font-size: .88rem;
    }

    /* ── FORM SUCCESS ACTIONS ── */
    .form-ok-actions {
      display: flex;
      flex-wrap: wrap;
      gap: .75rem;
      margin-top: 1.2rem;
      justify-content: center;
    }

    .form-ok-actions a {
      font-size: .82rem;
      font-weight: 600;
      color: var(--green);
      text-decoration: none;
      padding: .5rem 1rem;
      border: 1px solid rgba(29, 186, 110, .3);
      border-radius: 50px;
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation: none !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important;
      }

      .sr,
      .sr-l,
      .sr-r {
        opacity: 1;
        transform: none;
      }
    }

/* ══════════════════════════════════════════
   LEISTUNGEN HUB TEASER  (Homepage)
══════════════════════════════════════════ */

.svc-hub {
  padding: 6rem clamp(1.5rem, 5vw, 5rem);
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.svc-hub-header {
  text-align: center;
  margin-bottom: 4rem;
}

.svc-hub-label {
  font-family: var(--M);
  font-size: .7rem;
  letter-spacing: .14em;
  color: var(--green);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
}

.svc-hub-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--green);
}

.svc-hub-header h2 {
  font-family: var(--H);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.05;
  color: var(--ink);
}

.svc-hub-header h2 span {
  color: var(--green);
}

/* Grid */
.svc-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Card base */
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}

.svc-card::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 3px;
  background: var(--green);
  transition: width .35s ease;
}

.svc-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(11, 14, 26, .08);
}

.svc-card:hover::after {
  width: 100%;
}

/* Dark variant (KI card) */
.svc-card--dark {
  background: var(--ink);
  border-color: transparent;
}

.svc-card--dark:hover {
  border-color: var(--green);
  box-shadow: 0 20px 48px rgba(29, 186, 110, .12);
}

.svc-card--dark .svc-card-title,
.svc-card--dark .svc-card-num {
  color: var(--cream);
}

.svc-card--dark .svc-card-desc {
  color: rgba(245, 243, 238, .65);
}

.svc-card--dark .svc-card-tags li {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .12);
  color: rgba(245, 243, 238, .8);
}

.svc-card--dark .svc-card-btn {
  color: var(--green);
}

.svc-card--dark .svc-card-arrow {
  background: var(--green);
  color: var(--ink);
}

.svc-card--dark:hover .svc-card-arrow {
  background: var(--cream);
  color: var(--ink);
}

/* Card internals */
.svc-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(29, 186, 110, .1);
  border: 1px solid rgba(29, 186, 110, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.svc-card-num {
  font-family: var(--M);
  font-size: .65rem;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: .6rem;
}

.svc-card-title {
  font-family: var(--H);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: .8rem;
}

.svc-card-desc {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.svc-card-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 2rem;
}

.svc-card-tags li {
  font-family: var(--M);
  font-size: .65rem;
  letter-spacing: .06em;
  background: rgba(11, 14, 26, .05);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: .28rem .75rem;
  color: var(--ink);
}

.svc-card-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--H);
  font-weight: 700;
  font-size: .9rem;
  color: var(--ink);
  text-decoration: none;
  margin-top: auto;
  transition: gap .2s;
}

.svc-card:hover .svc-card-btn {
  gap: .8rem;
}

.svc-card-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
  transition: background .2s, transform .2s;
}

.svc-card:hover .svc-card-arrow {
  background: var(--green);
  color: var(--ink);
  transform: translateX(4px);
}

/* Footer CTA */
.svc-hub-footer {
  margin-top: 3.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.svc-hub-footer p {
  font-size: .95rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 960px) {
  .svc-hub-grid {
    grid-template-columns: 1fr 1fr;
  }
  .svc-card--dark {
    grid-column: span 2;
  }
}

@media (max-width: 580px) {
  .svc-hub-grid {
    grid-template-columns: 1fr;
  }
  .svc-card--dark {
    grid-column: unset;
  }
}
