/* =========================================================
   RESET
   ========================================================= */

   *,
   *::before,
   *::after {
     box-sizing: border-box;
   }
   
   html {
     scroll-behavior: smooth;
   }
   
   body, h1, h2, h3, p, ul, ol {
     margin: 0;
   }
   
   ul, ol {
     padding: 0;
   }
   
   img, svg {
     display: block;
     max-width: 100%;
   }
   
   
   /* =========================================================
      DESIGN TOKENS
      ========================================================= */
   
   :root {
     color-scheme: light dark;
   
     /* --- Surfaces --- */
     --page-bg: #f4f3ef;
     --surface-1: #fbfaf7;
     --surface-2: #f0eee8;
     --surface-3: #ffffff;
     --surface-4: #ece9e2;
     --surface-5: #e6e2db;
   
     /* --- Text --- */
     --text-1: #111111;
     --text-2: rgba(17, 17, 17, 0.74);
     --text-3: rgba(17, 17, 17, 0.56);
   
     /* --- Borders --- */
     --border-1: rgba(17, 17, 17, 0.10);
     --border-2: rgba(17, 17, 17, 0.06);
   
     /* --- Shadows --- */
     --shadow-1: 0 4px 16px rgba(16, 18, 22, 0.04), 0 12px 32px rgba(16, 18, 22, 0.06);
     --shadow-2: 0 8px 24px rgba(16, 18, 22, 0.06), 0 24px 56px rgba(16, 18, 22, 0.10);
   
     /* --- Accent --- */
     --accent: #1b3c53;
     --accent-2: #d2c1b6;
     --accent-ghost: rgba(27, 60, 83, 0.08);
   
     /* --- Radii --- */
     --radius-sm: 16px;
     --radius-md: 22px;
     --radius-lg: 30px;
   
     /* --- Layout --- */
     --container: 1180px;
     --container-narrow: 900px;
     --section-pad-y: clamp(88px, 10vw, 136px);
     --pad-x: clamp(20px, 3vw, 32px);
   
     /* --- Typography --- */
     --font-ui: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
   
     /* Type scale (major third ~1.25) */
     --text-xs: 0.75rem;    /* 12px */
     --text-sm: 0.875rem;   /* 14px */
     --text-base: 1rem;     /* 16px */
     --text-lg: 1.125rem;   /* 18px */
     --text-xl: 1.375rem;   /* 22px */
     --text-2xl: 1.75rem;   /* 28px */
   
     /* Spacing scale (base 4px) */
     --space-1: 4px;
     --space-2: 8px;
     --space-3: 12px;
     --space-4: 16px;
     --space-5: 20px;
     --space-6: 24px;
     --space-7: 32px;
     --space-8: 40px;
     --space-9: 48px;
     --space-10: 64px;
     --space-11: 80px;
   
     /* --- Focus --- */
     --focus-ring: 0 0 0 3px rgba(27, 60, 83, 0.16);
   
     /* --- Header / Footer (Astra integration) --- */
     --nilev-header-bg: rgba(251, 250, 247, 0.72);
     --nilev-header-bg-scrolled: rgba(251, 250, 247, 0.92);
     --nilev-header-border: rgba(17, 17, 17, 0.08);
     --nilev-header-text: #111111;
     --nilev-header-text-muted: rgba(17, 17, 17, 0.68);
     --nilev-footer-bg: #f0eee8;
     --nilev-footer-card: #ffffff;
     --nilev-footer-text: #111111;
     --nilev-footer-muted: rgba(17, 17, 17, 0.68);
     --nilev-footer-border: rgba(17, 17, 17, 0.08);
   }
   
   @media (prefers-color-scheme: dark) {
     :root {
       --page-bg: #0f1113;
       --surface-1: #13171b;
       --surface-2: #171c21;
       --surface-3: #1c2228;
       --surface-4: #20262d;
       --surface-5: #252c34;
   
       --text-1: #f2f3f4;
       --text-2: rgba(242, 243, 244, 0.76);
       --text-3: rgba(242, 243, 244, 0.54);
   
       --border-1: rgba(255, 255, 255, 0.10);
       --border-2: rgba(255, 255, 255, 0.06);
   
       --shadow-1: 0 4px 16px rgba(0, 0, 0, 0.16), 0 14px 36px rgba(0, 0, 0, 0.26);
       --shadow-2: 0 8px 24px rgba(0, 0, 0, 0.22), 0 24px 60px rgba(0, 0, 0, 0.34);
   
       --accent: #d2c1b6;
       --accent-2: #7f97a6;
       --accent-ghost: rgba(210, 193, 182, 0.10);
   
       --focus-ring: 0 0 0 3px rgba(210, 193, 182, 0.18);
   
       --nilev-header-bg: rgba(19, 23, 27, 0.72);
       --nilev-header-bg-scrolled: rgba(19, 23, 27, 0.92);
       --nilev-header-border: rgba(255, 255, 255, 0.10);
       --nilev-header-text: #f2f3f4;
       --nilev-header-text-muted: rgba(242, 243, 244, 0.72);
       --nilev-footer-bg: #171c21;
       --nilev-footer-card: #1c2228;
       --nilev-footer-text: #f2f3f4;
       --nilev-footer-muted: rgba(242, 243, 244, 0.72);
       --nilev-footer-border: rgba(255, 255, 255, 0.10);
     }
   }
   
   
   /* =========================================================
      BASE
      ========================================================= */
   
   body {
     font-family: var(--font-ui);
     background: var(--page-bg);
     color: var(--text-1);
     overflow-x: clip;
     -webkit-font-smoothing: antialiased;
     text-rendering: optimizeLegibility;
   }
   
   a {
     color: inherit;
     text-decoration: none;
   }
   
   
   /* =========================================================
      LAYOUT UTILITIES
      ========================================================= */
   
   .agency-hero-root,
   .agency-proof-section,
   .agency-problem-section,
   .agency-solution-section,
   .agency-services-section,
   .agency-modules-section,
   .agency-configurator-section,
   .agency-process-section,
   .agency-trust-section,
   .agency-cta-section {
     position: relative;
     margin-inline: calc(50% - 50vw);
   }
   
   .agency-shell {
     width: min(var(--container), calc(100% - (var(--pad-x) * 2)));
     margin: 0 auto;
   }
   
   .agency-shell-narrow {
     width: min(var(--container-narrow), calc(100% - (var(--pad-x) * 2)));
   }
   
   .agency-section-intro {
     max-width: 760px;
     margin-bottom: clamp(36px, 5vw, 56px);
   }
   
   .agency-section-intro-centered {
     margin-inline: auto;
     text-align: center;
   }
   
   
   /* =========================================================
      SHARED TYPOGRAPHY
      ========================================================= */
   
   .agency-section-eyebrow {
     margin-bottom: var(--space-4);
     font-size: var(--text-xs);
     letter-spacing: 0.16em;
     line-height: 1;
     text-transform: uppercase;
     color: var(--text-3);
   }
   
   .agency-section-heading,
   .agency-trust-heading {
     max-width: 22ch;
     font-size: clamp(2rem, 4vw, 4rem);
     line-height: 0.98;
     letter-spacing: -0.035em;
     font-weight: 650;
     text-wrap: balance;
   }
   
   .agency-section-copy,
   .agency-trust-text {
     max-width: 58ch;
     margin-top: var(--space-6);
     font-size: var(--text-base);
     line-height: 1.72;
     color: var(--text-2);
   }
   
   
   /* =========================================================
      BUTTONS
      ========================================================= */
   
   .agency-button {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     min-height: 50px;
     padding: 0 var(--space-5);
     border-radius: 999px;
     border: 1px solid transparent;
     text-decoration: none;
     font-size: var(--text-sm);
     font-weight: 600;
     line-height: 1;
     cursor: pointer;
     transition:
       transform 220ms ease,
       background-color 220ms ease,
       color 220ms ease,
       border-color 220ms ease,
       box-shadow 220ms ease;
   }
   
   .agency-button:hover {
     transform: translateY(-2px);
   }
   
   .agency-button:focus-visible {
     outline: none;
     box-shadow: var(--focus-ring);
   }
   
   .agency-button-primary {
     background: var(--text-1);
     color: var(--surface-1);
     border-color: var(--text-1);
   }
   
   .agency-button-primary:hover {
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
   }
   
   .agency-button-secondary {
     background: transparent;
     color: var(--text-1);
     border-color: var(--border-1);
   }
   
   .agency-button-secondary:hover {
     background: var(--accent-ghost);
   }
   
   
   /* =========================================================
      CUSTOM HEADER
      ========================================================= */
   
   .nilev-header {
     position: sticky;
     top: 0;
     z-index: 1000;
     height: 72px;
     background: var(--nilev-header-bg);
     backdrop-filter: blur(14px);
     -webkit-backdrop-filter: blur(14px);
     border-bottom: 1px solid transparent;
     transition:
       background-color 220ms ease,
       border-color 220ms ease,
       box-shadow 220ms ease;
   }
   
   .nilev-header.is-scrolled {
     background: var(--nilev-header-bg-scrolled);
     border-bottom-color: var(--nilev-header-border);
     box-shadow: var(--shadow-1);
   }
   
   .nilev-header-inner {
     display: flex;
     align-items: center;
     justify-content: space-between;
     height: 100%;
     max-width: var(--container);
     margin: 0 auto;
     padding: 0 var(--pad-x);
   }
   
   /* Logo */
   .nilev-header-logo {
     display: flex;
     align-items: center;
     text-decoration: none;
     color: var(--text-1);
     flex-shrink: 0;
   }
   
   .nilev-header-logo svg {
     height: 38px;
     width: auto;
   }
   
   /* Desktop Nav */
   .nilev-nav {
     display: flex;
     align-items: center;
     gap: var(--space-1);
   }
   
   .nilev-nav-link {
     position: relative;
     padding: 8px 14px;
     color: var(--nilev-header-text);
     font-size: var(--text-sm);
     font-weight: 500;
     line-height: 1;
     text-decoration: none;
     border-radius: 8px;
     transition: color 180ms ease, background 180ms ease;
   }
   
   .nilev-nav-link:hover {
     background: var(--accent-ghost);
   }
   
   .nilev-nav-link::after {
     content: "";
     position: absolute;
     left: 14px;
     right: 14px;
     bottom: 2px;
     height: 1px;
     background: currentColor;
     transform: scaleX(0);
     transform-origin: left center;
     transition: transform 180ms ease;
     opacity: 0.55;
   }
   
   .nilev-nav-link:hover::after,
   .nilev-nav-link.is-active::after {
     transform: scaleX(1);
   }
   
   /* Header CTA */
   .nilev-header-cta {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     min-height: 42px;
     padding: 0 20px;
     border-radius: 999px;
     background: var(--nilev-header-text);
     color: var(--page-bg);
     font-size: var(--text-sm);
     font-weight: 600;
     line-height: 1;
     text-decoration: none;
     border: 1px solid var(--nilev-header-text);
     transition: opacity 180ms ease;
     flex-shrink: 0;
   }
   
   .nilev-header-cta:hover {
     opacity: 0.85;
   }
   
   /* Mobile Toggle */
   .nilev-nav-toggle {
     display: none;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     gap: 5px;
     width: 44px;
     height: 44px;
     padding: 0;
     background: none;
     border: none;
     cursor: pointer;
     -webkit-tap-highlight-color: transparent;
   }
   
   .nilev-nav-toggle span {
     display: block;
     width: 22px;
     height: 2px;
     background: var(--nilev-header-text);
     border-radius: 2px;
     transition: transform 280ms ease, opacity 280ms ease;
   }
   
   .nilev-nav-toggle.is-open span:nth-child(1) {
     transform: translateY(7px) rotate(45deg);
   }
   
   .nilev-nav-toggle.is-open span:nth-child(2) {
     opacity: 0;
   }
   
   .nilev-nav-toggle.is-open span:nth-child(3) {
     transform: translateY(-7px) rotate(-45deg);
   }
   
   
   /* =========================================================
      MOBILE NAVIGATION OVERLAY
      ========================================================= */
   
   .nilev-mobile-nav {
     display: flex;
     position: fixed;
     top: 72px;
     left: 0;
     right: 0;
     bottom: 0;
     z-index: 999;
     flex-direction: column;
     padding: var(--space-8) var(--pad-x) var(--space-10);
     background: var(--surface-1);
     overflow-y: auto;
     -webkit-overflow-scrolling: touch;
     opacity: 0;
     visibility: hidden;
     transform: translateY(-8px);
     transition:
       opacity 250ms ease,
       visibility 250ms ease,
       transform 250ms ease;
   }
   
   .nilev-mobile-nav.is-open {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
   }
   
   .nilev-mobile-link {
     padding: var(--space-4) 0;
     border-bottom: 1px solid var(--border-1);
     font-size: var(--text-lg);
     font-weight: 550;
     color: var(--text-1);
     text-decoration: none;
     transition: color 180ms ease;
   }
   
   .nilev-mobile-link:hover {
     color: var(--accent);
   }
   
   .nilev-mobile-cta {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     align-self: flex-start;
     margin-top: var(--space-7);
     min-height: 48px;
     padding: 0 24px;
     border-radius: 999px;
     background: var(--text-1);
     color: var(--page-bg);
     font-size: var(--text-base);
     font-weight: 600;
     text-decoration: none;
     transition: opacity 180ms ease;
   }
   
   .nilev-mobile-cta:hover {
     opacity: 0.85;
   }
   
   /* Mobile breakpoint */
   @media (max-width: 767px) {
     .nilev-nav,
     .nilev-header-cta {
       display: none;
     }
   
     .nilev-nav-toggle {
       display: flex;
     }
   }
   
   
   /* =========================================================
      HERO
      ========================================================= */
   
   .agency-hero-root {
     background: var(--surface-1);
     color: var(--text-1);
     overflow: hidden;
   }
   
   .agency-hero-scene {
     position: relative;
     min-height: 180svh;
     background: var(--surface-1);
   }

   @supports not (height: 100svh) {
     .agency-hero-scene { min-height: 180vh; }
   }
   
   .agency-hero-sticky {
     position: -webkit-sticky;
     position: sticky;
     top: 0;
     min-height: 100svh;
     overflow: visible;
   }
   
   /* Allow zoom-through effect — logo scales beyond viewport bounds */
   .agency-hero-sticky.is-scrolling {
     overflow: visible;
     contain: none;
   }
   
   @supports not (height: 100svh) {
     .agency-hero-sticky { min-height: 100vh; }
   }
   
   .agency-hero-stage {
     position: relative;
     display: grid;
     place-items: center;
     min-height: 100svh;
     padding: var(--pad-x);
     overflow: hidden;
     perspective: 1000px;
     perspective-origin: 50% 50%;
   }
   
   @supports not (height: 100svh) {
     .agency-hero-stage { min-height: 100vh; }
   }
   
   .agency-hero-logo-wrap {
     position: relative;
     display: grid;
     place-items: center;
     text-align: center;
     transform-origin: center;
     transform-style: preserve-3d;
     z-index: 1;
   }

   .agency-hero-logo {
     width: clamp(180px, 42vw, 520px);
     color: var(--text-1);
     animation: heroLogoEntrance 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
   }

   /* ── Entrance animation: blur → sharp with scale bounce ── */
   @keyframes heroLogoEntrance {
     0% {
       opacity: 0;
       filter: blur(32px);
       transform: scale(0.6);
     }
     40% {
       opacity: 1;
       filter: blur(4px);
     }
     70% {
       filter: blur(0px);
       transform: scale(1.06);
     }
     100% {
       opacity: 1;
       filter: blur(0px);
       transform: scale(1);
     }
   }

   /* ── Ambient glow orb behind logo ── */
   .agency-hero-stage::before {
     content: "";
     position: absolute;
     top: 50%;
     left: 50%;
     width: clamp(300px, 60vw, 800px);
     height: clamp(300px, 60vw, 800px);
     transform: translate(-50%, -50%);
     border-radius: 50%;
     background: radial-gradient(
       circle at 40% 40%,
       var(--accent-ghost) 0%,
       rgba(210, 193, 182, 0.06) 40%,
       transparent 70%
     );
     filter: blur(60px);
     animation: heroGlowPulse 6s ease-in-out infinite alternate;
     pointer-events: none;
     z-index: 0;
   }

   @keyframes heroGlowPulse {
     0% {
       opacity: 0.5;
       transform: translate(-50%, -50%) scale(0.85);
     }
     50% {
       opacity: 1;
       transform: translate(-50%, -50%) scale(1.1) rotate(30deg);
     }
     100% {
       opacity: 0.6;
       transform: translate(-50%, -50%) scale(0.95) rotate(-15deg);
     }
   }

   /* ── Floating particles around logo ── */
   .agency-hero-logo-wrap::before,
   .agency-hero-logo-wrap::after {
     content: "";
     position: absolute;
     border-radius: 50%;
     pointer-events: none;
     opacity: 0;
     animation: heroParticleFloat 8s ease-in-out infinite;
   }

   .agency-hero-logo-wrap::before {
     width: 6px;
     height: 6px;
     background: var(--accent);
     top: 10%;
     right: 15%;
     animation-delay: 0s;
   }

   .agency-hero-logo-wrap::after {
     width: 4px;
     height: 4px;
     background: var(--accent-2);
     bottom: 20%;
     left: 12%;
     animation-delay: 3s;
   }

   @keyframes heroParticleFloat {
     0%, 100% {
       opacity: 0;
       transform: translateY(0px) scale(0.5);
     }
     15% {
       opacity: 0.7;
     }
     50% {
       opacity: 0.4;
       transform: translateY(-40px) scale(1);
     }
     85% {
       opacity: 0.6;
     }
   }

   /* ── Subtle ring accent ── */
   .agency-hero-stage::after {
     content: "";
     position: absolute;
     top: 50%;
     left: 50%;
     width: clamp(220px, 48vw, 600px);
     height: clamp(220px, 48vw, 600px);
     transform: translate(-50%, -50%);
     border: 1px solid var(--border-1);
     border-radius: 50%;
     opacity: 0;
     animation: heroRingReveal 2.5s 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
     pointer-events: none;
     z-index: 0;
     transition: opacity 0.3s ease, transform 0.4s ease;
   }

   .agency-hero-stage.is-zooming::after {
     opacity: 0 !important;
     transform: translate(-50%, -50%) scale(3);
   }

   @keyframes heroRingReveal {
     0% {
       opacity: 0;
       transform: translate(-50%, -50%) scale(0.7);
     }
     60% {
       opacity: 0.4;
     }
     100% {
       opacity: 0.15;
       transform: translate(-50%, -50%) scale(1);
     }
   }

   /* ── Speed streaks during fly-through ── */
   .agency-hero-streaks {
     position: absolute;
     inset: 0;
     pointer-events: none;
     z-index: 3;
     opacity: 0;
     transition: opacity 0.5s ease;
   }
   .agency-hero-stage.is-zooming .agency-hero-streaks {
     opacity: 1;
   }
   .agency-hero-streak {
     position: absolute;
     top: 50%;
     left: 50%;
     width: 1px;
     height: 0;
     background: linear-gradient(to bottom, transparent, rgba(210,193,182,0.3), transparent);
     transform-origin: center top;
     opacity: 0;
     animation: none;
   }
   .agency-hero-stage.is-zooming .agency-hero-streak {
     animation: heroStreakShoot 1.2s ease-out infinite;
   }
   .agency-hero-streak:nth-child(1) { transform: translate(-50%, -50%) rotate(-30deg); animation-delay: 0s; }
   .agency-hero-streak:nth-child(2) { transform: translate(-50%, -50%) rotate(15deg); animation-delay: 0.15s; }
   .agency-hero-streak:nth-child(3) { transform: translate(-50%, -50%) rotate(55deg); animation-delay: 0.3s; }
   .agency-hero-streak:nth-child(4) { transform: translate(-50%, -50%) rotate(-60deg); animation-delay: 0.1s; }
   .agency-hero-streak:nth-child(5) { transform: translate(-50%, -50%) rotate(80deg); animation-delay: 0.25s; }
   .agency-hero-streak:nth-child(6) { transform: translate(-50%, -50%) rotate(-10deg); animation-delay: 0.4s; }
   .agency-hero-streak:nth-child(7) { transform: translate(-50%, -50%) rotate(40deg); animation-delay: 0.05s; }
   .agency-hero-streak:nth-child(8) { transform: translate(-50%, -50%) rotate(-75deg); animation-delay: 0.35s; }

   @keyframes heroStreakShoot {
     0% {
       height: 0;
       opacity: 0;
     }
     10% {
       opacity: 0.35;
     }
     100% {
       height: 100vh;
       opacity: 0;
     }
   }

   /* ── Light burst behind logo during zoom ── */
   .agency-hero-lightburst {
     position: absolute;
     top: 50%;
     left: 50%;
     width: 0;
     height: 0;
     border-radius: 50%;
     background: radial-gradient(circle, var(--accent-2) 0%, rgba(210,193,182,0) 70%);
     transform: translate(-50%, -50%);
     pointer-events: none;
     z-index: 0;
     opacity: 0;
     transition: width 0.6s ease, height 0.6s ease, opacity 0.4s ease;
   }
   .agency-hero-stage.is-zooming .agency-hero-lightburst {
     width: 160vmax;
     height: 160vmax;
     opacity: 0.15;
   }

   /* ── JS-generated ambient particles ── */
   .agency-hero-particle {
     position: absolute;
     border-radius: 50%;
     background: var(--accent);
     opacity: 0;
     pointer-events: none;
     z-index: 0;
     animation: heroParticleDrift ease-in-out infinite alternate;
   }

   .agency-hero-particle:nth-child(odd) {
     background: var(--accent-2);
   }

   @keyframes heroParticleDrift {
     0% {
       opacity: 0;
       transform: translateY(0) scale(0.5);
     }
     25% {
       opacity: 0.35;
     }
     50% {
       transform: translateY(-30px) translateX(15px) scale(1);
       opacity: 0.2;
     }
     75% {
       opacity: 0.4;
     }
     100% {
       opacity: 0;
       transform: translateY(-60px) translateX(-10px) scale(0.7);
     }
   }
   
   /*
    * GPU compositing ONLY during scroll — never at rest.
    * will-change + translate3d create a compositing layer that
    * can blur SVGs. At rest (no .is-scrolling), the logo stays
    * on the CPU paint path → pixel-perfect sharp.
    */
   .agency-hero-logo-wrap.is-scrolling,
   .agency-hero-logo.is-scrolling {
     will-change: transform, opacity;
   }
   
   /*
    * CSS Mask approach — renders the logo as a painted background
    * clipped by a mask. No inline SVG in the DOM = no GPU compositing
    * blur from position:sticky. currentColor on the parent provides
    * automatic light/dark mode color.
    */
   .agency-hero-logo-shape {
     position: relative;
     width: 100%;
     aspect-ratio: 1;
     background:
       linear-gradient(
         105deg,
         currentColor 0%,
         currentColor 40%,
         var(--accent-2) 50%,
         currentColor 60%,
         currentColor 100%
       );
     background-size: 300% 100%;
     animation: heroLogoShimmer 4s 2s ease-in-out forwards;
     -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MDkgNjA5Ij48cGF0aCBmaWxsPSJ3aGl0ZSIgZD0iTSAwLjYzIDQ5Ny4yMCBDMC4zNSw0OTYuNzYgMC41NSw0OTQuNjEgMS4wNyw0OTIuNDQgQzEuNTksNDkwLjI4IDIuNjgsNDg1LjU4IDMuNDksNDgyLjAwIEM0LjMwLDQ3OC40MiA2LjM0LDQ2OS42NSA4LjA0LDQ2Mi41MCBDOS43Myw0NTUuMzUgMTEuMjgsNDQ4LjgzIDExLjQ3LDQ0OC4wMCBDMTEuNjYsNDQ3LjE3IDE0LjEyLDQzNi4xNSAxNi45NCw0MjMuNTAgQzE5Ljc1LDQxMC44NSAyMi42OSwzOTcuODAgMjMuNDcsMzk0LjUwIEMyNS40MiwzODYuMjUgMzAuMDUsMzY1Ljc3IDM2LjAzLDMzOS4wMCBDMzguODAsMzI2LjYyIDQyLjE3LDMxMS43NyA0My41MywzMDYuMDAgQzQ2LjIxLDI5NC42MyA2Mi43OSwyMjEuNzMgNjQuMDAsMjE2LjAwIEM2NC40MSwyMTQuMDcgNjYuMTQsMjA2LjQzIDY3Ljg0LDE5OS4wMCBDNzguOTksMTUwLjI3IDc5LjQ2LDE0OC44MSA4Ni44MSwxMzkuMDkgQzk1LjI1LDEyNy45MyAxMDguNjksMTE5LjQ0IDEyMi41MywxMTYuNTEgQzEzMi42NSwxMTQuMzcgMTkzLjEwLDExNC4zNSAyMDEuMzEsMTE2LjQ5IEMyMTQuOTcsMTIwLjA1IDIyMy41OCwxMjYuOTQgMjMzLjgwLDE0Mi40OSBDMjM3LjQyLDE0OC4wMCAyNTUuOTUsMTc1LjkwIDI3NC45OCwyMDQuNTAgQzI5NC4wMSwyMzMuMTAgMzEwLjYyLDI1OC4yMCAzMTEuODksMjYwLjI3IEwgMzE0LjE5IDI2NC4wNCBMIDMxMS40OCAyNzUuNzcgQzMwNy4wNSwyOTQuOTUgMzAwLjA4LDMyNC42NiAyOTcuMDEsMzM3LjUwIEMyOTIuMDUsMzU4LjI2IDI4My4zMCwzOTYuNDEgMjgwLjQ0LDQwOS43NSBDMjgwLjE4LDQxMC45OSAyNzkuNjMsNDExLjk5IDI3OS4yMyw0MTEuOTcgQzI3OC41NCw0MTEuOTQgMjU5LjIzLDM4My4xOCAyMDIuNzQsMjk4LjAwIEMxODkuMDYsMjc3LjM4IDE3Ny4xNCwyNTkuOTQgMTc2LjI0LDI1OS4yNSBDMTc1LjM1LDI1OC41NiAxNzMuMTYsMjU4LjAwIDE3MS4zOCwyNTguMDAgQzE2OC4xMiwyNTguMDAgMTY1LjM2LDI2MC42NCAxNjMuNjIsMjY1LjQzIEMxNjIuOTgsMjY3LjIxIDE1OS43NSwyODEuMTkgMTU4LjY0LDI4Ny4wMCBDMTU4LjAwLDI5MC4zOCAxNDguMjgsMzMzLjk5IDE0Ni41MCwzNDEuNTAgQzE0NS43MiwzNDQuODAgMTQ0LjgxLDM0OS4wNCAxNDQuNDksMzUwLjkyIEMxNDQuMTcsMzUyLjc5IDE0My43NSwzNTQuNTkgMTQzLjU2LDM1NC45MiBDMTQzLjM2LDM1NS4yNCAxNDIuOTIsMzU3LjMwIDE0Mi41OCwzNTkuNTAgQzE0Mi4yNCwzNjEuNzAgMTQxLjU2LDM2NC44NSAxNDEuMDcsMzY2LjUwIEMxNDAuNTgsMzY4LjE1IDEzOC4zMSwzNzguMDUgMTM2LjAyLDM4OC41MCBDMTMzLjcyLDM5OC45NSAxMzAuMzMsNDE0LjAyIDEyOC40OCw0MjIuMDAgQzEyNi42Miw0MjkuOTggMTI0LjkwLDQzNy42MiAxMjQuNjUsNDM5LjAwIEMxMjQuNDAsNDQwLjM4IDEyMi4zNCw0NDkuNjAgMTIwLjA3LDQ1OS41MCBDMTE3LjgwLDQ2OS40MCAxMTUuNzMsNDc4LjYyIDExNS40Nyw0ODAuMDAgQzExNS4yMSw0ODEuMzggMTE0LjE3LDQ4NS44OCAxMTMuMTYsNDkwLjAwIEwgMTExLjMzIDQ5Ny41MCBMIDU2LjIzIDQ5Ny43NiBDMjUuOTIsNDk3LjkwIDAuOTAsNDk3LjY1IDAuNjMsNDk3LjIwIFpNIDM3MS4wMCA0OTYuNTAgQzM1MC4yOCw0OTIuOTIgMzMwLjU5LDQ4MS4zNCAzMTguNjUsNDY1LjcyIEMzMDcuMzAsNDUwLjg5IDMwMS45Nyw0MzUuMDEgMzAxLjkzLDQxNi4wMCBDMzAxLjkxLDQwMi42MiAzMDIuMTksNDAxLjEzIDMxMy40MCwzNTYuMjEgQzMxOC4wMiwzMzcuNjcgMzI2LjM4LDMwMy42MCAzMzEuOTYsMjgwLjUwIEMzNTAuOTAsMjAyLjIyIDM1NC4yNCwxODguNTQgMzYwLjIwLDE2NS4wMCBDMzYzLjQ4LDE1Mi4wNyAzNjYuODEsMTM4LjU3IDM2Ny42MSwxMzUuMDAgQzM2OC40MSwxMzEuNDMgMzY5Ljg1LDEyNS41NyAzNzAuODEsMTIyLjAwIEwgMzcyLjU1IDExNS41MCBMIDQyMy4yOCAxMTUuMjQgQzQ1MS4xNywxMTUuMTAgNDc0LjAwLDExNS4zMiA0NzQuMDAsMTE1Ljc0IEM0NzQuMDEsMTE2LjU1IDQ3MC45NywxMjkuNjIgNDY1LjQ3LDE1Mi41MCBDNDYzLjYyLDE2MC4yMCA0NTkuODAsMTc2LjE4IDQ1Ni45OCwxODguMDAgQzQ1NC4xNSwxOTkuODIgNDUwLjc1LDIxNC4wMCA0NDkuNDEsMjE5LjUwIEM0NDguMDcsMjI1LjAwIDQ0Ni43OSwyMzAuNDAgNDQ2LjU2LDIzMS41MCBDNDQ1LjY5LDIzNS43MiA0NDAuOTAsMjU1Ljc1IDQzOS41MiwyNjEuMDAgQzQzOC43MiwyNjQuMDIgNDM3LjM5LDI2OS40MiA0MzYuNTcsMjczLjAwIEM0MzUuNzQsMjc2LjU4IDQzMi43OCwyODguOTUgNDI5Ljk5LDMwMC41MCBDNDI3LjIwLDMxMi4wNSA0MjMuNzksMzI2LjIzIDQyMi40MSwzMzIuMDAgQzQyMS4wMywzMzcuNzcgNDE4Ljk4LDM0Ni4zMyA0MTcuODYsMzUxLjAwIEM0MTYuNzMsMzU1LjY3IDQxNS42NywzNjAuMTcgNDE1LjQ5LDM2MS4wMCBDNDE1LjMxLDM2MS44MyA0MTQuNjUsMzY0Ljc1IDQxNC4wMSwzNjcuNTAgQzQxMi42NywzNzMuMzIgNDEzLjQzLDM3OS45NyA0MTYuMDEsMzg1LjAyIEM0MTguMzksMzg5LjY4IDQyNS4zMiwzOTYuMDEgNDMxLjEyLDM5OC44MSBDNDQxLjUyLDQwMy44NSA0NDMuNjgsNDAzLjk2IDUyOC44Niw0MDMuOTggTCA2MDguMjIgNDA0LjAwIEwgNjA3LjU2IDQwNy43NSBDNjA3LjE5LDQwOS44MSA2MDUuMTQsNDE4LjcwIDYwMy4wMSw0MjcuNTAgQzYwMC44OCw0MzYuMzAgNTk3LjczLDQ0OS44MCA1OTYuMDEsNDU3LjUwIEM1ODkuODAsNDg1LjMyIDU4OC44Miw0ODkuNTYgNTg3LjY3LDQ5My41MCBMIDU4Ni41MCA0OTcuNTAgTCA0ODIuNTAgNDk3LjY1IEM0MDEuMjQsNDk3Ljc3IDM3Ni44Niw0OTcuNTIgMzcxLjAwLDQ5Ni41MCBaIi8+PC9zdmc+Cg==");
     mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MDkgNjA5Ij48cGF0aCBmaWxsPSJ3aGl0ZSIgZD0iTSAwLjYzIDQ5Ny4yMCBDMC4zNSw0OTYuNzYgMC41NSw0OTQuNjEgMS4wNyw0OTIuNDQgQzEuNTksNDkwLjI4IDIuNjgsNDg1LjU4IDMuNDksNDgyLjAwIEM0LjMwLDQ3OC40MiA2LjM0LDQ2OS42NSA4LjA0LDQ2Mi41MCBDOS43Myw0NTUuMzUgMTEuMjgsNDQ4LjgzIDExLjQ3LDQ0OC4wMCBDMTEuNjYsNDQ3LjE3IDE0LjEyLDQzNi4xNSAxNi45NCw0MjMuNTAgQzE5Ljc1LDQxMC44NSAyMi42OSwzOTcuODAgMjMuNDcsMzk0LjUwIEMyNS40MiwzODYuMjUgMzAuMDUsMzY1Ljc3IDM2LjAzLDMzOS4wMCBDMzguODAsMzI2LjYyIDQyLjE3LDMxMS43NyA0My41MywzMDYuMDAgQzQ2LjIxLDI5NC42MyA2Mi43OSwyMjEuNzMgNjQuMDAsMjE2LjAwIEM2NC40MSwyMTQuMDcgNjYuMTQsMjA2LjQzIDY3Ljg0LDE5OS4wMCBDNzguOTksMTUwLjI3IDc5LjQ2LDE0OC44MSA4Ni44MSwxMzkuMDkgQzk1LjI1LDEyNy45MyAxMDguNjksMTE5LjQ0IDEyMi41MywxMTYuNTEgQzEzMi42NSwxMTQuMzcgMTkzLjEwLDExNC4zNSAyMDEuMzEsMTE2LjQ5IEMyMTQuOTcsMTIwLjA1IDIyMy41OCwxMjYuOTQgMjMzLjgwLDE0Mi40OSBDMjM3LjQyLDE0OC4wMCAyNTUuOTUsMTc1LjkwIDI3NC45OCwyMDQuNTAgQzI5NC4wMSwyMzMuMTAgMzEwLjYyLDI1OC4yMCAzMTEuODksMjYwLjI3IEwgMzE0LjE5IDI2NC4wNCBMIDMxMS40OCAyNzUuNzcgQzMwNy4wNSwyOTQuOTUgMzAwLjA4LDMyNC42NiAyOTcuMDEsMzM3LjUwIEMyOTIuMDUsMzU4LjI2IDI4My4zMCwzOTYuNDEgMjgwLjQ0LDQwOS43NSBDMjgwLjE4LDQxMC45OSAyNzkuNjMsNDExLjk5IDI3OS4yMyw0MTEuOTcgQzI3OC41NCw0MTEuOTQgMjU5LjIzLDM4My4xOCAyMDIuNzQsMjk4LjAwIEMxODkuMDYsMjc3LjM4IDE3Ny4xNCwyNTkuOTQgMTc2LjI0LDI1OS4yNSBDMTc1LjM1LDI1OC41NiAxNzMuMTYsMjU4LjAwIDE3MS4zOCwyNTguMDAgQzE2OC4xMiwyNTguMDAgMTY1LjM2LDI2MC42NCAxNjMuNjIsMjY1LjQzIEMxNjIuOTgsMjY3LjIxIDE1OS43NSwyODEuMTkgMTU4LjY0LDI4Ny4wMCBDMTU4LjAwLDI5MC4zOCAxNDguMjgsMzMzLjk5IDE0Ni41MCwzNDEuNTAgQzE0NS43MiwzNDQuODAgMTQ0LjgxLDM0OS4wNCAxNDQuNDksMzUwLjkyIEMxNDQuMTcsMzUyLjc5IDE0My43NSwzNTQuNTkgMTQzLjU2LDM1NC45MiBDMTQzLjM2LDM1NS4yNCAxNDIuOTIsMzU3LjMwIDE0Mi41OCwzNTkuNTAgQzE0Mi4yNCwzNjEuNzAgMTQxLjU2LDM2NC44NSAxNDEuMDcsMzY2LjUwIEMxNDAuNTgsMzY4LjE1IDEzOC4zMSwzNzguMDUgMTM2LjAyLDM4OC41MCBDMTMzLjcyLDM5OC45NSAxMzAuMzMsNDE0LjAyIDEyOC40OCw0MjIuMDAgQzEyNi42Miw0MjkuOTggMTI0LjkwLDQzNy42MiAxMjQuNjUsNDM5LjAwIEMxMjQuNDAsNDQwLjM4IDEyMi4zNCw0NDkuNjAgMTIwLjA3LDQ1OS41MCBDMTE3LjgwLDQ2OS40MCAxMTUuNzMsNDc4LjYyIDExNS40Nyw0ODAuMDAgQzExNS4yMSw0ODEuMzggMTE0LjE3LDQ4NS44OCAxMTMuMTYsNDkwLjAwIEwgMTExLjMzIDQ5Ny41MCBMIDU2LjIzIDQ5Ny43NiBDMjUuOTIsNDk3LjkwIDAuOTAsNDk3LjY1IDAuNjMsNDk3LjIwIFpNIDM3MS4wMCA0OTYuNTAgQzM1MC4yOCw0OTIuOTIgMzMwLjU5LDQ4MS4zNCAzMTguNjUsNDY1LjcyIEMzMDcuMzAsNDUwLjg5IDMwMS45Nyw0MzUuMDEgMzAxLjkzLDQxNi4wMCBDMzAxLjkxLDQwMi42MiAzMDIuMTksNDAxLjEzIDMxMy40MCwzNTYuMjEgQzMxOC4wMiwzMzcuNjcgMzI2LjM4LDMwMy42MCAzMzEuOTYsMjgwLjUwIEMzNTAuOTAsMjAyLjIyIDM1NC4yNCwxODguNTQgMzYwLjIwLDE2NS4wMCBDMzYzLjQ4LDE1Mi4wNyAzNjYuODEsMTM4LjU3IDM2Ny42MSwxMzUuMDAgQzM2OC40MSwxMzEuNDMgMzY5Ljg1LDEyNS41NyAzNzAuODEsMTIyLjAwIEwgMzcyLjU1IDExNS41MCBMIDQyMy4yOCAxMTUuMjQgQzQ1MS4xNywxMTUuMTAgNDc0LjAwLDExNS4zMiA0NzQuMDAsMTE1Ljc0IEM0NzQuMDEsMTE2LjU1IDQ3MC45NywxMjkuNjIgNDY1LjQ3LDE1Mi41MCBDNDYzLjYyLDE2MC4yMCA0NTkuODAsMTc2LjE4IDQ1Ni45OCwxODguMDAgQzQ1NC4xNSwxOTkuODIgNDUwLjc1LDIxNC4wMCA0NDkuNDEsMjE5LjUwIEM0NDguMDcsMjI1LjAwIDQ0Ni43OSwyMzAuNDAgNDQ2LjU2LDIzMS41MCBDNDQ1LjY5LDIzNS43MiA0NDAuOTAsMjU1Ljc1IDQzOS41MiwyNjEuMDAgQzQzOC43MiwyNjQuMDIgNDM3LjM5LDI2OS40MiA0MzYuNTcsMjczLjAwIEM0MzUuNzQsMjc2LjU4IDQzMi43OCwyODguOTUgNDI5Ljk5LDMwMC41MCBDNDI3LjIwLDMxMi4wNSA0MjMuNzksMzI2LjIzIDQyMi40MSwzMzIuMDAgQzQyMS4wMywzMzcuNzcgNDE4Ljk4LDM0Ni4zMyA0MTcuODYsMzUxLjAwIEM0MTYuNzMsMzU1LjY3IDQxNS42NywzNjAuMTcgNDE1LjQ5LDM2MS4wMCBDNDE1LjMxLDM2MS44MyA0MTQuNjUsMzY0Ljc1IDQxNC4wMSwzNjcuNTAgQzQxMi42NywzNzMuMzIgNDEzLjQzLDM3OS45NyA0MTYuMDEsMzg1LjAyIEM0MTguMzksMzg5LjY4IDQyNS4zMiwzOTYuMDEgNDMxLjEyLDM5OC44MSBDNDQxLjUyLDQwMy44NSA0NDMuNjgsNDAzLjk2IDUyOC44Niw0MDMuOTggTCA2MDguMjIgNDA0LjAwIEwgNjA3LjU2IDQwNy43NSBDNjA3LjE5LDQwOS44MSA2MDUuMTQsNDE4LjcwIDYwMy4wMSw0MjcuNTAgQzYwMC44OCw0MzYuMzAgNTk3LjczLDQ0OS44MCA1OTYuMDEsNDU3LjUwIEM1ODkuODAsNDg1LjMyIDU4OC44Miw0ODkuNTYgNTg3LjY3LDQ5My41MCBMIDU4Ni41MCA0OTcuNTAgTCA0ODIuNTAgNDk3LjY1IEM0MDEuMjQsNDk3Ljc3IDM3Ni44Niw0OTcuNTIgMzcxLjAwLDQ5Ni41MCBaIi8+PC9zdmc+Cg==");
     -webkit-mask-size: contain;
     mask-size: contain;
     -webkit-mask-repeat: no-repeat;
     mask-repeat: no-repeat;
     -webkit-mask-position: center;
     mask-position: center;
   }

   @keyframes heroLogoShimmer {
     0% { background-position: 100% 0; }
     100% { background-position: -100% 0; }
   }
   
   .agency-hero-kicker {
     margin-top: var(--space-5);
     font-size: 0.68rem;
     line-height: 1;
     letter-spacing: 0.28em;
     text-transform: uppercase;
     color: var(--text-3);
     opacity: 0;
     animation: heroKickerReveal 1.2s 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
   }

   @keyframes heroKickerReveal {
     0% {
       opacity: 0;
       transform: translateY(12px);
       letter-spacing: 0.6em;
     }
     100% {
       opacity: 1;
       transform: translateY(0);
       letter-spacing: 0.28em;
     }
   }
   
   .agency-hero-content {
     position: relative;
     z-index: 2;
     margin-top: -30svh;
     padding: clamp(80px, 9vw, 132px) 0 clamp(92px, 10vw, 148px);
     background: var(--surface-1);
     border-top-left-radius: var(--radius-lg);
     border-top-right-radius: var(--radius-lg);
   }
   
   .agency-hero-content-inner {
     width: min(980px, calc(100% - (var(--pad-x) * 2)));
     margin: 0 auto;
   }
   
   .agency-hero-heading {
     max-width: 20ch;
     font-size: clamp(2.2rem, 5vw, 4.8rem);
     line-height: 0.96;
     letter-spacing: -0.04em;
     font-weight: 650;
     text-wrap: balance;
     overflow: hidden;
   }

   /* Word-by-word scroll reveal — refined, no rotation */
   .hero-word {
     display: inline-block;
     opacity: 0;
     transform: translateY(60%);
     filter: blur(4px);
     transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                 transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                 filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
   }
   .hero-word.is-visible {
     opacity: 1;
     transform: translateY(0);
     filter: blur(0px);
   }
   
   .agency-hero-copy {
     max-width: 58ch;
     margin-top: var(--space-6);
     font-size: clamp(1rem, 1.2vw, 1.08rem);
     line-height: 1.72;
     color: var(--text-2);
   }
   
   .agency-hero-actions {
     display: flex;
     flex-wrap: wrap;
     gap: 14px;
     margin-top: var(--space-8);
   }
   
   .agency-hero-points {
     display: flex;
     flex-wrap: wrap;
     gap: 10px 12px;
     list-style: none;
     margin-top: var(--space-7);
   }
   
   .agency-hero-points li {
     padding: 10px 14px;
     border: 1px solid var(--border-1);
     border-radius: 999px;
     background: rgba(255, 255, 255, 0.36);
     font-size: var(--text-xs);
     line-height: 1.2;
     color: var(--text-2);
     backdrop-filter: blur(8px);
   }
   
   @media (prefers-color-scheme: dark) {
     .agency-hero-points li {
       background: rgba(255, 255, 255, 0.02);
     }
   }
   
   
   /* =========================================================
      PROOF BAR
      ========================================================= */
   
   .agency-proof-section {
     padding: var(--space-9) 0;
     background: var(--surface-1);
     border-bottom: 1px solid var(--border-2);
   }
   
   .agency-proof-bar {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: var(--space-8);
     flex-wrap: wrap;
   }
   
   .agency-proof-item {
     text-align: center;
     min-width: 120px;
   }
   
   .agency-proof-number {
     font-size: var(--text-2xl);
     font-weight: 700;
     line-height: 1;
     letter-spacing: -0.03em;
     color: var(--text-1);
   }
   
   .agency-proof-label {
     margin-top: var(--space-2);
     font-size: var(--text-xs);
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: var(--text-3);
     line-height: 1.4;
   }
   
   .agency-proof-divider {
     width: 1px;
     height: 40px;
     background: var(--border-1);
     flex-shrink: 0;
   }
   
   @media (max-width: 640px) {
     .agency-proof-bar {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: var(--space-6) var(--space-7);
       text-align: center;
     }
     .agency-proof-divider {
       display: none;
     }
     .agency-proof-item {
       min-width: 0;
     }
   }
   
   
   /* =========================================================
      SERVICES
      ========================================================= */
   
   .agency-services-section {
     padding: var(--section-pad-y) 0;
     background: var(--surface-2);
   }
   
   .agency-services-grid {
     display: grid;
     grid-template-columns: repeat(3, minmax(0, 1fr));
     gap: var(--space-6);
   }
   
   .agency-service-card {
     min-height: 100%;
     padding: var(--space-7);
     background: var(--surface-3);
     border: 1px solid var(--border-1);
     border-radius: var(--radius-md);
     box-shadow: var(--shadow-1);
     transition:
       transform 400ms cubic-bezier(.16, 1, .3, 1),
       border-color 400ms ease,
       box-shadow 400ms ease;
   }

   .agency-service-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 20px 48px rgba(16, 18, 22, 0.10), 0 6px 20px rgba(16, 18, 22, 0.04);
     border-color: rgba(27, 60, 83, 0.14);
   }
   
   .agency-service-icon {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 52px;
     height: 52px;
     margin-bottom: var(--space-5);
     border-radius: var(--radius-sm);
     background: var(--accent-ghost);
     color: var(--accent);
   }
   
   .agency-service-index {
     margin-bottom: var(--space-5);
     font-size: var(--text-xs);
     line-height: 1;
     letter-spacing: 0.14em;
     text-transform: uppercase;
     color: var(--accent);
   }
   
   .agency-service-title {
     margin-bottom: var(--space-3);
     font-size: var(--text-xl);
     line-height: 1.08;
     letter-spacing: -0.025em;
     font-weight: 650;
   }
   
   .agency-service-text {
     font-size: var(--text-base);
     line-height: 1.72;
     color: var(--text-2);
   }
   
   .agency-service-meta {
     margin-top: var(--space-6);
     padding-top: var(--space-4);
     border-top: 1px solid var(--border-2);
     font-size: var(--text-xs);
     line-height: 1.4;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: var(--text-3);
   }
   
   .agency-services-cta {
     margin-top: var(--space-9);
     text-align: center;
   }
   
   
   /* =========================================================
      PROBLEM SECTION (homepage)
      ========================================================= */
   
   .agency-problem-section {
     padding: var(--section-pad-y) 0;
     background: var(--surface-2);
   }
   
   .agency-problem-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: var(--space-4);
   }
   
   .agency-problem-card {
     padding: var(--space-5);
     background: var(--surface-3);
     border: 1px solid var(--border-1);
     border-radius: var(--radius-sm);
     text-align: center;
   }
   
   .agency-problem-icon {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 36px;
     height: 36px;
     margin: 0 auto var(--space-3);
     border-radius: 50%;
     background: rgba(200, 60, 60, 0.08);
     color: #b04040;
     font-size: var(--text-sm);
     font-weight: 700;
     line-height: 1;
   }
   
   @media (prefers-color-scheme: dark) {
     .agency-problem-icon {
       background: rgba(220, 100, 100, 0.12);
       color: #e08080;
     }
   }
   
   .agency-problem-text {
     font-size: var(--text-sm);
     line-height: 1.5;
     color: var(--text-2);
   }
   
   
   /* =========================================================
      SOLUTION SECTION (homepage)
      ========================================================= */
   
   .agency-solution-section {
     padding: var(--section-pad-y) 0;
     background: var(--surface-1);
   }
   
   .agency-solution-card {
     display: grid;
     grid-template-columns: 1.1fr 0.9fr;
     gap: clamp(32px, 5vw, 56px);
     align-items: center;
     padding: clamp(28px, 4vw, 48px);
     background: var(--surface-4);
     border: 1px solid var(--border-1);
     border-radius: var(--radius-lg);
     box-shadow: var(--shadow-1);
   }
   
   .agency-solution-heading {
     max-width: 20ch;
     font-size: clamp(1.8rem, 3.5vw, 3rem);
     line-height: 1;
     letter-spacing: -0.035em;
     font-weight: 650;
   }
   
   .agency-solution-text {
     max-width: 48ch;
     margin-top: var(--space-5);
     font-size: var(--text-base);
     line-height: 1.72;
     color: var(--text-2);
   }
   
   .agency-solution-copy .agency-button {
     margin-top: var(--space-7);
   }
   
   .agency-solution-stack {
     display: flex;
     flex-wrap: wrap;
     gap: var(--space-3);
     justify-content: center;
   }
   
   .agency-solution-tag {
     padding: var(--space-3) var(--space-4);
     background: var(--surface-3);
     border: 1px solid var(--border-1);
     border-radius: 999px;
     font-size: var(--text-sm);
     font-weight: 500;
     color: var(--text-1);
     line-height: 1;
   }
   
   
   /* =========================================================
      MODULES GRID (Leistungen page)
      ========================================================= */
   
   .agency-modules-section {
     padding: var(--section-pad-y) 0;
     background: var(--surface-2);
   }
   
   .agency-modules-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: var(--space-6);
   }
   
   .agency-module-card {
     padding: var(--space-7);
     background: var(--surface-3);
     border: 1px solid var(--border-1);
     border-radius: var(--radius-md);
     box-shadow: var(--shadow-1);
   }
   
   .agency-module-header {
     display: flex;
     align-items: center;
     gap: var(--space-4);
     margin-bottom: var(--space-4);
   }
   
   .agency-module-title {
     font-size: var(--text-lg);
     font-weight: 650;
     line-height: 1.15;
     letter-spacing: -0.02em;
   }
   
   .agency-module-text {
     font-size: var(--text-sm);
     line-height: 1.72;
     color: var(--text-2);
   }
   
   .agency-module-includes {
     list-style: none;
     display: grid;
     gap: var(--space-2);
     margin-top: var(--space-5);
     padding-top: var(--space-4);
     border-top: 1px solid var(--border-2);
   }
   
   .agency-module-includes li {
     position: relative;
     padding-left: 18px;
     font-size: var(--text-sm);
     line-height: 1.5;
     color: var(--text-2);
   }
   
   .agency-module-includes li::before {
     content: "";
     position: absolute;
     left: 0;
     top: 0.6em;
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--accent);
     transform: translateY(-50%);
   }
   
   
   /* =========================================================
      CONFIGURATOR (Leistungen page)
      ========================================================= */
   
   .agency-configurator-section {
     padding: var(--section-pad-y) 0;
     background: var(--surface-1);
   }
   
   .agency-configurator {
     display: grid;
     grid-template-columns: 1fr 340px;
     gap: var(--space-7);
     align-items: start;
   }
   
   .agency-config-modules {
     display: grid;
     gap: var(--space-3);
   }
   
   .agency-config-module {
     display: flex;
     align-items: center;
     gap: var(--space-4);
     padding: var(--space-5) var(--space-6);
     background: var(--surface-3);
     border: 1px solid var(--border-1);
     border-radius: var(--radius-sm);
     cursor: pointer;
     transition: border-color 180ms ease, box-shadow 180ms ease;
     -webkit-user-select: none;
     user-select: none;
   }
   
   .agency-config-module:hover {
     border-color: rgba(127, 127, 127, 0.2);
   }
   
   .agency-config-module:has(.agency-config-toggle:checked) {
     border-color: var(--accent);
     box-shadow: 0 0 0 1px var(--accent);
   }
   
   .agency-config-module-info {
     flex: 1;
     min-width: 0;
   }
   
   .agency-config-module-name {
     display: block;
     font-size: var(--text-base);
     font-weight: 600;
     line-height: 1.3;
     color: var(--text-1);
   }
   
   .agency-config-module-price {
     display: block;
     margin-top: 2px;
     font-size: var(--text-xs);
     color: var(--text-3);
     line-height: 1.4;
   }
   
   /* Custom toggle switch */
   .agency-config-toggle {
     position: absolute;
     opacity: 0;
     width: 0;
     height: 0;
   }
   
   .agency-config-switch {
     position: relative;
     flex-shrink: 0;
     width: 48px;
     height: 28px;
     background: var(--surface-5);
     border-radius: 999px;
     transition: background-color 180ms ease;
   }
   
   .agency-config-switch::after {
     content: "";
     position: absolute;
     top: 3px;
     left: 3px;
     width: 22px;
     height: 22px;
     border-radius: 50%;
     background: var(--surface-1);
     box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
     transition: transform 180ms ease;
   }
   
   .agency-config-toggle:checked + .agency-config-switch {
     background: var(--accent);
   }
   
   .agency-config-toggle:checked + .agency-config-switch::after {
     transform: translateX(20px);
   }
   
   .agency-config-toggle:focus-visible + .agency-config-switch {
     box-shadow: var(--focus-ring);
   }
   
   /* Summary card */
   .agency-config-summary {
     position: sticky;
     top: 100px;
   }
   
   .agency-config-summary-inner {
     padding: var(--space-7);
     background: var(--surface-3);
     border: 1px solid var(--border-1);
     border-radius: var(--radius-md);
     box-shadow: var(--shadow-2);
   }
   
   .agency-config-summary-title {
     margin-bottom: var(--space-5);
     font-size: var(--text-lg);
     font-weight: 650;
     letter-spacing: -0.02em;
   }
   
   .agency-config-summary-row {
     display: flex;
     justify-content: space-between;
     padding: var(--space-3) 0;
     font-size: var(--text-sm);
     color: var(--text-2);
     border-bottom: 1px solid var(--border-2);
   }
   
   .agency-config-summary-discount {
     display: flex;
     justify-content: space-between;
     padding: var(--space-3) 0;
     font-size: var(--text-sm);
     color: #2a7d4f;
     border-bottom: 1px solid var(--border-2);
   }
   
   @media (prefers-color-scheme: dark) {
     .agency-config-summary-discount {
       color: #6ec992;
     }
   }
   
   .agency-config-summary-total {
     display: flex;
     justify-content: space-between;
     align-items: baseline;
     padding: var(--space-5) 0 var(--space-4);
     font-size: var(--text-sm);
     color: var(--text-2);
   }
   
   .agency-config-total-value {
     font-size: var(--text-2xl);
     font-weight: 700;
     color: var(--text-1);
     letter-spacing: -0.03em;
   }
   
   .agency-config-summary-note {
     margin-top: var(--space-2);
     font-size: var(--text-xs);
     line-height: 1.5;
     color: var(--text-3);
   }
   
   .agency-config-cta {
     width: 100%;
     margin-top: var(--space-5);
   }
   
   
   
   
   /* =========================================================
      PROCESS
      ========================================================= */
   
   .agency-process-section {
     padding: var(--section-pad-y) 0;
     background: var(--surface-2);
   }
   
   .agency-process-list {
     position: relative;
     width: min(620px, 100%);
     margin: 0 auto;
     padding-left: 72px;
   }
   
   .agency-process-list::before {
     content: "";
     position: absolute;
     top: 8px;
     bottom: 8px;
     left: 12px;
     width: 2px;
     background: linear-gradient(to bottom, var(--accent), var(--accent-2));
     transform-origin: top;
     transform: scaleY(0);
     transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
   }
   .agency-process-list.is-visible::before {
     transform: scaleY(1);
   }
   
   .agency-process-step {
     position: relative;
     margin-bottom: var(--space-10);
   }
   
   .agency-process-step:last-child {
     margin-bottom: 0;
   }
   
   .agency-process-marker {
     position: absolute;
     top: 5px;
     left: -60px;
     width: 14px;
     height: 14px;
     border-radius: 50%;
     background: var(--accent);
     box-shadow: 0 0 0 6px rgba(27, 60, 83, 0.1);
     transition: box-shadow 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
   }
   .agency-process-step.is-visible .agency-process-marker {
     box-shadow: 0 0 0 6px rgba(27, 60, 83, 0.15), 0 0 20px rgba(27, 60, 83, 0.15);
     transform: scale(1.15);
   }
   
   .agency-process-number {
     margin-bottom: var(--space-3);
     font-size: var(--text-xs);
     line-height: 1;
     letter-spacing: 0.14em;
     text-transform: uppercase;
     color: var(--accent);
   }
   
   .agency-process-step-title {
     margin-bottom: var(--space-3);
     font-size: var(--text-xl);
     line-height: 1.12;
     letter-spacing: -0.02em;
     font-weight: 650;
   }
   
   .agency-process-step-text {
     max-width: 48ch;
     font-size: var(--text-base);
     line-height: 1.75;
     color: var(--text-2);
   }
   
   
   /* =========================================================
      TRUST / FIRST CALL
      ========================================================= */
   
   .agency-trust-section {
     padding: var(--section-pad-y) 0;
     background: var(--surface-2);
   }
   
   .agency-trust-card {
     display: grid;
     grid-template-columns: 1.15fr 0.95fr;
     gap: var(--space-7);
     padding: clamp(28px, 4vw, 42px);
     background: var(--surface-4);
     border: 1px solid var(--border-1);
     border-radius: var(--radius-lg);
     box-shadow: var(--shadow-1);
   }
   
   .agency-trust-points {
     list-style: none;
     display: grid;
     gap: 14px;
     align-content: start;
   }
   
   .agency-trust-points li {
     padding: var(--space-4) var(--space-5);
     background: var(--surface-3);
     border: 1px solid var(--border-1);
     border-radius: var(--radius-sm);
     color: var(--text-2);
     line-height: 1.62;
   }
   
   
   /* =========================================================
      DESIGN GALLERY (scroll showcase)
      ========================================================= */

   .agency-gallery-section {
     position: relative;
     height: 500vh;
     margin-inline: calc(50% - 50vw);
     background: var(--gallery-bg, #0a0f14);
     color: #fff;
   }

   .agency-gallery-viewport {
     position: sticky;
     top: 0;
     height: 100vh;
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
   }

   /* Intro text overlay */
   .agency-gallery-intro {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     z-index: 10;
     text-align: center;
     pointer-events: none;
     transition: opacity 0.6s ease;
     will-change: opacity;
   }

   .agency-gallery-intro.is-hidden {
     opacity: 0;
   }

   .agency-gallery-eyebrow {
     font-size: var(--text-xs);
     letter-spacing: 0.22em;
     text-transform: uppercase;
     color: rgba(255, 255, 255, 0.5);
     margin-bottom: var(--space-4);
   }

   .agency-gallery-heading {
     font-size: clamp(2rem, 4.5vw, 4rem);
     font-weight: 650;
     line-height: 0.97;
     letter-spacing: -0.035em;
     text-wrap: balance;
   }

   .agency-gallery-subline {
     margin-top: var(--space-4);
     font-size: clamp(0.95rem, 1.1vw, 1.06rem);
     line-height: 1.6;
     color: rgba(255, 255, 255, 0.55);
     max-width: 40ch;
     margin-inline: auto;
   }

   /* Cards stack — all absolutely positioned, z-layered */
   .agency-gallery-stack {
     position: relative;
     width: clamp(600px, 70vw, 1000px);
     aspect-ratio: 16 / 10;
   }

   /* Individual gallery cards */
   .agency-gallery-card {
     position: absolute;
     inset: 0;
     border-radius: 14px;
     overflow: hidden;
     opacity: 0;
     transform: scale(0.93);
     transition: none;
     will-change: opacity, transform;
     box-shadow:
       0 0 60px rgba(210, 193, 182, 0.12),
       0 8px 32px rgba(0, 0, 0, 0.35);
   }

   .agency-gallery-card.is-visible {
     opacity: 1;
     transform: scale(1);
     box-shadow:
       0 0 0 1px rgba(255, 255, 255, 0.06),
       0 0 80px rgba(210, 193, 182, 0.18),
       0 16px 48px rgba(0, 0, 0, 0.5);
   }

   /* Browser chrome (fake window bar) */
   .agency-gallery-chrome {
     display: flex;
     align-items: center;
     gap: 7px;
     padding: 11px 18px;
     background: #1a1f26;
     border-bottom: 1px solid rgba(255,255,255,0.04);
   }

   .agency-gallery-dot {
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: #3a3f46;
   }

   .agency-gallery-dot:nth-child(1) { background: #ff5f57; }
   .agency-gallery-dot:nth-child(2) { background: #febc2e; }
   .agency-gallery-dot:nth-child(3) { background: #28c840; }

   .agency-gallery-url {
     flex: 1;
     margin-left: 10px;
     padding: 6px 14px;
     border-radius: 6px;
     background: #0d1117;
     font-size: 11.5px;
     color: #6a7080;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
     font-family: var(--font-ui);
     letter-spacing: 0.01em;
   }

   /* ── Detailed mini website layout ── */
   .agency-gallery-page {
     aspect-ratio: 16 / 10;
     background: var(--m-bg, #fff);
     padding: 0;
     display: flex;
     flex-direction: column;
     overflow: hidden;
     font-family: var(--font-ui);
     position: relative;
   }

   /* Reduced motion: show all cards stacked vertically */
   @media (prefers-reduced-motion: reduce) {
     .agency-gallery-section {
       height: auto;
     }
     .agency-gallery-viewport {
       position: relative;
       height: auto;
       flex-direction: column;
       gap: var(--space-6);
       padding: var(--space-8) 0;
     }
     .agency-gallery-intro {
       position: relative;
       top: auto;
       left: auto;
       transform: none;
       margin-bottom: var(--space-6);
     }
     .agency-gallery-stack {
       display: flex;
       flex-direction: column;
       gap: var(--space-6);
       aspect-ratio: auto;
     }
     .agency-gallery-card {
       position: relative;
       opacity: 1;
       transform: none;
     }
     .agency-gallery-outro {
       position: relative;
       opacity: 1;
       pointer-events: auto;
       height: auto;
       padding: var(--space-8) 0;
     }
   }

   /* ── Layout variants for unique cards ── */

   /* Split: two columns side by side */
   .m-split {
     display: flex;
     flex: 1;
     min-height: 0;
     overflow: hidden;
   }
   .m-split-left {
     flex: 1;
     display: flex;
     flex-direction: column;
     justify-content: center;
     padding: 12px 14px;
     gap: 5px;
   }
   .m-split-right {
     flex: 1;
     display: flex;
     flex-direction: column;
   }
   .m-split-img {
     flex: 1;
     min-height: 0;
   }

   /* Full-cover hero with text overlay */
   .m-cover {
     position: relative;
     flex: 1;
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     padding: 14px;
     gap: 4px;
     min-height: 0;
   }
   .m-cover::before {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
     z-index: 1;
   }
   .m-cover > * {
     position: relative;
     z-index: 2;
   }

   /* Centered hero layout */
   .m-center {
     flex: 1;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     padding: 14px;
     gap: 5px;
     min-height: 0;
   }

   /* Three-column layout */
   .m-cols-3 {
     display: flex;
     flex: 1;
     min-height: 0;
     overflow: hidden;
   }
   .m-col {
     flex: 1;
     display: flex;
     flex-direction: column;
     padding: 8px;
     gap: 4px;
     min-height: 0;
     overflow: hidden;
   }
   .m-col--narrow {
     flex: 0.7;
   }
   .m-col--wide {
     flex: 1.6;
   }
   .m-col--border-r {
     border-right: 1px solid var(--m-border, rgba(0,0,0,0.06));
   }
   .m-col--border-l {
     border-left: 1px solid var(--m-border, rgba(0,0,0,0.06));
   }

   /* Horizontal cards strip */
   .m-hstrip {
     display: flex;
     gap: 6px;
     padding: 6px 10px;
     overflow: hidden;
     min-height: 0;
   }
   .m-hstrip > * {
     flex: 1;
     min-width: 0;
   }

   /* Badge / tag pill */
   .m-pill {
     display: inline-block;
     padding: 2.5px 7px;
     border-radius: 4px;
     background: var(--m-accent, #333);
     color: #fff;
     font-size: 4px;
     font-weight: 700;
     letter-spacing: 0.05em;
     text-transform: uppercase;
   }

   /* Code block (for tech cards) */
   .m-code {
     margin: 0 10px 6px;
     padding: 10px 12px;
     border-radius: 5px;
     background: rgba(0,0,0,0.4);
     font-family: "SF Mono", "Fira Code", monospace;
     font-size: 4.5px;
     line-height: 1.6;
     color: rgba(255,255,255,0.55);
   }
   .m-code-keyword { color: #c792ea; }
   .m-code-string { color: #c3e88d; }
   .m-code-fn { color: #82aaff; }
   .m-code-comment { color: rgba(255,255,255,0.25); font-style: italic; }

   /* Mosaic gallery (irregular grid) */
   .m-mosaic {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     grid-template-rows: repeat(2, 1fr);
     gap: 3px;
     flex: 1;
     min-height: 0;
     padding: 0 10px 8px;
   }
   .m-mosaic-big {
     grid-column: span 2;
     grid-row: span 2;
     border-radius: 4px;
     overflow: hidden;
   }
   .m-mosaic-sm {
     border-radius: 4px;
     overflow: hidden;
   }

   /* Price list (horizontal) */
   .m-pricelist {
     display: flex;
     flex-direction: column;
     gap: 4px;
     flex: 1;
   }
   .m-priceitem {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 3px 0;
     border-bottom: 1px solid var(--m-border, rgba(0,0,0,0.06));
   }
   .m-priceitem-name {
     font-size: 5.5px;
     font-weight: 500;
     color: var(--m-heading, #111);
   }
   .m-priceitem-desc {
     font-size: 4px;
     color: var(--m-heading, #111);
     opacity: 0.4;
   }
   .m-priceitem-price {
     font-size: 5.5px;
     font-weight: 700;
     color: var(--m-accent, #333);
     white-space: nowrap;
   }

   /* Horizontal features strip with icons */
   .m-features {
     display: flex;
     gap: 8px;
     padding: 8px 10px;
   }
   .m-feature {
     flex: 1;
     display: flex;
     flex-direction: column;
     gap: 3px;
   }
   .m-feature-icon {
     width: 20px;
     height: 20px;
     border-radius: 5px;
     background: var(--m-alt-bg, rgba(0,0,0,0.05));
     border: 1px solid var(--m-border, rgba(0,0,0,0.08));
   }
   .m-feature-title {
     font-size: 5px;
     font-weight: 600;
     color: var(--m-heading, #111);
   }
   .m-feature-text {
     font-size: 4px;
     color: var(--m-heading, #111);
     opacity: 0.4;
     line-height: 1.3;
   }

   /* Top nav bar */
   .m-nav {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 10px 16px;
     background: var(--m-nav-bg, var(--m-bg, #fff));
     border-bottom: 1px solid var(--m-border, rgba(0,0,0,0.06));
   }
   .m-nav-logo {
     width: 32px;
     height: 9px;
     border-radius: 2px;
     background: var(--m-accent, #333);
   }
   .m-nav-links {
     display: flex;
     gap: 8px;
   }
   .m-nav-link {
     font-size: 5px;
     color: var(--m-heading, #111);
     opacity: 0.55;
     white-space: nowrap;
   }
   .m-nav-btn {
     padding: 3.5px 8px;
     border-radius: 4px;
     background: var(--m-accent, #333);
     color: #fff;
     font-size: 5px;
     font-weight: 600;
     white-space: nowrap;
   }

   /* Hero section */
   .m-hero {
     position: relative;
     padding: 12px 14px 10px;
     background: var(--m-hero-bg, #f5f3ef);
     display: flex;
     flex-direction: column;
     gap: 4px;
   }
   .m-hero--dark {
     background: var(--m-accent, #111);
   }
   .m-hero--img {
     min-height: 70px;
     background: var(--m-hero-img, linear-gradient(135deg, var(--m-accent, #333) 0%, rgba(0,0,0,0.2) 100%));
     border-radius: 5px;
   }
   .m-hero-badge {
     font-size: 4.5px;
     font-weight: 700;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     color: var(--m-accent, #333);
     opacity: 0.7;
   }
   .m-hero-h1 {
     font-size: 13px;
     font-weight: 700;
     line-height: 1.12;
     color: var(--m-heading, #111);
     letter-spacing: -0.03em;
   }
   .m-hero-h1b {
     font-size: 13px;
     font-weight: 700;
     line-height: 1.12;
     color: var(--m-heading, #111);
     opacity: 0.7;
     letter-spacing: -0.03em;
   }
   .m-hero-p {
     font-size: 6px;
     line-height: 1.4;
     color: var(--m-heading, #111);
     opacity: 0.5;
   }
   .m-hero-p2 {
     font-size: 6px;
     line-height: 1.4;
     color: var(--m-heading, #111);
     opacity: 0.35;
   }
   .m-hero-cta {
     align-self: flex-start;
     padding: 5px 12px;
     border-radius: 5px;
     background: var(--m-accent, #333);
     color: #fff;
     font-size: 5.5px;
     font-weight: 600;
     letter-spacing: 0.02em;
     margin-top: 4px;
     white-space: nowrap;
   }

   /* Content sections */
   .m-section {
     padding: 8px 14px;
     display: flex;
     flex-direction: column;
     gap: 4px;
   }
   .m-section--alt {
     background: var(--m-alt-bg, rgba(0,0,0,0.02));
   }
   .m-section-label {
     font-size: 4.5px;
     font-weight: 700;
     letter-spacing: 0.15em;
     text-transform: uppercase;
     color: var(--m-accent, #333);
     opacity: 0.6;
   }
   .m-section-h2 {
     font-size: 10px;
     font-weight: 700;
     line-height: 1.2;
     color: var(--m-heading, #111);
     letter-spacing: -0.02em;
   }
   .m-section-p {
     font-size: 5.5px;
     line-height: 1.4;
     color: var(--m-heading, #111);
     opacity: 0.4;
   }

   /* Cards grid */
   .m-grid {
     display: grid;
     grid-template-columns: repeat(var(--cols, 3), 1fr);
     gap: 8px;
     padding: 0 14px 10px;
   }
   .m-card {
     border-radius: 5px;
     background: var(--m-card-bg, rgba(0,0,0,0.03));
     border: 1px solid var(--m-border, rgba(0,0,0,0.06));
     overflow: hidden;
   }
   .m-card-img {
     height: 36px;
     background: var(--m-card-img, linear-gradient(135deg, rgba(0,0,0,0.06), rgba(0,0,0,0.02)));
   }
   .m-card-body {
     padding: 6px 8px;
     display: flex;
     flex-direction: column;
     gap: 3px;
   }
   .m-card-title {
     font-size: 6px;
     font-weight: 600;
     line-height: 1.2;
     color: var(--m-heading, #111);
   }
   .m-card-text {
     font-size: 5px;
     line-height: 1.3;
     color: var(--m-heading, #111);
     opacity: 0.4;
   }
   .m-card-price {
     font-size: 5.5px;
     font-weight: 700;
     color: var(--m-accent, #333);
     margin-top: 2px;
   }
   .m-card-btn {
     padding: 4px 0;
     border-radius: 3px;
     background: var(--m-accent, #333);
     color: #fff;
     font-size: 5px;
     font-weight: 600;
     text-align: center;
     margin-top: 3px;
   }

   /* Stats / proof row */
   .m-stats {
     display: flex;
     justify-content: space-around;
     padding: 10px 14px;
     border-top: 1px solid var(--m-border, rgba(0,0,0,0.06));
     border-bottom: 1px solid var(--m-border, rgba(0,0,0,0.06));
   }
   .m-stat {
     text-align: center;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 3px;
   }
   .m-stat-num {
     font-size: 11px;
     font-weight: 700;
     color: var(--m-accent, #333);
     line-height: 1;
   }
   .m-stat-label {
     font-size: 4.5px;
     color: var(--m-heading, #111);
     opacity: 0.45;
     white-space: nowrap;
   }

   /* Footer */
   .m-footer {
     margin-top: auto;
     padding: 8px 14px;
     background: var(--m-footer-bg, #1a1a1a);
     display: flex;
     justify-content: space-between;
     align-items: center;
   }
   .m-footer-logo {
     width: 22px;
     height: 6px;
     border-radius: 3px;
     background: rgba(255,255,255,0.3);
   }
   .m-footer-links {
     display: flex;
     gap: 5px;
   }
   .m-footer-link {
     width: 18px;
     height: 3px;
     border-radius: 1.5px;
     background: rgba(255,255,255,0.15);
   }

   /* Gallery row (for portfolios) */
   .m-gallery {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 5px;
     padding: 0 14px 8px;
   }
   .m-gallery-item {
     aspect-ratio: 1;
     border-radius: 4px;
     background: var(--m-gallery-clr, rgba(0,0,0,0.06));
   }

   /* Testimonial */
   .m-testimonial {
     margin: 0 14px 8px;
     padding: 8px 10px;
     border-left: 3px solid var(--m-accent, #333);
     background: var(--m-card-bg, rgba(0,0,0,0.02));
     border-radius: 0 5px 5px 0;
   }
   .m-testimonial-text {
     font-size: 5px;
     line-height: 1.4;
     font-style: italic;
     color: var(--m-heading, #111);
     opacity: 0.5;
     margin-bottom: 3px;
   }
   .m-testimonial-author {
     font-size: 4.5px;
     font-weight: 600;
     color: var(--m-accent, #333);
     opacity: 0.6;
   }

   .agency-gallery-label {
     padding: 10px 18px;
     background: #1a1f26;
     font-size: 11px;
     font-weight: 600;
     color: rgba(255, 255, 255, 0.5);
     text-align: center;
     letter-spacing: 0.14em;
     text-transform: uppercase;
     font-family: var(--font-ui);
     border-top: 1px solid rgba(255,255,255,0.04);
   }

   /* Search bar component */
   .m-search {
     margin: 0 14px 8px;
     height: 14px;
     border-radius: 7px;
     background: var(--m-card-bg, rgba(0,0,0,0.04));
     border: 1px solid var(--m-border, rgba(0,0,0,0.08));
     position: relative;
   }
   .m-search::before {
     content: "";
     position: absolute;
     left: 10px;
     top: 50%;
     transform: translateY(-50%);
     width: 6px;
     height: 6px;
     border-radius: 50%;
     border: 1.5px solid var(--m-text-dim, rgba(0,0,0,0.25));
   }
   .m-search::after {
     content: "";
     position: absolute;
     left: 22px;
     top: 50%;
     transform: translateY(-50%);
     width: 40px;
     height: 3px;
     border-radius: 1.5px;
     background: var(--m-text-dim, rgba(0,0,0,0.1));
   }

   /* Icon row (features / services) */
   .m-icon-row {
     display: flex;
     justify-content: space-around;
     padding: 10px 14px;
   }
   .m-icon-item {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 4px;
   }
   .m-icon-dot {
     width: 22px;
     height: 22px;
     border-radius: 7px;
     background: var(--m-alt-bg, rgba(0,0,0,0.05));
     border: 1.5px solid var(--m-border, rgba(0,0,0,0.08));
   }
   .m-icon-dot--accent {
     background: var(--m-accent, #333);
     border: none;
     opacity: 0.15;
   }
   .m-icon-label {
     font-size: 4.5px;
     color: var(--m-heading, #111);
     opacity: 0.5;
     white-space: nowrap;
   }

   /* Form component */
   .m-form {
     margin: 0 14px 8px;
     padding: 10px;
     background: var(--m-card-bg, rgba(0,0,0,0.02));
     border-radius: 6px;
     border: 1px solid var(--m-border, rgba(0,0,0,0.06));
     display: flex;
     flex-direction: column;
     gap: 6px;
   }
   .m-form-field {
     height: 12px;
     border-radius: 4px;
     background: var(--m-bg, #fff);
     border: 1px solid var(--m-border, rgba(0,0,0,0.08));
   }
   .m-form-field--half {
     width: 48%;
   }
   .m-form-row {
     display: flex;
     gap: 6px;
   }
   .m-form-textarea {
     height: 26px;
     border-radius: 4px;
     background: var(--m-bg, #fff);
     border: 1px solid var(--m-border, rgba(0,0,0,0.08));
   }
   .m-form-submit {
     align-self: flex-start;
     padding: 5px 12px;
     border-radius: 4px;
     background: var(--m-accent, #333);
     color: #fff;
     font-size: 5px;
     font-weight: 600;
   }

   /* Banner / CTA bar */
   .m-banner {
     margin: 0 14px 8px;
     padding: 10px 12px;
     border-radius: 6px;
     background: var(--m-accent, #333);
     display: flex;
     align-items: center;
     justify-content: space-between;
   }
   .m-banner-text {
     font-size: 5.5px;
     font-weight: 600;
     color: #fff;
     white-space: nowrap;
   }
   .m-banner-btn {
     padding: 4px 10px;
     border-radius: 4px;
     background: rgba(255,255,255,0.25);
     color: #fff;
     font-size: 5px;
     font-weight: 600;
     white-space: nowrap;
   }

   /* Map placeholder */
   .m-map {
     margin: 0 10px 6px;
     height: 36px;
     border-radius: 6px;
     background: var(--m-alt-bg, rgba(0,0,0,0.04));
     border: 1px solid var(--m-border, rgba(0,0,0,0.06));
     position: relative;
     overflow: hidden;
   }
   .m-map::before {
     content: "";
     position: absolute;
     inset: 0;
     background:
       linear-gradient(90deg, transparent 49%, var(--m-border, rgba(0,0,0,0.06)) 49%, var(--m-border, rgba(0,0,0,0.06)) 51%, transparent 51%),
       linear-gradient(0deg, transparent 49%, var(--m-border, rgba(0,0,0,0.06)) 49%, var(--m-border, rgba(0,0,0,0.06)) 51%, transparent 51%);
     background-size: 25% 25%;
   }
   .m-map::after {
     content: "";
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: var(--m-accent, #333);
     box-shadow: 0 0 0 3px rgba(255,255,255,0.6), 0 0 0 5px var(--m-accent, #333);
   }

   /* Outro */
   .agency-gallery-outro {
     position: absolute;
     inset: 0;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     z-index: 20;
     text-align: center;
     pointer-events: none;
     opacity: 0;
     background: #0a0f14;
     transition: opacity 0.8s ease;
     will-change: opacity;
   }

   .agency-gallery-outro.is-visible {
     opacity: 1;
     pointer-events: auto;
   }

   .agency-gallery-outro-heading {
     font-size: clamp(1.25rem, 2.5vw, 2rem);
     font-weight: 650;
     letter-spacing: -0.02em;
     color: #fff;
   }

   .agency-gallery-outro .agency-button-primary {
     margin-top: var(--space-5);
     display: inline-block;
     font-size: var(--text-base);
     padding: 14px 32px;
   }

   /* Dark mode adjustments */
   @media (prefers-color-scheme: dark) {
     .agency-gallery-section {
       --gallery-bg: #050809;
     }
     .agency-gallery-card {
       box-shadow:
         0 0 40px rgba(210, 193, 182, 0.1),
         0 8px 32px rgba(0, 0, 0, 0.5);
     }
   }


   /* =========================================================
      CTA
      ========================================================= */

   .agency-cta-section {
     padding: var(--section-pad-y) 0;
     background: var(--surface-1);
   }
   
   .agency-cta-card {
     position: relative;
     overflow: hidden;
     padding: clamp(32px, 5vw, 64px);
     background: var(--surface-5);
     border: 1px solid var(--border-1);
     border-radius: var(--radius-lg);
     box-shadow: var(--shadow-2);
   }
   
   .agency-cta-card::before {
     content: "";
     position: absolute;
     inset: 0;
     pointer-events: none;
     background: radial-gradient(circle at top right, rgba(27, 60, 83, 0.10), transparent 36%);
   }
   
   @media (prefers-color-scheme: dark) {
     .agency-cta-card::before {
       background: radial-gradient(circle at top right, rgba(210, 193, 182, 0.10), transparent 36%);
     }
   }
   
   .agency-cta-heading {
     position: relative;
     z-index: 1;
     max-width: 18ch;
     font-size: clamp(2rem, 4.5vw, 4.4rem);
     line-height: 0.97;
     letter-spacing: -0.035em;
     font-weight: 650;
     text-wrap: balance;
   }
   
   .agency-cta-copy {
     position: relative;
     z-index: 1;
     max-width: 58ch;
     margin-top: var(--space-6);
     font-size: clamp(1rem, 1.2vw, 1.08rem);
     line-height: 1.72;
     color: var(--text-2);
   }
   
   .agency-cta-actions {
     position: relative;
     z-index: 1;
     display: flex;
     flex-wrap: wrap;
     gap: 14px;
     margin-top: var(--space-8);
   }
   
   .agency-cta-meta {
     position: relative;
     z-index: 1;
     margin-top: var(--space-6);
     font-size: var(--text-xs);
     line-height: 1.5;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: var(--text-3);
   }
   
   
   /* =========================================================
      CUSTOM FOOTER
      ========================================================= */
   
   .nilev-footer {
     background: var(--surface-2);
     color: var(--text-1);
     border-top: 1px solid var(--nilev-footer-border);
   }
   
   .nilev-footer-inner {
     max-width: var(--container);
     margin: 0 auto;
     padding: var(--space-10) var(--pad-x) var(--space-7);
   }
   
   .nilev-footer-grid {
     display: grid;
     grid-template-columns: 1.5fr 1fr 1fr 1fr;
     gap: var(--space-8);
   }
   
   /* Footer Logo */
   .nilev-footer-logo {
     display: inline-flex;
     color: var(--text-1);
     text-decoration: none;
   }
   
   .nilev-footer-logo svg {
     height: 32px;
     width: auto;
   }
   
   .nilev-footer-tagline {
     margin-top: var(--space-4);
     font-size: var(--text-sm);
     color: var(--nilev-footer-muted);
     line-height: 1.6;
     max-width: 280px;
   }
   
   /* Footer Columns */
   .nilev-footer-heading {
     margin-bottom: 14px;
     font-size: var(--text-xs);
     font-weight: 650;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     color: var(--text-1);
   }
   
   .nilev-footer-links {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: var(--space-3);
   }
   
   .nilev-footer-links li {
     font-size: var(--text-sm);
     color: var(--nilev-footer-muted);
     line-height: 1.7;
   }
   
   .nilev-footer-links a {
     color: var(--nilev-footer-muted);
     text-decoration: none;
     transition: color 180ms ease;
   }
   
   .nilev-footer-links a:hover {
     color: var(--accent);
   }
   
   /* Footer Bottom */
   .nilev-footer-bottom {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-top: var(--space-8);
     padding-top: var(--space-6);
     border-top: 1px solid var(--nilev-footer-border);
   }
   
   .nilev-footer-copy {
     font-size: var(--text-sm);
     color: var(--nilev-footer-muted);
   }
   
   .nilev-footer-legal {
     display: flex;
     gap: var(--space-6);
   }
   
   .nilev-footer-legal a {
     font-size: var(--text-sm);
     color: var(--nilev-footer-muted);
     text-decoration: none;
     transition: color 180ms ease;
   }
   
   .nilev-footer-legal a:hover {
     color: var(--accent);
   }
   
   /* Footer responsive */
   @media (max-width: 900px) {
     .nilev-footer-grid {
       grid-template-columns: 1fr 1fr;
       gap: var(--space-7);
     }
   }
   
   @media (max-width: 550px) {
     .nilev-footer-grid {
       grid-template-columns: 1fr;
     }
   
     .nilev-footer-bottom {
       flex-direction: column;
       align-items: flex-start;
       gap: var(--space-4);
     }
   }
   
   
   /* =========================================================
      REVEAL ANIMATIONS
      ========================================================= */
   
   .agency-reveal {
     opacity: 0;
     transform: translateY(32px);
     filter: blur(3px);
     transition:
       opacity 800ms cubic-bezier(.16, 1, .3, 1),
       transform 800ms cubic-bezier(.16, 1, .3, 1),
       filter 600ms cubic-bezier(.16, 1, .3, 1);
   }

   .agency-reveal.is-visible {
     opacity: 1;
     transform: translateY(0);
     filter: blur(0);
   }

   /* Stagger delays for grid children */
   .agency-reveal[data-reveal-delay="1"] {
     transition-delay: 120ms;
   }
   .agency-reveal[data-reveal-delay="2"] {
     transition-delay: 240ms;
   }
   .agency-reveal[data-reveal-delay="3"] {
     transition-delay: 360ms;
   }
   
   
   /* =========================================================
      SCREEN READER ONLY
      ========================================================= */
   
   .sr-only {
     position: absolute;
     width: 1px;
     height: 1px;
     padding: 0;
     margin: -1px;
     overflow: hidden;
     clip: rect(0, 0, 0, 0);
     white-space: nowrap;
     border: 0;
   }
   
   
   /* =========================================================
      PAGE HERO (subpages)
      ========================================================= */
   
   .agency-page-hero {
     position: relative;
     margin-inline: calc(50% - 50vw);
     padding: clamp(100px, 12vw, 160px) 0 var(--section-pad-y);
     background: var(--surface-1);
   }
   
   .agency-page-hero-compact {
     padding-top: clamp(80px, 10vw, 120px);
     padding-bottom: clamp(48px, 6vw, 72px);
   }
   
   .agency-page-hero-inner {
     max-width: 760px;
   }
   
   .agency-page-hero-heading {
     max-width: 22ch;
     font-size: clamp(2.2rem, 4.5vw, 4.4rem);
     line-height: 0.97;
     letter-spacing: -0.04em;
     font-weight: 650;
     text-wrap: balance;
   }
   
   .agency-page-hero-copy {
     max-width: 58ch;
     margin-top: var(--space-6);
     font-size: clamp(1rem, 1.2vw, 1.08rem);
     line-height: 1.72;
     color: var(--text-2);
   }
   
   
   /* =========================================================
      APPROACH (Über uns page)
      ========================================================= */
   
   .agency-approach-section {
     position: relative;
     margin-inline: calc(50% - 50vw);
     padding: var(--section-pad-y) 0;
     background: var(--surface-2);
   }
   
   .agency-approach-grid {
     display: grid;
     grid-template-columns: 0.85fr 1.15fr;
     gap: clamp(32px, 5vw, 64px);
     align-items: start;
   }
   
   .agency-approach-heading {
     max-width: 14ch;
     font-size: clamp(1.8rem, 3.5vw, 3rem);
     line-height: 1;
     letter-spacing: -0.035em;
     font-weight: 650;
   }
   
   .agency-approach-lead {
     max-width: 36ch;
     margin-top: var(--space-6);
     font-size: var(--text-base);
     line-height: 1.72;
     color: var(--text-2);
   }
   
   .agency-approach-text {
     max-width: 58ch;
     font-size: var(--text-base);
     line-height: 1.78;
     color: var(--text-2);
   }
   
   .agency-approach-text + .agency-approach-text {
     margin-top: var(--space-6);
   }
   
   
   /* =========================================================
      VALUES (Über uns page)
      ========================================================= */
   
   .agency-values-section {
     position: relative;
     margin-inline: calc(50% - 50vw);
     padding: var(--section-pad-y) 0;
     background: var(--surface-1);
   }
   
   .agency-values-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: var(--space-6);
   }
   
   .agency-value-card {
     padding: var(--space-7);
     background: var(--surface-3);
     border: 1px solid var(--border-1);
     border-radius: var(--radius-md);
     box-shadow: var(--shadow-1);
   }
   
   .agency-value-title {
     font-size: var(--text-xl);
     line-height: 1.12;
     letter-spacing: -0.02em;
     font-weight: 650;
   }
   
   .agency-value-text {
     margin-top: var(--space-3);
     font-size: var(--text-base);
     line-height: 1.72;
     color: var(--text-2);
   }
   
   
   /* =========================================================
      TEAM (Über uns page)
      ========================================================= */
   
   .agency-team-section {
     position: relative;
     margin-inline: calc(50% - 50vw);
     padding: var(--section-pad-y) 0;
     background: var(--surface-2);
   }
   
   .agency-team-grid {
     max-width: 560px;
   }
   
   .agency-team-grid-two {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: var(--space-7);
     max-width: 780px;
   }
   
   .agency-team-card {
     display: grid;
     grid-template-columns: 160px 1fr;
     gap: var(--space-7);
     align-items: start;
     padding: var(--space-7);
     background: var(--surface-3);
     border: 1px solid var(--border-1);
     border-radius: var(--radius-lg);
     box-shadow: var(--shadow-1);
   }
   
   .agency-team-photo {
     aspect-ratio: 1;
     border-radius: var(--radius-md);
     overflow: hidden;
     background: var(--surface-4);
   }
   
   .agency-team-photo-placeholder {
     display: grid;
     place-items: center;
     height: 100%;
     font-size: var(--text-xs);
     letter-spacing: 0.14em;
     text-transform: uppercase;
     color: var(--text-3);
   }
   
   .agency-team-name {
     font-size: var(--text-xl);
     font-weight: 650;
     line-height: 1;
     letter-spacing: -0.02em;
   }
   
   .agency-team-role {
     margin-top: var(--space-2);
     font-size: var(--text-xs);
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: var(--text-3);
     line-height: 1.4;
   }
   
   .agency-team-bio {
     margin-top: var(--space-4);
     font-size: var(--text-base);
     line-height: 1.72;
     color: var(--text-2);
   }
   
   
   /* =========================================================
      HOW WE WORK (Über uns page)
      ========================================================= */
   
   .agency-howwork-section {
     position: relative;
     margin-inline: calc(50% - 50vw);
     padding: var(--section-pad-y) 0;
     background: var(--surface-1);
   }
   
   .agency-howwork-card {
     padding: clamp(28px, 4vw, 48px);
     background: var(--surface-4);
     border: 1px solid var(--border-1);
     border-radius: var(--radius-lg);
     box-shadow: var(--shadow-1);
   }
   
   .agency-howwork-heading {
     max-width: 22ch;
     font-size: clamp(1.8rem, 3.5vw, 3rem);
     line-height: 1;
     letter-spacing: -0.035em;
     font-weight: 650;
   }
   
   .agency-howwork-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: var(--space-6);
     margin-top: var(--space-9);
   }
   
   .agency-howwork-item {
     padding: var(--space-5);
     background: var(--surface-3);
     border: 1px solid var(--border-1);
     border-radius: var(--radius-sm);
   }
   
   .agency-howwork-item-title {
     font-size: var(--text-base);
     font-weight: 650;
     line-height: 1.2;
   }
   
   .agency-howwork-item-text {
     margin-top: var(--space-2);
     font-size: var(--text-sm);
     line-height: 1.68;
     color: var(--text-2);
   }
   
   
   /* =========================================================
      CONTACT FORM (Kontakt page)
      ========================================================= */
   
   .agency-contact-section {
     position: relative;
     margin-inline: calc(50% - 50vw);
     padding: var(--section-pad-y) 0;
     background: var(--surface-2);
   }
   
   .agency-contact-grid {
     display: grid;
     grid-template-columns: 1.3fr 0.7fr;
     gap: clamp(32px, 5vw, 64px);
     align-items: start;
   }
   
   .agency-contact-form {
     display: grid;
     gap: var(--space-5);
   }
   
   .agency-form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: var(--space-5);
   }
   
   .agency-form-field {
     display: flex;
     flex-direction: column;
     gap: var(--space-2);
   }
   
   .agency-form-label {
     font-size: var(--text-xs);
     font-weight: 600;
     letter-spacing: 0.06em;
     text-transform: uppercase;
     color: var(--text-3);
   }
   
   .agency-form-input,
   .agency-form-select,
   .agency-form-textarea {
     width: 100%;
     padding: var(--space-3) var(--space-4);
     background: var(--surface-3);
     border: 1px solid var(--border-1);
     border-radius: var(--radius-sm);
     font-family: var(--font-ui);
     font-size: var(--text-base);
     line-height: 1.5;
     color: var(--text-1);
     transition: border-color 180ms ease, box-shadow 180ms ease;
     -webkit-appearance: none;
     appearance: none;
   }
   
   .agency-form-input::placeholder,
   .agency-form-textarea::placeholder {
     color: var(--text-3);
   }
   
   .agency-form-input:focus,
   .agency-form-select:focus,
   .agency-form-textarea:focus {
     outline: none;
     border-color: var(--accent);
     box-shadow: var(--focus-ring);
   }
   
   .agency-form-select {
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
     background-repeat: no-repeat;
     background-position: right 14px center;
     padding-right: 36px;
     cursor: pointer;
   }
   
   .agency-form-textarea {
     resize: vertical;
     min-height: 120px;
   }
   
   .agency-form-submit {
     justify-self: start;
     margin-top: var(--space-2);
   }
   
   .agency-form-note {
     font-size: var(--text-xs);
     line-height: 1.5;
     color: var(--text-3);
   }
   
   /* Contact details sidebar */
   .agency-contact-details {
     display: grid;
     gap: var(--space-7);
     align-content: start;
   }
   
   .agency-contact-block-title {
     margin-bottom: var(--space-2);
     font-size: var(--text-xs);
     font-weight: 650;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: var(--text-3);
   }
   
   .agency-contact-block-text {
     font-size: var(--text-base);
     line-height: 1.5;
     color: var(--text-1);
   }
   
   .agency-contact-block-text a {
     text-decoration: underline;
     text-underline-offset: 3px;
     text-decoration-color: var(--border-1);
     transition: text-decoration-color 180ms ease;
   }
   
   .agency-contact-block-text a:hover {
     text-decoration-color: var(--accent);
   }
   
   .agency-contact-expect {
     padding: var(--space-6);
     background: var(--surface-3);
     border: 1px solid var(--border-1);
     border-radius: var(--radius-md);
   }
   
   .agency-contact-steps {
     list-style: none;
     counter-reset: contact-step;
     display: grid;
     gap: var(--space-4);
     margin-top: var(--space-4);
   }
   
   .agency-contact-steps li {
     counter-increment: contact-step;
     position: relative;
     padding-left: 32px;
     font-size: var(--text-sm);
     line-height: 1.68;
     color: var(--text-2);
   }
   
   .agency-contact-steps li::before {
     content: counter(contact-step);
     position: absolute;
     left: 0;
     top: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     width: 22px;
     height: 22px;
     border-radius: 50%;
     background: var(--accent-ghost);
     font-size: 0.7rem;
     font-weight: 650;
     color: var(--accent);
   }
   
   
   /* =========================================================
      FAQ (Kontakt page)
      ========================================================= */
   
   .agency-faq-section {
     position: relative;
     margin-inline: calc(50% - 50vw);
     padding: var(--section-pad-y) 0;
     background: var(--surface-1);
   }
   
   .agency-faq-list {
     display: grid;
     gap: var(--space-3);
   }
   
   .agency-faq-item {
     background: var(--surface-3);
     border: 1px solid var(--border-1);
     border-radius: var(--radius-sm);
     overflow: hidden;
     transition: box-shadow 220ms ease;
   }
   
   .agency-faq-item[open] {
     box-shadow: var(--shadow-1);
   }
   
   .agency-faq-question {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: var(--space-4);
     padding: var(--space-5) var(--space-6);
     cursor: pointer;
     list-style: none;
     font-size: var(--text-base);
     font-weight: 600;
     line-height: 1.4;
     color: var(--text-1);
     transition: color 180ms ease;
   }
   
   .agency-faq-question::-webkit-details-marker {
     display: none;
   }
   
   .agency-faq-question::marker {
     content: "";
   }
   
   .agency-faq-question:hover {
     color: var(--accent);
   }
   
   .agency-faq-icon {
     flex-shrink: 0;
     width: 20px;
     height: 20px;
     position: relative;
   }
   
   .agency-faq-icon::before,
   .agency-faq-icon::after {
     content: "";
     position: absolute;
     top: 50%;
     left: 50%;
     background: currentColor;
     border-radius: 1px;
     transition: transform 220ms ease;
   }
   
   .agency-faq-icon::before {
     width: 14px;
     height: 2px;
     transform: translate(-50%, -50%);
   }
   
   .agency-faq-icon::after {
     width: 2px;
     height: 14px;
     transform: translate(-50%, -50%);
   }
   
   .agency-faq-item[open] .agency-faq-icon::after {
     transform: translate(-50%, -50%) rotate(90deg);
   }
   
   .agency-faq-answer {
     padding: 0 var(--space-6) var(--space-6);
   }
   
   .agency-faq-answer p {
     max-width: 62ch;
     font-size: var(--text-sm);
     line-height: 1.75;
     color: var(--text-2);
   }
   
   
   /* =========================================================
      ACCESSIBILITY
      ========================================================= */
   
   a:focus-visible,
   button:focus-visible {
     outline: none;
     box-shadow: var(--focus-ring);
   }
   
   
   /* =========================================================
      DARK MODE FORM FIXES
      ========================================================= */
   
   @media (prefers-color-scheme: dark) {
     .agency-form-select {
       background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23aaa' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
     }
   }
   
   
   /* =========================================================
      BOOKING SECTION (Kontakt page)
      ========================================================= */
   
   .agency-booking-section {
     position: relative;
     margin-inline: calc(50% - 50vw);
     padding: var(--section-pad-y) 0;
     background: var(--surface-2);
   }
   
   .agency-booking-embed {
     max-width: 900px;
     margin: 0 auto;
   }
   
   .agency-booking-embed iframe {
     width: 100%;
     border: none;
     overflow: hidden;
     min-height: 700px;
     border-radius: var(--radius-md);
   }
   
   
   /* =========================================================
      FORM SUCCESS STATE
      ========================================================= */
   
   .agency-form-success {
     text-align: center;
     padding: var(--space-9) var(--space-6);
   }
   
   .agency-form-success[hidden] {
     display: none;
   }
   
   .agency-form-success h3 {
     margin-bottom: var(--space-2);
     font-size: var(--text-xl);
     font-weight: 650;
     color: var(--text-1);
   }
   
   .agency-form-success p {
     max-width: 48ch;
     margin: 0 auto;
     font-size: var(--text-base);
     line-height: 1.72;
     color: var(--text-2);
   }
   
   .agency-form-success svg {
     margin: 0 auto var(--space-4);
     display: block;
   }
   
   
   /* =========================================================
      UTILITY CLASSES
      ========================================================= */
   
   .agency-copy-centered {
     margin-inline: auto;
   }
   
   
   /* =========================================================
      WORDPRESS / ASTRA OVERRIDES
      ========================================================= */
   
   /* Prevent Astra & Spectra from overriding our design system */
   body .entry-content > *,
   body .ast-container > * {
     font-family: var(--font-ui);
   }
   
   /* Reset Astra heading color overrides */
   .entry-content h1,
   .entry-content h2,
   .entry-content h3,
   .entry-content h4,
   .entry-content h5,
   .entry-content h6 {
     color: var(--text-1);
   }
   
   /* Reset Astra link colors inside content */
   .entry-content a:not(.agency-button) {
     color: inherit;
   }
   
   /* Prevent Astra container from conflicting with our layout */
   .ast-container {
     max-width: none;
     padding: 0;
   }
   
   /* Neutralize any Spectra block spacing */
   .wp-block-uagb-container {
     padding: 0;
   }
   
   /* Ensure our sections break out of WP container properly
      CRITICAL: overflow:hidden on ANY ancestor breaks position:sticky */
   body .entry-content,
   body .ast-container,
   body .wp-block-uagb-container,
   body .ast-article-single,
   body .site-content,
   body .ast-single-post,
   body article.page,
   body article.post {
     overflow: visible !important;
   }
   
   
   /* =========================================================
      RESPONSIVE
      ========================================================= */
   
   @media (max-width: 980px) {
     .agency-services-grid,
     .agency-trust-card,
     .agency-solution-card,
     .agency-approach-grid,
     .agency-contact-grid {
       grid-template-columns: 1fr;
     }
     .agency-modules-grid,
     .agency-values-grid,
     .agency-howwork-grid {
       grid-template-columns: 1fr;
     }
     .agency-configurator {
       grid-template-columns: 1fr;
     }
     .agency-config-summary {
       position: static;
     }
     .agency-problem-grid {
       grid-template-columns: repeat(2, 1fr);
     }
   }
   
   @media (max-width: 767px) {
     .agency-hero-content {
       margin-top: -10svh;
       border-top-left-radius: 24px;
       border-top-right-radius: 24px;
     }
     .agency-hero-logo {
       width: clamp(200px, 76vw, 480px);
     }
     .agency-hero-actions,
     .agency-cta-actions {
       gap: var(--space-3);
     }
     .agency-hero-actions .agency-button,
     .agency-cta-actions .agency-button {
       width: 100%;
     }
     .agency-process-list {
       padding-left: 54px;
     }
     .agency-process-marker {
       left: -42px;
     }
     .agency-problem-grid {
       grid-template-columns: 1fr;
     }
     .agency-form-row {
       grid-template-columns: 1fr;
     }
     .agency-config-module {
       padding: var(--space-4);
     }
     .agency-config-module-price {
       font-size: 0.68rem;
     }
     .agency-team-grid-two {
       grid-template-columns: 1fr;
     }
     .agency-team-card {
       grid-template-columns: 1fr;
       text-align: center;
     }
     .agency-team-photo {
       max-width: 160px;
       margin: 0 auto;
     }
     .agency-solution-stack {
       gap: var(--space-2);
     }
     .agency-solution-tag {
       font-size: var(--text-xs);
       padding: var(--space-2) var(--space-3);
     }
     /* Gallery responsive */
     .agency-gallery-section {
       height: 400vh;
     }
     .agency-gallery-stack {
       width: clamp(300px, 85vw, 500px);
     }
     .agency-gallery-heading {
       font-size: clamp(1.5rem, 7vw, 2.2rem);
     }
     .agency-gallery-chrome {
       padding: 5px 8px;
       gap: 4px;
     }
     .agency-gallery-dot {
       width: 5px;
       height: 5px;
     }
     .agency-gallery-url {
       font-size: 7px;
     }
     .agency-gallery-label {
       font-size: 8px;
       padding: 4px 8px;
     }
   }


   /* =========================================================
      GRADIENT ORBS
      ========================================================= */
   
   @keyframes orbFloat1 {
     0%, 100% { transform: translate(0, 0) scale(1); }
     33%      { transform: translate(30px, -20px) scale(1.05); }
     66%      { transform: translate(-20px, 15px) scale(0.95); }
   }
   
   @keyframes orbFloat2 {
     0%, 100% { transform: translate(0, 0) scale(1); }
     33%      { transform: translate(-25px, 25px) scale(0.95); }
     66%      { transform: translate(20px, -15px) scale(1.05); }
   }
   
   /* Hero orbs */
   .agency-hero-scene::before,
   .agency-hero-scene::after {
     content: "";
     position: absolute;
     pointer-events: none;
     border-radius: 50%;
     filter: blur(80px);
     opacity: 0.12;
     z-index: 0;
   }
   
   .agency-hero-scene::before {
     width: min(500px, 50vw);
     height: min(500px, 50vw);
     top: -6%;
     right: -5%;
     background: var(--accent);
     animation: orbFloat1 25s ease-in-out infinite;
   }
   
   .agency-hero-scene::after {
     width: min(400px, 42vw);
     height: min(400px, 42vw);
     bottom: 20%;
     left: -8%;
     background: var(--accent-2);
     animation: orbFloat2 30s ease-in-out infinite;
   }
   
   /* CTA orbs */
   .agency-cta-section::before,
   .agency-cta-section::after {
     content: "";
     position: absolute;
     pointer-events: none;
     border-radius: 50%;
     filter: blur(80px);
     opacity: 0.10;
     z-index: 0;
   }
   
   .agency-cta-section::before {
     width: min(420px, 45vw);
     height: min(420px, 45vw);
     top: -20%;
     left: -6%;
     background: var(--accent-2);
     animation: orbFloat2 28s ease-in-out infinite;
   }
   
   .agency-cta-section::after {
     width: min(360px, 38vw);
     height: min(360px, 38vw);
     bottom: -15%;
     right: -4%;
     background: var(--accent);
     animation: orbFloat1 22s ease-in-out infinite;
   }
   
   @media (prefers-color-scheme: dark) {
     .agency-hero-scene::before,
     .agency-hero-scene::after { opacity: 0.07; }
     .agency-cta-section::before,
     .agency-cta-section::after { opacity: 0.05; }
   }
   
   
   /* =========================================================
      3D CARD TILT
      ========================================================= */
   
   .agency-service-card,
   .agency-module-card,
   .agency-value-card,
   .agency-problem-card {
     transform-style: preserve-3d;
   }
   
   /* Shine overlay — positioned via JS custom properties */
   .agency-service-card::after,
   .agency-module-card::after,
   .agency-value-card::after,
   .agency-problem-card::after {
     content: "";
     position: absolute;
     inset: 0;
     pointer-events: none;
     border-radius: inherit;
     opacity: 0;
     transition: opacity 220ms ease;
     background: radial-gradient(
       circle at var(--shine-x, 50%) var(--shine-y, 50%),
       rgba(255, 255, 255, 0.18),
       transparent 60%
     );
   }
   
   /* Cards need position:relative for the ::after overlay */
   .agency-module-card,
   .agency-value-card,
   .agency-problem-card {
     position: relative;
   }
   
   .agency-service-card.is-tilting::after,
   .agency-module-card.is-tilting::after,
   .agency-value-card.is-tilting::after,
   .agency-problem-card.is-tilting::after {
     opacity: 1;
   }
   
   @media (prefers-color-scheme: dark) {
     .agency-service-card::after,
     .agency-module-card::after,
     .agency-value-card::after,
     .agency-problem-card::after {
       background: radial-gradient(
         circle at var(--shine-x, 50%) var(--shine-y, 50%),
         rgba(255, 255, 255, 0.08),
         transparent 60%
       );
     }
   }
   
   
   /* =========================================================
      ANIMATED COUNTERS
      ========================================================= */
   
   .agency-proof-number[data-count-target] {
     font-variant-numeric: tabular-nums;
   }
   
   
   /* =========================================================
      REDUCED MOTION
      ========================================================= */
   
   @media (prefers-reduced-motion: reduce) {
     html {
       scroll-behavior: auto;
     }
     .agency-reveal,
     .agency-button,
     .agency-service-card,
     .agency-module-card,
     .agency-value-card,
     .agency-problem-card,
     .agency-hero-logo-wrap,
     .agency-hero-logo {
       transition: none !important;
       animation: none !important;
       transform: none !important;
     }
     .agency-reveal {
       opacity: 1 !important;
     }
     .agency-hero-logo {
       opacity: 1 !important;
     }
     .agency-button:hover,
     .agency-service-card:hover {
       transform: none !important;
     }
     /* Disable hero effects */
     .agency-hero-stage::before,
     .agency-hero-stage::after,
     .agency-hero-logo-wrap::before,
     .agency-hero-logo-wrap::after,
     .agency-hero-particle,
     .agency-hero-scene::before,
     .agency-hero-scene::after,
     .agency-cta-section::before,
     .agency-cta-section::after {
       animation: none !important;
       display: none !important;
     }
     .agency-hero-logo-shape {
       background: currentColor !important;
       animation: none !important;
     }
     .agency-hero-kicker {
       opacity: 1 !important;
       animation: none !important;
     }
     /* Disable tilt shine */
     .is-tilting::after {
       opacity: 0 !important;
     }
     /* Disable gallery scroll animation */
     .agency-gallery-section {
       height: auto !important;
     }
     .agency-gallery-viewport {
       position: relative !important;
       height: auto !important;
       flex-direction: column !important;
       gap: var(--space-5);
       padding: var(--space-8) 0;
     }
     .agency-gallery-stack {
       display: flex !important;
       flex-direction: column !important;
       gap: var(--space-5);
       aspect-ratio: auto !important;
     }
     .agency-gallery-card {
       position: relative !important;
       opacity: 1 !important;
       transform: none !important;
     }
     .agency-gallery-intro {
       position: relative !important;
       transform: none !important;
       top: auto !important;
       left: auto !important;
       padding: var(--space-9) var(--space-6);
     }
     .agency-gallery-outro {
       position: relative !important;
       opacity: 1 !important;
       pointer-events: auto !important;
       height: auto !important;
       padding: var(--space-8) var(--space-6);
     }
     .agency-hero-scene {
       min-height: 100svh;
     }
     @supports not (height: 100svh) {
       .agency-hero-scene { min-height: 100vh; }
     }
   }
   
   /* =========================================================
      NILEV V6 — CLEAN DISTINCTIVE INDEX LAYER
      ========================================================= */
   
   :root {
     --nilev-hero-glow-1: rgba(210, 193, 182, 0.16);
     --nilev-hero-glow-2: rgba(27, 60, 83, 0.12);
     --nilev-section-wash: rgba(27, 60, 83, 0.04);
     --nilev-section-wash-2: rgba(210, 193, 182, 0.12);
     --nilev-card-border: rgba(16, 18, 20, 0.08);
     --nilev-card-shadow: 0 18px 42px rgba(16, 18, 20, 0.05), inset 0 1px 0 rgba(255,255,255,0.78);
     --nilev-card-shadow-hover: 0 24px 54px rgba(16, 18, 20, 0.07), inset 0 1px 0 rgba(255,255,255,0.88);
     --nilev-card-bg: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.90));
     --nilev-card-bg-soft: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(250,248,243,0.82));
   }
   
   /* Shared visual language between hero and the rest */
   .agency-hero-scene,
   .agency-proof-section,
   .agency-problem-section,
   .agency-solution-section,
   .agency-services-section,
   .agency-process-section,
   .agency-trust-section,
   .agency-cta-section {
     position: relative;
     overflow: clip;
   }
   
   .agency-hero-scene {
     isolation: isolate;
     background:
       radial-gradient(circle at 12% 20%, var(--nilev-hero-glow-1), transparent 24%),
       radial-gradient(circle at 84% 14%, var(--nilev-hero-glow-2), transparent 28%),
       linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.24)),
       var(--surface-1);
   }
   
   .agency-proof-section,
   .agency-problem-section,
   .agency-solution-section,
   .agency-services-section,
   .agency-process-section,
   .agency-trust-section,
   .agency-cta-section {
     background:
       radial-gradient(circle at 100% 0%, var(--nilev-section-wash), transparent 34%),
       radial-gradient(circle at 0% 100%, var(--nilev-section-wash-2), transparent 32%),
       var(--surface-2);
   }
   
   .agency-solution-section,
   .agency-cta-section {
     background:
       radial-gradient(circle at 100% 0%, rgba(27, 60, 83, 0.05), transparent 34%),
       radial-gradient(circle at 0% 100%, rgba(210, 193, 182, 0.10), transparent 30%),
       var(--surface-1);
   }
   
   /* Keep hero crisp and remove decorative square */
   .agency-hero-logo {
     transform: none !important;
     filter: none !important;
   }
   
   .agency-hero-logo-svg {
     transform: none !important;
     filter: none !important;
     shape-rendering: geometricPrecision;
     backface-visibility: visible;
     transform-box: fill-box;
   }
   
   .agency-hero-logo-wrap {
     position: relative;
     z-index: 2;
   }
   
   .agency-hero-logo-wrap::before {
     content: "";
     position: absolute;
     inset: 12% -8%;
     z-index: -1;
     border-radius: 50%;
     background: radial-gradient(circle at center, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.16) 45%, transparent 72%);
     pointer-events: none;
   }
   
   .agency-hero-content {
     overflow: hidden;
   }
   
   .agency-hero-content::before {
     content: "";
     position: absolute;
     inset: 0 auto 0 0;
     width: min(320px, 28vw);
     background: linear-gradient(180deg, rgba(27, 60, 83, 0.07), transparent 72%);
     pointer-events: none;
   }
   
   .agency-hero-content::after {
     content: none;
   }
   
   /* Signal band stays distinctive but cleaner */
   .agency-signal-band {
     position: relative;
     overflow: hidden;
     border-top: 1px solid var(--border-1);
     border-bottom: 1px solid var(--border-1);
     background: linear-gradient(90deg, rgba(27,60,83,0.05), rgba(210,193,182,0.12), rgba(27,60,83,0.05));
     padding: var(--space-4) 0;
   }

   .agency-signal-band__track {
     display: flex;
     width: max-content;
     animation: signalBandScroll 22s linear infinite;
   }

   .agency-signal-band__group {
     display: flex;
     gap: var(--space-9);
     padding-right: var(--space-9);
     flex-shrink: 0;
   }

   .agency-signal-band__group span {
     font-size: clamp(1rem, 1.8vw, 1.4rem);
     font-weight: 650;
     letter-spacing: 0.06em;
     text-transform: uppercase;
     color: var(--text-2);
     white-space: nowrap;
     transition: color 0.3s ease, text-shadow 0.3s ease;
   }

   .agency-signal-band__group span:hover {
     color: var(--accent);
     text-shadow: 0 0 30px rgba(27, 60, 83, 0.15);
   }

   /* Separator dot between items */
   .agency-signal-band__group span::after {
     content: "·";
     margin-left: var(--space-9);
     color: var(--accent-2);
     opacity: 0.5;
   }
   .agency-signal-band__group span:last-child::after {
     content: none;
   }

   @keyframes signalBandScroll {
     0% { transform: translateX(0); }
     100% { transform: translateX(-50%); }
   }
   
   /* Remove experimental ghost labels and section corner boxes */
   .agency-section-intro-centered {
     position: relative;
   }
   
   .agency-section-intro-centered::before {
     content: none !important;
   }
   
   .agency-section-intro-centered::after {
     content: "";
     display: block;
     width: 84px;
     height: 2px;
     margin: 22px auto 0;
     border-radius: 999px;
     background: linear-gradient(90deg, rgba(27,60,83,0.92), rgba(210,193,182,0.82));
     opacity: 0.92;
   }
   
   .agency-problem-section::before,
   .agency-services-section::before,
   .agency-process-section::before,
   .agency-trust-section::before {
     content: none !important;
   }
   
   .agency-problem-section::after,
   .agency-services-section::after,
   .agency-process-section::after,
   .agency-trust-section::after {
     content: "";
     position: absolute;
     pointer-events: none;
     z-index: 0;
     width: min(440px, 40vw);
     height: min(440px, 40vw);
     border-radius: 50%;
     filter: blur(70px);
     opacity: 0.20;
   }
   
   .agency-problem-section::after {
     top: -14%;
     right: -10%;
     background: radial-gradient(circle, rgba(27,60,83,0.18), transparent 66%);
   }
   
   .agency-services-section::after {
     bottom: -18%;
     left: -10%;
     background: radial-gradient(circle, rgba(210,193,182,0.26), transparent 66%);
   }
   
   .agency-process-section::after {
     top: 8%;
     left: 50%;
     transform: translateX(-50%);
     background: radial-gradient(circle, rgba(125,145,160,0.18), transparent 70%);
   }
   
   .agency-proof-section::after,
   .agency-solution-section::after,
   .agency-cta-section::after {
     content: "";
     position: absolute;
     inset: 0 auto auto 50%;
     width: min(1120px, 92vw);
     height: 1px;
     transform: translateX(-50%);
     background: linear-gradient(90deg, transparent, rgba(16,18,20,0.10), transparent);
     pointer-events: none;
     z-index: 0;
   }
   
   .agency-proof-section > *,
   .agency-problem-section > *,
   .agency-solution-section > *,
   .agency-services-section > *,
   .agency-process-section > *,
   .agency-trust-section > *,
   .agency-cta-section > * {
     position: relative;
     z-index: 1;
   }
   
   /* Quiet premium cards — no stripes, no gimmicks */
   .agency-problem-grid,
   .agency-services-grid {
     gap: clamp(18px, 2vw, 24px);
   }
   
   .agency-problem-card,
   .agency-service-card,
   .agency-solution-card,
   .agency-trust-card,
   .agency-cta-card {
     border-color: var(--nilev-card-border);
     box-shadow: var(--nilev-card-shadow);
   }
   
   .agency-problem-card,
   .agency-service-card {
     position: relative;
     overflow: hidden;
     isolation: isolate;
     min-height: 100%;
     border: 1px solid var(--nilev-card-border);
     box-shadow: var(--nilev-card-shadow);
     background: var(--nilev-card-bg);
   }
   
   .agency-problem-card::before,
   .agency-service-card::before {
     content: "";
     position: absolute;
     inset: 0;
     background:
       radial-gradient(circle at 100% 0%, rgba(27,60,83,0.04), transparent 44%),
       linear-gradient(180deg, rgba(255,255,255,0.05), transparent 30%);
     z-index: 0;
     opacity: 1;
   }
   
   .agency-problem-card::after,
   .agency-service-card::after {
     content: none;
   }
   
   .agency-problem-card > *,
   .agency-service-card > * {
     position: relative;
     z-index: 1;
     transform: none !important;
   }
   
   .agency-problem-card:hover,
   .agency-service-card:hover {
     border-color: rgba(16,18,20,0.10);
     box-shadow: var(--nilev-card-shadow-hover);
   }
   
   .agency-problem-card:hover::before,
   .agency-service-card:hover::before,
   .agency-problem-card.is-tilting::before,
   .agency-service-card.is-tilting::before {
     opacity: 1;
     transform: none;
   }
   
   .agency-problem-card .agency-problem-icon,
   .agency-service-card .agency-service-icon {
     width: 48px;
     height: 48px;
     border-radius: 14px;
     background: rgba(27,60,83,0.08);
     box-shadow: inset 0 1px 0 rgba(255,255,255,0.62);
   }
   
   /* Process stays the strongest interaction language */
   .agency-process-list {
     --process-axis: 16px;
     --process-list-padding: 72px;
     --process-marker-size: 16px;
     position: relative;
     padding-left: var(--process-list-padding);
   }
   
   .agency-process-list::before {
     content: "";
     position: absolute;
     left: var(--process-axis);
     top: 22px;
     bottom: 22px;
     width: 2px;
     background: linear-gradient(180deg, rgba(27,60,83,0.30), rgba(27,60,83,0.08));
   }
   
   .agency-process-step {
     position: relative;
     margin-bottom: clamp(18px, 2vw, 26px);
     padding: 24px 24px 26px;
     border: 1px solid rgba(16,18,20,0.08);
     border-radius: 26px;
     background: var(--nilev-card-bg-soft);
     box-shadow: 0 20px 48px rgba(16,18,20,0.06), inset 0 1px 0 rgba(255,255,255,0.85);
     transform-style: flat;
   }
   
   .agency-process-step:nth-child(n) {
     transform: none;
   }
   
   .agency-process-marker {
     position: absolute;
     top: 26px;
     left: calc((var(--process-axis) - var(--process-list-padding)) - (var(--process-marker-size) / 2));
     width: var(--process-marker-size);
     height: var(--process-marker-size);
     border-radius: 50%;
     background: linear-gradient(180deg, rgba(27,60,83,1), rgba(42,84,112,1));
     border: 2px solid rgba(255,255,255,0.92);
     box-shadow: 0 0 0 6px rgba(210,193,182,0.18), 0 10px 24px rgba(27,60,83,0.16);
     z-index: 3;
   }
   
   /* Remove transform-heavy surface gimmicks */
   .agency-proof-item,
   .agency-process-step,
   .agency-problem-card,
   .agency-service-card {
     transition: border-color 220ms ease, box-shadow 260ms ease, background 260ms ease;
     will-change: auto;
   }
   
   .agency-service-card::after,
   .agency-module-card::after,
   .agency-value-card::after,
   .agency-problem-card::after,
   .agency-process-step::after,
   .agency-proof-item::after {
     content: none;
   }
   
   /* Dark mode consistency */
   @media (prefers-color-scheme: dark) {
     :root {
       --nilev-hero-glow-1: rgba(210, 193, 182, 0.10);
       --nilev-hero-glow-2: rgba(210, 193, 182, 0.08);
       --nilev-section-wash: rgba(255,255,255,0.03);
       --nilev-section-wash-2: rgba(210,193,182,0.06);
       --nilev-card-border: rgba(255,255,255,0.08);
       --nilev-card-shadow: 0 22px 48px rgba(0,0,0,0.26), inset 0 1px 0 rgba(255,255,255,0.04);
       --nilev-card-shadow-hover: 0 26px 56px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.06);
       --nilev-card-bg: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.030));
       --nilev-card-bg-soft: linear-gradient(180deg, rgba(255,255,255,0.060), rgba(255,255,255,0.032));
     }
   
     .agency-hero-scene {
       background:
         radial-gradient(circle at 12% 20%, var(--nilev-hero-glow-1), transparent 24%),
         radial-gradient(circle at 84% 14%, var(--nilev-hero-glow-2), transparent 28%),
         linear-gradient(180deg, rgba(6,7,8,0.80), rgba(6,7,8,0.58)),
         var(--surface-1);
     }
   
     .agency-hero-logo-wrap::before {
       background: radial-gradient(circle at center, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 45%, transparent 72%);
     }
   
     .agency-signal-band {
       background: linear-gradient(90deg, rgba(210,193,182,0.05), rgba(255,255,255,0.025), rgba(210,193,182,0.05));
       border-color: rgba(255,255,255,0.06);
     }
   
     .agency-section-intro-centered::after {
       background: linear-gradient(90deg, rgba(210,193,182,0.9), rgba(255,255,255,0.7));
     }
   
     .agency-proof-section::after,
     .agency-solution-section::after,
     .agency-cta-section::after {
       background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
     }
   
     .agency-problem-card,
     .agency-service-card,
     .agency-process-step {
       background: var(--nilev-card-bg);
       border-color: var(--nilev-card-border);
       box-shadow: var(--nilev-card-shadow);
     }
   
     .agency-problem-card .agency-problem-icon,
     .agency-service-card .agency-service-icon {
       background: linear-gradient(180deg, rgba(210,193,182,0.12), rgba(255,255,255,0.05));
       box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
     }
   }
   
   @media (max-width: 767px) {
     .agency-hero-content::after {
       display: none;
     }
   
     .agency-process-list {
       --process-list-padding: 56px;
       --process-axis: 14px;
       --process-marker-size: 14px;
     }
   
     .agency-process-marker {
       top: 22px;
     }
   }
   

  /* =========================================================
     MUSEUM GALLERY — Scroll-driven horizontal walk-through
     ========================================================= */

  .museum-section {
    position: relative;
    height: 800vh;
    margin-inline: calc(50% - 50vw);
    background: #1a1510;
  }

  .museum-viewport {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
  }

  /* ── Scene (translates horizontally) ── */
  .museum-scene {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 328vw;
    will-change: transform;
  }

  /* ── Environment layers: real corridor ── */
.museum-ceiling {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 18%;
  background: linear-gradient(180deg, #0b0907 0%, #14110d 55%, #1b1712 100%);
  border-bottom: 2px solid #241d16;
}

.museum-ceiling::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 22vw;
  height: 6px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  filter: blur(6px);
  opacity: 0.45;
}

.museum-wall {
  position: absolute;
  top: 18%;
  left: 0;
  right: 0;
  bottom: 28%;
  background:
    linear-gradient(90deg,
      #30271d 0%,
      #3a3026 18%,
      #44382c 32%,
      #44382c 68%,
      #3a3026 82%,
      #30271d 100%
    );
  overflow: hidden;
}

.museum-wall::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,0.42) 0%,
      rgba(0,0,0,0.10) 16%,
      transparent 28%,
      transparent 72%,
      rgba(0,0,0,0.10) 84%,
      rgba(0,0,0,0.42) 100%
    );
  pointer-events: none;
}

.museum-wall::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  opacity: 0.24;
}

.museum-baseboard {
  position: absolute;
  bottom: 28%;
  left: 0;
  right: 0;
  height: 12px;
  background: linear-gradient(180deg, #584733, #3b2f22);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.museum-floor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 28%;
  background:
    linear-gradient(180deg, #66513b 0%, #755f48 20%, #7e6850 55%, #6c5842 100%);
  overflow: hidden;
}

.museum-floor::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,0.34) 0%,
      rgba(0,0,0,0.08) 14%,
      transparent 28%,
      transparent 72%,
      rgba(0,0,0,0.08) 86%,
      rgba(0,0,0,0.34) 100%
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 120px,
      rgba(0,0,0,0.06) 120px,
      rgba(0,0,0,0.06) 121px
    );
}

.museum-floor::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.28), transparent 26%),
    linear-gradient(90deg,
      transparent 0%,
      rgba(255,255,255,0.06) 50%,
      transparent 100%
    );
  opacity: 0.5;
}

  /* ── Entrance text ── */
  .museum-entrance {
    position: absolute;
    top: 50%;
    left: 15vw;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    transition: opacity 0.6s ease;
  }
  .museum-entrance.is-hidden {
    opacity: 0;
    pointer-events: none;
  }
  .museum-entrance-eyebrow {
    font-size: var(--text-xs);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: var(--space-3);
  }
  .museum-entrance-heading {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 650;
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .museum-entrance-sub {
    margin-top: var(--space-3);
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.35);
  }

  /* ── Exit text ── */
  .museum-exit {
    position: absolute;
    top: 50%;
    right: 8vw;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.6s ease;
  }
  .museum-exit.is-visible {
    opacity: 1;
  }
  .museum-exit-heading {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 650;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-3);
  }
  .museum-exit-sub {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.45);
    max-width: 32ch;
    margin: 0 auto var(--space-6);
    line-height: 1.6;
  }
  .museum-exit .agency-button-primary {
    display: inline-block;
    font-size: var(--text-base);
    padding: 14px 32px;
  }

  /* ── Paintings ── */
  .museum-painting {
    position: absolute;
    top: 50%;
    left: calc(50vw + var(--p-idx) * 44vw);
    z-index: 5;
    transition:
      transform 420ms cubic-bezier(.22,1,.36,1),
      filter 320ms ease,
      opacity 320ms ease;
  }
  
  .museum-painting[data-side="left"] {
    transform: translate(-30vw, -60%);
  }
  
  .museum-painting[data-side="right"] {
    transform: translate(16vw, -50%);
  }
  
  .museum-painting.is-active[data-side="left"] {
    transform: translate(-28vw, -60%) scale(1.025);
  }
  
  .museum-painting.is-active[data-side="right"] {
    transform: translate(14vw, -50%) scale(1.025);
  }

  .museum-spotlight {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    z-index: 6;
  }
  .museum-spotlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 12px;
    background: #444;
    border-radius: 2px 2px 4px 4px;
  }
  .museum-spotlight::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-top: 200px solid rgba(255,235,180,0.04);
    pointer-events: none;
    filter: blur(8px);
  }

  .museum-painting.is-active .museum-spotlight::after {
    border-top-color: rgba(255,235,180,0.08);
    transition: border-top-color 0.5s ease;
  }

  /* ── Frame ── */
  .museum-frame {
    position: relative;
    padding: 10px;
    background: linear-gradient(145deg, #6f5a42, #4d3d2b);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
      0 16px 34px rgba(0,0,0,0.34),
      inset 0 1px 0 rgba(255,255,255,0.10);
  }
  
  .museum-painting[data-side="left"] .museum-frame {
    transform: perspective(1200px) rotateY(18deg);
    transform-origin: right center;
  }
  
  .museum-painting[data-side="right"] .museum-frame {
    transform: perspective(1200px) rotateY(-18deg);
    transform-origin: left center;
  }
  
  .museum-painting.is-active .museum-frame {
    box-shadow:
      0 22px 40px rgba(0,0,0,0.42),
      0 0 28px rgba(255,226,168,0.08),
      inset 0 1px 0 rgba(255,255,255,0.12);
  }

  .museum-canvas {
    width: clamp(320px, 26vw, 440px);
    aspect-ratio: 16 / 10;
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.15);
  }
  .museum-canvas .agency-gallery-page {
    aspect-ratio: auto;
    flex: 1;
  }

  /* ── Nameplate ── */
  .museum-nameplate {
    margin-top: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }
  .museum-nameplate span {
    display: inline-block;
    padding: 5px 18px;
    background: linear-gradient(145deg, #c4a44a, #a08530);
    color: #1a1510;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  }
  .museum-nameplate small {
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.06em;
    margin-top: 4px;
  }

  /* ── Character ── */
.museum-character {
  position: absolute;
  bottom: 6.5%;
  left: 50%;
  width: 68px;
  height: 132px;
  z-index: 20;
  pointer-events: none;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.34));
  transform: translateX(-50%);
}

.museum-character svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.museum-char-leg-front,
.museum-char-leg-back,
.museum-char-arm-front,
.museum-char-arm-back {
  transition: transform 0.15s ease-out;
}

.museum-char-shadow {
  transition: rx 0.15s ease-out;
}

  /* ── Scroll hint ── */
  .museum-scroll-hint {
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.35);
    font-size: 12px;
    z-index: 15;
    transition: opacity 0.5s ease;
    pointer-events: none;
  }
  .museum-scroll-hint.is-hidden {
    opacity: 0;
  }
  .museum-scroll-hint-icon {
    animation: museum-bounce 2s ease-in-out infinite;
  }
  @keyframes museum-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
  }


  /* ── Responsive: tablet ── */
  @media (max-width: 980px) {
    .museum-scene {
      width: 400vw;
    }
    .museum-painting {
      left: calc(50vw + var(--p-idx) * 55vw);
    }
    .museum-canvas {
      width: clamp(280px, 40vw, 380px);
    }
    .museum-character {
      width: 48px;
      height: 96px;
    }
  }

  /* ── Responsive: mobile — vertical stack, no character ── */
  @media (max-width: 767px) {
    .museum-section {
      height: auto;
      background: #1a1510;
      padding: var(--space-9) 0;
    }
    .museum-viewport {
      position: relative;
      height: auto;
      overflow: visible;
    }
    .museum-scene {
      position: relative;
      width: 100%;
      height: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 48px;
      padding: var(--space-6) var(--pad-x);
    }
    .museum-ceiling,
    .museum-wall,
    .museum-floor,
    .museum-baseboard,
    .museum-character,
    .museum-spotlight,
    .museum-scroll-hint {
      display: none;
    }
    .museum-entrance {
      position: relative;
      top: auto;
      left: auto;
      transform: none;
      margin-bottom: var(--space-6);
    }
    .museum-exit {
      position: relative;
      top: auto;
      right: auto;
      transform: none;
      opacity: 1;
      margin-top: var(--space-6);
    }
    .museum-painting[data-side="left"] {
      left: calc(50vw + var(--p-idx) * 55vw);
      transform: translate(-20vw, -58%);
    }
    
    .museum-painting[data-side="right"] {
      left: calc(50vw + var(--p-idx) * 55vw);
      transform: translate(8vw, -52%);
    }
    
    .museum-painting[data-side="left"] {
      left: calc(50vw + var(--p-idx) * 44vw);
      transform: translate(-22vw, -58%);
    }
    
    .museum-painting[data-side="right"] {
      left: calc(50vw + var(--p-idx) * 44vw);
      transform: translate(12vw, -52%);
    }
    
    .museum-painting.is-active[data-side="left"] {
      transform: translate(-20vw, -58%) scale(1.02);
    }
    
    .museum-painting.is-active[data-side="right"] {
      transform: translate(10vw, -52%) scale(1.02);
    }
    .museum-frame {
      padding: 6px;
    }
    .museum-canvas {
      width: clamp(280px, 80vw, 420px);
    }
    .museum-nameplate {
      margin-top: 12px;
    }
  }

  /* ── Reduced motion ── */
  @media (prefers-reduced-motion: reduce) {
    .museum-section {
      height: auto;
    }
    .museum-viewport {
      position: relative;
      height: auto;
    }
    .museum-scene {
      position: relative;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 48px;
      padding: var(--space-8) var(--pad-x);
    }
    .museum-ceiling,
    .museum-wall,
    .museum-floor,
    .museum-baseboard,
    .museum-character,
    .museum-scroll-hint {
      display: none;
    }
    .museum-painting {
      position: relative;
      top: auto;
      left: auto !important;
      transform: none;
    }
    .museum-entrance {
      position: relative;
      top: auto;
      left: auto;
      transform: none;
    }
    .museum-exit {
      position: relative;
      top: auto;
      right: auto;
      transform: none;
      opacity: 1;
    }
    .museum-char-leg-front,
    .museum-char-leg-back,
    .museum-char-arm-front,
    .museum-char-arm-back {
      transition: none;
    }
  }

/* =========================================================
   CORRIDOR GALLERY — 3D scroll-driven walk-through
   Blueprint aesthetic: dark navy bg, cyan line-art
   ========================================================= */

/* ── Section shell ── */
.corridor-section {
  height: 800vh;
  background: #080f18;
  position: relative;
}

/* ── Sticky viewport ── */
.corridor-viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #080f18;
}

/* ── Blueprint canvas (walls/floor/ceiling/grid) ── */
.corridor-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ── Painting container ── */
.corridor-paintings {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* ── Individual painting ── */
.corridor-painting {
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  transform-origin: top left;
  will-change: transform, opacity;
  transition: opacity 0.08s linear;
  opacity: 0;
  pointer-events: none;
}

.corridor-painting.is-visible {
  pointer-events: auto;
}

/* ── Painting frame (blueprint bracket style) ── */
.corridor-painting-wrap {
  width: 400px;
  height: 280px;
  overflow: hidden;
  border: 1.5px solid rgba(100,180,240,0.55);
  box-shadow:
    0 0 0 1px rgba(100,180,240,0.12),
    0 0 18px rgba(80,160,220,0.18),
    inset 0 0 0 1px rgba(100,180,240,0.06);
  position: relative;
  background: transparent;
  contain: layout style paint;
}

/* Blueprint corner markers */
.corridor-painting-wrap::before,
.corridor-painting-wrap::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: rgba(100,180,240,0.85);
  border-style: solid;
  z-index: 3;
}
.corridor-painting-wrap::before {
  top: -1px;
  left: -1px;
  border-width: 1.5px 0 0 1.5px;
}
.corridor-painting-wrap::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 1.5px 1.5px 0;
}

/* ── Painting label (blueprint annotation) ── */
.corridor-painting-label {
  margin-top: 7px;
  font-family: 'Courier New', 'SF Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(100,180,240,0.6);
  text-align: center;
  white-space: nowrap;
  user-select: none;
}

/* ── Character (fixed at bottom-center, above canvas) ── */
.corridor-character {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 72px;
  pointer-events: none;
  will-change: transform;
  transition: transform 0.18s ease-out;
}

.corridor-character svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Limb transitions for smooth walk cycle */
.corridor-char-leg-l,
.corridor-char-leg-r,
.corridor-char-arm-l,
.corridor-char-arm-r {
  transition: transform 0.1s linear;
}

/* ── Intro / Outro overlays ── */
.corridor-intro,
.corridor-outro {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  transition: opacity 0.4s ease;
  background: #080f18;
}

.corridor-intro-text,
.corridor-outro-text {
  font-family: 'Courier New', 'SF Mono', monospace;
  font-size: clamp(9px, 1.2vw, 12px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(100,180,240,0.55);
  text-align: center;
}

.corridor-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: corridor-hint-pulse 2s ease-in-out infinite;
}

.corridor-scroll-hint-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(100,180,240,0.6), transparent);
}

@keyframes corridor-hint-pulse {
  0%, 100% { opacity: 0.5; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(4px); }
}

/* ── Responsive: mobile gets static stack ── */
@media (max-width: 767px) {
  .corridor-section {
    height: auto;
    background: var(--surface-1);
  }
  .corridor-viewport {
    position: relative;
    height: auto;
    background: var(--surface-1);
    overflow: visible;
  }
  .corridor-canvas {
    display: none;
  }
  .corridor-paintings {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: var(--space-8) var(--pad-x);
  }
  .corridor-painting {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 420px;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto;
  }
  .corridor-painting-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 400 / 280;
    border-color: rgba(27,60,83,0.2);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  }
  .corridor-painting-wrap::before,
  .corridor-painting-wrap::after {
    display: none;
  }
  .corridor-painting-label {
    color: var(--text-3);
    margin-top: 8px;
  }
  .corridor-character {
    display: none;
  }
  .corridor-intro,
  .corridor-outro {
    display: none;
  }
}

/* ── Reduced motion: collapse to static ── */
@media (prefers-reduced-motion: reduce) {
  .corridor-section {
    height: auto;
    background: var(--surface-1);
  }
  .corridor-viewport {
    position: relative;
    height: auto;
    overflow: visible;
    background: var(--surface-1);
  }
  .corridor-canvas {
    display: none;
  }
  .corridor-paintings {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: var(--space-8) var(--pad-x);
  }
  .corridor-painting {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 420px;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto;
  }
  .corridor-painting-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 400 / 280;
  }
  .corridor-character,
  .corridor-intro,
  .corridor-outro {
    display: none;
  }
  .corridor-char-leg-l,
  .corridor-char-leg-r,
  .corridor-char-arm-l,
  .corridor-char-arm-r {
    transition: none;
  }
}

/* ── Corridor intro / outro text elements ── */
.corridor-intro-eyebrow {
  font-family: 'Courier New', 'SF Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(100,180,240,0.45);
  margin: 0;
}

.corridor-intro-heading {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: rgba(160,220,255,0.75);
  margin: 0;
  line-height: 1;
}

.corridor-intro-hint {
  font-family: 'Courier New', 'SF Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(100,180,240,0.4);
  margin: 12px 0 0;
  animation: corridor-hint-pulse 2s ease-in-out infinite;
}

.corridor-outro-heading {
  font-size: clamp(1.25rem, 3.5vw, 2rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: rgba(160,220,255,0.80);
  margin: 0;
  line-height: 1;
}

.corridor-outro-sub {
  font-size: clamp(0.8rem, 1.2vw, 0.9rem);
  color: rgba(100,180,240,0.45);
  margin: 8px 0 0;
  max-width: 36ch;
  text-align: center;
  line-height: 1.5;
}

.corridor-outro {
  gap: 16px;
}

/* =========================================================
   GLOBAL HEADER
   ========================================================= */

   .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(10, 10, 10, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .site-header-inner {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  
  .site-logo {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
  }
  
  .site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  
  .site-nav a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
  }
  
  .site-nav a:hover {
    color: #ffffff;
  }
  
  .site-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none;
    background: #ffffff;
    color: #0a0a0a;
    font-size: 0.92rem;
    font-weight: 600;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  
  .site-header-cta:hover {
    transform: translateY(-1px);
    opacity: 0.92;
  }
  
  /* =========================================================
     GLOBAL FOOTER
     ========================================================= */
  
  .site-footer {
    padding: 72px 0 24px;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .site-footer-inner {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
  }
  
  .site-footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .site-footer-logo {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
  }
  
  .site-footer-heading {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
  }
  
  .site-footer-text,
  .site-footer-column a,
  .site-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .site-footer-column a:hover {
    color: #ffffff;
  }
  
  .site-footer-bottom {
    width: min(1200px, calc(100% - 32px));
    margin: 32px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  /* =========================================================
     RESPONSIVE
     ========================================================= */
  
  @media (max-width: 980px) {
    .site-header-inner {
      min-height: auto;
      padding: 16px 0;
      flex-wrap: wrap;
    }
  
    .site-nav {
      order: 3;
      width: 100%;
      flex-wrap: wrap;
      gap: 14px 18px;
    }
  
    .site-footer-inner {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 640px) {
    .site-header-inner {
      width: min(1200px, calc(100% - 24px));
    }
  
    .site-nav {
      gap: 12px 16px;
    }
  
    .site-nav a {
      font-size: 0.9rem;
    }
  
    .site-header-cta {
      width: 100%;
    }
  
    .site-footer-inner,
    .site-footer-bottom {
      width: min(1200px, calc(100% - 24px));
    }
  
    .site-footer-inner {
      grid-template-columns: 1fr;
    }
  }
. 
/* =========================================================
   STATIC SITE HEADER / FOOTER + LEGAL PAGES
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  min-height: 72px;
  background: var(--nilev-header-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--nilev-header-border);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  min-height: 72px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  color: var(--nilev-header-text);
  text-decoration: none;
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  flex: 1;
  min-width: 0;
}

.site-nav a {
  position: relative;
  padding: 8px 14px;
  border-radius: 10px;
  color: var(--nilev-header-text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: 1;
  transition: color 180ms ease, background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--nilev-header-text);
  background: var(--accent-ghost);
  outline: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
  opacity: 0.55;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--nilev-header-text);
  color: var(--page-bg);
  border: 1px solid var(--nilev-header-text);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: opacity 180ms ease, transform 180ms ease;
  flex-shrink: 0;
}

.site-header-cta:hover,
.site-header-cta:focus-visible {
  opacity: 0.88;
  transform: translateY(-1px);
  outline: none;
}

.site-footer {
  background: var(--surface-2);
  color: var(--text-1);
  border-top: 1px solid var(--nilev-footer-border);
}

.site-footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-10) var(--pad-x) var(--space-7);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-8);
}

.site-footer-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-width: 0;
}

.site-footer-logo {
  display: inline-flex;
  align-items: center;
  color: var(--text-1);
  text-decoration: none;
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer-heading {
  margin: 0 0 2px;
  font-size: var(--text-xs);
  font-weight: 650;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--text-1);
}

.site-footer-text,
.site-footer-column a,
.site-footer-bottom p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--nilev-footer-muted);
}

.site-footer-column a {
  text-decoration: none;
  transition: color 180ms ease;
}

.site-footer-column a:hover,
.site-footer-column a:focus-visible {
  color: var(--accent);
  outline: none;
}

.site-footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x) var(--space-7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.site-footer-bottom::before {
  content: "";
  display: block;
  position: absolute;
}

.site-footer-bottom {
  border-top: 1px solid var(--nilev-footer-border);
  padding-top: var(--space-6);
}

.legal-page {
  position: relative;
  margin-inline: calc(50% - 50vw);
  background: var(--surface-1);
  padding: clamp(80px, 9vw, 120px) 0 var(--section-pad-y);
}

.legal-page-inner {
  width: min(860px, calc(100% - (var(--pad-x) * 2)));
  margin: 0 auto;
}

.legal-page-title {
  max-width: 16ch;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 650;
  text-wrap: balance;
}

.legal-section {
  margin-top: var(--space-8);
  padding: var(--space-7);
  background: var(--surface-3);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
}

.legal-section h2 {
  margin: 0 0 var(--space-4);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 650;
}

.legal-section p,
.legal-section li {
  font-size: var(--text-base);
  line-height: 1.78;
  color: var(--text-2);
}

.legal-section p + p {
  margin-top: var(--space-4);
}

.legal-section ul,
.legal-section ol {
  margin: var(--space-4) 0 0;
  padding-left: 1.2rem;
}

.legal-section li + li {
  margin-top: var(--space-2);
}

.legal-section a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.legal-section strong {
  color: var(--text-1);
}

@media (max-width: 980px) {
  .site-header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
    min-height: auto;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }

  .site-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7);
  }
}

@media (max-width: 640px) {
  .site-header-inner {
    gap: var(--space-4);
  }

  .site-logo {
    font-size: var(--text-sm);
  }

  .site-nav a {
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .site-header-cta {
    width: 100%;
  }

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

  .site-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-section {
    padding: var(--space-6);
  }
}