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

    :root {
      --midnight: #111111;
      --midnight-deep: #0A0A0A;
      --gold: #F5B301;
      --graphite: #1E1E1E;
      --silver: #D9D9D9;
      --smoke: #F8F8F8;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--midnight-deep);
      font-family: 'Inter', sans-serif;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    .preloader-active body {
      overflow: hidden;
    }

    .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;
    }

    /* ── Grain overlay ── */
    #grain {
      position: fixed;
      inset: 0;
      z-index: 9999;
      pointer-events: none;
      opacity: 0.038;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 128px 128px;
    }

    /* Simple preloader */
    .simple-preloader {
      display: none;
    }

    .preloader-active .simple-preloader {
      position: fixed;
      inset: 0;
      z-index: 10000;
      display: grid;
      place-items: center;
      align-content: center;
      gap: 1.15rem;
      min-height: 100dvh;
      padding: 1.5rem;
      background: #0A0A0A;
      color: var(--smoke);
      opacity: 1;
      visibility: visible;
      transition:
        opacity 0.48s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.48s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .simple-preloader.is-leaving {
      opacity: 0;
      visibility: hidden;
    }

    .simple-preloader__circle {
      width: clamp(5.5rem, 12vw, 8.25rem);
      height: auto;
      object-fit: contain;
      mix-blend-mode: screen;
      transform-origin: center;
      animation: simplePreloaderSpin 2.8s linear infinite;
      will-change: transform;
    }

    .simple-preloader__wordmark {
      position: relative;
      isolation: isolate;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: clamp(2.4rem, 8vw, 5.6rem);
      letter-spacing: -0.04em;
      line-height: 1;
      color: rgba(255, 255, 255, 0.92);
      text-align: center;
      white-space: nowrap;
    }

    .simple-preloader__wordmark::before {
      content: '';
      position: absolute;
      inset: -0.42em -0.72em -0.34em;
      z-index: -1;
      border-radius: 999px;
      background:
        radial-gradient(ellipse at center, rgba(245, 179, 1, 0.48) 0%, rgba(245, 179, 1, 0.28) 34%, rgba(245, 179, 1, 0.1) 58%, transparent 78%);
      filter: blur(30px);
      opacity: 0.46;
      transform: scale(0.9);
      animation: simpleWordmarkAura 2.4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
      pointer-events: none;
    }

    .simple-preloader__wordmark em {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 600;
      color: var(--gold);
    }

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

    @keyframes simpleWordmarkAura {
      0%,
      100% {
        opacity: 0.34;
        transform: scale(0.9);
      }

      50% {
        opacity: 0.9;
        transform: scale(1.12);
      }
    }

    @media (max-width: 420px) {
      .preloader-active .simple-preloader {
        gap: 0.95rem;
      }

      .simple-preloader__wordmark {
        font-size: clamp(2rem, 14vw, 3.25rem);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .simple-preloader__circle,
      .simple-preloader__wordmark::before {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
      }

      .simple-preloader {
        transition-duration: 0.001ms !important;
      }
    }

    /* ── Navbar ── */
    #navbar {
      position: fixed;
      top: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      width: calc(100% - 3rem);
      max-width: 1100px;
      --nav-logo-compact: clamp(2.35rem, 4vw, 3.35rem);
      --nav-logo-expanded: clamp(5.75rem, 8vw, 7.6rem);
      --nav-logo-size: var(--nav-logo-expanded);
      --nav-bar-height: 4.35rem;
      --nav-logo-shell: calc(var(--nav-logo-size) + 3.1rem);
      --nav-pad-x: 1.75rem;
      --nav-surface: rgba(17, 17, 17, 0.7);
      --nav-border: rgba(245, 179, 1, 0.13);
      transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    #navbar.scrolled {
      top: 0.85rem;
      --nav-logo-size: var(--nav-logo-compact);
      --nav-bar-height: calc(var(--nav-logo-compact) + 1.75rem);
      --nav-surface: rgba(17, 17, 17, 0.88);
    }

    #navbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      isolation: isolate;
      padding: 0.875rem var(--nav-pad-x);
      min-height: calc(var(--nav-logo-size) + 1.35rem);
      border-radius: 1rem;
      background: transparent;
      border: 1px solid transparent;
      transition: min-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    #navbar-inner::before,
    #navbar-inner::after {
      content: "";
      position: absolute;
      background: var(--nav-surface);
      border: 1px solid var(--nav-border);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
      pointer-events: none;
      transition:
        background 0.5s ease,
        border-color 0.5s ease,
        width 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        left 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.25s ease;
    }

    #navbar-inner::before {
      z-index: -2;
      left: 0;
      top: 0;
      width: var(--nav-logo-shell);
      height: 100%;
      border-right: 0;
      border-radius: 1.05rem;
    }

    #navbar-inner::after {
      z-index: -1;
      left: var(--nav-logo-shell);
      right: 0;
      top: 50%;
      height: var(--nav-bar-height);
      transform: translateY(-50%);
      border-left: 0;
      border-radius: 0 1rem 1rem 0;
    }

    #navbar.scrolled #navbar-inner::before {
      width: 100%;
      border-right: 1px solid var(--nav-border);
      border-radius: 1rem;
    }

    #navbar.scrolled #navbar-inner::after {
      height: 100%;
      opacity: 0;
    }

    #navbar.scrolled .nav-logo {
      /* border-radius: clamp(0.5rem, 0.5vw, 0.5rem); */
      border-radius: 8px;
    }

    #navbar.scrolled .nav-logo img {
      border-radius: 0;
    }

    .nav-logo {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 1.1rem;
      letter-spacing: -0.02em;
      color: #fff;
      display: grid;
      place-items: center;
      align-items: center;
      gap: 0.4rem;
      flex: 0 0 var(--nav-logo-size);
      /* width: var(--nav-logo-size);
      height: var(--nav-logo-size); */
      /* padding: clamp(0.28rem, 0.65vw, 0.5rem); */
      /* border-radius: clamp(1rem, 2vw, 1.65rem); */
      padding: 1px;
      border-radius: 16px;
      margin-left: calc((var(--nav-logo-shell) - var(--nav-logo-size)) / 2 - var(--nav-pad-x));
      position: relative;
      isolation: isolate;
      text-decoration: none;
      background: conic-gradient(
        from var(--border-angle),
        rgba(245, 179, 1, 0.08) 0%,
        rgba(245, 179, 1, 0.08) 55%,
        rgba(245, 179, 1, 0.9) 70%,
        #f5b301 80%,
        rgba(245, 179, 1, 0.9) 90%,
        rgba(245, 179, 1, 0.08) 100%
      );
      animation: borderBeam 5s linear infinite;
      box-shadow: 0 0 18px rgba(245, 179, 1, 0.12), 0 0 40px rgba(245, 179, 1, 0.06);
      transition:
        flex-basis 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        width 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        margin-left 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-logo img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
      border-radius: clamp(0.65rem, 1.4vw, 1rem);
      position: relative;
      z-index: 1;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-logo span {
      color: var(--gold);
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2.25rem;
    }

    .nav-links a {
      font-family: 'Inter', sans-serif;
      font-size: 0.8125rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .nav-links a:hover {
      color: #fff;
    }

    .btn-order-ride {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 0.8125rem;
      color: var(--midnight);
      background: var(--gold);
      border: none;
      padding: 0.6rem 1.25rem;
      border-radius: 0.75rem;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: transform 0.15s ease, box-shadow 0.2s ease;
    }

    .btn-order-ride:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(245, 179, 1, 0.3);
    }

    .btn-order-ride:active {
      transform: scale(0.97);
    }

    /* ── Hero ── */
    #hero {
      position: relative;
      min-height: 100dvh;
      background: #070707;
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    #heroVideo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    /* CUSTOM VYCENTROVANIE VIDEA */
    @media (max-width: 640px) {
      #heroVideo {
        opacity: 0.4;
        object-position: 70% center;
      }
    }

    /* .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, rgba(7,7,7,0.97) 0%, rgba(7,7,7,0.82) 45%, rgba(7,7,7,0.2) 40%);
      z-index: 2;
    } */

    .hero-reflection {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 28%;
      background: linear-gradient(to bottom, transparent, rgba(245, 179, 1, 0.025) 60%, rgba(245, 179, 1, 0.05));
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 10;
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      margin-top: 80px;
      /* padding: 0 4rem 0 5rem; */
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.35rem 0.875rem;
      border-radius: 99px;
      border: 1px solid rgba(245, 179, 1, 0.28);
      background: rgba(245, 179, 1, 0.06);
      margin-bottom: 2.5rem;
    }

    .hero-badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #22c55e;
      animation: pulseDot 2s ease-in-out infinite;
    }

    @keyframes pulseDot {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
      }

      50% {
        opacity: 0.8;
        transform: scale(1.15);
        box-shadow: 0 0 0 4px rgba(34, 197, 94, 0);
      }
    }

    .hero-badge span {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6875rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(245, 179, 1, 0.75);
    }

    .hero-h1-line1 {
      display: block;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: clamp(2.5rem, 6vw, 5rem);
      line-height: 1;
      letter-spacing: -0.035em;
      color: #fff;
      width: auto;
      white-space: nowrap;
    }

    .hero-h1-line2 {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 600;
      font-size: clamp(3rem, 6vw, 5rem);
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: var(--gold);
      margin-top: 0.1em;
    }

    .hero-sub {
      margin-top: 2rem;
      font-family: 'Inter', sans-serif;
      font-size: 1.0625rem;
      font-weight: 400;
      line-height: 1.65;
      color: rgba(217, 217, 217, 0.72);
      /* max-width: 50ch; */
    }

    .hero-platforms {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .hero-platform-tag {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6875rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      color: rgba(255, 255, 255, 0.6);
      text-transform: uppercase;
    }

    .hero-platform-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      padding: 0.3rem 0.75rem;
      border-radius: 6px;
      border: 1px solid rgba(255, 255, 255, 0.28);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.85);
      background: rgba(0, 0, 0, 0.5);
    }

    .hero-ctas {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
      margin-top: 2.5rem;
    }

    .hero-ctas__row {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .btn-primary {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 0.9375rem;
      color: var(--midnight);
      background: var(--gold);
      border: 1px solid transparent;
      padding: 1rem 2rem;
      border-radius: 0.875rem;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: transform 0.15s ease, box-shadow 0.2s ease;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(245, 179, 1, 0.32);
    }

    .btn-primary:active {
      transform: scale(0.97);
    }

    .btn-ghost {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      font-size: 0.9375rem;
      color: #111;
      background: rgba(255, 255, 255, 0.88);
      border: 1px solid rgba(255, 255, 255, 0.6);
      padding: 1rem 2rem;
      border-radius: 0.875rem;
      cursor: pointer;
      transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, 1);
      border-color: rgba(255, 255, 255, 1);
    }

    .btn-ghost:active {
      transform: scale(0.97);
    }

    .btn-driver-zone {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      font-size: 0.9375rem;
      color: rgba(255, 255, 255, 0.86);
      background: rgba(17, 17, 17, 0.62);
      border: 1px solid rgba(245, 179, 1, 0.34);
      padding: 1rem 1.2rem;
      border-radius: 0.875rem;
      cursor: pointer;
      transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.15s ease;
    }

    .btn-driver-zone:hover {
      border-color: rgba(245, 179, 1, 0.68);
      background: rgba(245, 179, 1, 0.1);
      color: var(--gold);
      transform: translateY(-2px);
    }

    .btn-driver-zone:active {
      transform: scale(0.97);
    }

    .hero-scroll-line {
      position: absolute;
      bottom: 2rem;
      right: 5rem;
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }

    .scroll-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.625rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.62);
      writing-mode: vertical-lr;
    }

    .scroll-track {
      width: 1px;
      height: 3.5rem;
      background: linear-gradient(to bottom, rgba(245, 179, 1, 0.8), transparent);
      animation: scrollPulse 2.5s ease-in-out infinite;
    }

    @keyframes scrollPulse {

      0%,
      100% {
        opacity: 0.4;
      }

      50% {
        opacity: 1;
      }
    }

    /* ── Features / Bento ── */
    #features {
      background: #0D0D0D;
      padding: 7rem 0;
      position: relative;
      overflow: hidden;
    }

    #features::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('assets/img/coffee_taxi_logos_desktop_1600.jpg');
      background-image: -webkit-image-set(
        url('assets/img/coffee_taxi_logos_desktop_1600.avif') type('image/avif'),
        url('assets/img/coffee_taxi_logos_desktop_1600.webp') type('image/webp'),
        url('assets/img/coffee_taxi_logos_desktop_1600.jpg') type('image/jpeg')
      );
      background-image: image-set(
        url('assets/img/coffee_taxi_logos_desktop_1600.avif') type('image/avif'),
        url('assets/img/coffee_taxi_logos_desktop_1600.webp') type('image/webp'),
        url('assets/img/coffee_taxi_logos_desktop_1600.jpg') type('image/jpeg')
      );
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0.60;
      mix-blend-mode: screen;
      pointer-events: none;
      z-index: 0;
    }

    @media (max-width: 768px) {
      #features::before {
        background-image: url('assets/img/coffee_taxi_logos_mobile_720.jpg');
        background-image: -webkit-image-set(
          url('assets/img/coffee_taxi_logos_mobile_720.avif') type('image/avif') 1x,
          url('assets/img/coffee_taxi_logos_mobile_1080.avif') type('image/avif') 2x,
          url('assets/img/coffee_taxi_logos_mobile_720.webp') type('image/webp') 1x,
          url('assets/img/coffee_taxi_logos_mobile_1080.webp') type('image/webp') 2x,
          url('assets/img/coffee_taxi_logos_mobile_720.jpg') type('image/jpeg') 1x,
          url('assets/img/coffee_taxi_logos_mobile_1080.jpg') type('image/jpeg') 2x
        );
        background-image: image-set(
          url('assets/img/coffee_taxi_logos_mobile_720.avif') type('image/avif') 1x,
          url('assets/img/coffee_taxi_logos_mobile_1080.avif') type('image/avif') 2x,
          url('assets/img/coffee_taxi_logos_mobile_720.webp') type('image/webp') 1x,
          url('assets/img/coffee_taxi_logos_mobile_1080.webp') type('image/webp') 2x,
          url('assets/img/coffee_taxi_logos_mobile_720.jpg') type('image/jpeg') 1x,
          url('assets/img/coffee_taxi_logos_mobile_1080.jpg') type('image/jpeg') 2x
        );
        background-position: center top;
        opacity: 0.48;
      }
    }

    #features > .container {
      position: relative;
      z-index: 1;
    }

    .section-eyebrow {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6875rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.875rem;
    }

    .section-headline {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: clamp(2rem, 4vw, 3.25rem);
      letter-spacing: -0.03em;
      line-height: 1.1;
      color: var(--smoke);
    }

    .section-headline em {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 600;
      color: var(--gold);
    }

    .bento-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 1.25rem;
      margin-top: 3.5rem;
    }

    .bento-card {
      background: #161616;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 1.5rem;
      padding: 2rem;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 4px 24px rgba(0, 0, 0, 0.32);
      overflow: hidden;
      position: relative;
      transition:
        transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.55s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease;
      will-change: transform;
    }

    /* Top-edge shimmer sweep */
    .bento-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 1.5px;
      background: linear-gradient(90deg, transparent 0%, rgba(245, 179, 1, 0.9) 50%, transparent 100%);
      transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 10;
      border-radius: 0;
    }

    .bento-card:hover::before {
      left: 100%;
    }

    /* Cursor spotlight (injected via JS) */
    .bento-spotlight {
      position: absolute;
      width: 380px;
      height: 380px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(245, 179, 1, 0.13) 0%, transparent 68%);
      transform: translate(-50%, -50%);
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.35s ease;
      z-index: 1;
    }

    .bento-card:hover .bento-spotlight {
      opacity: 1;
    }

    .bento-card:hover {
      transform: translateY(-10px) scale(1.007);
      border-color: rgba(245, 179, 1, 0.38);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 4px 8px rgba(0, 0, 0, 0.25),
        0 12px 28px rgba(0, 0, 0, 0.4),
        0 36px 56px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(245, 179, 1, 0.22),
        0 0 80px rgba(245, 179, 1, 0.09);
    }

    /* Child micro-animations */
    .bento-label {
      transition: color 0.35s ease;
    }

    .bento-card:hover .bento-label {
      color: rgba(245, 179, 1, 0.8);
    }

    .bento-card:hover .live-badge {
      background: rgba(34, 197, 94, 0.15);
      border-color: rgba(34, 197, 94, 0.4);
      transition: background 0.3s ease, border-color 0.3s ease;
    }

    .bento-card:hover .bento-stat-num {
      color: var(--gold);
      transition: color 0.35s ease 0.05s;
    }

    .feature-link-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
      margin-top: 0.1rem;
    }

    .feature-link-row a,
    .feature-link-row button {
      width: 100%;
      display: flex;
      align-items: center;
      text-align: start;
      gap: 0.75rem;
      padding: 0.625rem 0.875rem;
      border: 1px solid rgba(245, 179, 1, 0.22);
      border-radius: 0.625rem; 
      background: rgba(245, 179, 1, 0.06);
      font-family: 'Inter', sans-serif;
      font-size: 0.8125rem;
      font-weight: 600;
      color: rgba(245, 179, 1, 0.9);
      text-decoration: none;
      cursor: pointer;
      transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
    }

    .feature-link-row a:hover,
    .feature-link-row button:hover {
      border-color: rgba(245, 179, 1, 0.48);
      background: rgba(245, 179, 1, 0.12);
      color: var(--gold);
    }

    .bento-card-large {
      grid-row: auto;
    }

    .bento-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.625rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.28);
      margin-bottom: 0.5rem;
    }

    .bento-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 1.125rem;
      letter-spacing: -0.02em;
      color: rgba(255, 255, 255, 0.92);
      margin-bottom: 0.35rem;
    }

    .bento-desc {
      font-family: 'Inter', sans-serif;
      font-size: 0.8125rem;
      color: rgba(255, 255, 255, 0.42);
      line-height: 1.5;
    }

    .live-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      padding: 0.25rem 0.625rem;
      border-radius: 99px;
      background: rgba(34, 197, 94, 0.1);
      border: 1px solid rgba(34, 197, 94, 0.25);
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.625rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #16a34a;
      float: right;
    }

    .live-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #22c55e;
      animation: livePulse 1.5s ease-in-out infinite;
    }

    @keyframes livePulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.4;
      }
    }

    /* Map SVG styles */
    .map-container {
      margin-top: 1.5rem;
      border-radius: 1rem;
      overflow: hidden;
      background: rgba(17, 17, 17, 0.04);
      border: 1px solid rgba(17, 17, 17, 0.06);
      position: relative;
    }

    .taxi-icon-1 {
      offset-path: path('M 40 220 L 40 150 L 140 150 L 140 95 L 280 95');
      animation: movePath1 7s linear infinite;
    }

    .taxi-icon-2 {
      offset-path: path('M 360 55 L 240 55 L 240 150 L 140 150 L 80 150');
      animation: movePath2 9s linear infinite 2s;
    }

    @keyframes movePath1 {
      from {
        offset-distance: 0%;
      }

      to {
        offset-distance: 100%;
      }
    }

    @keyframes movePath2 {
      from {
        offset-distance: 0%;
      }

      to {
        offset-distance: 100%;
      }
    }

    /* ETA counter */
    .eta-display {
      margin-top: 1.25rem;
    }

    .eta-number-wrapper {
      overflow: hidden;
      height: 4rem;
      display: flex;
      align-items: center;
    }

    .eta-number {
      font-family: 'JetBrains Mono', monospace;
      font-weight: 500;
      font-size: 3.5rem;
      color: var(--gold);
      line-height: 1;
      transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    }

    .eta-unit {
      font-family: 'JetBrains Mono', monospace;
      font-size: 1rem;
      color: rgba(17, 17, 17, 0.45);
      margin-left: 0.5rem;
      align-self: flex-end;
      padding-bottom: 0.4rem;
    }

    .eta-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      color: rgba(17, 17, 17, 0.45);
      margin-top: 0.375rem;
    }

    .eta-route-dots {
      display: flex;
      align-items: center;
      gap: 0;
      margin-top: 1.5rem;
    }

    .route-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .route-dot.origin {
      background: var(--gold);
      animation: pingDot 2s ease-in-out infinite;
    }

    .route-dot.mid {
      background: rgba(17, 17, 17, 0.3);
    }

    .route-dot.dest {
      background: var(--midnight);
    }

    @keyframes pingDot {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(245, 179, 1, 0.4);
      }

      50% {
        box-shadow: 0 0 0 5px rgba(245, 179, 1, 0);
      }
    }

    .route-line {
      flex: 1;
      height: 1px;
      background: repeating-linear-gradient(90deg, rgba(17, 17, 17, 0.2) 0px, rgba(17, 17, 17, 0.2) 4px, transparent 4px, transparent 8px);
    }

    .route-labels {
      display: flex;
      justify-content: space-between;
      margin-top: 0.4rem;
    }

    .route-labels span {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.5625rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(17, 17, 17, 0.35);
    }

    /* Delivery timeline */
    .timeline {
      margin-top: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .tl-step {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      position: relative;
    }

    .tl-step:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 11px;
      top: 26px;
      width: 1px;
      height: calc(100% + 0.5rem);
      background: rgba(17, 17, 17, 0.1);
      transition: background 0.4s ease;
    }

    .tl-step.active:not(:last-child)::after {
      background: rgba(245, 179, 1, 0.4);
    }

    .tl-step+.tl-step {
      margin-top: 1rem;
    }

    .tl-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 2px solid rgba(17, 17, 17, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: border-color 0.4s ease, background 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .tl-step.active .tl-icon {
      border-color: var(--gold);
      background: rgba(245, 179, 1, 0.12);
      transform: scale(1.12);
    }

    .tl-text {
      padding-top: 0.125rem;
    }

    .tl-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.8125rem;
      font-weight: 600;
      color: rgba(17, 17, 17, 0.4);
      transition: color 0.4s ease;
    }

    .tl-step.active .tl-name {
      color: var(--midnight);
    }

    .tl-time {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.625rem;
      color: rgba(17, 17, 17, 0.3);
      margin-top: 0.1rem;
      transition: color 0.4s ease;
    }

    .tl-step.active .tl-time {
      color: rgba(245, 179, 1, 0.7);
    }

    /* ── Trust Section ── */
    #trust {
      background: var(--midnight);
      padding: 8rem 0;
      position: relative;
      overflow: hidden;
    }

    #trust::before {
      content: '';
      position: absolute;
      top: -20%;
      right: -10%;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(245, 179, 1, 0.04) 0%, transparent 70%);
      pointer-events: none;
    }

    #trust > .container {
      position: relative;
      z-index: 1;
    }

    .trust-circle-asset,
    .trust-corner-asset {
      position: absolute;
      z-index: 0;
      pointer-events: none;
      user-select: none;
      mix-blend-mode: screen;
    }

    .trust-circle-asset {
      right: -2rem;
      bottom: -4rem;
      width: min(32vw, 440px);
      transform: rotate(-10deg);
      /* opacity: 0.78; */
    }

    .trust-corner-asset {
      top: 0;
      right: 1.25rem;
      width: min(26vw, 360px);
      transform: rotate(180deg);
      /* opacity: 0.72; */
    }

    .trust-corner-asset--bottom {
      top: auto;
      right: auto;
      left: 0em;
      bottom: 3.5rem;
      width: min(24vw, 340px);
      transform: rotate(0deg);
      /* opacity: 0.64; */
    }

    .trust-grid {
      display: flex;
      flex-direction: column;
      gap: 4rem;
    }

    .trust-main {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 3.25rem;
    }

    .trust-main-text {
      width: min(100%, 980px);
      min-width: 0;
    }

    .trust-platforms {
      width: 100%;
    }

    .trust-platforms-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6875rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(245, 179, 1, 0.62);
      margin-bottom: 1rem;
    }

    .trust-platforms-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1rem;
      perspective: 1200px;
    }

    .trust-platform-card {
      min-height: 320px;
      position: relative;
      isolation: isolate;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      padding: 0.875rem 0.875rem 1.25rem;
      border-radius: 1.2rem;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014)),
        #121212;
      border: 1px solid rgba(255, 255, 255, 0.075);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 22px 48px -26px rgba(0, 0, 0, 0.72);
      transition:
        border-color 0.35s ease,
        box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .trust-platform-card::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background:
        radial-gradient(circle at 50% 32%, rgba(245, 179, 1, 0.15), transparent 44%),
        linear-gradient(135deg, rgba(245, 179, 1, 0.08), transparent 36%);
      opacity: 0;
      transition: opacity 0.35s ease;
    }

    .trust-platform-card:hover {
      border-color: rgba(245, 179, 1, 0.32);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 34px 70px -30px rgba(0, 0, 0, 0.82);
    }

    .trust-platform-card:hover::before {
      opacity: 1;
    }

    .platform-media {
      min-height: 165px;
      position: relative;
      z-index: 1;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 0.9rem;
      background:
        radial-gradient(circle at 50% 68%, rgba(245, 179, 1, 0.14), transparent 48%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
        #070707;
      border: 1px solid rgba(255, 255, 255, 0.055);
    }

    .platform-media::after {
      content: '';
      position: absolute;
      left: 22%;
      right: 22%;
      bottom: 16%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(245, 179, 1, 0.68), transparent);
      box-shadow: 0 0 22px rgba(245, 179, 1, 0.38);
      opacity: 0.76;
    }

    .platform-media img {
      position: relative;
      z-index: 1;
      width: min(78%, 175px);
      max-height: 150px;
      object-fit: contain;
      mix-blend-mode: screen;
      filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.55));
      animation: assetFloat 6s ease-in-out infinite;
      animation-delay: calc(var(--platform-index, 0) * -0.45s);
      transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: transform;
    }

    .trust-platform-card:hover .platform-media img {
      transform: translate3d(0, -7px, 0) scale(1.035);
    }

    .platform-info {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      margin-top: 1rem;
    }

    .platform-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.15rem;
      font-weight: 800;
      color: rgba(255, 255, 255, 0.94);
      letter-spacing: -0.03em;
    }

    .platform-sub {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.625rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(245, 179, 1, 0.58);
      margin-top: 0.35rem;
    }

    .platform-desc {
      position: relative;
      z-index: 1;
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem;
      line-height: 1.55;
      color: rgba(217, 217, 217, 0.48);
      margin-top: 0.85rem;
    }

    .trust-platform-spotlight {
      position: absolute;
      top: 0;
      left: 0;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(245, 179, 1, 0.12) 0%, transparent 68%);
      pointer-events: none;
      opacity: 0;
      transform: translate3d(-50%, -50%, 0);
      transition: opacity 0.28s ease;
      z-index: 0;
    }

    .trust-platform-card:hover .trust-platform-spotlight {
      opacity: 1;
    }

    .trust-bottom {
      display: grid;
      grid-template-columns: 1.4fr 0.6fr;
      gap: 4rem;
      align-items: center;
    }

    @property --border-angle {
      syntax: '<angle>';
      initial-value: 0deg;
      inherits: false;
    }

    .trust-image-wrap {
      position: relative;
      border-radius: 50px;
      padding: 1px;
      background: conic-gradient(
        from var(--border-angle),
        rgba(245, 179, 1, 0.08) 0%,
        rgba(245, 179, 1, 0.08) 55%,
        rgba(245, 179, 1, 0.9) 70%,
        #f5b301 80%,
        rgba(245, 179, 1, 0.9) 90%,
        rgba(245, 179, 1, 0.08) 100%
      );
      animation: borderBeam 5s linear infinite;
      box-shadow: 0 0 18px rgba(245, 179, 1, 0.12), 0 0 40px rgba(245, 179, 1, 0.06);
    }

    @keyframes borderBeam {
      to { --border-angle: 360deg; }
    }

    .trust-image-wrap img {
      width: 100%;
      display: block;
      border-radius: 14px;
      position: relative;
      z-index: 1;
    }

    .trust-headline {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: clamp(2.25rem, 4.5vw, 3.75rem);
      letter-spacing: -0.035em;
      line-height: 1.05;
      color: #fff;
    }

    .trust-headline em {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      color: var(--gold);
    }

    .trust-body {
      font-family: 'Inter', sans-serif;
      font-size: 0.9375rem;
      line-height: 1.7;
      color: rgba(217, 217, 217, 0.5);
      margin-top: 1.5rem;
      /* max-width: 40ch; */
    }

    .trust-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 0.875rem;
      overflow: hidden;
      margin-top: 1.5rem;
    }

    .trust-stat-item {
      background: var(--midnight);
      padding: 1.25rem 1.5rem;
    }

    .trust-stat-value {
      font-family: 'JetBrains Mono', monospace;
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--gold);
      line-height: 1;
    }

    .trust-stat-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      color: rgba(217, 217, 217, 0.35);
      margin-top: 0.35rem;
    }

    .trust-live-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-bottom: 2rem;
      /* margin-top: 2rem; */
    }

    .trust-live-card {
      padding: 1.75rem 2rem;
      border-radius: 1.2rem;
      background:
        linear-gradient(160deg, rgba(245, 179, 1, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%),
        #121212;
      border: 1px solid rgba(245, 179, 1, 0.18);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 22px 48px -26px rgba(0, 0, 0, 0.72);
      transition: border-color 0.35s ease, box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .trust-live-card:hover {
      border-color: rgba(245, 179, 1, 0.42);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 32px -8px rgba(245, 179, 1, 0.1);
    }

    .trust-live-badge {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0.7;
      margin-bottom: 1rem;
    }

    .pulse-dot {
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #22c55e;
      animation: pulseDot 2s ease-in-out infinite;
    }

    @keyframes pulseDot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.35; transform: scale(0.7); }
    }

    .trust-live-value {
      font-family: 'JetBrains Mono', monospace;
      font-size: clamp(1.75rem, 3vw, 2.625rem);
      font-weight: 500;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 0.6rem;
      letter-spacing: -0.02em;
    }

    .trust-live-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      color: rgba(217, 217, 217, 0.45);
      letter-spacing: 0.01em;
    }

    .trust-assistance {
      margin-top: 2.5rem;
    }

    .trust-assistance-card {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      padding: 1.25rem 1.5rem;
      border-radius: 1rem;
      background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%),
        #121212;
      border: 1px solid rgba(255, 255, 255, 0.075);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
      transition: border-color 0.35s ease;
    }

    .trust-assistance-card:hover {
      border-color: rgba(255, 255, 255, 0.13);
    }

    .assistance-logo {
      flex-shrink: 0;
      width: 140px;
      height: 100px;
      border-radius: 0.75rem;
      overflow: hidden;
    }

    .assistance-logo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .assistance-info {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      min-width: 0;
    }

    .assistance-name {
      font-family: 'Inter', sans-serif;
      font-size: 0.8125rem;
      font-weight: 600;
      color: rgba(217, 217, 217, 0.9);
      letter-spacing: 0.01em;
    }

    .assistance-desc {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      color: rgba(217, 217, 217, 0.4);
      line-height: 1.55;
    }

    .trust-pillars {
      display: flex;
      flex-direction: column;
    }

    .trust-pillar {
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
      padding: 2rem 0;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      transition: border-color 0.3s ease;
    }

    .trust-pillar:last-child {
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .trust-icon-wrap {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      border: 1px solid rgba(245, 179, 1, 0.18);
      background: rgba(245, 179, 1, 0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .trust-icon-wrap svg {
      color: var(--gold);
    }

    .pillar-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.01em;
    }

    .pillar-desc {
      font-family: 'Inter', sans-serif;
      font-size: 0.8125rem;
      color: rgba(217, 217, 217, 0.45);
      line-height: 1.55;
      margin-top: 0.35rem;
      /* max-width: 34ch; */
    }

    /* Clock animation */
    .clock-hand-hour {
      transform-origin: 16px 16px;
      animation: clockHour 12s linear infinite;
    }

    .clock-hand-min {
      transform-origin: 16px 16px;
      animation: clockMin 1s linear infinite;
    }

    @keyframes clockHour {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    @keyframes clockMin {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    /* Lightning draw */
    .lightning-bolt {
      stroke-dasharray: 80;
      stroke-dashoffset: 80;
      animation: drawBolt 1.8s ease forwards infinite;
    }

    @keyframes drawBolt {
      0% {
        stroke-dashoffset: 80;
      }

      60% {
        stroke-dashoffset: 0;
      }

      80% {
        stroke-dashoffset: 0;
        opacity: 1;
      }

      100% {
        stroke-dashoffset: 0;
        opacity: 0.6;
      }
    }

    /* Shield fill */
    .shield-fill {
      stroke-dasharray: 120;
      stroke-dashoffset: 120;
      animation: drawShield 2.5s ease forwards infinite;
    }

    @keyframes drawShield {
      0% {
        stroke-dashoffset: 120;
      }

      70% {
        stroke-dashoffset: 0;
      }

      100% {
        stroke-dashoffset: 0;
      }
    }

    /* ── Mobility Asset Cards ── */
    #mobility-assets {
      background: #090909;
      padding: 8rem 0;
      position: relative;
      overflow: hidden;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    #mobility-assets::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 22% 8%, rgba(245, 179, 1, 0.07), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 36%);
      pointer-events: none;
    }

    .mobility-corner-asset,
    .mobility-orbit-asset {
      position: absolute;
      pointer-events: none;
      user-select: none;
      mix-blend-mode: screen;
      /* opacity: 0.26; */
    }

    .mobility-corner-asset {
      top: 0;
      right: 2rem;
      width: min(28vw, 390px);
      transform: rotate(180deg);
    }

    .mobility-orbit-asset {
      left: -7rem;
      bottom: -5rem;
      width: min(32vw, 430px);
      /* opacity: 0.18; */
    }

    .mobility-shell {
      position: relative;
      z-index: 1;
    }

    .mobility-header {
      display: grid;
      /* grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr); */
      gap: 2rem;
      align-items: end;
      margin-bottom: 3rem;
    }

    .mobility-lede {
      font-family: 'Inter', sans-serif;
      font-size: 0.9375rem;
      line-height: 1.75;
      color: rgba(217, 217, 217, 0.52);
      max-width: 85ch;
      border-left: 1px solid rgba(245, 179, 1, 0.22);
      padding-left: 1.5rem;
    }

    .mobility-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 1.25rem;
      perspective: 1200px;
    }

    .mobility-card {
      grid-column: span 4;
      min-height: 430px;
      position: relative;
      isolation: isolate;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      padding: 1rem 1rem 1.35rem;
      overflow: hidden;
      border-radius: 1.35rem;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.015)),
        #121212;
      border: 1px solid rgba(255, 255, 255, 0.075);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 22px 48px -24px rgba(0, 0, 0, 0.72);
      transform: translate3d(0, 0, 0);
      transform-style: preserve-3d;
      transition:
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.35s ease,
        box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: transform;
    }

    .mobility-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(245, 179, 1, 0.13), transparent 34%),
        linear-gradient(315deg, rgba(255, 255, 255, 0.04), transparent 32%);
      opacity: 0;
      transition: opacity 0.35s ease;
      pointer-events: none;
      z-index: -1;
    }

    .mobility-card:hover {
      border-color: rgba(245, 179, 1, 0.32);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 34px 70px -28px rgba(0, 0, 0, 0.82);
    }

    .mobility-card:hover::before {
      opacity: 1;
    }

    .mobility-card--taxi { grid-column: span 6; }
    .mobility-card--coverage { grid-column: span 6; }
    .mobility-card--food { grid-column: span 6; }
    .mobility-card--platforms { grid-column: span 6; }
    .mobility-card--navigation { grid-column: span 3; }
    .mobility-card--city { grid-column: span 6; }
    .mobility-card--support { grid-column: span 3; }

    .mobility-card--navigation,
    .mobility-card--support {
      gap: 1rem;
      padding: 0.875rem 0.875rem 1.2rem;
    }

    .mobility-media {
      min-height: 235px;
      flex: 1 1 auto;
      position: relative;
      z-index: 1;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 1rem;
      background:
        radial-gradient(circle at 50% 68%, rgba(245, 179, 1, 0.16), transparent 46%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
        #070707;
      border: 1px solid rgba(255, 255, 255, 0.055);
    }

    .mobility-media::after {
      content: '';
      position: absolute;
      left: 18%;
      right: 18%;
      bottom: 12%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(245, 179, 1, 0.7), transparent);
      box-shadow: 0 0 22px rgba(245, 179, 1, 0.42);
      opacity: 0.8;
      transform: translateZ(0);
    }

    .mobility-media img {
      position: relative;
      z-index: 1;
      width: min(92%, 360px);
      max-height: 105%;
      object-fit: contain;
      mix-blend-mode: screen;
      filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.55));
      animation: assetFloat 6s ease-in-out infinite;
      animation-delay: calc(var(--card-index, 0) * -0.55s);
      --media-base-transform: translate3d(0, 0, 0);
      transform: var(--media-base-transform);
      transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
      will-change: transform;
    }

    .mobility-card--navigation .mobility-media,
    .mobility-card--support .mobility-media {
      min-height: 215px;
    }

    .mobility-card--city .mobility-media {
      min-height: 255px;
    }

    .mobility-card--navigation .mobility-media img {
      width: min(82%, 270px);
    }

    .mobility-card--support .mobility-media img {
      width: min(94%, 285px);
    }

    .mobility-card--platforms .mobility-media img {
      width: min(96%, 350px);
    }

    .mobility-card--coverage .mobility-media img {
      width: min(82%, 285px);
    }

    .mobility-card:hover .mobility-media img {
      transform: var(--media-base-transform) translate3d(0, -8px, 0) scale(1.035);
    }

    .mobility-media--split {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      align-items: center;
      justify-items: center;
      column-gap: 0.35rem;
    }

    .mobility-media--split img:first-child,
    .mobility-media--split img:nth-child(2) {
      position: relative;
      inset: auto;
      width: min(96%, 290px);
      max-height: 92%;
      opacity: 0.96;
      --media-base-transform: translate3d(0, 0, 0);
    }

    .mobility-media--split img:nth-child(2) {
      animation-delay: -1.2s;
    }

    .mobility-card-copy {
      position: relative;
      z-index: 1;
      padding: 0 0.35rem;
    }

    .mobility-kicker {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.625rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(245, 179, 1, 0.62);
      margin-bottom: 0.75rem;
    }

    .mobility-card h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: clamp(1.2rem, 2vw, 1.55rem);
      line-height: 1.1;
      letter-spacing: -0.03em;
      color: rgba(255, 255, 255, 0.94);
    }

    .mobility-card--navigation h3,
    .mobility-card--support h3 {
      font-size: clamp(1.1rem, 1.55vw, 1.32rem);
      line-height: 1.12;
    }

    .mobility-card p:not(.mobility-kicker) {
      font-family: 'Inter', sans-serif;
      font-size: 0.8375rem;
      line-height: 1.6;
      color: rgba(217, 217, 217, 0.48);
      margin-top: 0.85rem;
    }

    .mobility-card--navigation p:not(.mobility-kicker),
    .mobility-card--support p:not(.mobility-kicker) {
      font-size: 0.8rem;
      line-height: 1.55;
    }

    .mobility-spotlight {
      position: absolute;
      top: 0;
      left: 0;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(245, 179, 1, 0.12) 0%, transparent 68%);
      pointer-events: none;
      opacity: 0;
      transform: translate3d(-50%, -50%, 0);
      transition: opacity 0.28s ease;
      z-index: 0;
    }

    .mobility-card:hover .mobility-spotlight {
      opacity: 1;
    }

    @keyframes assetFloat {
      0%, 100% {
        translate: 0 0;
      }

      50% {
        translate: 0 -7px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .mobility-media img {
        animation: none;
      }
    }

    /* ── Services Sticky Stack ── */
    #services {
      background: #080808;
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    .services-bg-asset {
      position: absolute;
      z-index: 0;
      pointer-events: none;
      user-select: none;
      mix-blend-mode: screen;
    }

    .services-curve-asset {
      top: 42%;
      right: -6rem;
      width: min(34vw, 460px);
      transform: rotate(184deg);
      /* opacity: 0.58; */
    }

    .services-road-asset {
      right: 34%;
      bottom: -10rem;
      width: min(30vw, 430px);
      transform: rotate(-16deg);
      /* opacity: 0.52; */
    }

    .services-header {
      position: relative;
      z-index: 1;
      padding: 7rem 0 3rem;
      max-width: 1400px;
      margin: 0 auto;
      padding-left: 5rem;
      padding-right: 5rem;
    }

    .sticky-stack-wrapper {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      align-items: stretch;
      gap: 1.25rem;
      padding: 0 1.5rem 5rem;
      max-width: 1220px;
      margin: 0 auto;
    }

    .sc-slot {
      display: flex;
      flex-direction: column;
    }

    .sc-sticky {
      flex: 1;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .sc-inner {
      flex: 1;
      width: 100%;
      min-height: 400px;
      border-radius: 1.75rem;
      overflow: hidden;
      position: relative;
      isolation: isolate;
      will-change: transform, opacity;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    }

    .sc-inner::before {
      content: '';
      position: absolute;
      right: -12%;
      bottom: -18%;
      width: 58%;
      height: 58%;
      z-index: 0;
      pointer-events: none;
      background: radial-gradient(circle, rgba(245, 179, 1, 0.2) 0%, rgba(245, 179, 1, 0.08) 38%, transparent 72%);
      filter: blur(2px);
      opacity: 0.9;
    }

    .sc-inner::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background: linear-gradient(90deg,
        rgba(12, 12, 12, 0.94) 0%,
        rgba(12, 12, 12, 0.78) 44%,
        rgba(12, 12, 12, 0.14) 78%,
        rgba(12, 12, 12, 0.02) 100%);
    }

    .sc-inner:hover {
      transform: translateY(-6px);
      box-shadow: 0 32px 56px -12px rgba(0, 0, 0, 0.65), 0 0 0 1.5px rgba(245, 179, 1, 0.4);
    }

    .sc-content {
      padding: 3rem 2.75rem;
      z-index: 3;
      position: relative;
      text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
    }

    .sc-number {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      color: rgba(245, 179, 1, 0.5);
      margin-bottom: 1.5rem;
    }

    .sc-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: clamp(2.5rem, 4.5vw, 3.75rem);
      letter-spacing: -0.035em;
      line-height: 1.05;
      color: #fff;
    }

    .program-logo-row {
      position: absolute;
      top: clamp(3rem, 4.2vw, 4.25rem);
      right: clamp(1.75rem, 4vw, 3.25rem);
      z-index: 4;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.55rem;
      margin-top: 0;
      pointer-events: none;
    }

    .program-logo-row img {
      width: clamp(4.75rem, 6.5vw, 5.25rem);
      height: clamp(4.75rem, 6.5vw, 5.25rem);
      border-radius: 999px;
      object-fit: contain;
      background: rgba(255, 255, 255, 0.92);
      padding: 0.18rem;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    }

    #sc2 .program-logo-row {
      top: clamp(2rem, 3.5vw, 3.25rem);
      flex-direction: column;
      gap: 0.95rem;
    }

    .sc-desc {
      font-family: 'Inter', sans-serif;
      font-size: 0.9375rem;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 1.25rem;
      max-width: 38ch;
    }

    .sc-feature-list {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .sc-feature {
      display: flex;
      align-items: flex-start;
      gap: 0.625rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.65);
    }

    .sc-feature-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--gold);
      flex: 0 0 5px;
      margin-top: 0.55em;
    }

    .deco-asset {
      position: absolute;
      pointer-events: none;
      user-select: none;
      mix-blend-mode: screen;
      z-index: 2;
      width: 58%;
      object-fit: contain;
      opacity: 1;
      --asset-transform: translate3d(0, 0, 0);
      --asset-mask: radial-gradient(ellipse at 60% 60%,
        #000 0%,
        #000 34%,
        rgba(0, 0, 0, 0.78) 52%,
        rgba(0, 0, 0, 0.32) 74%,
        transparent 96%);
      transform: var(--asset-transform);
      filter:
        brightness(1.14)
        contrast(1.04)
        saturate(1.1)
        drop-shadow(0 0 16px rgba(245, 179, 1, 0.2))
        drop-shadow(0 20px 32px rgba(0, 0, 0, 0.58));
      -webkit-mask-image: var(--asset-mask);
      mask-image: var(--asset-mask);
      -webkit-mask-size: 100% 100%;
      mask-size: 100% 100%;
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-mode: alpha;
      mask-mode: alpha;
      transition: opacity 0.5s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    }

    #sc1::before { right: -8%; bottom: -14%; width: 62%; height: 62%; }

    #sc2::before {
      right: -16%;
      bottom: -24%;
      width: 64%;
      height: 64%;
    }

    #sc1 .deco-asset {
      bottom: -4%;
      right: -4%;
      width: 47%;
      --asset-mask: radial-gradient(ellipse at 64% 62%,
        #000 0%,
        #000 34%,
        rgba(0, 0, 0, 0.78) 52%,
        rgba(0, 0, 0, 0.34) 74%,
        transparent 96%);
    }

    #sc2 .deco-asset {
      bottom: -2%;
      right: -3%;
      width: 47%;
      --asset-mask: radial-gradient(ellipse at 58% 60%,
        #000 0%,
        #000 36%,
        rgba(0, 0, 0, 0.76) 54%,
        rgba(0, 0, 0, 0.3) 76%,
        transparent 96%);
    } 
    #sc3 .deco-asset {
      bottom: 0%;
      right: 0%;
      width: 47%;
      --asset-mask: radial-gradient(ellipse at 60% 62%,
        #000 0%,
        #000 35%,
        rgba(0, 0, 0, 0.74) 53%,
        rgba(0, 0, 0, 0.3) 75%,
        transparent 96%);
    }

    #sc4 .deco-asset {
      bottom: 0%;
      right: 0%;
      width: 47%;
      --asset-mask: radial-gradient(ellipse at 62% 62%,
        #000 0%,
        #000 34%,
        rgba(0, 0, 0, 0.74) 52%,
        rgba(0, 0, 0, 0.28) 74%,
        transparent 96%);
    }

    .sc-inner:hover .deco-asset {
      opacity: 1;
      transform: var(--asset-transform) translate3d(-10px, -8px, 0) scale(1.035);
    }

    /* Card 1: Taxi */
    .sc-inner.card-1 {
      background: var(--graphite);
      border: 1px solid rgba(255, 255, 255, 0.04);
    }

    /* Card 2: Courier */
    .sc-inner.card-2 {
      background: var(--midnight);
      border: 1px solid rgba(255, 255, 255, 0.04);
    }


    /* ── CTA Booking ── */
    #kontakt {
      background: #0D0D0D;
      padding: 8rem 0;
      position: relative;
      overflow: hidden;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    #kontakt::before {
      content: '';
      position: absolute;
      bottom: -15%;
      left: -8%;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(245, 179, 1, 0.09) 0%, transparent 65%);
      pointer-events: none;
    }

    .booking-grid {
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: 5rem;
      align-items: center;
    }

    .booking-copy-eyebrow {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6875rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }

    .booking-copy-h2 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: clamp(2rem, 4vw, 3.5rem);
      letter-spacing: -0.035em;
      line-height: 1.08;
      color: rgba(255, 255, 255, 0.95);
    }

    .booking-copy-h2 em {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 600;
      color: var(--gold);
    }

    .booking-copy-body {
      font-family: 'Inter', sans-serif;
      font-size: 0.9375rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.45);
      /* max-width: 42ch; */
      margin-top: 1.5rem;
    }

    .booking-office-card {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
      max-width: 35rem;
      margin-top: 1.75rem;
      padding: 0.85rem;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 1.25rem;
      background: rgba(255, 255, 255, 0.045);
      overflow: hidden;
    }

    .booking-map-wrap {
      border-radius: 0.9rem;
      overflow: hidden;
      height: 240px;
      flex-shrink: 0;
      width: 100%;
    }

    .booking-map {
      width: 100%;
      max-width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    .booking-contact-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 13.5rem), 1fr));
      gap: 0.65rem;
    }

    .bcontact-card {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      padding: 0.8rem 0.75rem;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 0.85rem;
    }

    .bcontact-icon {
      width: 17px;
      height: 17px;
      color: var(--gold);
      margin-bottom: 0.2rem;
      flex-shrink: 0;
    }

    .bcontact-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem;
      text-transform: uppercase;
      letter-spacing: 0.09em;
      color: rgba(255, 255, 255, 0.4);
      font-weight: 500;
      line-height: 1.3;
    }

    .bcontact-value {
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--gold);
      text-decoration: none;
      line-height: 1.45;
      transition: color 0.15s ease;
      overflow-wrap: normal;
      word-break: normal;
    }

    .bcontact-value[href^="mailto:"] {
      white-space: nowrap;
    }

    .bcontact-value:hover {
      color: #fff;
    }

    .bcontact-card--social {
      justify-content: space-between;
      min-height: 100%;
      row-gap: 0.75rem;
    }

    .booking-trust-row {
      display: flex;
      gap: 2rem;
      margin-top: 2.5rem;
      flex-wrap: wrap;
    }

    .btrust-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .btrust-icon {
      width: 18px;
      height: 18px;
      color: var(--gold);
    }

    .btrust-text {
      font-family: 'Inter', sans-serif;
      font-size: 0.8125rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.5);
    }

    /* Widget */
    .booking-widget {
      background: #161616;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 1.75rem;
      padding: 2.25rem;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 20px 60px rgba(0, 0, 0, 0.4);
    }

    .agreement-row {
      display: flex;
      align-items: flex-start;
      gap: 0.7rem;
      margin-top: 1rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.76rem;
      line-height: 1.45;
      color: rgba(255, 255, 255, 0.44);
      cursor: pointer;
    }

    .agreement-row input {
      width: 1rem;
      height: 1rem;
      margin-top: 0.1rem;
      accent-color: var(--gold);
      flex: 0 0 auto;
    }

    .btn-book-now:disabled {
      cursor: wait;
      opacity: 0.72;
      transform: none;
      box-shadow: none;
    }

    .service-toggle-wrap {
      display: flex;
      gap: 0.375rem;
      padding: 0.3rem;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 0.75rem;
      margin-bottom: 1.75rem;
    }

    .svc-btn {
      flex: 1;
      padding: 0.625rem 0.5rem;
      border-radius: 0.5rem;
      border: none;
      background: transparent;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.8125rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.35);
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }

    .svc-btn.active {
      background: rgba(245, 179, 1, 0.12);
      color: var(--gold);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(245, 179, 1, 0.15);
    }

    .input-row {
      position: relative;
      margin-bottom: 0.75rem;
    }

    .input-icon-wrap {
      position: absolute;
      left: 1rem;
      top: 50%;
      transform: translateY(-50%);
      color: var(--gold);
      display: flex;
      align-items: center;
    }

    .booking-input {
      width: 100%;
      padding: 0.875rem 1rem 0.875rem 2.75rem;
      border-radius: 0.875rem;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.05);
      font-family: 'Inter', sans-serif;
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.88);
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .booking-input:focus {
      border-color: rgba(245, 179, 1, 0.5);
      box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.1);
    }

    .booking-input::placeholder {
      color: rgba(255, 255, 255, 0.25);
    }

    .swap-btn {
      display: flex;
      justify-content: center;
      margin: 0.25rem 0;
    }

    .swap-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(17, 17, 17, 0.06);
      border: 1px solid rgba(217, 217, 217, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: rgba(17, 17, 17, 0.4);
      transition: background 0.2s ease;
    }

    .swap-icon:hover {
      background: rgba(17, 17, 17, 0.1);
    }

    .booking-meta {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 0.75rem;
      margin-top: 1.25rem;
    }

    .meta-box {
      background: rgba(17, 17, 17, 0.04);
      border: 1px solid rgba(217, 217, 217, 0.5);
      border-radius: 0.875rem;
      padding: 0.875rem 1rem;
    }

    .meta-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.5625rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(17, 17, 17, 0.35);
      display: block;
      margin-bottom: 0.25rem;
    }

    .meta-value {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.9375rem;
      font-weight: 500;
      color: var(--midnight);
    }

    .meta-value.highlight {
      color: var(--gold);
    }

    .btn-book-now {
      width: 100%;
      margin-top: 1.25rem;
      padding: 1.125rem;
      border-radius: 1rem;
      border: none;
      background: var(--gold);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 0.9375rem;
      color: var(--midnight);
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: transform 0.15s ease, box-shadow 0.2s ease;
    }

    .btn-book-now:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(245, 179, 1, 0.3);
    }

    .btn-book-now:disabled:hover {
      transform: none;
      box-shadow: none;
    }

    .btn-book-now:active {
      transform: scale(0.98);
    }

    .ripple {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.38);
      transform: scale(0);
      animation: rippleAnim 0.6s linear;
      pointer-events: none;
    }

    @keyframes rippleAnim {
      to {
        transform: scale(4);
        opacity: 0;
      }
    }

    .widget-footer-note {
      text-align: center;
      margin-top: 1rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.6875rem;
      color: rgba(255, 255, 255, 0.22);
    }

    .form-status {
      min-height: 1.1rem;
      margin-top: 0.8rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      line-height: 1.45;
      text-align: center;
      color: rgba(255, 255, 255, 0.48);
    }

    .form-status.success {
      color: #86efac;
    }

    .form-status.error {
      color: #fca5a5;
    }

    /* ── 404 page ── */
    .error-page {
      min-height: 100dvh;
      color: var(--smoke);
    }

    .error-hero {
      position: relative;
      display: flex;
      align-items: center;
      min-height: 100dvh;
      padding: clamp(8rem, 15vh, 11rem) clamp(1.25rem, 4vw, 4rem) clamp(4.5rem, 9vh, 7rem);
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.82) 47%, rgba(5, 5, 5, 0.5) 100%),
        url("assets/img/coffee_taxi_logos_desktop_1600.jpg") center / cover no-repeat,
        #070707;
    }

    .error-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 16% 24%, rgba(245, 179, 1, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(5, 5, 5, 0) 60%, #050505 100%);
      pointer-events: none;
    }

    .error-hero__inner {
      position: relative;
      z-index: 2;
      width: min(100%, 1180px);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.72fr);
      gap: clamp(2rem, 5vw, 5rem);
      align-items: end;
    }

    .error-hero__copy {
      max-width: 48rem;
    }

    .error-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.35rem 0.875rem;
      margin-bottom: clamp(1.8rem, 4vw, 2.7rem);
      border-radius: 99px;
      border: 1px solid rgba(245, 179, 1, 0.28);
      background: rgba(245, 179, 1, 0.06);
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6875rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(245, 179, 1, 0.75);
    }

    .error-kicker::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #f5b301;
      box-shadow: 0 0 0 4px rgba(245, 179, 1, 0.12);
    }

    .error-code {
      display: block;
      font-family: 'JetBrains Mono', monospace;
      font-size: clamp(0.78rem, 1.1vw, 0.95rem);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.52);
      margin-bottom: 0.9rem;
    }

    .error-title {
      margin: 0;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(3.25rem, 7vw, 5.2rem);
      line-height: 0.95;
      letter-spacing: -0.045em;
      color: #fff;
      text-wrap: balance;
    }

    .error-title em {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: -0.025em;
    }

    .error-sub {
      max-width: 54ch;
      margin-top: clamp(1.4rem, 3vw, 2rem);
      font-family: 'Inter', sans-serif;
      font-size: clamp(1rem, 1.45vw, 1.12rem);
      line-height: 1.7;
      color: rgba(217, 217, 217, 0.74);
      text-wrap: pretty;
    }

    .error-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      margin-top: clamp(1.8rem, 4vw, 2.6rem);
    }

    .error-actions a {
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .error-panel {
      position: relative;
      padding: clamp(1.35rem, 3vw, 2rem);
      border: 1px solid rgba(245, 179, 1, 0.18);
      border-radius: 1.35rem;
      background:
        radial-gradient(circle at 18% 12%, rgba(245, 179, 1, 0.16), transparent 38%),
        rgba(17, 17, 17, 0.72);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 80px rgba(0, 0, 0, 0.4);
    }

    .error-panel__label {
      margin-bottom: 1.35rem;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.625rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.38);
    }

    .error-route-list {
      display: grid;
      gap: 0.75rem;
    }

    .error-route {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.85rem 0;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      font-family: 'Inter', sans-serif;
      color: rgba(255, 255, 255, 0.72);
      text-decoration: none;
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .error-route:hover {
      color: #fff;
      transform: translateX(4px);
    }

    .error-route span:first-child {
      font-weight: 600;
    }

    .error-route span:last-child {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.7rem;
      color: rgba(245, 179, 1, 0.72);
    }

    @media (max-width: 880px) {
      .error-hero {
        align-items: flex-start;
      }

      .error-hero__inner {
        grid-template-columns: 1fr;
        align-items: start;
      }

      .error-panel {
        max-width: 34rem;
      }
    }

    @media (max-width: 520px) {
      .error-hero {
        padding-inline: 1rem;
      }

      .error-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .error-actions .btn-primary,
      .error-actions .btn-driver-zone {
        width: 100%;
      }

      .error-route {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.35rem;
      }
    }

    /* ── Footer ── */
    #footer {
      background: #050505;
      padding: 2.5rem 0;
      position: relative;
    }

    #footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg,
        transparent 0%,
        rgba(245, 179, 1, 0.5) 20%,
        rgba(245, 179, 1, 0.85) 50%,
        rgba(245, 179, 1, 0.5) 80%,
        transparent 100%);
      box-shadow: 0 0 28px rgba(245, 179, 1, 0.22);
    }

    /* Editorial header */
    .footer-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 3rem;
      padding-top: 1rem;
    }

    .footer-wordmark-block {
      display: flex;
      align-items: center;
      gap: clamp(1rem, 2vw, 1.5rem);
      /* flex: 1 1 24rem;
      min-width: 0; */
    }

    .footer-logo-img {
      width: clamp(5.5rem, 10vw, 8.25rem);
      height: auto;
      display: block;
      object-fit: contain;
      /* padding: clamp(0.42rem, 0.75vw, 0.625rem);
      border-radius: clamp(1.25rem, 2.2vw, 2rem); */
      padding: 1px;
      border-radius: 16px;
      background: conic-gradient(
        from var(--border-angle),
        rgba(245, 179, 1, 0.08) 0%,
        rgba(245, 179, 1, 0.08) 55%,
        rgba(245, 179, 1, 0.9) 70%,
        #f5b301 80%,
        rgba(245, 179, 1, 0.9) 90%,
        rgba(245, 179, 1, 0.08) 100%
      );
      animation: borderBeam 5s linear infinite;
      box-shadow: 0 0 18px rgba(245, 179, 1, 0.12), 0 0 40px rgba(245, 179, 1, 0.06);
      flex-shrink: 0;
    }

    .footer-brand-copy {
      min-width: 0;
    }

    .footer-wordmark {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: clamp(3rem, 7vw, 6.5rem);
      letter-spacing: -0.04em;
      line-height: 1;
      color: rgba(255, 255, 255, 0.92);
      margin-bottom: 1.25rem;
    }

    .footer-wordmark em {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 600;
      color: var(--gold);
    }

    .footer-tagline {
      font-family: 'Inter', sans-serif;
      font-size: 0.875rem;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.4);
      max-width: 42ch;
    }

    .footer-header-meta {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 1.25rem;
      /* flex: 1 1 44rem;
      min-width: min(100%, 44rem); */
    }

    .dispatch-status {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.4rem 0.875rem;
      border-radius: 99px;
      background: rgba(34, 197, 94, 0.06);
      border: 1px solid rgba(34, 197, 94, 0.18);
    }

    .dispatch-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #22c55e;
      animation: pulseDot 2s ease-in-out infinite;
    }

    .dispatch-text {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.625rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(34, 197, 94, 0.75);
    }

    .footer-platform-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 10px;
    }

    .footer-ptag {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.5625rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      padding: 0.25rem 0.625rem;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 99px;
      transition: border-color 0.2s ease, color 0.2s ease;
    }

    .footer-ptag:hover {
      border-color: rgba(245, 179, 1, 0.35);
      color: rgba(245, 179, 1, 0.7);
    }

    /* Social Icons */
    .footer-social {
      margin-top: 16px;
    }

    .social-icons {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .social-icon-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 8px;
      background: var(--graphite);
      border: 1px solid rgba(245, 179, 1, 0.25);
      color: var(--silver);
      text-decoration: none;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .social-icon-link:hover {
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-2px);
    }

    .social-icon-link svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    /* Social follow row in contact/booking section */
    .social-follow-row {
      display: flex;
      align-items: flex-start;
      gap: 0.85rem;
      padding: 0.8rem 0.75rem;
      border-top: 0;
      margin-top: 0;
    }

    .bcontact-card--social .social-icons {
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    .social-follow-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.35);
      white-space: nowrap;
    }

    /* Gold rule */
    .footer-rule {
      height: 1px;
      background: linear-gradient(90deg,
        rgba(245, 179, 1, 0.6) 0%,
        rgba(255, 255, 255, 0.06) 80%,
        transparent 100%);
      margin: 3.5rem 0;
    }

    /* Utility grid */
    .footer-grid {
      display: grid;
      grid-template-columns: minmax(8rem, 0.7fr) minmax(12rem, 0.95fr) minmax(16rem, 1.35fr);
      gap: clamp(1.5rem, 2.5vw, 3rem);
      /* padding-bottom: 3.5rem; */
      /* border-bottom: 1px solid rgba(255, 255, 255, 0.04); */
    }

    .footer-col-title {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: rgba(255, 255, 255, 0.28);
      margin-bottom: 1.25rem;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .footer-links a {
      font-family: 'Inter', sans-serif;
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.4);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      transition: color 0.2s ease;
      position: relative;
    }

    .footer-links a::before {
      content: '—';
      font-size: 0.6rem;
      color: rgba(245, 179, 1, 0);
      transition: color 0.2s ease, transform 0.2s ease;
      transform: translateX(-4px);
      flex-shrink: 0;
    }

    .footer-links a:hover {
      color: rgba(255, 255, 255, 0.85);
    }

    .footer-links a:hover::before {
      color: var(--gold);
      transform: translateX(0);
    }

    .footer-contact-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.875rem;
    }

    .footer-contact-item svg {
      color: rgba(245, 179, 1, 0.65);
      flex-shrink: 0;
    }

    .footer-contact-item span {
      font-family: 'Inter', sans-serif;
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.4);
      transition: color 0.2s ease;
    }

    .footer-contact-item:hover span {
      color: rgba(255, 255, 255, 0.7);
    }

    .footer-contact-item:hover svg {
      color: var(--gold);
    }

    .footer-company-info {
      display: grid;
      gap: 0.85rem;
      margin: 0;
    }

    .footer-company-item {
      display: grid;
      gap: 0.2rem;
    }

    .footer-company-item dt {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(245, 179, 1, 0.54);
    }

    .footer-company-item dd {
      margin: 0;
      font-family: 'Inter', sans-serif;
      font-size: 0.875rem;
      line-height: 1.55;
      color: rgba(255, 255, 255, 0.4);
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      /* padding-top: 2rem; */
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-copy {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.625rem;
      color: rgba(255, 255, 255, 0.4);
      letter-spacing: 0.06em;
    }

    .footer-copy a {
      color: var(--smoke);
      text-decoration: none;
    }

    .footer-copy a:hover {
      color: var(--gold);
    }

    .footer-legal-links {
      display: flex;
      gap: 1.75rem;
    }

    .footer-legal-links a {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.4);
      text-decoration: none;
      transition: color 0.25s ease;
    }

    .footer-legal-links a:hover {
      color: rgba(255, 255, 255, 0.55);
    }

    .driver-modal[hidden] {
      display: none;
    }

    .driver-modal {
      position: fixed;
      inset: 0;
      z-index: 10001;
      display: grid;
      place-items: center;
      padding: 1.25rem;
    }

    .driver-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(5, 5, 5, 0.78);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }

    .driver-modal__panel {
      position: relative;
      width: min(100%, 34rem);
      padding: clamp(1.5rem, 5vw, 2.35rem);
      border: 1px solid rgba(245, 179, 1, 0.2);
      border-radius: 1.35rem;
      background:
        radial-gradient(circle at 12% 8%, rgba(245, 179, 1, 0.14), transparent 34%),
        #111111;
      box-shadow: 0 32px 90px rgba(0, 0, 0, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.06);
      overflow: hidden;
    }

    .driver-modal__panel::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.28'/%3E%3C/svg%3E");
      opacity: 0.035;
    }

    .driver-modal__close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      z-index: 2;
      width: 2.35rem;
      height: 2.35rem;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 0.75rem;
      background: rgba(255, 255, 255, 0.05);
      cursor: pointer;
      transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
    }

    .driver-modal__close:hover {
      border-color: rgba(245, 179, 1, 0.38);
      background: rgba(245, 179, 1, 0.08);
    }

    .driver-modal__close:active {
      transform: scale(0.96);
    }

    .driver-modal__close span {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 1rem;
      height: 2px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.72);
      transform-origin: center;
    }

    .driver-modal__close span:first-child {
      transform: translate(-50%, -50%) rotate(45deg);
    }

    .driver-modal__close span:last-child {
      transform: translate(-50%, -50%) rotate(-45deg);
    }

    .driver-modal__eyebrow {
      position: relative;
      z-index: 1;
      max-width: calc(100% - 4rem);
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.66rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(245, 179, 1, 0.76);
      margin-bottom: 0.85rem;
    }

    .driver-modal__panel h2 {
      position: relative;
      max-width: 12ch;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(2rem, 7vw, 3.15rem);
      font-weight: 800;
      line-height: 1.02;
      letter-spacing: -0.035em;
      color: rgba(255, 255, 255, 0.94);
    }

    .driver-modal__body {
      position: relative;
      max-width: 46ch;
      margin-top: 1.1rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.92rem;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.5);
    }

    .driver-modal__actions {
      position: relative;
      display: grid;
      gap: 0.75rem;
      margin-top: 1.65rem;
    }

    .driver-modal__actions a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      min-height: 3.35rem;
      padding: 0.95rem 1rem;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 0.9rem;
      background: rgba(255, 255, 255, 0.055);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.92rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.84);
      text-decoration: none;
      transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.15s ease;
    }

    .driver-modal__actions a::after {
      content: '->';
      font-family: 'JetBrains Mono', monospace;
      color: rgba(245, 179, 1, 0.75);
    }

    .driver-modal__actions a:hover {
      border-color: rgba(245, 179, 1, 0.42);
      background: rgba(245, 179, 1, 0.1);
      color: var(--gold);
      transform: translateY(-1px);
    }

    .modal-open body {
      overflow: hidden;
    }

    /* ── Container ── */
    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 5rem;
    }

    /* ── Kinetic marquee ── */
    .marquee-wrap {
      background: var(--gold);
      padding: 1.875rem 0;
      overflow: hidden;
      white-space: nowrap;
      -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
      mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
    }

    .marquee-track {
      display: inline-flex;
      animation: marqueeSlide 22s linear infinite;
    }

    .marquee-item {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 0.8125rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--midnight);
      padding: 0 2.5rem;
    }

    .marquee-sep {
      color: rgba(17, 17, 17, 0.3);
      font-weight: 400;
    }

    @keyframes marqueeSlide {
      from {
        transform: translateX(0);
      }

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

    /* ── Responsive ── */
    @media (max-width: 1024px) {
      .nav-logo {
        border-radius: 8px;
      }

      .container {
        padding: 0 2.5rem;
      }

      .hero-content {
        padding: 0 2.5rem;
      }

      .hero-h1-line1, .hero-h1-line2 {
        font-size: clamp(2.5rem, 5vw, 5rem);
      }

      .hero-sub {
        font-size: 0.95rem;
        line-height: 1.58;
        max-width: auto;
      }

      .services-header {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
      }

      .services-curve-asset {
        /* top: 5rem; */
        left: -8.5rem;
        width: 360px;
        /* opacity: 0.5; */
      }

      .services-road-asset {
        right: -8rem;
        bottom: 4rem;
        width: 360px;
        /* opacity: 0.48; */
      }

      .sticky-stack-wrapper {
        padding: 0 2.5rem 4rem;
        gap: 1rem;
      }

      .trust-grid {
        gap: 3rem;
      }

      .trust-main {
        flex-direction: column;
        gap: 2.5rem;
        align-items: flex-start;
      }

      .trust-platforms {
        width: 100%;
      }

      .trust-platforms-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .trust-platform-card {
        min-height: 300px;
      }

      .trust-bottom {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .trust-circle-asset {
        right: -5.5rem;
        bottom: 3rem;
        width: min(42vw, 340px);
        /* opacity: 0.68; */
      }

      .trust-corner-asset {
        top: 1.5rem;
        right: -2.5rem;
        width: min(34vw, 300px);
        /* opacity: 0.64; */
      }

      .trust-corner-asset--bottom {
        top: auto;
        right: auto;
        left: -1rem;
        bottom: 3.75rem;
        width: min(34vw, 300px);
        /* opacity: 0.58; */
      }

      .mobility-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
      }

      .mobility-lede {
        max-width: 68ch;
      }

      .mobility-grid {
        grid-template-columns: repeat(6, 1fr);
      }

      .mobility-card,
      .mobility-card--food,
      .mobility-card--platforms,
      .mobility-card--navigation,
      .mobility-card--taxi,
      .mobility-card--city,
      .mobility-card--support,
      .mobility-card--coverage {
        grid-column: span 3;
      }

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

      .bento-card-large {
        grid-row: auto;
      }

      .booking-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .booking-office-card {
        max-width: 100%;
      }

      .footer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
      }

      .footer-header-meta {
        align-items: flex-start;
        width: 100%;
      }

      .footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2.5rem;
        width: 100%;
      }

    }

    /* ── Hamburger & mobile menu ── */
    #navbar.menu-open #navbar-inner {
      --nav-surface: rgba(17, 17, 17, 0.96);
      border-radius: 1rem;
    }

    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      /* margin-left: auto; */
    }

    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: transform 0.25s, opacity 0.25s;
    }

    .nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.active span:nth-child(2) { opacity: 0; }
    .nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .nav-mobile-menu {
      display: none;
      flex-direction: column;
      padding: 0;
      margin-top: 0.45rem;
      background: rgba(17, 17, 17, 0.96);
      border: 1px solid rgba(245, 179, 1, 0.14);
      border-radius: 1rem;
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      overflow: hidden;
      box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .nav-mobile-menu.open {
      display: flex;
    }

    .nav-mobile-menu a {
      padding: 0.875rem 1.75rem;
      font-size: 0.9375rem;
      color: rgba(255,255,255,0.8);
      border-top: 1px solid rgba(255,255,255,0.06);
      text-decoration: none;
      transition: color 0.2s;
    }

    .nav-mobile-menu a:first-child {
      border-top: none;
    }

    .nav-mobile-menu a:hover {
      color: var(--gold);
    }

    .nav-mobile-lang {
      display: flex;
      flex-direction: column;
      gap: 0;
      padding: 0.875rem 1.75rem;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .nav-mobile-lang__label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem;
      font-weight: 600;
      color: rgba(255,255,255,0.3);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 0.55rem;
      display: block;
    }

    .nav-mobile-lang__links {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }

    .nav-mobile-lang .lang-btn {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      transition: color 0.2s;
      padding: 0;
      border: none;
    }

    .nav-mobile-lang .lang-btn--active {
      color: var(--gold);
    }

    .nav-mobile-lang .lang-btn:hover {
      color: #fff;
    }



    @media (max-width: 1024px) {
      .nav-links {
        display: none;
      }

      .nav-hamburger {
        display: flex;
      }
    }

    @media (max-width: 768px) {
      .container {
        padding: 0 1.25rem;
      }

      .hero-content {
        padding: 0 1.5rem;
      }

      .services-header {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }

      .services-curve-asset {
        top: 47%;
        /* left: -9.5rem; */
        width: 310px;
        /* opacity: 0.44; */
      }

      .services-road-asset {
        right: 31%;
        bottom: -9rem;
        width: 310px;
        /* opacity: 0.42; */
      }

      .hero-scroll-line {
        right: 1.5rem;
      }

      #navbar {
        width: calc(100% - 2rem);
        top: 1rem;
        --nav-logo-compact: 2.7rem;
        --nav-logo-expanded: clamp(4.35rem, 18vw, 5.25rem);
        --nav-bar-height: 3.95rem;
        --nav-logo-shell: calc(var(--nav-logo-size) + 2.4rem);
        --nav-pad-x: 1.1rem;
      }

      #navbar.scrolled {
        top: 0.65rem;
        --nav-bar-height: calc(var(--nav-logo-compact) + 1.5rem);
      }

      #navbar-inner {
        gap: 0.85rem;
        min-height: calc(var(--nav-logo-size) + 1.1rem);
        padding: 0.75rem var(--nav-pad-x);
      }

      .hero-content-wrap {
        max-width: 100% !important;
      }

      .hero-platforms {
        flex-wrap: wrap;
      }

      .hero-platform-tag {
        width: 100%;
      }

      .sticky-stack-wrapper {
        grid-template-columns: 1fr;
        padding: 0 1rem 3rem;
        gap: 1rem;
      }

      #mobility-assets {
        padding: 5.5rem 0;
      }

      .mobility-corner-asset,
      .mobility-orbit-asset {
        /* display: none; */
      }

      .mobility-orbit-asset {
        left: 0rem;
        bottom: -1rem;
      }

      .trust-circle-asset {
        right: -4.5rem;
        bottom: 0rem;
        width: 260px;
        /* opacity: 0.58; */
      }

      .trust-corner-asset {
        top: 3rem;
        right: -1rem;
        width: 240px;
        /* opacity: 0.62; */
      }

      .trust-corner-asset--bottom {
        top: auto;
        right: auto;
        left: -1rem;
        bottom: 4.75rem;
        width: 220px;
        /* opacity: 0.54; */
      }

      .trust-platforms-grid {
        grid-template-columns: 1fr;
      }

      .trust-platform-card {
        min-height: auto;
        border-radius: 1rem;
      }

      .platform-media {
        min-height: 190px;
      }

      .platform-media img {
        width: min(72%, 190px);
      }

      .mobility-lede {
        padding-left: 1rem;
      }

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

      .mobility-card,
      .mobility-card--taxi,
      .mobility-card--food,
      .mobility-card--platforms,
      .mobility-card--navigation,
      .mobility-card--city,
      .mobility-card--support,
      .mobility-card--coverage {
        grid-column: 1 / -1;
        min-height: auto;
        border-radius: 1rem;
        padding: 0.875rem 0.875rem 1.25rem;
      }

      .mobility-card--coverage {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
      }

      .mobility-media {
        min-height: 210px;
        border-radius: 0.8rem;
      }

      .mobility-card-copy {
        padding: 0 0.15rem;
      }

      .mobility-card--coverage .mobility-card-copy {
        padding: 0 0.15rem;
      }

      .sc-inner {
        min-height: 340px;
      }

      .sc-content {
        padding: 2.25rem 1.75rem;
      }

      .program-logo-row {
        top: 2rem;
        right: 1.35rem;
      }

      #sc2 .program-logo-row {
        top: 1.2rem;
        gap: 0.5rem;
      }

      #sc2 .program-logo-row img {
        width: 3.5rem;
        height: 3.5rem;
      }

      .program-logo-row img {
        width: 4.5rem;
        height: 4.5rem;
      }

      .deco-asset {
        width: 82% !important;
        right: -22% !important;
        bottom: -10% !important;
        top: auto !important;
        /* opacity: 0.28; */
        --asset-transform: translate3d(0, 0, 0) !important;
        --asset-mask: radial-gradient(ellipse at 58% 62%,
          #000 0%,
          #000 28%,
          rgba(0, 0, 0, 0.68) 48%,
          rgba(0, 0, 0, 0.24) 70%,
          transparent 95%) !important;
        filter:
          brightness(1.1)
          contrast(1.02)
          saturate(1.08)
          drop-shadow(0 0 12px rgba(245, 179, 1, 0.16))
          drop-shadow(0 16px 28px rgba(0, 0, 0, 0.48));
      }

      .sc-inner::after {
        background: linear-gradient(180deg,
          rgba(12, 12, 12, 0.94) 0%,
          rgba(12, 12, 12, 0.82) 56%,
          rgba(12, 12, 12, 0.66) 100%);
      }

      .trust-stats {
        grid-template-columns: repeat(2, 1fr);
      }

      .trust-live-stats {
        grid-template-columns: 1fr;
      }


      .footer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.75rem;
      }

      .footer-wordmark-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }

      .footer-header-meta {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        width: 100%;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
      }

      .footer-rule {
        margin: 2.5rem 0;
      }

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

      .booking-meta {
        grid-template-columns: 1fr 1fr;
      }

      .booking-contact-cards {
        grid-template-columns: 1fr;
      }

      .service-toggle-wrap {
        flex-wrap: wrap;
      }

      .svc-btn {
        flex: 1 1 calc(50% - 0.375rem);
      }

      .trust-headline {
        font-size: 1.7rem;
      }

      .trust-stat-value {
        font-size: 1.6rem;
      }

      .trust-stat-label {
        font-size: 0.65rem;
      }
    }

    @media (max-width: 480px) {
      .booking-widget {
        padding: 1.5rem 0.875rem;
      }
    }

    @media (max-width: 450px) {
      .trust-assistance-card {
        flex-direction: column;
        align-items: flex-start;
      }

      .assistance-logo {
        width: 100%;
        height: 120px;
      }
    }

    @media (max-width: 420px) {
      #navbar {
        width: calc(100% - 1rem);
        --nav-logo-compact: 2.35rem;
        --nav-logo-expanded: 4.15rem;
        --nav-bar-height: 3.45rem;
        --nav-logo-shell: calc(var(--nav-logo-size) + 2rem);
        --nav-pad-x: 1rem;
      }

      #navbar.scrolled .nav-logo {
        /* border-radius: clamp(0.5rem, 0.5vw, 0.5rem); */
        border-radius: 4px;
      }

      #navbar-inner {
        padding: 0.625rem var(--nav-pad-x);
        gap: 0.65rem;
        min-height: calc(var(--nav-logo-size) + 1rem);
      }

      .btn-order-ride {
        padding: 0.5rem 0.75rem;
        font-size: 0.72rem;
        white-space: nowrap;
      }

      .booking-office-card {
        grid-template-columns: 1fr;
      }

      .booking-map-wrap {
        height: 200px;
      }
    }

    @media (max-width: 420px) {
      .btn-primary,
      .btn-driver-zone,
      .btn-ghost {
        font-size: 0.8125rem;
        padding: 0.75rem 1.25rem;
      }
    }

    @media (max-width: 368px) {
      .hero-h1-line1 {
        font-size: clamp(1.75rem, 10vw, 2.5rem);
      }

      .hero-h1-line2 {
        font-size: clamp(2rem, 11vw, 3rem);
      }
    }

    /* ── Inline-extracted classes ── */

    .hero-content-wrap {
      max-width: 56%;
    }

    html[lang="ru"] .hero-content-wrap,
    html[lang="uk"] .hero-content-wrap {
      max-width: min(62%, 760px);
    }

    html[lang="ru"] .hero-badge span,
    html[lang="uk"] .hero-badge span {
      font-size: 0.625rem;
      letter-spacing: 0.08em;
    }

    html[lang="ru"] .hero-h1-line1,
    html[lang="uk"] .hero-h1-line1 {
      font-size: clamp(1.85rem, 4.55vw, 3.35rem);
      letter-spacing: -0.025em;
      white-space: nowrap;
      max-width: none;
    }

    html[lang="ru"] .hero-h1-line2,
    html[lang="uk"] .hero-h1-line2 {
      font-size: clamp(2.1rem, 4.85vw, 3.55rem);
      letter-spacing: -0.012em;
    }

    html[lang="ru"] .hero-sub,
    html[lang="uk"] .hero-sub {
      font-size: 0.95rem;
      line-height: 1.58;
      max-width: 58ch;
    }

    html[lang="ru"] .section-headline,
    html[lang="uk"] .section-headline {
      font-size: clamp(1.6rem, 2.9vw, 2.35rem);
    }

    html[lang="ru"] .trust-headline,
    html[lang="ru"] .booking-headline,
    html[lang="uk"] .trust-headline,
    html[lang="uk"] .booking-headline {
      font-size: clamp(1.75rem, 3.05vw, 2.55rem);
    }

    html[lang="ru"] .sc-title,
    html[lang="uk"] .sc-title {
      font-size: clamp(1.6rem, 2.75vw, 2.5rem);
    }

    html[lang="ru"] .btn-driver-zone,
    html[lang="uk"] .btn-driver-zone {
      font-size: 0.875rem;
    }

    html[lang="ru"] .nav-links {
      gap: 1.75rem;
    }

    html[lang="ru"] .nav-links a {
      font-size: 0.7125rem;
    }

    html[lang="ru"] .btn-order-ride {
      font-size: 0.7125rem;
      padding: 0.5rem 1rem;
    }

    @media (max-width: 768px) {
      html[lang="ru"] .hero-content-wrap,
      html[lang="uk"] .hero-content-wrap {
        max-width: 100%;
      }

      html[lang="ru"] .hero-h1-line1,
      html[lang="uk"] .hero-h1-line1 {
        font-size: clamp(1.55rem, 7vw, 2.25rem);
        white-space: normal;
        /* max-width: 12ch; */
      }

      html[lang="ru"] .hero-h1-line2,
      html[lang="uk"] .hero-h1-line2 {
        font-size: clamp(1.85rem, 8.2vw, 2.65rem);
      }

      html[lang="ru"] .hero-sub,
      html[lang="uk"] .hero-sub {
        font-size: 0.9rem;
        line-height: 1.55;
      }

      html[lang="ru"] .hero-ctas,
      html[lang="uk"] .hero-ctas {
        gap: 0.65rem;
        margin-top: 1.75rem;
      }

      html[lang="ru"] .btn-primary,
      html[lang="ru"] .btn-ghost,
      html[lang="ru"] .btn-driver-zone,
      html[lang="uk"] .btn-primary,
      html[lang="uk"] .btn-ghost,
      html[lang="uk"] .btn-driver-zone {
        font-size: 0.78rem;
        padding: 0.72rem 1rem;
        border-radius: 0.7rem;
      }

      html[lang="ru"] .section-headline,
      html[lang="uk"] .section-headline {
        font-size: clamp(1.55rem, 7.25vw, 2.25rem);
      }
    }

    .features-intro {
      max-width: 600px;
    }

    .bento-card-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .map-svg {
      display: block;
      min-height: 220px;
    }

    .bento-stats-row {
      display: flex;
      gap: clamp(0.5rem, 2.5vw, 1.5rem);
      margin-top: 1.25rem;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      flex-wrap: wrap;
    }

    .bento-stats-row > div:not(.bento-stat-divider) {
      flex: 1 1 0;
      min-width: 0;
    }

    .bento-stat-num {
      font-family: 'JetBrains Mono', monospace;
      font-size: clamp(0.875rem, 3.5vw, 1.25rem);
      font-weight: 500;
      color: rgba(255, 255, 255, 0.88);
      white-space: nowrap;
      transition: color 0.35s ease 0.05s;
    }

    .bento-stat-lbl {
      font-family: 'Inter', sans-serif;
      font-size: clamp(0.5rem, 1.8vw, 0.6875rem);
      color: rgba(255, 255, 255, 0.3);
      margin-top: 0.2rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .bento-stat-divider {
      width: 1px;
      background: rgba(255, 255, 255, 0.08);
      flex: 0 0 1px;
    }

    @media (max-width: 380px) {
      .bento-stats-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
      }

      .bento-stat-divider {
        display: none;
      }

      .bento-stats-row > div:not(.bento-stat-divider) {
        flex: unset;
      }

      .bento-stat-num {
        font-size: 1rem;
      }

      .bento-stat-lbl {
        font-size: 0.5625rem;
      }
    }

    .eta-arriving-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      color: rgba(17, 17, 17, 0.4);
      margin-bottom: 0.5rem;
    }

    .eta-value-row {
      display: flex;
      align-items: flex-end;
      gap: 0.25rem;
    }

    .eta-driver-card {
      margin-top: 1.75rem;
      padding: 1rem;
      border-radius: 0.875rem;
      background: rgba(245, 179, 1, 0.06);
      border: 1px solid rgba(245, 179, 1, 0.14);
    }

    .eta-driver-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.625rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(245, 179, 1, 0.6);
      margin-bottom: 0.5rem;
      display: block;
    }

    .eta-driver-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--midnight);
    }

    .eta-driver-meta {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.75rem;
      color: rgba(17, 17, 17, 0.4);
      margin-top: 0.2rem;
    }

    .delivery-progress-wrap {
      margin-top: 1.5rem;
    }

    .delivery-progress-track {
      height: 3px;
      border-radius: 99px;
      background: rgba(17, 17, 17, 0.08);
      overflow: hidden;
    }

    #deliveryProgress {
      height: 100%;
      border-radius: 99px;
      background: var(--gold);
      width: 0%;
      transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .delivery-progress-labels {
      display: flex;
      justify-content: space-between;
      margin-top: 0.4rem;
    }

    .delivery-progress-text {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.5625rem;
      color: rgba(17, 17, 17, 0.3);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .delivery-percent {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.5625rem;
      color: var(--gold);
      font-weight: 500;
    }

    .section-eyebrow--light {
      color: rgba(245, 179, 1, 0.7);
    }

    .section-headline--light {
      color: #fff;
    }

    .sc-pricing-block {
      margin-top: 2.25rem;
      display: inline-flex;
      flex-direction: column;
      gap: 0.2rem;
      border: 1px solid rgba(245, 179, 1, 0.22);
      border-radius: 0.875rem;
      padding: 1.125rem 1.5rem 1rem;
      background: rgba(245, 179, 1, 0.04);
    }

    .sc-price-from {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6875rem;
      color: rgba(245, 179, 1, 0.6);
      letter-spacing: 0.08em;
      display: block;
    }

    .sc-price-value {
      font-family: 'JetBrains Mono', monospace;
      font-size: clamp(2rem, 3.5vw, 2.75rem);
      font-weight: 500;
      color: #F5B301;
      line-height: 1.05;
    }

    .sc-price-note {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.35);
      margin-top: 0.15rem;
    }

    /* ── Language switch ── */
    .lang-switch {
      display: flex;
      align-items: center;
      gap: 0.2rem;
      padding: 0.2rem;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 999px;
      background: rgba(255,255,255,0.035);
      flex-shrink: 0;
    }

    @media (max-width: 1024px) {
      .lang-switch { display: none; }
    }

    .lang-switch__item {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 2rem;
      min-height: 1.65rem;
      padding: 0 0.45rem;
      border-radius: 999px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6875rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    }

    .lang-switch__item:hover {
      color: rgba(255,255,255,0.92);
      background: rgba(255,255,255,0.06);
    }

    .lang-switch__item--active {
      color: var(--gold);
      background: rgba(245,179,1,0.12);
      box-shadow: inset 0 0 0 1px rgba(245,179,1,0.18);
    }

    /* ── Nav user button ── */
    .nav-user-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2.1rem;
      height: 2.1rem;
      background: rgba(245, 179, 1, 0.1);
      border: 1px solid rgba(245, 179, 1, 0.35);
      border-radius: 50%;
      cursor: pointer;
      color: var(--gold);
      padding: 0;
      flex-shrink: 0;
      transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
      line-height: 1;
    }

    .nav-user-btn:hover {
      background: rgba(245, 179, 1, 0.18);
      border-color: rgba(245, 179, 1, 0.65);
      box-shadow: 0 0 10px rgba(245, 179, 1, 0.2);
    }

/* Recaptcha */
.grecaptcha-badge { display: none; }
.custom-recaptcha3-terms { font-size:12px;}
