    :root {
      --bg: #08090d;
      --bg-soft: #11131a;
      --surface: rgba(255, 255, 255, 0.08);
      --surface-strong: rgba(255, 255, 255, 0.14);
      --text: #f8f8fb;
      --muted: rgba(248, 248, 251, 0.68);
      --line: rgba(255, 255, 255, 0.1);
      --red: #ff465b;
      --red-deep: #d72b3f;
      --orange: #ff8a1d;
      --lime: #d2ff4d;
      --accent-rgb: 255, 70, 91;
      --safe-top: env(safe-area-inset-top, 0px);
      --safe-bottom: env(safe-area-inset-bottom, 0px);
      --app-height: 100vh;
      --chrome-inline: 18px;
      --topbar-pad-top: 16px;
      --topbar-pad-bottom: 14px;
      --progress-top: 80px;
      --progress-gap: 6px;
      --slide-pad-top: 118px;
      --slide-pad-inline: 18px;
      --slide-pad-bottom: 30px;
      --layout-gap: 14px;
      --lead-gap: 16px;
      --main-gap: 14px;
      --slide-title-max: 40px;
      --slide-text-size: 18px;
      --slide-text-line: 1.5;
      --tag-gap: 10px;
      --tag-font-size: 15px;
      --tag-pad-y: 8px;
      --tag-pad-x: 12px;
      --tag-radius: 16px;
      --visual-height: 285px;
      --visual-radius: 32px;
      --footer-gap: 10px;
      --cta-height: 56px;
      --cta-pad-x: 22px;
      --cta-font-size: 16px;
      --cta-radius: 20px;
      --showcase-top: 72px;
      --showcase-bottom: 72px;
      --showcase-inline: 16px;
      --service-showcase-top: 26px;
      --service-showcase-bottom: 74px;
      --showcase-card-inline: 12px;
      --showcase-card-top: 12px;
      --showcase-card-bottom: 12px;
      --showcase-card-pad-y: 10px;
      --showcase-card-pad-x: 12px;
      --showcase-title-size: 16px;
      --showcase-text-size: 14px;
      --showcase-chip-width: 56px;
      --showcase-chip-height: 32px;
      --showcase-chip-pad-x: 10px;
      --showcase-chip-font: 11px;
      --service-image-left: 49%;
      --service-image-bottom: 50px;
      --service-image-width: min(82%, 244px);
      --service-image-max: calc(100% - 16px);
      --hero-visual-height: 228px;
      --hero-scene-height: 168px;
      --hero-rider-left: -7%;
      --hero-rider-width: min(78%, 248px);
      --speech-top: 18px;
      --speech-right: 10px;
      --speech-pad-y: 10px;
      --speech-pad-x: 16px;
      --speech-font: 16px;
      --hero-note-size: 13px;
      --hero-note-line: 1.25;
      --jump-gap: 6px;
      --jump-pad-y: 8px;
      --jump-pad-x: 10px;
      --jump-font-size: 13px;
      --contact-gap: 8px;
      --contact-height: 62px;
      --contact-pad-y: 8px;
      --contact-pad-x: 6px;
      --contact-inner-gap: 6px;
      --contact-font: 10px;
      --contact-icon: 30px;
      --final-hero-height: 148px;
      --final-hero-image-width: min(100%, 262px);
      --final-call-pad-y: 18px;
      --final-call-pad-x: 14px;
      --final-divider-size: 18px;
      --hero-drive-x: 0px;
      --final-arrival-x: -42px;
    }
    * {
      box-sizing: border-box;
    }
    html,
    body {
      margin: 0;
      min-height: 100%;
      overflow: hidden;
      background:
        radial-gradient(circle at top, rgba(255, 70, 91, 0.16), transparent 32%),
        linear-gradient(180deg, #12131a 0%, #07080b 100%);
      color: var(--text);
      font-family: "Manrope", system-ui, sans-serif;
    }

    button,
    a {
      -webkit-tap-highlight-color: transparent;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.04) 0, transparent 35%),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.04), transparent 24%);
      pointer-events: none;
    }

    .app-shell {
      position: relative;
      width: 100%;
      min-height: var(--app-height);
      background: rgba(7, 8, 11, 0.82);
      backdrop-filter: blur(20px);
    }

    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 30;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: calc(var(--safe-top) + var(--topbar-pad-top)) var(--chrome-inline) var(--topbar-pad-bottom);
      background: linear-gradient(180deg, rgba(8, 9, 13, 0.92), rgba(8, 9, 13, 0.32));
    }

    .brand {
      display: inline-flex;
      align-items: center;
      min-width: 0;
    }

    .brand__logo {
      display: block;
      width: auto;
      height: 34px;
      max-width: min(52vw, 180px);
      object-fit: contain;
    }

    .brand__mark {
      width: 22px;
      height: 22px;
      flex: 0 0 auto;
    }

    .brand__name {
      display: flex;
      flex-direction: column;
      gap: 2px;
      min-width: 0;
    }

    .brand__title {
      font-family: "Unbounded", system-ui, sans-serif;
      font-size: 14px;
      letter-spacing: 0.03em;
      text-transform: lowercase;
    }

    .brand__subtitle {
      font-size: 11px;
      color: var(--muted);
      white-space: nowrap;
    }

    .topbar__meta {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 34px;
      padding: 0 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: var(--text);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    .icon-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      min-width: 44px;
      max-width: 44px;
      height: 44px;
      flex: 0 0 44px;
      padding: 0;
      border: 0;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.08);
      color: var(--text);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
      cursor: pointer;
    }

.icon-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.2;
      fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.autoplay-toggle__icon--play {
  display: none;
}

.autoplay-toggle__icon--play path {
  fill: currentColor;
  stroke: none;
}

.autoplay-toggle[aria-pressed="true"] .autoplay-toggle__icon--pause {
  display: none;
}

.autoplay-toggle[aria-pressed="true"] .autoplay-toggle__icon--play {
  display: block;
}

    .story-progress {
      position: fixed;
      top: calc(var(--safe-top) + var(--progress-top));
      left: var(--chrome-inline);
      right: var(--chrome-inline);
      z-index: 28;
      display: grid;
      grid-template-columns: repeat(8, 1fr);
      gap: var(--progress-gap);
    }

    .segment {
      height: 4px;
      border-radius: 999px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.18);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    }

    .segment__fill {
      width: 0;
      height: 100%;
      border-radius: inherit;
      background: rgba(255, 255, 255, 0.92);
      transition: width 120ms linear;
    }

    .app-shell.is-hero-progress .segment {
      background: rgba(0, 0, 0, 0.18);
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
    }

    .app-shell.is-hero-progress .segment__fill {
      background: #111111;
    }

    .stories {
      height: var(--app-height);
      overflow: hidden;
    }

    .swiper-slide {
      position: relative;
      height: var(--app-height);
      padding: calc(var(--safe-top) + var(--slide-pad-top)) var(--slide-pad-inline) calc(var(--safe-bottom) + var(--slide-pad-bottom));
      overflow: hidden;
      background:
        radial-gradient(circle at 85% 15%, rgba(255, 70, 91, 0.14), transparent 24%),
        radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.05), transparent 22%);
    }

    .slide__ghost {
      position: absolute;
      inset: auto -12vw 10%;
      font-family: "Unbounded", system-ui, sans-serif;
      font-size: clamp(120px, 36vw, 220px);
      font-weight: 800;
      letter-spacing: -0.06em;
      color: rgba(255, 255, 255, 0.05);
      line-height: 0.9;
      pointer-events: none;
      user-select: none;
      text-transform: uppercase;
    }

    .slide__ghost img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: contain;
    }

    .slide__layout {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-rows: auto 1fr auto;
      height: 100%;
      gap: var(--layout-gap);
    }

    .slide__lead {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--lead-gap);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.66);
    }

    .eyebrow::before {
      content: "";
      width: 30px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      opacity: 0.6;
    }

    .eyebrow--rotator {
      position: relative;
      display: block;
      flex: 1 1 auto;
      min-width: 0;
      padding: var(--tag-pad-y) var(--tag-pad-x);
      border-radius: var(--tag-radius);
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: none;
      color: var(--text);
      letter-spacing: 0;
      text-transform: none;
      line-height: 1.28;
      backdrop-filter: none;
      transform-origin: center center;
      transform-style: preserve-3d;
      perspective: 900px;
      will-change: transform, opacity;
    }

    .eyebrow--rotator::before {
      display: none;
    }

    .eyebrow__rotator-viewport {
      position: relative;
      display: block;
      width: 100%;
      height: auto;
      transition: height 0.34s ease;
    }

    .eyebrow__rotator-item {
      display: none;
      width: 100%;
      align-items: center;
      pointer-events: none;
    }

    .eyebrow__rotator-item.is-active {
      display: flex;
      position: relative;
    }

    .eyebrow--rotator.is-animating-out {
      animation: eyebrowRotatorOut 0.22s cubic-bezier(0.55, 0.06, 0.68, 0.19) forwards;
    }

    .eyebrow--rotator.is-animating-in {
      animation: eyebrowRotatorIn 0.28s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    @keyframes eyebrowRotatorOut {
      0% {
        opacity: 1;
        transform: perspective(900px) rotateX(0deg) rotateZ(0deg) scale(1);
      }
      100% {
        opacity: 0;
        transform: perspective(900px) rotateX(-88deg) rotateZ(-1deg) scale(0.96);
      }
    }

    @keyframes eyebrowRotatorIn {
      0% {
        opacity: 0;
        transform: perspective(900px) rotateX(88deg) rotateZ(1deg) scale(0.96);
      }
      100% {
        opacity: 1;
        transform: perspective(900px) rotateX(0deg) rotateZ(0deg) scale(1);
      }
    }

    .slide__counter {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.5);
      font-weight: 700;
    }

    .slide__main {
      display: grid;
      align-content: space-between;
      gap: var(--main-gap);
      min-height: 0;
    }

    .slide__title {
      margin: 0;
      font-family: "Unbounded", system-ui, sans-serif;
      font-size: clamp(26px, 8vw, var(--slide-title-max));
      line-height: 1.02;
      letter-spacing: -0.04em;
    }

    .slide__title small {
      display: inline-flex;
      margin-left: 6px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(255, 70, 91, 0.18);
      color: #ff8e98;
      font-family: "Manrope", system-ui, sans-serif;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      vertical-align: middle;
    }

    .slide__text {
      max-width: 36ch;
      margin: 0;
      color: var(--muted);
      font-size: var(--slide-text-size);
      line-height: var(--slide-text-line);
    }

    .slide__tags {
      display: flex;
      flex-wrap: wrap;
      gap: var(--tag-gap);
    }

    .tag {
      padding: var(--tag-pad-y) var(--tag-pad-x);
      border-radius: var(--tag-radius);
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.08);
      font-size: var(--tag-font-size);
      font-weight: 700;
      line-height: 1.1;
    }

    .slide__visual {
      position: relative;
      min-height: var(--visual-height);
      border-radius: var(--visual-radius);
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        radial-gradient(circle at top, rgba(255, 70, 91, 0.22), transparent 42%),
        #101218;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 30px 70px rgba(0, 0, 0, 0.35);
    }

    .slide__footer {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: var(--footer-gap);
      align-items: center;
    }

    .cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: var(--cta-height);
      padding: 0 var(--cta-pad-x);
      border: 0;
      border-radius: var(--cta-radius);
      text-decoration: none;
      font-size: var(--cta-font-size);
      font-weight: 800;
      cursor: pointer;
      transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
    }

    .cta:active {
      transform: translateY(1px) scale(0.99);
    }

    .cta--primary {
      background: linear-gradient(160deg, #F5B91E 0%, #FA1919 100%);
      color: #fff;
      box-shadow: 0 20px 30px rgba(250, 25, 25, 0.24);
    }

    .service-slide .cta--primary {
      min-height: 62px;
      padding: 0 22px;
      font-size: 16px;
    }

    .cta--secondary {
      background: rgba(255, 255, 255, 0.08);
      color: var(--text);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .cta--ghost {
      min-width: 56px;
      padding: 0 16px;
      background: rgba(255, 255, 255, 0.06);
      color: var(--text);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .cta svg {
      width: 19px;
      height: 19px;
      stroke: currentColor;
      stroke-width: 2.2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .hero {
      background: linear-gradient(160deg, #F5B91E 0%, #FA1919 100%);
      color: #131313;
    }

    .app-shell.is-hero-progress .brand {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .hero .slide__ghost {
      inset: auto 50% 18%;
      width: 60vw;
      transform: translateX(-50%);
      color: transparent;
      opacity: 0.2;
    }

    .hero .slide__title,
    .hero .slide__counter,
    .hero .slide__text {
      color: #ffffff;
    }

    .hero .slide__counter,
    .hero .slide__text,
    .hero-contact-note {
      color: rgba(255, 255, 255, 0.9);
    }

    .hero .slide__main {
      justify-items: center;
      align-content: start;
      gap: 10px;
      overflow: visible;
    }

    .hero-top-spacer {
      min-height: 0;
    }

    .hero .slide__visual {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.03)),
        rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.25);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        0 32px 50px rgba(152, 42, 12, 0.22);
    }

    .hero .cta--secondary,
    .hero .cta--ghost {
      background: rgba(19, 19, 19, 0.12);
      border-color: rgba(19, 19, 19, 0.08);
      color: #131313;
    }

    .hero-actions {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .service-jump {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .service-jump__button {
      padding: 10px 12px;
      border: 0;
      border-radius: 16px;
      background: rgba(19, 19, 19, 0.14);
      color: #131313;
      font-size: 12px;
      font-weight: 800;
      text-align: left;
      cursor: pointer;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    }

    .contact-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .contact-pill {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 72px;
      padding: 10px 8px;
      border: 0;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.18);
      appearance: none;
      color: #111;
      text-decoration: none;
      font-size: 11px;
      font-weight: 800;
      font: inherit;
      line-height: 1.1;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
      cursor: pointer;
    }

    .contact-pill__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      flex: 0 0 auto;
    }

    .contact-pill__icon img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .hero-contact-note {
      margin: 2px 0 0;
      font-size: 14px;
      font-weight: 700;
      line-height: 1.35;
      text-align: center;
    }

    .hero .service-jump__button {
      color: #ffffff;
      padding: 9px 12px;
      background: linear-gradient(160deg, #F5B91E 0%, #FA1919 100%);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
      font-size: 15px;
      line-height: 1.1;
    }

    .hero-brand-logo {
      display: block;
      width: clamp(50vw, 68vw, 472px);
      min-width: 50vw;
      margin-top: -10px;
      height: auto;
      object-fit: contain;
    }

    .hero-quote {
      max-width: 33ch;
      text-align: center;
      font-size: 14px;
      line-height: 1.1;
      font-weight: 700;
    }

.hero-quote a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.topbar-back svg {
  transform: translateX(-1px);
}

    .hero .service-jump {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px 12px;
      width: 100%;
      margin-top: 0;
    }

    .hero .service-jump__button {
      padding: 0;
      background: transparent;
      box-shadow: none;
      border-radius: 0;
    }

    .hero .service-jump__button img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: contain;
    }

    .hero .contact-pill {
      color: #ffffff;
      background: rgba(0, 0, 0, 0.16);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    }

    .hero-quick-links {
      width: min(100%, 280px);
      margin-top: -2px;
    }

    .service-slide {
      --accent: var(--red);
      --accent-rgb: 255, 70, 91;
      --accent-glow-a-rgb: 229, 22, 34;
      --accent-glow-b-rgb: 140, 7, 73;
      background:
        radial-gradient(circle at 84% 14%, rgba(var(--accent-glow-a-rgb), 0.24), transparent 24%),
        radial-gradient(circle at 16% 82%, rgba(var(--accent-glow-b-rgb), 0.18), transparent 22%),
        radial-gradient(circle at 10% 24%, rgba(var(--accent-glow-b-rgb), 0.18), transparent 24%),
        radial-gradient(circle at 90% 72%, rgba(var(--accent-glow-a-rgb), 0.16), transparent 22%),
        #151619;
    }

    .service-slide .slide__tags {
      gap: clamp(8px, 1vh, 10px);
    }

    .service-slide .slide__lead {
      align-items: flex-start;
    }

    .service-slide .slide__counter {
      padding-top: 12px;
      flex: 0 0 auto;
    }

    .service-slide .eyebrow--rotator {
      font-size: clamp(13px, 1.7vh, 15px);
      font-weight: 700;
    }

    .service-slide .tag {
      font-size: clamp(13px, 1.7vh, 15px);
    }

    .service-slide .slide__visual::after,
    .final-slide .slide__visual::after {
      content: "";
      position: absolute;
      inset: auto -14% -18% auto;
      width: 180px;
      height: 180px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(255, 70, 91, 0.22), transparent 70%);
      filter: blur(16px);
    }

    .service-slide .chip,
    .final-slide .chip {
      background: rgba(255, 255, 255, 0.08);
    }

    .service-slide .slide__visual {
      overflow: visible;
    }

    .showcase {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 84px 20px 82px;
    }

    .service-slide .showcase {
      padding: 32px 20px 86px;
    }

    .showcase__halo {
      position: absolute;
      top: 26px;
      left: 50%;
      width: 210px;
      height: 210px;
      border-radius: 50%;
      transform: translateX(-50%);
      background:
        radial-gradient(circle, rgba(var(--accent-rgb), 0.45), transparent 68%);
      filter: blur(4px);
      opacity: 0.55;
      z-index: 1;
    }

    .showcase__orbit {
      position: absolute;
      top: 30px;
      left: 50%;
      width: 210px;
      height: 210px;
      border-radius: 50%;
      transform: translateX(-50%);
      border: 1px solid rgba(255, 255, 255, 0.16);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
      z-index: 1;
    }

    .showcase__orbit::before,
    .showcase__orbit::after {
      content: "";
      position: absolute;
      width: 22px;
      height: 22px;
      border-radius: 9px;
      background: var(--accent);
      box-shadow: 0 0 14px rgba(var(--accent-rgb), 0.42);
    }

    .showcase__orbit::before {
      top: 22px;
      right: 22px;
    }

    .showcase__orbit::after {
      bottom: 26px;
      left: 18px;
    }

    .showcase__card {
      position: absolute;
      inset: 16px 16px auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 12px 14px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(12px);
      z-index: 4;
    }

    .service-slide .showcase__card {
      inset: auto 16px 14px;
    }

    .showcase__card strong {
      display: block;
      font-size: 16px;
      font-weight: 800;
    }

    .showcase__card span {
      display: block;
      margin-top: 2px;
      color: var(--muted);
      font-size: 14px;
    }

    .showcase__chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 52px;
      height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      background: var(--accent);
      color: #fff;
      font-size: 12px;
      font-weight: 800;
    }

    .showcase__image {
      position: absolute;
      left: 22%;
      bottom: 18px;
      width: min(80%, 250px);
      max-height: calc(100% - 84px);
      height: auto;
      transform: translateX(-50%);
      transform-origin: center bottom;
      object-fit: contain;
      animation: mascotFloat 4.8s ease-in-out infinite;
      z-index: 2;
    }

    .service-slide .showcase__image {
      left: 49%;
      bottom: 61px;
      width: min(92%, 292px);
      max-height: calc(100% - 14px);
      --float-transform: translateX(-50%);
    }

    .service-slide[data-service="it"] .showcase__chip {
      background: linear-gradient(160deg, #E51622 0%, #8C0749 100%);
    }

    .service-slide[data-service="biz"] .showcase__chip {
      background: linear-gradient(160deg, #4A44E3 0%, #6DE0D4 100%);
    }

    .service-slide[data-service="ai"] .showcase__chip {
      background: linear-gradient(160deg, #F5B91E 0%, #FA1919 100%);
    }

    .service-slide[data-service="brand"] .showcase__chip,
    .service-slide[data-service="promo"] .showcase__chip {
      background: linear-gradient(160deg, #974CE5 0%, #9A8DF6 100%);
    }

    .service-slide[data-service="web"] .showcase__chip {
      background: linear-gradient(160deg, #2A2828 0%, #C21D1D 100%);
    }

    .mascot {
      position: relative;
      width: 172px;
      height: 210px;
      transform-origin: center bottom;
      animation: mascotFloat 4.8s ease-in-out infinite;
    }

    .mascot__head {
      position: absolute;
      top: 0;
      left: 50%;
      width: 116px;
      height: 94px;
      border-radius: 34px;
      transform: translateX(-50%);
      background:
        linear-gradient(180deg, #fbfcff 0%, #cfd6e4 100%);
      box-shadow:
        inset 0 3px 0 rgba(255, 255, 255, 0.8),
        inset 0 -4px 10px rgba(34, 37, 48, 0.22);
    }

    .mascot__head::before,
    .mascot__head::after {
      content: "";
      position: absolute;
      top: 26px;
      width: 18px;
      height: 38px;
      border-radius: 12px;
      background: linear-gradient(180deg, #343848, #161924);
    }

    .mascot__head::before {
      left: -12px;
    }

    .mascot__head::after {
      right: -12px;
    }

    .mascot__visor {
      position: absolute;
      top: 22px;
      left: 12px;
      right: 12px;
      height: 42px;
      border-radius: 24px;
      background:
        linear-gradient(180deg, #2d313f 0%, #0d1018 100%);
      box-shadow:
        inset 0 0 0 2px rgba(255, 255, 255, 0.06),
        0 8px 18px rgba(0, 0, 0, 0.22);
    }

    .mascot__eye {
      position: absolute;
      top: 11px;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 18px rgba(var(--accent-rgb), 0.62);
    }

    .mascot__eye--left {
      left: 24px;
    }

    .mascot__eye--right {
      right: 24px;
    }

    .mascot__body {
      position: absolute;
      top: 76px;
      left: 50%;
      width: 98px;
      height: 98px;
      border-radius: 32px 32px 36px 36px;
      transform: translateX(-50%);
      background: linear-gradient(180deg, #fefefe 0%, #dfe5ee 100%);
      box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.8),
        inset 0 -6px 12px rgba(34, 37, 48, 0.16);
    }

    .mascot__body::before {
      content: "";
      position: absolute;
      top: 18px;
      left: 50%;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      transform: translateX(-50%);
      background: linear-gradient(180deg, #2f3444 0%, #141821 100%);
      box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.06);
    }

    .mascot__arm,
    .mascot__leg {
      position: absolute;
      background: linear-gradient(180deg, #f5f6fa 0%, #c5ccd8 100%);
      box-shadow: inset 0 -3px 8px rgba(34, 37, 48, 0.14);
    }

    .mascot__arm {
      top: 88px;
      width: 18px;
      height: 72px;
      border-radius: 12px;
    }

    .mascot__arm--left {
      left: 22px;
      transform: rotate(22deg);
    }

    .mascot__arm--right {
      right: 22px;
      transform: rotate(-26deg);
    }

    .mascot__leg {
      top: 160px;
      width: 20px;
      height: 52px;
      border-radius: 12px;
    }

    .mascot__leg--left {
      left: 60px;
      transform: rotate(6deg);
    }

    .mascot__leg--right {
      right: 60px;
      transform: rotate(-6deg);
    }

    .mascot__shoe {
      position: absolute;
      bottom: -6px;
      width: 32px;
      height: 16px;
      border-radius: 999px 999px 10px 10px;
      background: var(--accent);
      box-shadow: 0 8px 18px rgba(var(--accent-rgb), 0.22);
    }

    .mascot__shoe--left {
      left: -6px;
    }

    .mascot__shoe--right {
      right: -6px;
    }

    .mascot__headphones {
      position: absolute;
      top: 10px;
      left: 50%;
      width: 132px;
      height: 84px;
      transform: translateX(-50%);
      border: 8px solid rgba(64, 70, 86, 0.9);
      border-bottom: 0;
      border-radius: 76px 76px 0 0;
      opacity: 0.9;
    }

    .mascot__headphones::before,
    .mascot__headphones::after {
      content: "";
      position: absolute;
      bottom: 6px;
      width: 22px;
      height: 34px;
      border-radius: 12px;
      background: linear-gradient(180deg, #3b3f4f, #151922);
    }

    .mascot__headphones::before {
      left: -10px;
    }

    .mascot__headphones::after {
      right: -10px;
    }

    .mascot__prop {
      position: absolute;
      top: 22px;
      right: -4px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 54px;
      height: 32px;
      padding: 0 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.96);
      color: #101218;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .scene {
      position: absolute;
      inset: 0;
    }

    .scene--hero {
      position: relative;
      inset: auto;
      width: 100%;
      height: clamp(152px, 26vh, 220px);
      margin-top: -12px;
    }

    .scene--hero .hero-rider {
      position: absolute;
      bottom: 0;
      left: -4%;
      width: clamp(176px, 68vw, 280px);
      height: auto;
      --float-transform: translateX(var(--hero-drive-x));
      transform-origin: center bottom;
      animation: mascotFloat 3.6s ease-in-out infinite;
      object-fit: contain;
      will-change: transform;
    }

    .speech {
      position: absolute;
      top: -24px;
      right: 4px;
      width: min(54%, 214px);
      height: auto;
      transform-origin: center center;
      will-change: transform, opacity;
    }

    .hero.is-exiting .speech {
      animation: heroSpeechExit 900ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
    }

    .hero.is-exiting .hero-rider {
      animation: heroRiderExit 980ms cubic-bezier(0.18, 0.45, 0.2, 1) forwards;
    }

    .callout {
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 14px 16px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(18px);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
    }

    .callout strong {
      display: block;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .callout span {
      display: block;
      margin-top: 2px;
      font-size: 11px;
      color: rgba(19, 19, 19, 0.7);
    }

    .callout__pulse {
      width: 54px;
      height: 54px;
      border-radius: 18px;
      background: linear-gradient(180deg, #ff596b, #e73a4f);
      box-shadow: 0 14px 24px rgba(231, 58, 79, 0.35);
      position: relative;
      flex: 0 0 auto;
    }

    .callout__pulse::before,
    .callout__pulse::after {
      content: "";
      position: absolute;
      inset: 14px;
      border-radius: 999px;
      border: 2px solid rgba(255, 255, 255, 0.75);
    }

    .callout__pulse::after {
      inset: 20px;
    }

    .service-slide[data-service="it"] {
      --accent: #4fc1ff;
      --accent-rgb: 79, 193, 255;
      --accent-glow-a-rgb: 229, 22, 34;
      --accent-glow-b-rgb: 140, 7, 73;
    }

    .service-slide[data-service="biz"] {
      --accent: #ffb74f;
      --accent-rgb: 255, 183, 79;
      --accent-glow-a-rgb: 74, 68, 227;
      --accent-glow-b-rgb: 109, 224, 212;
    }

    .service-slide[data-service="ai"] {
      --accent: #ff4d68;
      --accent-rgb: 255, 77, 104;
      --accent-glow-a-rgb: 245, 185, 30;
      --accent-glow-b-rgb: 250, 25, 25;
    }

    .service-slide[data-service="brand"] {
      --accent: #ff4d68;
      --accent-rgb: 255, 77, 104;
      --accent-glow-a-rgb: 151, 76, 229;
      --accent-glow-b-rgb: 154, 141, 246;
    }

    .service-slide[data-service="promo"] {
      --accent: #88ff74;
      --accent-rgb: 136, 255, 116;
      --accent-glow-a-rgb: 151, 76, 229;
      --accent-glow-b-rgb: 154, 141, 246;
    }

    .service-slide[data-service="web"] {
      --accent: #9a8cff;
      --accent-rgb: 154, 140, 255;
      --accent-glow-a-rgb: 42, 40, 40;
      --accent-glow-b-rgb: 194, 29, 29;
    }

    .visual-caption {
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 14px 16px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(14px);
      z-index: 4;
    }

    .visual-caption strong {
      display: block;
      font-size: 13px;
      font-weight: 800;
    }

    .visual-caption span {
      display: block;
      margin-top: 2px;
      color: var(--muted);
      font-size: 11px;
      line-height: 1.35;
    }

    .visual-caption__score {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 66px;
      height: 36px;
      padding: 0 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .final-slide .slide__visual {
      background:
        radial-gradient(circle at top, rgba(255, 70, 91, 0.16), transparent 30%),
        linear-gradient(180deg, #0d0f15 0%, #06070a 100%);
    }

    .final-hero {
      display: flex;
      justify-content: center;
      align-items: flex-end;
      min-height: 168px;
      margin-top: 2px;
    }

    .final-hero__image {
      width: min(100%, 338px);
      height: auto;
      --float-transform: translateX(var(--final-arrival-x));
      object-fit: contain;
      filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.28));
      animation: mascotFloat 4.8s ease-in-out infinite;
      will-change: transform, opacity;
    }

    .final-slide.is-arrival-pending .final-hero__image {
      opacity: 0;
      transform: translateX(-360px) translateY(-4px) scale(1.01);
      animation: none;
    }

    .final-slide.is-arriving .final-hero__image {
      opacity: 1;
      animation: finalHeroArrival 1180ms cubic-bezier(0.22, 0.61, 0.2, 1) forwards;
    }

    .final-call {
      position: absolute;
      inset: 0;
      display: grid;
      align-content: center;
      gap: 18px;
      padding: 24px 16px;
    }

    .final-call__bottom {
      display: grid;
      gap: 16px;
    }

    .final-call__phone {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      min-height: 88px;
      padding: 0 12px 0 22px;
      border-radius: 22px;
      background: linear-gradient(160deg, #F5B91E 0%, #FA1919 100%);
      color: #ffffff;
      text-decoration: none;
      box-shadow: 0 18px 34px rgba(250, 25, 25, 0.24);
    }

    .final-call__phone-label {
      font-size: clamp(18px, 5vw, 22px);
      font-weight: 800;
      letter-spacing: -0.04em;
    }

    .final-call__phone-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 72px;
      height: 72px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.14);
      color: #ffffff;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(10px);
      flex: 0 0 auto;
    }

    .final-call__phone-icon svg {
      width: 30px;
      height: 30px;
      stroke: currentColor;
      stroke-width: 1.7;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .final-call__divider {
      margin: 0;
      text-align: center;
      color: #ffffff;
      font-family: "Unbounded", system-ui, sans-serif;
      font-size: 18px;
      letter-spacing: -0.05em;
    }

    .quick-links {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      justify-items: center;
      width: min(100%, 280px);
      margin: 0 auto;
    }

    .quick-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: auto;
      padding: 0;
      border-radius: 0;
      text-decoration: none;
      background: transparent;
      color: #fff;
      font-size: 0;
      font-weight: 800;
      border: 0;
      appearance: none;
      cursor: pointer;
    }

.quick-link .contact-pill__icon {
  width: 62px;
  height: 62px;
}

.consult-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 59;
  background: rgba(2, 4, 10, 0.68);
  backdrop-filter: blur(10px);
}

.consult-modal {
  position: fixed;
  left: 18px;
  right: 18px;
  top: 50%;
  z-index: 60;
  transform: translateY(-50%);
  padding: 24px 18px 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(245, 185, 30, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(25, 28, 36, 0.98), rgba(12, 14, 19, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.consult-modal[hidden],
.consult-modal-backdrop[hidden] {
  display: none;
}

.consult-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
}

.consult-modal__body {
  display: grid;
  gap: 12px;
}

.consult-modal__eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.consult-modal__title {
  margin: 0;
  padding-right: 48px;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: clamp(22px, 6vw, 28px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.consult-modal__service {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.4;
}

.consult-modal__actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.consult-option {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 0 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  appearance: none;
  cursor: pointer;
}

.consult-option__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
}

.consult-option__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.consult-option__label {
  font-size: 16px;
  font-weight: 800;
  text-align: left;
}

.consult-option--telegram {
  background: linear-gradient(160deg, rgba(40, 176, 255, 0.22), rgba(38, 62, 104, 0.18));
}

.consult-option--max {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(92, 103, 121, 0.12));
}

.consult-option--whatsapp {
  background: linear-gradient(160deg, rgba(72, 214, 127, 0.22), rgba(18, 116, 64, 0.18));
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 39;
      background: rgba(0, 0, 0, 0.44);
      opacity: 0;
      pointer-events: none;
      transition: opacity 220ms ease;
    }

    .menu-backdrop.is-open {
      opacity: 1;
      pointer-events: auto;
    }

    .menu-drawer {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 40;
      width: min(88vw, 360px);
      padding: calc(var(--safe-top) + 24px) 18px calc(var(--safe-bottom) + 24px);
      display: grid;
      grid-template-rows: auto auto 1fr auto;
      gap: 18px;
      background:
        linear-gradient(180deg, rgba(17, 19, 26, 0.96), rgba(8, 9, 13, 0.98));
      border-left: 1px solid rgba(255, 255, 255, 0.08);
      transform: translateX(100%);
      transition: transform 260ms ease;
      backdrop-filter: blur(18px);
    }

    .menu-drawer.is-open {
      transform: translateX(0);
    }

    .menu-drawer__header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .menu-drawer__title {
      margin: 0;
      font-family: "Unbounded", system-ui, sans-serif;
      font-size: 18px;
      letter-spacing: -0.05em;
    }

    .menu-list {
      display: grid;
      gap: 10px;
      align-content: start;
    }

    .menu-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      min-height: 52px;
      padding: 0 16px;
      border: 0;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.06);
      color: var(--text);
      font-size: 14px;
      font-weight: 800;
      text-align: left;
      cursor: pointer;
    }

    .menu-link span:last-child {
      color: rgba(255, 255, 255, 0.46);
      font-size: 12px;
    }

    .menu-contact {
      display: grid;
      gap: 10px;
      padding: 14px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .menu-contact__row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: var(--muted);
      font-size: 12px;
    }

    .menu-contact__row strong {
      color: var(--text);
      font-size: 14px;
    }

    .menu-contact__actions {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    @keyframes mascotFloat {
      0%, 100% {
        transform: var(--float-transform, translateX(0px)) translateY(0);
      }
      50% {
        transform: var(--float-transform, translateX(0px)) translateY(-8px);
      }
    }

    @keyframes heroSpeechExit {
      0% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
      }
      16% {
        transform: translate3d(-5px, -1px, 0) rotate(-2.5deg) scale(1.015);
      }
      32% {
        transform: translate3d(6px, 1px, 0) rotate(2.5deg) scale(1.02);
      }
      50% {
        transform: translate3d(-4px, -1px, 0) rotate(-1.8deg) scale(0.99);
      }
      72% {
        opacity: 1;
        transform: translate3d(2px, 0, 0) rotate(1deg) scale(0.9);
      }
      100% {
        opacity: 0;
        transform: translate3d(0, -8px, 0) scale(0.24);
      }
    }

    @keyframes heroRiderExit {
      0% {
        transform: translate3d(var(--hero-drive-x, 0px), 0, 0) scale(1);
      }
      100% {
        opacity: 1;
        transform: translate3d(calc(var(--hero-drive-x, 0px) + 360px), -4px, 0) scale(1.01);
      }
    }

    @keyframes finalHeroArrival {
      0% {
        opacity: 0;
        transform: translate3d(-320px, -2px, 0) scale(0.995);
      }
      22% {
        opacity: 1;
      }
      68% {
        opacity: 1;
        transform: translate3d(14px, -1px, 0) scale(1.006);
      }
      100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
      }
    }

    @media (max-height: 820px) {
      .service-slide .slide__title,
      .final-slide .slide__title {
        font-size: clamp(26px, 7.4vw, 36px);
      }

      .service-slide .slide__text,
      .final-slide .slide__text {
        font-size: 13.5px;
        line-height: 1.42;
      }

      .service-slide .tag,
      .final-slide .tag {
        padding: 7px 11px;
        font-size: 14px;
      }

      .service-slide .tag {
        font-size: clamp(14px, 1.9vh, 15px);
      }

      .service-slide .slide__visual {
        min-height: 252px;
      }

      .topbar {
        padding: calc(var(--safe-top) + 12px) 16px 12px;
      }

      .consult-modal {
        left: 16px;
        right: 16px;
      }

      .story-progress {
        top: calc(var(--safe-top) + 72px);
        left: 16px;
        right: 16px;
      }

      .swiper-slide {
        padding: calc(var(--safe-top) + 104px) 16px calc(var(--safe-bottom) + 20px);
      }

      .slide__layout {
        gap: 10px;
      }

      .slide__main {
        gap: 10px;
      }

      .slide__title {
        font-size: clamp(24px, 7vw, 34px);
      }

      .slide__text {
        font-size: 13px;
        line-height: 1.4;
      }

      .tag {
        padding: 7px 10px;
        font-size: 13px;
        line-height: 1.1;
      }

      .slide__visual {
        min-height: 240px;
        border-radius: 26px;
      }

      .showcase {
        padding: 72px 16px 72px;
      }

      .service-slide .showcase {
        padding: 26px 16px 74px;
      }

      .showcase__orbit,
      .showcase__halo {
        width: 190px;
        height: 190px;
      }

      .showcase__card {
        inset: 12px 12px auto;
        padding: 10px 12px;
      }

      .service-slide .showcase__card {
        inset: auto 12px 12px;
      }

      .showcase__card strong,
      .visual-caption strong {
        font-size: 12px;
      }

      .showcase__card span,
      .visual-caption span {
        font-size: 10px;
        line-height: 1.3;
      }

      .showcase__chip,
      .visual-caption__score {
        min-width: 56px;
        height: 32px;
        padding: 0 10px;
        font-size: 11px;
      }

      .visual-caption {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 10px 12px;
      }

      .showcase__image {
        bottom: 12px;
        width: min(72%, 205px);
        max-height: calc(100% - 88px);
      }

      .cta {
        min-height: 50px;
        padding: 0 18px;
        border-radius: 18px;
        font-size: 15px;
      }

      .service-slide .cta--primary {
        min-height: 62px;
        padding: 0 20px;
        font-size: 16px;
      }

      .cta--ghost {
        min-width: 50px;
        padding: 0 14px;
      }

      .hero .service-jump {
        gap: 8px 10px;
      }

      .hero .service-jump__button {
        padding: 0;
        font-size: inherit;
      }

      .hero-brand-logo {
        width: clamp(50vw, 64vw, 420px);
      }

      .scene--hero {
        height: clamp(144px, 23vh, 196px);
        margin-top: -8px;
      }

      .scene--hero .hero-rider {
        left: -3%;
        width: clamp(170px, 64vw, 248px);
      }

      .speech {
        top: -24px;
        right: 4px;
        width: min(53%, 190px);
      }

      .hero-contact-note {
        font-size: 12px;
        line-height: 1.2;
      }

      .hero-quick-links {
        width: min(100%, 240px);
      }

      .final-call {
        padding: 18px 14px;
      }

      .final-hero {
        min-height: 148px;
      }

      .final-hero__image {
        width: min(100%, 262px);
      }

      .final-call__phone {
        min-height: 74px;
        padding: 0 10px 0 18px;
      }

      .final-call__phone-icon {
        width: 60px;
        height: 60px;
      }

      .final-call__phone-icon svg {
        width: 28px;
        height: 28px;
      }
    }

    @media (max-height: 740px) {
      .service-slide .slide__title,
      .final-slide .slide__title {
        font-size: clamp(24px, 6.9vw, 32px);
      }

      .service-slide .slide__text,
      .final-slide .slide__text {
        font-size: 12.5px;
        line-height: 1.38;
      }

      .service-slide .tag,
      .final-slide .tag {
        padding: 6px 10px;
        font-size: 13px;
      }

      .service-slide .tag {
        font-size: 13px;
      }

      .service-slide .slide__visual {
        min-height: 220px;
      }

      .story-progress {
        top: calc(var(--safe-top) + 66px);
        left: 14px;
        right: 14px;
        gap: 5px;
      }

      .consult-modal {
        left: 14px;
        right: 14px;
        padding: 22px 14px 14px;
      }

      .consult-modal__title {
        font-size: 20px;
      }

      .consult-option {
        min-height: 62px;
        padding: 0 14px;
      }

      .consult-option__label {
        font-size: 15px;
      }

      .swiper-slide {
        padding: calc(var(--safe-top) + 96px) 14px calc(var(--safe-bottom) + 16px);
      }

      .slide__layout {
        gap: 8px;
      }

      .slide__lead {
        gap: 12px;
      }

      .eyebrow--rotator {
        padding: 6px 10px;
        border-radius: 14px;
      }

      .slide__title {
        font-size: clamp(22px, 6.6vw, 30px);
      }

      .slide__text {
        font-size: 12px;
        line-height: 1.35;
      }

      .slide__main {
        align-content: start;
        gap: 8px;
        overflow-y: auto;
        padding-right: 4px;
        scrollbar-width: none;
      }

      .slide__main::-webkit-scrollbar {
        display: none;
      }

      .tag {
        padding: 6px 10px;
        font-size: 12px;
        border-radius: 14px;
      }

      .slide__visual {
        min-height: 210px;
        border-radius: 24px;
      }

      .showcase {
        padding: 64px 14px 66px;
      }

      .service-slide .showcase {
        padding: 22px 14px 68px;
      }

      .showcase__orbit,
      .showcase__halo {
        top: 26px;
        width: 172px;
        height: 172px;
      }

      .showcase__image {
        left: 24%;
        bottom: 8px;
        width: min(68%, 185px);
        max-height: calc(100% - 78px);
      }

      .showcase__card {
        inset: 10px 10px auto;
      }

      .service-slide .showcase__card {
        inset: auto 10px 10px;
      }

      .visual-caption {
        left: 10px;
        right: 10px;
        bottom: 10px;
      }

      .cta {
        min-height: 46px;
        padding: 0 16px;
        font-size: 14px;
      }

      .service-slide .cta--primary {
        min-height: 62px;
        padding: 0 18px;
        font-size: 16px;
      }

      .cta--ghost {
        min-width: 46px;
        padding: 0 12px;
      }

      .hero .service-jump__button {
        padding: 0;
        font-size: inherit;
      }

      .hero-brand-logo {
        width: clamp(50vw, 60vw, 340px);
      }

      .scene--hero {
        height: clamp(138px, 21vh, 170px);
        margin-top: -6px;
      }

      .scene--hero .hero-rider {
        left: -2%;
        width: clamp(160px, 62vw, 214px);
      }

      .speech {
        top: -24px;
        right: 0;
        width: min(52%, 164px);
      }

      .hero-quick-links {
        width: min(100%, 216px);
      }

      .final-hero {
        min-height: 128px;
      }

      .final-hero__image {
        width: min(100%, 228px);
      }
    }

    @media (min-width: 520px) {
      body {
        display: grid;
        place-items: center;
        padding: 16px;
      }

      .app-shell {
        max-width: 430px;
        min-height: calc(var(--app-height) - 32px);
        border-radius: 34px;
        overflow: hidden;
        box-shadow:
          0 18px 44px rgba(0, 0, 0, 0.44),
          inset 0 1px 0 rgba(255, 255, 255, 0.06);
      }

      .hero .slide__main {
        gap: 8px;
      }

      .scene--hero {
        height: 172px;
        margin-top: -8px;
      }

      .scene--hero .hero-rider {
        left: -2%;
        width: min(68%, 238px);
      }

      .speech {
        top: -20px;
        right: 8px;
        width: min(44%, 176px);
      }

      .hero-brand-logo {
        width: min(88%, 360px);
        min-width: 0;
        margin-top: -4px;
      }

      .hero-quote {
        max-width: 28ch;
        font-size: 13px;
        line-height: 1.08;
      }

      .hero .service-jump {
        gap: 8px 10px;
      }

      .hero-contact-note {
        max-width: 26ch;
        font-size: 12px;
        line-height: 1.2;
      }

      .hero-quick-links {
        width: min(100%, 240px);
      }

    }

    @media (max-width: 519px) {
      .service-slide .slide__main,
      .final-slide .slide__main {
        grid-template-rows: auto auto minmax(0, 1fr);
        align-content: stretch;
      }

      .service-slide .slide__tags,
      .final-slide .final-hero {
        align-self: center;
      }

      .service-slide .slide__visual,
      .final-slide .slide__visual {
        align-self: end;
      }

      .slide__main {
        align-content: start;
        overflow-y: auto;
        padding-right: 2px;
        scrollbar-width: none;
      }

      .slide__main::-webkit-scrollbar {
        display: none;
      }

      .hero .slide__visual {
        min-height: var(--hero-visual-height);
      }

      .hero .service-jump {
        gap: calc(var(--jump-gap) + 2px) calc(var(--jump-gap) + 4px);
      }

      .hero .service-jump__button {
        padding: 0;
        font-size: inherit;
      }

      .showcase {
        padding: var(--showcase-top) var(--showcase-inline) var(--showcase-bottom);
      }

      .service-slide .showcase {
        padding: var(--service-showcase-top) var(--showcase-inline) var(--service-showcase-bottom);
      }

      .showcase__card {
        inset: var(--showcase-card-top) var(--showcase-card-inline) auto;
        padding: var(--showcase-card-pad-y) var(--showcase-card-pad-x);
      }

      .service-slide .showcase__card {
        inset: auto var(--showcase-card-inline) var(--showcase-card-bottom);
      }

      .showcase__card strong {
        font-size: var(--showcase-title-size);
      }

      .showcase__card span {
        font-size: var(--showcase-text-size);
      }

      .showcase__chip {
        min-width: var(--showcase-chip-width);
        height: var(--showcase-chip-height);
        padding: 0 var(--showcase-chip-pad-x);
        font-size: var(--showcase-chip-font);
      }

      .service-slide .showcase__image {
        left: var(--service-image-left);
        bottom: calc(var(--service-image-bottom) + 34px);
        width: var(--service-image-width);
        max-height: var(--service-image-max);
      }

      .scene--hero {
        inset: auto;
        height: clamp(138px, calc(var(--hero-scene-height) + 8px), 220px);
        margin-top: -10px;
      }

      .scene--hero .hero-rider {
        left: -3%;
        width: clamp(160px, 66vw, 280px);
      }

      .speech {
        top: -24px;
        right: 2px;
        width: clamp(160px, 52%, 214px);
      }

      .hero-contact-note {
        font-size: var(--hero-note-size);
        line-height: var(--hero-note-line);
      }

      .hero-quick-links {
        width: min(100%, 240px);
      }

      .final-hero {
        min-height: var(--final-hero-height);
      }

      .final-hero__image {
        width: var(--final-hero-image-width);
      }

      .final-call {
        padding: var(--final-call-pad-y) var(--final-call-pad-x);
      }

      .final-call__divider {
        font-size: var(--final-divider-size);
      }
    }

    .service-slide .slide__main {
      grid-template-rows: auto auto minmax(0, 1fr);
      align-content: stretch;
    }

    .service-slide .slide__visual {
      min-height: clamp(220px, 34vh, var(--visual-height));
      height: 100%;
    }

    .service-slide .showcase {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px 18px;
      border-radius: inherit;
      overflow: hidden;
    }

    .service-slide .showcase__card {
      display: none;
    }

    .service-slide .showcase__image {
      position: relative;
      left: auto;
      bottom: auto;
      display: block;
      width: min(calc(100% - 8px), 358px);
      height: auto;
      max-width: calc(100% - 8px);
      max-height: calc(100% - 4px);
      margin: 0 auto;
      transform-origin: center bottom;
      --float-transform: translateX(0);
    }

    .service-slide[data-service="web"] .showcase {
      padding: 10px;
    }

    .service-slide[data-service="brand"] .slide__visual {
      min-height: clamp(186px, 28vh, var(--visual-height));
    }

    .service-slide[data-service="brand"] .slide__main,
    .service-slide[data-service="brand"] .slide__visual,
    .service-slide[data-service="brand"] .showcase,
    .service-slide[data-service="brand"] .showcase__image {
      touch-action: pan-x;
      overscroll-behavior: contain;
    }

    .service-slide[data-service="brand"] .showcase {
      padding: 8px 12px;
    }

    .service-slide[data-service="brand"] .showcase__image {
      width: min(calc(100% - 28px), 292px);
      max-width: calc(100% - 28px);
    }

    .service-slide[data-service="brand"] .slide__tags {
      gap: 6px;
    }

    .service-slide[data-service="brand"] .tag {
      font-size: clamp(12px, 1.45vh, 13px);
      padding: 5px 9px;
    }

    .service-slide[data-service="web"] .showcase__image {
      width: 100%;
      height: 100%;
      max-width: none;
      max-height: none;
      object-fit: contain;
      object-position: center center;
      transform-origin: center center;
    }

    @media (max-width: 519px) {
      .service-slide[data-service="brand"] .slide__main {
        overflow-y: visible;
      }

      .service-slide[data-service="brand"] .slide__visual {
        min-height: 168px;
      }

      .service-slide[data-service="brand"] .showcase {
        padding: 6px 8px;
      }

      .service-slide[data-service="brand"] .showcase__image {
        width: min(calc(100% - 34px), 244px);
        max-width: calc(100% - 34px);
      }

      .service-slide[data-service="brand"] .tag {
        font-size: 11.5px;
        padding: 5px 8px;
      }

      .service-slide .slide__visual {
        min-height: 0;
      }

      .service-slide .showcase {
        padding: 12px;
      }

      .service-slide .showcase__image {
        width: min(calc(100% - 8px), 358px);
        height: auto;
        max-width: calc(100% - 8px);
        max-height: calc(100% - 2px);
      }

      .service-slide[data-service="web"] .showcase {
        padding: 8px;
      }

      .service-slide[data-service="web"] .showcase__image {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
      }

    }

