    :root {
      --hp-card-border: #e8e8e8;
      --hp-icon-bg: #fde8ec;
      --hp-section-bg: #f5f5f7;
      --hp-footer-bg: #000000;
      --hp-footer-line: rgba(255, 255, 255, 0.1);
      --hp-footer-muted: rgba(255, 255, 255, 0.78);
      --hp-footer-soft: rgba(255, 255, 255, 0.5);
      --hp-footer-heading: rgba(255, 255, 255, 0.42);
      --hp-footer-link: rgba(255, 255, 255, 0.92);
      --hp-footer-mail-bg: #1c1c1e;
      --font-serif: "Inter", system-ui, sans-serif;
      --font-sans: "Inter", system-ui, sans-serif;
      --hp-page-max: min(1280px, 96vw);
      --hp-page-pad-x: clamp(1rem, 3vw, 2rem);
      --hp-hero-pad-x: clamp(1rem, 4vw, 2.5rem);
    }

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

    html {
      scroll-behavior: smooth;
      font-size: 100%;
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
    }

    body {
      margin: 0;
      font-family: var(--font-sans);
      font-size: 1rem;
      color: var(--onroda-text-dark);
      background: #ffffff;
      line-height: 1.55;
    }

    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .hp-wrap {
      width: min(96%, var(--hp-page-max));
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
      padding-left: var(--hp-page-pad-x);
      padding-right: var(--hp-page-pad-x);
    }

    .hp-header-inner,
    .hp-hero-content {
      width: 100%;
      max-width: none;
      margin-left: 0;
      margin-right: 0;
      padding-left: var(--hp-hero-pad-x);
      padding-right: var(--hp-hero-pad-x);
    }

    .hp-hero-content {
      position: relative;
      z-index: 2;
    }

    .hp-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid #ececec;
      box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
    }

    .hp-header-inner {
      display: grid;
      grid-template-columns: auto auto 1fr auto;
      align-items: center;
      column-gap: 1.1rem;
      row-gap: 0.75rem;
      padding-top: 0.85rem;
      padding-bottom: 0.85rem;
    }

    .hp-header-tools {
      display: none;
      align-items: center;
      gap: 10px;
      justify-content: flex-end;
    }

    .hp-topbar-btn--mobile {
      display: none;
    }

    .hp-logo {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      color: var(--onroda-text-dark);
    }

    .hp-brand-logo {
      display: block;
      width: auto;
      height: 62px;
      max-width: min(210px, 52vw);
      object-fit: contain;
    }

    .hp-brand-logo--footer {
      height: 52px;
      max-width: min(180px, 65vw);
      filter: brightness(0) invert(1);
    }

    .hp-header--minimal .hp-header-inner {
      grid-template-columns: 1fr auto;
    }

    .hp-nav {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 1.15rem;
      flex-wrap: wrap;
    }

    .hp-nav-link {
      color: #333;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      line-height: 1.2;
    }

    .hp-nav-link:hover {
      color: var(--onroda-red);
    }

    .hp-nav-link--button {
      background: none;
      border: none;
      padding: 0;
      margin: 0;
      font: inherit;
      font-weight: 600;
      font-size: 1rem;
      line-height: 1.2;
      color: #333;
      cursor: pointer;
    }

    .hp-nav-link--button:hover {
      color: var(--onroda-red);
    }

    .hp-nav-dropdown {
      position: relative;
    }

    .hp-nav-dropdown summary {
      list-style: none;
      cursor: pointer;
      color: #333;
      font-weight: 600;
      font-size: 0.92rem;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .hp-nav-dropdown summary::-webkit-details-marker {
      display: none;
    }

    .hp-nav-dropdown summary::after {
      content: "";
      width: 0;
      height: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 5px solid #666;
    }

    .hp-nav-dropdown-panel {
      position: absolute;
      top: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%);
      min-width: 180px;
      background: #fff;
      border: 1px solid #e8e8e8;
      border-radius: 12px;
      padding: 8px;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
      z-index: 1100;
      display: grid;
      gap: 2px;
    }

    .hp-nav-dropdown-panel a {
      display: block;
      padding: 8px 12px;
      border-radius: 8px;
      color: #333;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 600;
    }

    .hp-nav-dropdown-panel a:hover {
      background: #f5f5f7;
      color: var(--onroda-red);
    }

    .hp-nav-dropdown-panel--wide {
      width: min(360px, 86vw);
      padding: 16px;
      left: auto;
      right: 0;
      transform: none;
    }

    .hp-nav-dropdown-panel--wide h3 {
      margin: 0 0 8px;
      font-size: 0.95rem;
    }

    .hp-nav-dropdown-panel--wide p {
      margin: 0 0 8px;
      color: var(--onroda-text-grey);
      font-size: 0.88rem;
      line-height: 1.5;
    }

    .hp-header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .hp-header-legal {
      color: #888;
      text-decoration: none;
      font-size: 0.82rem;
      font-weight: 500;
    }

    .hp-header-legal:hover {
      color: #333;
    }

    .hp-nav-toggle {
      display: none;
      border: 0;
      background: transparent;
      padding: 8px;
      cursor: pointer;
    }

    .hp-nav-toggle-bar {
      display: block;
      width: 22px;
      height: 2px;
      margin: 4px 0;
      background: #222;
      border-radius: 2px;
    }

    .hp-topbar {
      display: none;
    }

    .hp-topbar-btn {
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      padding: 0.55rem 1rem;
      border-radius: 10px;
      background: var(--onroda-red);
      font-size: 0.875rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      white-space: nowrap;
    }

    .hp-topbar-btn:hover {
      filter: brightness(1.08);
    }

    .hp-topbar-about,
    .hp-topbar-about-panel {
      display: none;
    }

    .hp-dynamic-placeholders {
      display: grid;
      gap: 4px;
      margin: 0 0 1.1rem;
      max-width: 60ch;
    }

    .hp-dynamic-placeholder {
      border: 0;
      border-radius: 0;
      background: transparent;
      padding: 0 0 0 12px;
      display: block;
      position: relative;
    }

    .hp-dynamic-placeholder--info,
    .hp-dynamic-placeholder--warning,
    .hp-dynamic-placeholder--success,
    .hp-dynamic-placeholder--important {
      background: transparent;
    }

    .hp-dynamic-placeholder::before {
      content: "";
      position: absolute;
      left: 0;
      top: 2px;
      bottom: 2px;
      width: 3px;
      border-radius: 2px;
      background: #64748b;
    }

    .hp-dynamic-placeholder--info::before {
      background: #64748b;
    }

    .hp-dynamic-placeholder--success::before {
      background: #16a34a;
    }

    .hp-dynamic-placeholder--warning::before {
      background: #ca8a04;
    }

    .hp-dynamic-placeholder--important::before {
      background: #dc2626;
    }

    .hp-dynamic-placeholder__line {
      margin: 0;
      display: flex;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 6px;
      min-width: 0;
      color: #3f3f46;
      font-size: 14px;
      line-height: 1.35;
      white-space: normal;
    }

    .hp-dynamic-placeholder__icon {
      flex: 0 0 auto;
      font-size: 1rem;
      line-height: 1.35;
      user-select: none;
    }

    .hp-dynamic-placeholder__title {
      margin: 0;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0;
      text-transform: none;
      color: #334155;
      flex: 0 0 auto;
    }

    .hp-dynamic-placeholder__msg {
      color: #334155;
      line-height: 1.35;
      font-size: 14px;
      white-space: normal;
      overflow-wrap: anywhere;
      flex: 1 1 12rem;
      min-width: 0;
    }

    .hp-dynamic-placeholder--success .hp-dynamic-placeholder__title,
    .hp-dynamic-placeholder--success .hp-dynamic-placeholder__msg {
      color: #14532d;
    }

    .hp-dynamic-placeholder--warning .hp-dynamic-placeholder__title,
    .hp-dynamic-placeholder--warning .hp-dynamic-placeholder__msg {
      color: #713f12;
    }

    .hp-dynamic-placeholder--important .hp-dynamic-placeholder__title,
    .hp-dynamic-placeholder--important .hp-dynamic-placeholder__msg {
      color: #7f1d1d;
    }

    .hp-dynamic-placeholder__cta {
      display: inline-flex;
      width: fit-content;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.88rem;
      color: var(--onroda-red);
    }
    .hp-dynamic-placeholder__dismiss {
      margin-left: auto;
      border: 0;
      background: transparent;
      color: var(--onroda-text-grey);
      font-size: 14px;
      cursor: pointer;
      padding: 2px 6px;
      border-radius: 999px;
    }
    .hp-dynamic-placeholder__dismiss:hover {
      background: rgba(0, 0, 0, 0.06);
      color: var(--onroda-text);
    }

    .hp-hero {
      position: relative;
      width: 100%;
      min-height: auto;
      padding: 3rem 0 2.5rem;
      color: var(--onroda-text-dark);
      overflow: hidden;
      background: #ffffff;
    }

    .hp-hero-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
      gap: clamp(1rem, 2.6vw, 2.2rem);
      align-items: center;
    }

    .hp-hero-copy {
      min-width: 0;
      padding: 0.5rem 0 0.75rem;
    }

    .hp-hero-copy .hp-hero-lead {
      max-width: 46ch;
    }

    .hp-hero h1 {
      font-family: var(--font-sans);
      font-size: clamp(2.1rem, 2vw + 1.2rem, 3.35rem);
      font-weight: 800;
      line-height: 1.12;
      margin: 0 0 1rem;
      max-width: min(18ch, 100%);
      color: var(--onroda-text-dark);
      letter-spacing: -0.02em;
    }

    .hp-hero h1 em {
      font-style: normal;
      color: var(--onroda-red);
    }

    .hp-hero-lead {
      font-size: 1.05rem;
      color: var(--onroda-text-grey);
      max-width: 58ch;
      margin: 0 0 1.5rem;
    }

    .hp-hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    @keyframes hp-device-float {
      0%,
      100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-6px);
      }
    }

    @keyframes hp-card-float {
      0%,
      100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-8px);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .hp-device-phone,
      .hp-floating-card {
        animation: none !important;
      }
    }

    .hp-hero-devices {
      position: relative;
      min-height: 620px;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      isolation: isolate;
    }

    .hp-hero-devices__glow {
      position: absolute;
      inset: 8% 0 6%;
      background:
        radial-gradient(circle at 35% 50%, rgba(213, 0, 28, 0.12), transparent 52%),
        radial-gradient(circle at 75% 40%, rgba(148, 163, 184, 0.14), transparent 48%);
      filter: blur(20px);
      z-index: 0;
      pointer-events: none;
    }

    .hp-device-laptop {
      position: relative;
      width: min(620px, 100%);
      z-index: 1;
      transform: none;
    }

    .hp-device-laptop__lid {
      position: relative;
      padding: 11px 11px 8px;
      border-radius: 14px 14px 4px 4px;
      background: linear-gradient(180deg, #3d3d3f 0%, #1d1d1f 100%);
      border: 1px solid #52525b;
      box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
    }

    .hp-device-laptop__notch {
      position: absolute;
      top: 9px;
      left: 50%;
      transform: translateX(-50%);
      width: 56px;
      height: 14px;
      border-radius: 0 0 10px 10px;
      background: #0a0a0a;
      z-index: 2;
    }

    .hp-device-laptop__screen {
      aspect-ratio: 16 / 10;
      width: 100%;
      min-height: 220px;
      border-radius: 8px;
      overflow: hidden;
      background: #fff;
      border: 1px solid #27272a;
    }

    .hp-screen-dash {
      display: grid;
      grid-template-columns: 28% 1fr;
      height: 100%;
      min-height: 220px;
      font-size: 0.62rem;
    }

    .hp-screen-dash__side {
      background: #111827;
      padding: 12px 10px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .hp-screen-dash__logo {
      width: 100%;
      max-width: 108px;
      height: auto;
      display: block;
      filter: brightness(0) invert(1);
    }

    .hp-screen-dash__vision {
      margin: 0;
      font-size: 0.58rem;
      line-height: 1.35;
      color: #94a3b8;
      font-weight: 500;
    }

    .hp-screen-dash__nav {
      display: block;
      padding: 6px 8px;
      border-radius: 8px;
      color: #94a3b8;
      font-weight: 600;
    }

    .hp-screen-dash__nav--active {
      background: var(--onroda-red);
      color: #fff;
    }

    .hp-screen-dash__main {
      padding: 12px;
      background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
      display: flex;
      flex-direction: column;
      gap: 10px;
      min-width: 0;
    }

    .hp-screen-dash__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }

    .hp-screen-dash__head strong {
      font-size: 0.82rem;
      letter-spacing: -0.02em;
    }

    .hp-screen-dash__kpis {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 6px;
    }

    .hp-screen-dash__kpis div {
      background: #fff;
      border: 1px solid #ececec;
      border-radius: 8px;
      padding: 6px 5px;
    }

    .hp-screen-dash__kpis small {
      display: block;
      font-size: 0.5rem;
      color: #64748b;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .hp-screen-dash__kpis strong {
      font-size: 0.72rem;
      display: block;
      margin-top: 2px;
    }

    .hp-screen-dash__chart {
      display: flex;
      align-items: flex-end;
      gap: 4px;
      flex: 1;
      min-height: 56px;
      padding: 8px;
      border-radius: 8px;
      background: #fff;
      border: 1px solid #ececec;
    }

    .hp-screen-dash__chart span {
      flex: 1;
      height: var(--h, 50%);
      border-radius: 4px 4px 2px 2px;
      background: linear-gradient(180deg, rgba(213, 0, 28, 0.88), rgba(213, 0, 28, 0.35));
    }

    .hp-screen-pill {
      display: inline-flex;
      align-items: center;
      font-size: 0.55rem;
      font-weight: 700;
      padding: 3px 7px;
      border-radius: 999px;
      background: #f1f5f9;
      color: #475569;
      flex-shrink: 0;
    }

    .hp-screen-pill--live {
      color: #15803d;
      background: #dcfce7;
    }

    .hp-device-laptop__hinge {
      height: 5px;
      margin: 0 6%;
      background: linear-gradient(180deg, #18181b, #09090b);
      border-radius: 0 0 2px 2px;
    }

    .hp-device-laptop__base {
      height: 14px;
      margin: 0 2% 0 4%;
      border-radius: 0 0 14px 14px;
      background: linear-gradient(180deg, #d4d4d8 0%, #a1a1aa 55%, #71717a 100%);
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
    }

    .hp-device-phone {
      position: absolute;
      right: 20px;
      bottom: -20px;
      width: 220px;
      padding: 9px;
      border-radius: 38px;
      background: linear-gradient(160deg, #2c2c2e 0%, #0a0a0a 100%);
      border: 2px solid #3f3f46;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
      z-index: 3;
      animation: hp-device-float 5s ease-in-out infinite;
    }

    .hp-device-phone__island {
      position: absolute;
      top: 14px;
      left: 50%;
      transform: translateX(-50%);
      width: 64px;
      height: 20px;
      border-radius: 999px;
      background: #000;
      z-index: 3;
      pointer-events: none;
    }

    .hp-device-phone__screen {
      aspect-ratio: 390 / 844;
      width: 100%;
      min-height: 360px;
      border-radius: 28px;
      overflow: hidden;
      background: #fff;
      border: 1px solid #27272a;
    }

    .hp-screen-app {
      display: flex;
      flex-direction: column;
      height: 100%;
      min-height: 360px;
      background: #fff;
    }

    .hp-screen-app__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6px;
      padding: 28px 10px 8px;
    }

    .hp-screen-app__logo {
      width: auto;
      height: 22px;
      display: block;
    }

    .hp-screen-app__map {
      position: relative;
      flex: 1;
      min-height: 140px;
      margin: 0 8px;
      border-radius: 14px;
      background:
        radial-gradient(circle at 65% 35%, rgba(213, 0, 28, 0.18), transparent 40%),
        linear-gradient(160deg, #e2e8f0 0%, #f8fafc 55%, #dbeafe 100%);
      overflow: hidden;
    }

    .hp-screen-app__pin {
      position: absolute;
      top: 38%;
      left: 58%;
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--onroda-red);
      box-shadow: 0 0 0 5px rgba(213, 0, 28, 0.2);
    }

    .hp-screen-app__route {
      position: absolute;
      inset: 28% 20% 30% 16%;
      border: 2px solid var(--onroda-red);
      border-radius: 999px;
      border-top-color: transparent;
      border-left-color: transparent;
      transform: rotate(16deg);
    }

    .hp-screen-app__card {
      margin: 8px;
      padding: 12px;
      border-radius: 16px;
      background: #fff;
      box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
      display: grid;
      gap: 4px;
    }

    .hp-screen-app__card small {
      color: #64748b;
      font-size: 0.58rem;
      font-weight: 600;
    }

    .hp-screen-app__card strong {
      font-size: 1.1rem;
      color: var(--onroda-text-dark);
      letter-spacing: -0.02em;
    }

    .hp-screen-app__card > span:not(.hp-screen-app__cta) {
      font-size: 0.58rem;
      color: #64748b;
      line-height: 1.35;
    }

    .hp-screen-app__cta {
      margin-top: 4px;
      display: block;
      text-align: center;
      border-radius: 10px;
      background: var(--onroda-red);
      color: #fff;
      font-weight: 700;
      font-size: 0.68rem;
      padding: 10px;
    }

    .hp-floating-card {
      position: absolute;
      background: #fff;
      border-radius: 18px;
      padding: 14px 18px;
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--onroda-text-dark);
      z-index: 4;
      border: 1px solid rgba(15, 23, 42, 0.06);
      animation: hp-card-float 4.5s ease-in-out infinite;
    }

    .hp-card-live {
      top: 90px;
      left: 20px;
      display: inline-flex;
      align-items: center;
    }

    .hp-card-ride {
      bottom: 60px;
      left: 40px;
      animation-delay: 0.8s;
    }

    .hp-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      display: inline-block;
      margin-right: 8px;
      background: #16a34a;
      box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.2);
      flex-shrink: 0;
    }

    .hp-hero-visual {
      display: none;
    }

    .hp-btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--onroda-red);
      color: #fff;
      font-weight: 600;
      padding: 0.85rem 1.4rem;
      border-radius: 12px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      font-size: 0.98rem;
      font-family: inherit;
    }

    .hp-btn-primary:hover {
      filter: brightness(1.06);
    }

    .hp-btn-ghost {
      display: inline-flex;
      align-items: center;
      color: var(--onroda-text-dark);
      font-weight: 600;
      padding: 0.85rem 1.4rem;
      border-radius: 12px;
      text-decoration: none;
      border: 2px solid rgba(0, 0, 0, 0.15);
      background: transparent;
      font-size: 0.98rem;
      font-family: inherit;
      cursor: pointer;
    }

    .hp-btn-ghost:hover {
      background: rgba(0, 0, 0, 0.03);
      border-color: rgba(0, 0, 0, 0.25);
    }

    body.hp-motion-modal-open {
      overflow: hidden;
    }

    .hp-motion-modal[hidden] {
      display: none !important;
    }

    .hp-motion-modal.is-open {
      display: flex;
    }

    .hp-motion-modal {
      position: fixed;
      inset: 0;
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }

    .hp-motion-modal__backdrop {
      position: absolute;
      inset: 0;
      border: 0;
      padding: 0;
      margin: 0;
      background: rgba(2, 6, 23, 0.72);
      backdrop-filter: blur(4px);
      cursor: pointer;
    }

    .hp-motion-modal__panel {
      position: relative;
      z-index: 1;
      width: min(100%, 520px);
      max-width: min(100%, calc(100vw - 2rem));
      max-height: 92vh;
      display: flex;
      flex-direction: column;
      border-radius: 20px;
      background: #0f172a;
      border: 1px solid rgba(148, 163, 184, 0.2);
      box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
      overflow: hidden;
    }

    .hp-motion-modal__head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.35rem 1.1rem 0.85rem;
      border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    }

    .hp-motion-modal__head h2 {
      margin: 0;
      font-size: 1.05rem;
      color: #f8fafc;
      letter-spacing: -0.02em;
    }

    .hp-motion-modal__note {
      margin: 0.35rem 0 0;
      font-size: 0.78rem;
      color: #94a3b8;
      line-height: 1.4;
    }

    .hp-motion-tabs {
      margin-top: 0.75rem;
      display: flex;
      flex-wrap: nowrap;
      gap: 8px;
      padding: 6px;
      border-radius: 14px;
      background: rgba(2, 6, 23, 0.35);
      border: 1px solid rgba(148, 163, 184, 0.18);
      max-width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
    }

    .hp-motion-tab {
      appearance: none;
      border: 1px solid transparent;
      background: transparent;
      color: #cbd5e1;
      font-weight: 700;
      font-size: 0.78rem;
      padding: 8px 10px;
      border-radius: 12px;
      cursor: pointer;
      font-family: inherit;
      line-height: 1.15;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .hp-motion-tab[aria-selected="true"] {
      background: rgba(248, 250, 252, 0.12);
      border-color: rgba(248, 250, 252, 0.18);
      color: #f8fafc;
    }

    .hp-motion-tab--medical {
      border-color: rgba(213, 0, 28, 0.35);
      background: rgba(213, 0, 28, 0.12);
      color: #fecdd3;
      gap: 6px;
    }

    .hp-motion-tab--medical .hp-motion-tab__pill {
      font-size: 0.62rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      padding: 2px 6px;
      border-radius: 999px;
      background: var(--onroda-red);
      color: #fff;
      line-height: 1.2;
    }

    .hp-motion-tab--medical[aria-selected="true"] {
      background: rgba(213, 0, 28, 0.28);
      border-color: rgba(254, 205, 211, 0.45);
      color: #fff;
      box-shadow: 0 0 0 1px rgba(213, 0, 28, 0.35);
    }

    .hp-motion-tab__label {
      display: inline;
    }

    .hp-motion-tab:focus-visible {
      outline: 2px solid rgba(248, 250, 252, 0.35);
      outline-offset: 2px;
    }

    .hp-motion-modal__close {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 12px;
      border: 1px solid rgba(148, 163, 184, 0.25);
      background: rgba(15, 23, 42, 0.6);
      color: #f8fafc;
      cursor: pointer;
      font-family: inherit;
    }

    .hp-motion-modal__close:hover {
      background: rgba(30, 41, 59, 0.9);
    }

    .hp-motion-modal__body {
      flex: 1 1 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 0.25rem 0.25rem 0.5rem;
      background: #020617;
      overflow: hidden;
    }

    .hp-motion-frame,
    .hp-motion-modal__frame {
      --motion-iframe-h: min(760px, 74vh);
      position: relative;
      width: min(420px, calc(100vw - 2rem));
      max-width: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      overflow: visible;
      border-radius: 16px;
      background: #020617;
    }

    .hp-motion-modal iframe,
    .hp-motion-modal__iframe {
      position: relative;
      display: block;
      width: 100%;
      height: min(760px, calc(92vh - 11.5rem));
      min-height: 560px;
      border: 0;
      background: #020617;
    }

    .hp-motion-modal__video {
      position: relative;
      display: block;
      width: 100%;
      height: var(--motion-iframe-h);
      min-height: min(560px, 70vh);
      max-height: 78vh;
      border: 0;
      object-fit: contain;
      background: #020617;
    }

    .hp-motion-modal:not(.hp-motion-modal--video) #hp-motion-video {
      display: none !important;
    }

    .hp-motion-modal__fallback {
      margin: 0.65rem 0 0;
      font-size: 0.82rem;
      text-align: center;
      color: #94a3b8;
    }

    .hp-motion-modal__fallback[hidden] {
      display: none !important;
    }

    .hp-motion-modal__fallback a {
      color: #f8fafc;
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .hp-motion-modal__fallback a:hover {
      color: #fff;
    }

    @media (max-width: 640px) {
      .hp-motion-modal {
        padding: 0;
        align-items: stretch;
      }

      .hp-motion-modal__panel {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        height: 100vh;
        border-radius: 0;
      }

      .hp-motion-modal__head {
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 0.65rem;
        padding: 1.05rem 1.1rem 0.65rem;
      }

      .hp-motion-modal__head > div:first-child {
        flex: 1 1 100%;
        min-width: 0;
      }

      .hp-motion-modal__note {
        font-size: 0.72rem;
        line-height: 1.35;
      }

      .hp-motion-modal__body {
        padding: 0;
      }

      .hp-motion-frame {
        --motion-iframe-h: calc(100vh - 10.2rem);
        width: 100%;
        max-width: 100%;
        border-radius: 0;
      }

      .hp-motion-modal iframe,
      .hp-motion-modal__iframe,
      .hp-motion-modal__video {
        min-height: 0;
        max-height: none;
      }
    }

    @media (max-width: 420px) {
      .hp-motion-modal__head {
        flex-direction: column;
        align-items: stretch;
      }

      .hp-motion-modal__close {
        align-self: flex-end;
      }

      .hp-motion-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
        padding: 5px;
        overflow: visible;
        flex-wrap: wrap;
      }

      .hp-motion-tab {
        font-size: 0.69rem;
        padding: 8px 4px;
        white-space: nowrap;
        text-align: center;
        line-height: 1.2;
        min-height: 2.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .hp-motion-modal__note {
        display: none;
      }

      .hp-motion-frame {
        --motion-iframe-h: calc(100vh - 11.1rem);
        width: 100%;
      }

      .hp-motion-modal iframe,
      .hp-motion-modal__iframe,
      .hp-motion-modal__video {
        min-height: 0;
        max-height: none;
      }
    }

    .hp-about-modal .hp-motion-modal__panel {
      background: #fff;
    }

    .hp-about-modal .hp-motion-modal__head h2 {
      color: #111;
    }

    .hp-about-modal .hp-motion-modal__body {
      overflow-y: auto;
      max-height: min(68vh, 560px);
      padding: 1.25rem 1.5rem 1.5rem;
      background: #fff;
    }

    .hp-about-prose {
      color: #333;
      font-size: 0.95rem;
      line-height: 1.65;
    }

    .hp-about-prose p {
      margin: 0 0 1rem;
    }

    .hp-about-prose p:last-child {
      margin-bottom: 0;
    }

    .hp-about-list {
      list-style: none;
      margin: 0 0 1rem;
      padding: 0;
    }

    .hp-about-list li {
      position: relative;
      padding: 0 0 0.45rem 1.35rem;
      color: #333;
      font-size: 0.95rem;
      line-height: 1.5;
    }

    .hp-about-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: #333;
      font-weight: 700;
    }

    .hp-about-tagline {
      font-weight: 700;
      color: #111;
    }

    .hp-footer-link-btn {
      background: none;
      border: none;
      padding: 0;
      font: inherit;
      color: inherit;
      cursor: pointer;
      text-decoration: none;
    }

    .hp-footer-link-btn:hover {
      color: var(--onroda-red);
    }

    .hp-medical-usp {
      padding: clamp(2rem, 4vw, 3rem) 0;
      background:
        linear-gradient(135deg, #fff5f5 0%, #f0f7ff 48%, #f8fafc 100%);
      border-top: 1px solid rgba(213, 0, 28, 0.08);
      border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    }

    .hp-medical-usp__grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
      gap: clamp(1.5rem, 3vw, 2.5rem);
      align-items: center;
    }

    .hp-medical-usp__badge {
      display: inline-flex;
      align-items: center;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(213, 0, 28, 0.1);
      border: 1px solid rgba(213, 0, 28, 0.22);
      color: #9f1239;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .hp-medical-usp__badge--inline {
      margin-bottom: 10px;
    }

    .hp-medical-usp__copy h2 {
      margin: 0 0 12px;
      font-size: clamp(1.45rem, 3vw, 2rem);
      line-height: 1.15;
      letter-spacing: -0.03em;
      color: var(--onroda-text-dark);
    }

    .hp-medical-usp__lead {
      margin: 0 0 16px;
      font-size: 1rem;
      line-height: 1.6;
      color: var(--onroda-text-grey);
      max-width: 52ch;
    }

    .hp-medical-usp__lead strong {
      color: var(--onroda-text-dark);
      font-weight: 700;
    }

    .hp-medical-usp__lead--sub {
      margin-top: -6px;
      margin-bottom: 16px;
      font-size: 0.95rem;
    }

    .hp-care-benefits--compact {
      margin-bottom: 16px;
      gap: 8px;
    }

    .hp-medical-usp__audience {
      margin: 0 0 18px;
      font-size: 0.95rem;
      font-weight: 600;
      line-height: 1.5;
      color: var(--onroda-text-dark);
    }

    .hp-medical-usp__actions--topics {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 8px;
    }

    .hp-medical-usp__topic-cta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      padding: 12px 14px;
      border-radius: 12px;
      background: #fff;
      border: 1px solid rgba(213, 0, 28, 0.2);
      color: var(--onroda-text-dark);
      font-size: 0.82rem;
      font-weight: 700;
      line-height: 1.3;
      text-decoration: none;
      box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
      transition: border-color 0.15s, color 0.15s, box-shadow 0.15s;
    }

    .hp-medical-usp__topic-cta::after {
      content: "→";
      flex-shrink: 0;
      color: var(--onroda-red);
      font-weight: 800;
    }

    .hp-medical-usp__topic-cta:hover {
      border-color: rgba(213, 0, 28, 0.45);
      color: var(--onroda-red);
      box-shadow: 0 8px 22px rgba(213, 0, 28, 0.1);
    }

    .hp-medical-usp__tags {
      list-style: none;
      padding: 0;
      margin: 0 0 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .hp-medical-usp__tags--care {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
      margin-bottom: 14px;
      width: 100%;
      max-width: 100%;
    }

    .hp-medical-usp__tags--care > .hp-medical-usp__tag {
      flex: 0 0 auto;
      width: auto;
      min-width: 0;
      justify-content: center;
      text-align: center;
      font-size: clamp(0.68rem, 2.4vw, 0.82rem);
      padding: 8px 10px;
      margin: 0;
      list-style: none;
    }

    @media (min-width: 520px) {
      .hp-medical-usp__tags--care {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: fit-content;
        max-width: 100%;
      }

      .hp-medical-usp__tags--care > .hp-medical-usp__tag {
        text-align: left;
        justify-content: flex-start;
        font-size: 0.82rem;
        padding: 8px 12px;
      }
    }

    .hp-medical-usp__tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 12px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid rgba(15, 23, 42, 0.1);
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--onroda-text-dark);
      box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
    }

    .hp-medical-usp__tag-ico {
      font-size: 1rem;
      line-height: 1;
    }

    .hp-medical-usp__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }

    .hp-btn-ghost--on-dark {
      border: 1px solid rgba(15, 23, 42, 0.14);
      background: rgba(255, 255, 255, 0.85);
      color: var(--onroda-text-dark);
    }

    .hp-btn-ghost--on-dark:hover {
      border-color: rgba(213, 0, 28, 0.35);
      color: var(--onroda-red);
      background: #fff;
    }

    .hp-medical-usp__aside {
      padding: clamp(1rem, 2vw, 1.35rem);
      border-radius: 18px;
      background: #fff;
      border: 1px solid rgba(59, 130, 246, 0.15);
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    }

    .hp-medical-usp__flow-title {
      margin: 0 0 14px;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #64748b;
    }

    .hp-medical-flow {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
      position: relative;
    }

    .hp-medical-flow::before {
      content: "";
      position: absolute;
      left: 19px;
      top: 18px;
      bottom: 18px;
      width: 2px;
      background: linear-gradient(180deg, var(--onroda-red), #3b82f6 55%, #22c55e);
      border-radius: 2px;
      opacity: 0.35;
    }

    .hp-medical-flow__step {
      display: grid;
      grid-template-columns: auto auto 1fr;
      gap: 10px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hp-medical-flow__num {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      background: var(--onroda-red);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .hp-medical-flow__icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: #f1f5f9;
      border: 1px solid #e2e8f0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #475569;
    }

    .hp-medical-flow__icon--ampel {
      flex-direction: column;
      gap: 3px;
      padding: 6px 0;
    }

    .hp-medical-flow__icon--ampel span {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #e2e8f0;
    }

    .hp-medical-flow__icon--ampel span:last-child {
      background: #22c55e;
      box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
    }

    .hp-medical-flow__text {
      font-size: 0.88rem;
      line-height: 1.35;
      color: var(--onroda-text-grey);
    }

    .hp-medical-flow__text strong {
      color: var(--onroda-text-dark);
      font-weight: 700;
    }

    @media (max-width: 899px) {
      .hp-medical-usp__grid {
        grid-template-columns: 1fr;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .hp-medical-flow::before {
        display: none;
      }
    }

    .hp-care__grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
      gap: clamp(1.5rem, 3vw, 2.75rem);
      align-items: start;
    }

    .hp-care__col--intro .hp-care__intro {
      margin-bottom: 0;
    }

    .hp-care-tags {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin: 0 0 16px;
      width: 100%;
    }

    .hp-care-tags__item {
      display: inline-flex;
      flex: 0 0 auto;
      align-items: center;
      gap: 6px;
      padding: 8px 12px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid rgba(15, 23, 42, 0.1);
      font-size: 0.82rem;
      font-weight: 600;
      line-height: 1.2;
      color: var(--onroda-text-dark);
      box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
      white-space: nowrap;
    }

    .hp-care-tags__ico {
      font-size: 1rem;
      line-height: 1;
      flex-shrink: 0;
    }

    .hp-care__col--detail {
      padding: clamp(1rem, 2vw, 1.35rem);
      border-radius: 18px;
      background: #fff;
      border: 1px solid rgba(59, 130, 246, 0.12);
      box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
    }

    @media (max-width: 899px) {
      .hp-care__grid {
        grid-template-columns: 1fr;
      }

      .hp-care__col--detail {
        padding: 1.15rem;
      }
    }

    .hp-care__tagline {
      margin: 0 0 14px;
      font-size: 1.05rem;
      line-height: 1.55;
      font-weight: 600;
      color: var(--onroda-red);
    }

    .hp-care__intro {
      margin: 0 0 24px;
      font-size: 1rem;
      line-height: 1.65;
      color: var(--onroda-text-grey);
    }

    .hp-care__subhead {
      margin: 0 0 12px;
      font-size: 1rem;
      font-weight: 700;
      color: var(--onroda-text-dark);
    }

    .hp-care-benefits {
      list-style: none;
      padding: 0;
      margin: 0 0 28px;
      display: grid;
      gap: 10px;
    }

    .hp-care-benefits__item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.95rem;
      line-height: 1.45;
      color: var(--onroda-text-dark);
    }

    .hp-care-benefits__check {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      border-radius: 999px;
      background: rgba(34, 197, 94, 0.12);
      color: #15803d;
      font-size: 0.75rem;
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
    }

    .hp-care-process {
      list-style: none;
      padding: 0;
      margin: 0 0 24px;
      counter-reset: care-step;
      display: grid;
      gap: 0;
      border-radius: 14px;
      border: 1px solid rgba(59, 130, 246, 0.18);
      background: #fff;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    }

    .hp-care-process li {
      counter-increment: care-step;
      position: relative;
      padding: 12px 14px 12px 42px;
      font-size: 0.92rem;
      line-height: 1.4;
      color: var(--onroda-text-dark);
      border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    }

    .hp-care-process li:last-child {
      border-bottom: none;
    }

    .hp-care-process li::before {
      content: counter(care-step);
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      width: 22px;
      height: 22px;
      border-radius: 999px;
      background: var(--onroda-red);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hp-care-process li:not(:last-child)::after {
      content: "→";
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: #94a3b8;
      font-size: 0.85rem;
      pointer-events: none;
    }

    @media (max-width: 520px) {
      .hp-care-process li:not(:last-child)::after {
        display: none;
      }
    }

    .hp-care__closing {
      margin: 0 0 20px;
      font-size: 1rem;
      font-weight: 600;
      line-height: 1.5;
      color: var(--onroda-text-dark);
    }

    .hp-care__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }

    .hp-enterprise__shell {
      max-width: 920px;
      margin: 0 auto;
      padding: clamp(1.25rem, 2.5vw, 2rem);
      border-radius: 20px;
      background: #fff;
      border: 1px solid rgba(15, 23, 42, 0.08);
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
    }

    .hp-enterprise__head {
      margin-bottom: 1.5rem;
    }

    .hp-enterprise__intro {
      margin: 0;
      font-size: 1rem;
      line-height: 1.65;
      color: var(--onroda-text-grey);
      max-width: 62ch;
    }

    .hp-enterprise__benefits {
      margin-bottom: 1.75rem;
    }

    @media (min-width: 720px) {
      .hp-enterprise__benefits {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 1.5rem;
      }
    }

    .hp-care-benefits__item div strong {
      display: block;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--onroda-text-dark);
      margin-bottom: 2px;
    }

    .hp-care-benefits__item div {
      font-size: 0.9rem;
      line-height: 1.45;
      color: var(--onroda-text-grey);
    }

    .hp-enterprise__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .hp-stats {
      padding: 0 0 2.5rem;
      background: #fff;
    }

    .hp-stats-list {
      list-style: none;
      margin: 0;
      padding: 1.25rem 0;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
      border-top: 1px solid #ececec;
      border-bottom: 1px solid #ececec;
    }

    .hp-stats-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
    }

    .hp-stats-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 999px;
      background: var(--hp-icon-bg);
      color: var(--onroda-red);
      flex-shrink: 0;
    }

    .hp-stats-list strong {
      font-size: 0.92rem;
      font-weight: 700;
      line-height: 1.3;
    }

    .hp-section--audience {
      padding-top: 2rem;
    }

    .hp-audience-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1.1rem;
      align-items: stretch;
    }

    .hp-audience-card {
      --hp-audience-foot-h: 120px;
      --hp-audience-foot-h-hover: 168px;
      border-radius: 18px;
      overflow: hidden;
      background: #fff;
      border: 1px solid var(--hp-card-border);
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
      display: flex;
      flex-direction: column;
      min-height: 300px;
      height: 100%;
      position: relative;
      transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease,
        opacity 0.28s ease;
    }

    .hp-audience-card__body {
      padding: 22px 20px 18px;
      flex: 1;
      display: flex;
      flex-direction: column;
      position: relative;
      z-index: 1;
    }

    .hp-audience-card__body .hp-card-icon {
      transition: transform 0.28s ease, box-shadow 0.28s ease;
    }

    .hp-audience-card__link {
      margin-top: auto;
      padding-top: 14px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      width: fit-content;
    }

    .hp-audience-card__link-label {
      transition: color 0.2s ease;
    }

    .hp-audience-card__link-arrow {
      flex-shrink: 0;
      transition: transform 0.28s ease, color 0.2s ease;
    }

    .hp-audience-card__foot {
      position: relative;
      height: var(--hp-audience-foot-h);
      flex-shrink: 0;
      margin-top: auto;
      transition: height 0.32s ease;
    }

    .hp-audience-card__bottom {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center bottom;
      transition: transform 0.32s ease;
    }

    .hp-audience-card--passengers .hp-audience-card__bottom {
      background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.72)),
        linear-gradient(135deg, #fecaca 0%, #fee2e2 40%, #f8fafc 100%);
    }

    .hp-audience-card--business .hp-audience-card__bottom {
      background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.72)),
        linear-gradient(135deg, #cbd5e1 0%, #e2e8f0 45%, #f8fafc 100%);
    }

    .hp-audience-card--medical .hp-audience-card__bottom {
      background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.72)),
        linear-gradient(135deg, #bfdbfe 0%, #dbeafe 45%, #f8fafc 100%);
    }

    .hp-audience-card--partner .hp-audience-card__bottom {
      background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.72)),
        linear-gradient(135deg, #fde68a 0%, #fef3c7 45%, #f8fafc 100%);
    }

    .hp-audience-card--drivers .hp-audience-card__bottom {
      background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.72)),
        linear-gradient(135deg, #bbf7d0 0%, #dcfce7 45%, #f8fafc 100%);
    }

    .hp-audience-card__badge {
      display: inline-flex;
      align-self: flex-start;
      margin-bottom: 10px;
      padding: 5px 10px;
      border-radius: 999px;
      background: rgba(213, 0, 28, 0.1);
      border: 1px solid rgba(213, 0, 28, 0.22);
      color: #9f1239;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .hp-audience-card__chips {
      list-style: none;
      padding: 0;
      margin: 0 0 8px;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .hp-audience-card__chips li {
      font-size: 0.72rem;
      font-weight: 700;
      padding: 4px 8px;
      border-radius: 999px;
      background: #eff6ff;
      border: 1px solid #bfdbfe;
      color: #1e40af;
    }

    .hp-audience-card__visual {
      position: absolute;
      left: 50%;
      bottom: 28px;
      transform: translateX(-50%) translateY(18px);
      width: min(92%, 140px);
      opacity: 0;
      pointer-events: none;
      z-index: 2;
      color: #64748b;
      transition:
        opacity 0.28s ease,
        transform 0.28s ease;
    }

    .hp-audience-card__visual-svg {
      display: block;
      width: 100%;
      height: auto;
    }

    /* Desktop: Hover-Fokus auf eine Karte */
    @media (hover: hover) and (pointer: fine) {
      .hp-audience-grid:has(.hp-audience-card:hover) .hp-audience-card:not(:hover) {
        opacity: 0.62;
        transform: scale(0.98);
      }

      .hp-audience-card:hover,
      .hp-audience-card:focus-within {
        opacity: 1;
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
        border-color: rgba(213, 0, 28, 0.35);
      }

      .hp-audience-card:hover .hp-audience-card__foot,
      .hp-audience-card:focus-within .hp-audience-card__foot {
        height: var(--hp-audience-foot-h-hover);
      }

      .hp-audience-card:hover .hp-audience-card__bottom,
      .hp-audience-card:focus-within .hp-audience-card__bottom {
        transform: translateY(-6px);
      }

      .hp-audience-card:hover .hp-audience-card__visual,
      .hp-audience-card:focus-within .hp-audience-card__visual {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
      }

      .hp-audience-card:hover .hp-card-icon,
      .hp-audience-card:focus-within .hp-card-icon {
        transform: scale(1.1);
        box-shadow: 0 8px 20px rgba(213, 0, 28, 0.12);
      }

      .hp-audience-card:hover .hp-audience-card__link-label,
      .hp-audience-card:focus-within .hp-audience-card__link-label {
        color: #9f1239;
      }

      .hp-audience-card:hover .hp-audience-card__link-arrow,
      .hp-audience-card:focus-within .hp-audience-card__link-arrow {
        transform: translateX(4px);
        color: var(--onroda-red);
      }
    }

    /* Touch: Illustration leicht sichtbar, kein Hover-Zwang */
    @media (hover: none), (pointer: coarse) {
      .hp-audience-card__visual {
        opacity: 0.42;
        transform: translateX(-50%) translateY(6px);
      }

      .hp-audience-card:active {
        border-color: rgba(213, 0, 28, 0.35);
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
      }

      .hp-audience-card:active .hp-audience-card__visual {
        opacity: 0.85;
        transform: translateX(-50%) translateY(0);
      }

      .hp-audience-card:active .hp-audience-card__foot {
        height: var(--hp-audience-foot-h-hover);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .hp-audience-card,
      .hp-audience-card__foot,
      .hp-audience-card__bottom,
      .hp-audience-card__visual,
      .hp-audience-card__body .hp-card-icon,
      .hp-audience-card__link-arrow {
        transition-duration: 0.01ms !important;
      }

      @media (hover: hover) and (pointer: fine) {
        .hp-audience-grid:has(.hp-audience-card:hover) .hp-audience-card:not(:hover) {
          transform: none;
        }

        .hp-audience-card:hover,
        .hp-audience-card:focus-within {
          transform: none;
        }

        .hp-audience-card:hover .hp-card-icon,
        .hp-audience-card:focus-within .hp-card-icon {
          transform: none;
        }

        .hp-audience-card:hover .hp-audience-card__link-arrow,
        .hp-audience-card:focus-within .hp-audience-card__link-arrow {
          transform: none;
        }
      }
    }

    .hp-process {
      position: relative;
      padding: 4.75rem 0 5rem;
      color: #fff;
      background:
        linear-gradient(180deg, #0a0a0a 0%, #111 55%, #0d0d0d 100%);
      overflow: hidden;
    }

    .hp-process::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 18% 20%, rgba(213, 0, 28, 0.22), transparent 42%),
        radial-gradient(circle at 82% 30%, rgba(255, 255, 255, 0.04), transparent 40%);
      pointer-events: none;
    }

    .hp-process .hp-wrap {
      position: relative;
      z-index: 1;
    }

    .hp-process-head {
      max-width: 40rem;
      margin: 0 auto 2.75rem;
      text-align: center;
    }

    .hp-process-head h2 {
      margin: 0 0 10px;
      font-size: clamp(1.85rem, 1.4vw + 1rem, 2.75rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.1;
    }

    .hp-process-head p {
      margin: 0;
      color: rgba(255, 255, 255, 0.74);
      font-size: 1.05rem;
      line-height: 1.55;
    }

    .hp-process-steps {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 1.25rem;
      position: relative;
    }

    .hp-process-steps::before {
      content: "";
      position: absolute;
      top: 52px;
      left: 10%;
      right: 10%;
      height: 0;
      border-top: 2px dashed rgba(255, 255, 255, 0.2);
      z-index: 0;
    }

    .hp-process-step {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 0 6px;
    }

    .hp-process-step__num {
      display: block;
      margin-bottom: 8px;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      color: rgba(255, 255, 255, 0.45);
      text-transform: uppercase;
    }

    .hp-process-step__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 72px;
      height: 72px;
      border-radius: 999px;
      margin: 0 auto 16px;
      color: #fff;
      background: linear-gradient(160deg, #e81841 0%, #b8001f 100%);
      border: 2px solid rgba(255, 255, 255, 0.2);
      box-shadow:
        0 16px 32px rgba(213, 0, 28, 0.35),
        0 0 0 8px rgba(213, 0, 28, 0.1);
    }

    .hp-process-step__icon svg {
      width: 26px;
      height: 26px;
      stroke-width: 2.2;
      filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    }

    .hp-process-step strong {
      display: block;
      margin-bottom: 8px;
      font-size: 1.02rem;
      font-weight: 700;
      color: #fff;
    }

    .hp-process-step > span:not(.hp-process-step__num):not(.hp-process-step__icon) {
      display: block;
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.88rem;
      line-height: 1.5;
      max-width: 16ch;
      margin-inline: auto;
    }

    .hp-section--trust {
      background: #fff;
    }

    .hp-trust-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 1rem;
    }

    .hp-trust-badge {
      text-align: center;
      padding: 22px 14px;
      border-radius: 16px;
      border: 1px solid var(--hp-card-border);
      background: #fff;
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    }

    .hp-trust-badge__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: linear-gradient(145deg, #fff5f5, #fde8ec);
      color: var(--onroda-red);
      margin-bottom: 10px;
      border: 1px solid rgba(213, 0, 28, 0.08);
    }

    .hp-faq-layout {
      display: grid;
      grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.4fr);
      gap: 2rem;
      align-items: start;
    }

    .hp-vision-panel {
      background: #fff;
      border: 1px solid var(--hp-card-border);
      border-radius: 18px;
      padding: 24px 22px;
      box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
    }

    .hp-vision-panel h3 {
      margin: 0 0 12px;
      font-size: 1.15rem;
    }

    .hp-vision-panel p {
      margin: 0 0 14px;
      color: var(--onroda-text-grey);
      font-size: 0.96rem;
      line-height: 1.55;
    }

    .hp-vision-list {
      margin: 0 0 18px;
      padding-left: 1.1rem;
      color: var(--onroda-text-grey);
      font-size: 0.94rem;
      line-height: 1.6;
    }

    .hp-faq-list {
      display: grid;
      gap: 10px;
    }

    .hp-trust-badge h3 {
      margin: 0 0 6px;
      font-size: 0.95rem;
    }

    .hp-trust-badge p {
      margin: 0;
      color: var(--onroda-text-grey);
      font-size: 0.84rem;
      line-height: 1.45;
    }

    .hp-faq-item {
      border: 1px solid var(--hp-card-border);
      border-radius: 12px;
      background: #fff;
      padding: 0 16px;
      margin-bottom: 10px;
    }

    .hp-faq-item summary {
      cursor: pointer;
      font-weight: 700;
      padding: 16px 0;
      list-style: none;
    }

    .hp-faq-item summary::-webkit-details-marker {
      display: none;
    }

    .hp-faq-item p {
      margin: 0 0 16px;
      color: var(--onroda-text-grey);
    }

    .hp-section {
      padding: 4.5rem 0;
    }

    .hp-section--muted {
      background: var(--hp-section-bg);
    }

    .hp-jetzt-buchen-inner {
      text-align: center;
      max-width: 42rem;
      margin-inline: auto;
    }

    .hp-jetzt-buchen-title {
      font-family: var(--font-sans);
      font-weight: 800;
      margin: 0 0 12px;
    }

    .hp-jetzt-buchen-lead {
      margin: 0;
    }

    /* legacy aliases — section merged into .hp-app-download */

    .hp-section-head {
      text-align: center;
      max-width: 48rem;
      margin: 0 auto 2.5rem;
    }

    .hp-prose-center {
      margin: 0 auto;
      text-align: center;
      max-width: 42rem;
    }

    .hp-kicker {
      color: var(--onroda-red);
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin: 0 0 10px;
    }

    .hp-section h2 {
      font-family: var(--font-sans);
      font-size: clamp(1.75rem, 1.2vw + 1.1rem, 2.35rem);
      font-weight: 800;
      margin: 0 0 12px;
      line-height: 1.15;
      letter-spacing: -0.02em;
    }

    .hp-section .hp-sub {
      color: var(--onroda-text-grey);
      font-size: 1rem;
      margin: 0;
    }

    .hp-grid-4 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
      gap: 1.4rem;
    }

    .hp-card {
      background: #fff;
      border: 1px solid var(--hp-card-border);
      border-radius: 16px;
      padding: 24px 20px;
      transition: box-shadow 0.2s;
    }

    .hp-card:hover {
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    }

    .hp-card-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--hp-icon-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      font-size: 1.25rem;
      color: var(--onroda-red);
    }

    .hp-card h3 {
      margin: 0 0 10px;
      font-size: 1.1rem;
    }

    .hp-card p {
      margin: 0;
      color: var(--onroda-text-grey);
      font-size: 0.97rem;
    }

    .hp-grid-2 {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.4rem;
    }

    .hp-manifest-card {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 18px;
      align-items: start;
      background: #fff;
      border: 1px solid var(--hp-card-border);
      border-radius: 16px;
      padding: 24px 22px;
    }

    .hp-num {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--onroda-red);
      color: #fff;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .hp-manifest-card h3 {
      margin: 0 0 8px;
      font-size: 1.08rem;
    }

    .hp-manifest-card p {
      margin: 0 0 12px;
      color: var(--onroda-text-grey);
      font-size: 0.97rem;
    }

    .hp-link {
      color: var(--onroda-red);
      font-weight: 600;
      text-decoration: none;
      font-size: 0.97rem;
    }

    .hp-link:hover {
      text-decoration: underline;
    }

    .hp-icon-manifest {
      width: 40px;
      height: 40px;
      margin-bottom: 10px;
      border-radius: 10px;
      background: var(--hp-icon-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .hp-lead {
      font-size: 1rem;
      line-height: 1.58;
    }

    .hp-mini-cards {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .hp-mini {
      display: flex;
      gap: 14px;
      padding: 18px;
      border: 1px solid var(--hp-card-border);
      border-radius: 14px;
      background: #FAF4EC;
    }

    .hp-mini-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: var(--hp-icon-bg);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hp-mini h4 {
      margin: 0 0 6px;
      font-size: 1rem;
    }

    .hp-mini p {
      margin: 0;
      font-size: 0.94rem;
      color: var(--onroda-text-grey);
    }

    .hp-benefits {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 20px;
    }

    .hp-benefit {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: 0.96rem;
      color: var(--onroda-text-grey);
    }

    .hp-benefit strong {
      color: var(--onroda-text-dark);
      display: block;
      margin-bottom: 2px;
    }

    .hp-split-bleed-host {
      overflow-x: clip;
    }

    .hp-split-bleed {
      display: grid;
      gap: 2rem;
    }

    .hp-form-card {
      background: #f3f3f5;
      border-radius: 18px;
      padding: 26px 22px;
      border: 1px solid var(--hp-card-border);
    }

    .hp-form-card h3 {
      margin: 0 0 8px;
      font-size: 1.2rem;
    }

    .hp-form-card .hint {
      margin: 0 0 20px;
      color: var(--onroda-text-grey);
      font-size: 0.92rem;
    }

    .hp-partner-flow p {
      margin: 0 0 0.65rem;
      line-height: 1.55;
    }

    .hp-partner-flow p:last-child {
      margin-bottom: 0;
    }

    .hp-partner-flow__steps {
      color: var(--onroda-text-dark);
      font-weight: 500;
    }

    .hp-partner-flow__note {
      padding-top: 0.15rem;
    }

    .hp-honeypot {
      position: absolute;
      left: -10000px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    .hp-form-status {
      min-height: 1.25em;
      margin: 0;
      font-size: 0.92rem;
      color: var(--onroda-text-grey);
      white-space: pre-wrap;
    }

    .hp-form-status--success {
      color: #0d6832;
      font-weight: 600;
    }

    .hp-form-status--error {
      color: #b42318;
      font-weight: 600;
    }

    .hp-checkbox {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: 0.92rem;
      color: var(--onroda-text-dark);
      line-height: 1.45;
    }

    .hp-checkbox input {
      width: auto;
      margin-top: 4px;
      flex-shrink: 0;
    }

    .hp-checkbox a {
      color: var(--onroda-red);
      font-weight: 600;
    }

    .hp-partner-shell {
      display: grid;
      grid-template-columns: minmax(260px, 0.95fr) minmax(340px, 1.25fr);
      gap: 2.5rem;
      align-items: start;
    }

    .hp-partner-side {
      padding: 0.25rem 0;
    }

    .hp-partner-form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px 12px;
    }

    .hp-field {
      margin: 0;
    }

    .hp-field--full {
      grid-column: 1 / -1;
    }

    .hp-partner-file-field input[type="file"] {
      width: 100%;
      padding: 10px 12px;
      border: 1px solid #d8d8dd;
      border-radius: 10px;
      font-family: inherit;
      font-size: 0.9rem;
      background: #fff;
      color: var(--onroda-text-dark);
    }

    .hp-field label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: 6px;
      color: var(--onroda-text-grey);
    }

    .hp-field input,
    .hp-field select,
    .hp-field textarea {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid #d8d8dd;
      border-radius: 10px;
      font-family: inherit;
      font-size: 0.98rem;
      background: #fff;
      color: var(--onroda-text-dark);
      resize: vertical;
    }

    .hp-field textarea {
      min-height: 96px;
    }

    .hp-field input:focus,
    .hp-field select:focus,
    .hp-field textarea:focus {
      outline: none;
      border-color: var(--onroda-red);
      box-shadow: var(--onroda-shadow-focus-ring);
    }

    .hp-loc-grid {
      display: grid;
      grid-template-columns: 1.05fr 1.15fr 1fr;
      gap: 12px;
    }

    .hp-submit-row {
      display: flex;
      justify-content: flex-end;
    }

    .hp-submit-row .hp-btn-primary {
      min-width: 240px;
      justify-content: center;
    }

    .hp-voucher-card {
      background: #fff;
      border-radius: 18px;
      padding: 24px;
      border: 1px solid var(--hp-card-border);
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
    }

    .hp-voucher-card ol {
      margin: 16px 0 0;
      padding-left: 1.2rem;
      color: var(--onroda-text-grey);
    }

    .hp-voucher-card li {
      margin-bottom: 10px;
    }

    .app-download-section,
    .hp-app-download {
      background:
        radial-gradient(circle at 85% 20%, rgba(213, 0, 28, 0.06), transparent 42%),
        linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
      border-top: 1px solid rgba(15, 23, 42, 0.06);
    }

    .hp-app-download {
      padding: clamp(2rem, 4vw, 2.75rem) 0;
      overflow-x: clip;
    }

    .hp-app-download__grid {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
      gap: clamp(2rem, 4vw, 3.5rem);
      align-items: center;
      min-width: 0;
    }

    .hp-app-download__copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hp-app-download__badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 14px;
      padding: 6px 14px 6px 6px;
      border-radius: 999px;
      background: linear-gradient(135deg, #fff 0%, #fff8f8 100%);
      border: 1px solid rgba(213, 0, 28, 0.14);
      box-shadow:
        0 10px 28px rgba(213, 0, 28, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
      color: var(--onroda-red);
      width: fit-content;
    }

    .hp-app-download__badge-icon {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      background: linear-gradient(145deg, var(--onroda-red) 0%, #b8001f 100%);
      color: #fff;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      box-shadow: 0 6px 14px rgba(213, 0, 28, 0.28);
    }

    .hp-app-download__badge-icon svg {
      display: block;
    }

    .hp-app-download__badge-text {
      font-size: 0.74rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      line-height: 1;
    }

    .hp-app-download__badge svg {
      flex-shrink: 0;
    }

    .hp-app-download__title {
      margin: 0 0 0.85rem;
      font-family: var(--font-sans);
      font-size: clamp(1.65rem, 3.2vw, 2.35rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.12;
      color: var(--onroda-text-dark);
    }

    .hp-app-download__title-accent {
      color: var(--onroda-red);
      display: block;
    }

    @media (min-width: 520px) {
      .hp-app-download__title-accent {
        display: inline;
      }
    }

    .hp-app-download__lead {
      margin: 0 0 1.35rem;
      font-size: 1.02rem;
      line-height: 1.55;
      color: var(--onroda-text-grey);
      max-width: 40ch;
    }

    .hp-app-download__tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 1.45rem;
    }

    .hp-app-download__tab {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 8px 14px;
      border-radius: 999px;
      border: 1px solid rgba(15, 23, 42, 0.12);
      background: #fff;
      color: var(--onroda-text-grey);
      font-size: 0.82rem;
      font-weight: 700;
      cursor: pointer;
      font-family: inherit;
      transition: background 0.15s, border-color 0.15s, color 0.15s;
    }

    .hp-app-download__tab svg {
      flex-shrink: 0;
      display: block;
      opacity: 0.7;
    }

    .hp-app-download__tab:hover {
      border-color: rgba(213, 0, 28, 0.3);
      color: var(--onroda-text-dark);
    }

    .hp-app-download__tab.is-active {
      background: var(--onroda-red);
      border-color: var(--onroda-red);
      color: #fff;
    }

    .hp-app-download__tab.is-active svg {
      opacity: 1;
      stroke: #fff;
    }

    .hp-app-download__features {
      list-style: none;
      margin: 0 0 1.5rem;
      padding: 0;
      display: grid;
      gap: 14px;
    }

    .hp-app-download__feature {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .hp-app-download__feature-icon {
      flex: 0 0 44px;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(213, 0, 28, 0.1);
      color: var(--onroda-red);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      line-height: 0;
    }

    .hp-app-download__feature-icon svg {
      display: block;
      width: 20px;
      height: 20px;
      margin: 0;
      flex-shrink: 0;
    }

    .hp-app-download__feature-copy,
    .hp-app-download__feature > div,
    .hp-app-download__feature-body {
      flex: 1;
      min-width: 0;
    }

    .hp-app-download__feature strong {
      display: block;
      font-size: 0.92rem;
      font-weight: 700;
      color: var(--onroda-text-dark);
      margin-bottom: 2px;
    }

    .hp-app-download__feature-copy span {
      display: block;
      font-size: 0.84rem;
      line-height: 1.4;
      color: var(--onroda-text-grey);
    }

    .hp-app-download[data-app-active-tab="taxi"] [data-app-feature="medical"],
    .hp-app-download[data-app-active-tab="partner"] [data-app-feature="medical"] {
      opacity: 0.55;
    }

    .hp-app-download__device {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-width: 0;
      max-width: 100%;
      overflow: visible;
    }

    .hp-app-download__stage {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      width: min(480px, 100%);
      max-width: 100%;
      margin: 0 auto;
      padding: 0;
      box-sizing: border-box;
    }

    .hp-app-download__phones {
      position: relative;
      width: 100%;
      height: clamp(340px, 38vw, 400px);
    }

    .hp-app-download__phone {
      width: min(260px, 100%);
      max-width: 100%;
      padding: 10px;
      border-radius: 38px;
      background: linear-gradient(160deg, #2c2c2e 0%, #0a0a0a 100%);
      border: 2px solid #3f3f46;
      box-shadow:
        0 28px 56px rgba(15, 23, 42, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
      transition: transform 0.35s ease, opacity 0.35s ease;
    }

    .hp-app-download__phones .hp-app-download__phone--taxi {
      position: absolute;
      left: 0;
      bottom: 0;
      z-index: 3;
      width: min(255px, 56%);
      margin: 0;
    }

    .hp-app-download__phones .hp-app-download__phone--medical {
      position: absolute;
      top: 0;
      right: 0;
      z-index: 2;
      width: min(230px, 52%);
      transform: rotate(4deg);
    }

    .hp-app-download[data-app-active-tab="medical"] .hp-app-download__phone--taxi {
      z-index: 2;
      opacity: 0.88;
      transform: scale(0.96);
    }

    .hp-app-download[data-app-active-tab="medical"] .hp-app-download__phone--medical {
      z-index: 4;
      transform: rotate(0deg) scale(1.02);
    }

    .hp-app-download[data-app-active-tab="partner"] .hp-app-download__phone--medical {
      opacity: 0.75;
    }

    html.hp-js .hp-app-download .hp-reveal:not(.hp-reveal--phone):not(.hp-reveal--phone-2) {
      transition:
        opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
      transition-delay: calc(var(--reveal-order, 0) * 70ms + 90ms);
    }

    html.hp-js .hp-app-download:not(.is-visible) .hp-reveal:not(.hp-reveal--phone):not(.hp-reveal--phone-2) {
      opacity: 0;
      transform: translateY(22px);
    }

    html.hp-js .hp-app-download:not(.is-visible) .hp-reveal--phone,
    html.hp-js .hp-app-download:not(.is-visible) .hp-reveal--phone-2 {
      opacity: 0;
      transform: translate(36px, 48px) scale(0.9);
      transition: none;
    }

    .hp-app-download.is-visible .hp-reveal:not(.hp-reveal--phone):not(.hp-reveal--phone-2) {
      opacity: 1;
      transform: translateY(0);
    }

    .hp-app-download.is-visible .hp-reveal--phone {
      opacity: 1;
      animation: hp-app-phone-bump 0.85s cubic-bezier(0.34, 1.45, 0.64, 1) forwards;
      animation-delay: 0.18s;
    }

    .hp-app-download__phones .hp-app-download__phone--taxi,
    .hp-app-download__phones .hp-app-download__phone--medical {
      position: absolute;
    }

    .hp-app-download.is-visible .hp-reveal--phone-2 {
      opacity: 1;
      animation: hp-app-phone-bump-2 0.85s cubic-bezier(0.34, 1.45, 0.64, 1) forwards;
      animation-delay: 0.32s;
    }

    @keyframes hp-app-phone-bump-2 {
      0% {
        opacity: 0;
        transform: translate(36px, 48px) scale(0.9) rotate(4deg);
      }
      68% {
        opacity: 1;
        transform: translate(-5px, -8px) scale(1.02) rotate(4deg);
      }
      100% {
        opacity: 1;
        transform: translate(0, 0) scale(1) rotate(4deg);
      }
    }

    @keyframes hp-app-phone-bump {
      0% {
        opacity: 0;
        transform: translate(36px, 48px) scale(0.9);
      }
      68% {
        opacity: 1;
        transform: translate(-5px, -8px) scale(1.02);
      }
      100% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
      }
    }

    .hp-app-download.is-visible .hp-app-download__screen {
      animation: hp-app-screen-glow 2.8s ease-in-out infinite;
      animation-delay: 1s;
    }

    @keyframes hp-app-screen-glow {
      0%,
      100% {
        box-shadow: 0 0 0 rgba(213, 0, 28, 0);
      }
      50% {
        box-shadow:
          0 0 0 2px rgba(213, 0, 28, 0.1),
          0 0 28px rgba(213, 0, 28, 0.12);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html.hp-js .hp-app-download:not(.is-visible) .hp-reveal:not(.hp-reveal--phone):not(.hp-reveal--phone-2),
      html.hp-js .hp-app-download:not(.is-visible) .hp-reveal--phone,
      html.hp-js .hp-app-download:not(.is-visible) .hp-reveal--phone-2 {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
      }

      .hp-app-download.is-visible .hp-reveal:not(.hp-reveal--phone):not(.hp-reveal--phone-2),
      .hp-app-download.is-visible .hp-reveal--phone,
      .hp-app-download.is-visible .hp-reveal--phone-2 {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
      }

      .hp-app-download.is-visible .hp-app-download__screen {
        animation: none !important;
      }
    }

    .hp-app-download__island {
      position: absolute;
      top: 14px;
      left: 50%;
      transform: translateX(-50%);
      width: 72px;
      height: 20px;
      border-radius: 999px;
      background: #000;
      z-index: 2;
    }

    .hp-app-download__screen {
      border-radius: 28px;
      overflow: hidden;
      background: #fff;
      border: 1px solid #27272a;
      min-height: 350px;
      display: flex;
      flex-direction: column;
    }

    .hp-app-download__screen--medical {
      min-height: 330px;
    }

    .hp-app-download__screen-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 8px;
      padding: 32px 12px 8px;
    }

    .hp-app-download__screen-top small {
      display: block;
      color: #64748b;
      font-size: 0.68rem;
      font-weight: 600;
    }

    .hp-app-download__screen-top strong {
      display: block;
      font-size: 0.95rem;
      color: var(--onroda-text-dark);
      letter-spacing: -0.02em;
    }

    .hp-app-download__driver {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin: 0 10px 8px;
      padding: 10px 12px;
      border-radius: 14px;
      background: #f8fafc;
      border: 1px solid #e2e8f0;
    }

    .hp-app-download__driver strong {
      display: block;
      font-size: 0.88rem;
    }

    .hp-app-download__stars {
      display: block;
      font-size: 0.65rem;
      color: #f59e0b;
      letter-spacing: 0.02em;
    }

    .hp-app-download__stars em {
      font-style: normal;
      color: var(--onroda-text-dark);
      font-weight: 700;
    }

    .hp-app-download__car-ico {
      font-size: 1.5rem;
      line-height: 1;
    }

    .hp-app-download__map {
      position: relative;
      flex: 1;
      min-height: 160px;
      margin: 0 10px;
      border-radius: 16px;
      background:
        radial-gradient(circle at 65% 35%, rgba(213, 0, 28, 0.16), transparent 40%),
        linear-gradient(160deg, #e2e8f0 0%, #f8fafc 55%, #dbeafe 100%);
      overflow: hidden;
    }

    .hp-app-download__car-dot {
      position: absolute;
      top: 48%;
      left: 38%;
      width: 14px;
      height: 8px;
      border-radius: 4px;
      background: var(--onroda-red);
      box-shadow: 0 2px 6px rgba(213, 0, 28, 0.35);
      z-index: 2;
    }

    .hp-app-download__pin {
      position: absolute;
      top: 30%;
      left: 62%;
      width: 12px;
      height: 12px;
      border-radius: 999px;
      background: var(--onroda-red);
      box-shadow: 0 0 0 6px rgba(213, 0, 28, 0.2);
    }

    .hp-app-download__route {
      position: absolute;
      inset: 28% 20% 32% 16%;
      border: 2px solid var(--onroda-red);
      border-radius: 999px;
      border-top-color: transparent;
      border-left-color: transparent;
      transform: rotate(14deg);
    }

    .hp-app-download__ride {
      margin: 10px;
      padding: 12px 14px;
      border-radius: 16px;
      background: #fff;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }

    .hp-app-download__ride small {
      color: #64748b;
      font-size: 0.68rem;
      font-weight: 600;
      display: block;
    }

    .hp-app-download__ride strong {
      font-size: 1.15rem;
      letter-spacing: -0.02em;
      color: var(--onroda-red);
      display: block;
    }

    .hp-app-download__ride-cta {
      font-size: 0.68rem;
      font-weight: 700;
      color: #fff;
      background: var(--onroda-red);
      padding: 8px 10px;
      border-radius: 999px;
      white-space: nowrap;
    }

    .hp-app-download__approval {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 0 10px 12px;
      padding: 12px;
      border-radius: 14px;
      background: #f0fdf4;
      border: 1px solid #bbf7d0;
    }

    .hp-app-download__approval-icon {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      background: #22c55e;
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      flex-shrink: 0;
    }

    .hp-app-download__approval strong {
      display: block;
      font-size: 0.9rem;
      color: #15803d;
    }

    .hp-app-download__approval span {
      font-size: 0.72rem;
      color: #64748b;
    }

    .hp-app-download__timeline {
      list-style: none;
      margin: 0 10px 12px;
      padding: 0;
      display: grid;
      gap: 8px;
    }

    .hp-app-download__timeline li {
      position: relative;
      padding-left: 22px;
      font-size: 0.72rem;
      line-height: 1.35;
      color: #94a3b8;
    }

    .hp-app-download__timeline li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.35em;
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: #e2e8f0;
      border: 2px solid #fff;
      box-shadow: 0 0 0 1px #e2e8f0;
    }

    .hp-app-download__timeline li.is-done {
      color: var(--onroda-text-dark);
      font-weight: 600;
    }

    .hp-app-download__timeline li.is-done::before {
      background: #22c55e;
      box-shadow: 0 0 0 1px #22c55e;
    }

    .hp-app-download__trust-card {
      position: relative;
      z-index: 1;
      width: min(280px, 100%);
      padding: 14px 16px;
      border-radius: 16px;
      background: linear-gradient(165deg, #fff7f7 0%, #fff 55%, #fef2f2 100%);
      border: 1px solid rgba(213, 0, 28, 0.12);
      box-shadow: 0 14px 32px rgba(213, 0, 28, 0.08);
      align-self: stretch;
      margin: 0;
    }

    .hp-app-download__trust-icon {
      display: inline-flex;
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: rgba(213, 0, 28, 0.1);
      color: var(--onroda-red);
      align-items: center;
      justify-content: center;
      margin-bottom: 8px;
    }

    .hp-app-download__trust-card strong {
      display: block;
      font-size: 0.78rem;
      line-height: 1.35;
      color: var(--onroda-text-dark);
      margin-bottom: 6px;
    }

    .hp-app-download__trust-card p {
      margin: 0;
      font-size: 0.78rem;
      line-height: 1.45;
      color: var(--onroda-text-grey);
    }

    .hp-store-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .hp-store-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: 168px;
      min-height: 54px;
      padding: 8px 14px;
      border: 1px solid rgba(15, 23, 42, 0.18);
      border-radius: 10px;
      background: #fff;
      color: #0f172a;
      text-decoration: none;
      box-sizing: border-box;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    .hp-store-badge__icon {
      flex: 0 0 32px;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 0;
    }

    .hp-store-badge__icon svg {
      display: block;
      width: 32px;
      height: 32px;
    }

    .hp-store-badge__label {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      line-height: 1.15;
      min-width: 0;
    }

    .hp-store-badge__label small {
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.01em;
      color: #334155;
    }

    .hp-store-badge__label strong {
      font-size: 1.05rem;
      font-weight: 700;
      letter-spacing: -0.01em;
      color: #0f172a;
    }

    .hp-store-badge:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 22px rgba(15, 23, 42, 0.1);
    }

    .hp-store-badge:focus-visible {
      outline: 2px solid var(--onroda-red);
      outline-offset: 2px;
    }

    .hp-store-badge--google,
    .hp-store-badge--apple {
      padding: 0;
      border: none;
      background: transparent;
      min-width: 0;
      min-height: 0;
      line-height: 0;
    }

    .hp-store-badge--google img,
    .hp-store-badge--apple img {
      display: block;
      width: 168px;
      height: auto;
    }

    .hp-store-badge--google:hover,
    .hp-store-badge--apple:hover {
      box-shadow: none;
    }

    .hp-app-download__social {
      margin: 1rem 0 0;
    }

    .hp-instagram-link,
    .hp-footer-instagram {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--onroda-text-dark);
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.15s ease;
    }

    .hp-instagram-link:hover,
    .hp-footer-instagram:hover {
      color: var(--onroda-red);
    }

    .hp-instagram-link--icon-only {
      gap: 0;
      padding: 2px;
    }

    .hp-footer-instagram {
      margin-top: 12px;
      color: rgba(255, 255, 255, 0.88);
    }

    .hp-footer-instagram:hover {
      color: #fff;
    }

    .hp-store-link {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 14px 18px;
      border-radius: 14px;
      border: 1px solid rgba(0, 0, 0, 0.12);
      background: #fff;
      color: #000;
      text-decoration: none;
      min-width: 190px;
      justify-content: center;
      font-weight: 700;
      box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    }

    .hp-store-link:hover {
      transform: translateY(-1px);
      box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
      color: #000;
      background: #FAF4EC;
    }

    .hp-store-link svg {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
      color: #000;
    }

    .hp-store-copy {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
      text-align: left;
      color: #000;
    }

    .hp-store-copy small {
      font-size: 0.74rem;
      font-weight: 600;
      color: #000;
    }

    .hp-store-copy span {
      font-size: 0.98rem;
      color: #000;
    }

    .hp-footer {
      background: var(--hp-footer-bg);
      color: #fff;
      padding: clamp(2.5rem, 5vw, 3.25rem) 0 clamp(1.25rem, 3vw, 1.75rem);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .hp-footer-main {
      display: grid;
      grid-template-columns: minmax(280px, 1.35fr) repeat(4, minmax(0, 1fr));
      gap: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2vw, 1.75rem);
      align-items: start;
    }

    .hp-footer-brand {
      max-width: 360px;
    }

    .hp-footer-logo {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      margin-bottom: 14px;
    }

    .hp-footer-mark {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .hp-footer-mark__dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--onroda-red);
      flex-shrink: 0;
      box-shadow: 0 0 0 4px rgba(213, 0, 28, 0.2);
    }

    .hp-footer-mark__name {
      font-size: 1.35rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      color: #fff;
      line-height: 1;
    }

    .hp-footer-text {
      color: var(--hp-footer-muted);
      margin: 0 0 1.1rem;
      font-size: 0.9rem;
      line-height: 1.6;
      max-width: 34ch;
    }

    .hp-footer-contact-mail {
      display: block;
      width: 100%;
      max-width: 280px;
      padding: 14px 16px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: var(--hp-footer-mail-bg);
      color: #fff;
      font-size: 0.92rem;
      font-weight: 600;
      text-decoration: none;
      transition:
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
    }

    .hp-footer-contact-mail:hover {
      color: #fff;
      border-color: rgba(213, 0, 28, 0.35);
      background: #252528;
    }

    .hp-footer-col h4 {
      margin: 0 0 14px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--hp-footer-heading);
    }

    .hp-footer-nav {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
    }

    .hp-footer-nav a {
      color: var(--hp-footer-link);
      text-decoration: none;
      font-size: 0.9rem;
      line-height: 1.4;
      font-weight: 500;
      transition: color 0.15s ease;
    }

    .hp-footer-nav a:hover,
    .hp-footer-legal a:hover {
      color: #fff;
      text-decoration: none;
    }

    .hp-footer-bottom {
      margin-top: clamp(2rem, 4vw, 2.75rem);
      padding-top: 1.1rem;
      border-top: 1px solid var(--hp-footer-line);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px 24px;
      flex-wrap: wrap;
    }

    .hp-footer-copy {
      margin: 0;
      color: var(--hp-footer-soft);
      font-size: 0.8rem;
      line-height: 1.4;
    }

    .hp-footer-legal {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
      flex-wrap: wrap;
      margin-left: auto;
    }

    .hp-footer-legal a {
      color: var(--hp-footer-soft);
      text-decoration: none;
      font-size: 0.8rem;
      transition: color 0.15s ease;
    }

    .hp-footer-legal-sep {
      color: rgba(255, 255, 255, 0.22);
      font-size: 0.8rem;
      user-select: none;
    }

    .hp-footer-design {
      margin: 0;
      color: var(--hp-footer-soft);
      font-size: 0.8rem;
      letter-spacing: 0.02em;
      white-space: nowrap;
    }

    @media (max-width: 1023px) {
      .hp-partner-shell {
        grid-template-columns: 1fr;
      }

      .hp-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem 0.85rem;
      }

      .hp-footer-brand {
        grid-column: 1 / -1;
        max-width: none;
      }

      .hp-app-download__grid {
        grid-template-columns: 1fr;
      }

      .hp-app-download__lead {
        max-width: none;
      }

      .hp-app-download__device {
        padding-inline: 0;
      }

      .hp-app-download__stage {
        width: min(100%, 420px);
      }

      .hp-app-download__phones {
        height: clamp(300px, 68vw, 360px);
      }

      .hp-app-download__phone--taxi {
        width: min(220px, 58%);
      }

      .hp-app-download__phone--medical {
        width: min(200px, 54%);
      }

      .hp-app-download__trust-card {
        width: 100%;
        padding: 12px 14px;
      }

      .hp-app-download.is-visible .hp-reveal--phone,
      .hp-app-download.is-visible .hp-reveal--phone-2 {
        animation-name: hp-app-phone-bump-mobile;
      }

      @keyframes hp-app-phone-bump-mobile {
        0% {
          opacity: 0;
          transform: translate(12px, 20px) scale(0.94);
        }
        68% {
          opacity: 1;
          transform: translate(-3px, -4px) scale(1.01);
        }
        100% {
          opacity: 1;
          transform: translate(0, 0) scale(1);
        }
      }

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

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

      .hp-process-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .hp-process-steps::before {
        display: none;
      }

      .hp-stats-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 390px) {
      .hp-app-download__tabs {
        gap: 6px;
      }

      .hp-app-download__tab {
        padding: 7px 10px;
        font-size: 0.75rem;
      }

      .hp-app-download__phones {
        height: 290px;
      }

      .hp-app-download__phone--taxi {
        width: 58%;
      }

      .hp-app-download__phone--medical {
        width: 52%;
      }

      .hp-app-download__trust-card {
        font-size: 0.95em;
      }

      .hp-app-download__screen {
        min-height: 300px;
      }

      .hp-store-badge {
        min-width: min(168px, calc(50% - 6px));
        flex: 1 1 148px;
      }

      .hp-store-badge--google img,
      .hp-store-badge--apple img {
        width: min(168px, calc(50% - 6px));
        min-width: 148px;
      }
    }

    @media (max-width: 899px) {
      .hp-nav-dropdown-panel,
      .hp-nav-dropdown-panel--wide {
        position: fixed;
        top: 62px;
        right: 12px;
        left: 12px;
        width: auto;
        transform: none;
      }

      .hp-header-inner {
        grid-template-columns: 1fr auto;
      }

      .hp-header-tools {
        display: flex;
        grid-column: 2;
        grid-row: 1;
      }

      .hp-header-actions .hp-topbar-btn {
        display: none;
      }

      .hp-topbar-btn--mobile {
        display: inline-flex;
        padding-inline: 0.75rem;
        font-size: 0.8rem;
      }

      .hp-nav-toggle {
        display: inline-block;
      }

      .hp-nav {
        display: none;
        grid-column: 1 / -1;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0 4px;
        border-top: 1px solid #ececec;
      }

      .hp-header-inner.hp-nav-open .hp-nav {
        display: flex;
      }

      .hp-nav-link,
      .hp-nav-dropdown summary {
        padding: 10px 0;
      }

      .hp-header-actions {
        grid-column: 1 / -1;
        justify-content: flex-start;
        padding-top: 8px;
        border-top: 1px solid #ececec;
      }

      .hp-header-tools .hp-topbar-btn {
        display: inline-flex;
      }

      .hp-split-bleed {
        grid-template-columns: 1fr;
        padding: 0 var(--hp-page-pad-x);
      }

      .hp-split-bleed__text {
        padding: 0;
      }

      .hp-split-bleed__aside {
        padding: 0;
      }
    }

    @media (min-width: 900px) {
      .hp-split-bleed {
        grid-template-columns: minmax(0, 1fr);
        width: 100vw;
        margin-left: calc(50% - 50vw);
        align-items: stretch;
      }

      .hp-split-bleed__text {
        padding:
          0
          max(var(--hp-page-pad-x), calc((100vw - min(var(--hp-page-max), 95vw)) / 2))
          0
          max(var(--hp-page-pad-x), calc((100vw - min(var(--hp-page-max), 95vw)) / 2));
        width: 100%;
      }

      .hp-split-bleed__aside {
        display: none;
      }
    }

    @media (max-width: 767px) {
      .hp-header-inner,
      .hp-header-actions {
        align-items: flex-start;
      }

      .hp-header-legal {
        display: none;
      }

      .hp-grid-2,
      .hp-benefits,
      .hp-partner-form-grid,
      .hp-loc-grid,
      .hp-audience-grid,
      .hp-trust-grid,
      .hp-process-steps,
      .hp-stats-list {
        grid-template-columns: 1fr;
      }

      .hp-submit-row {
        justify-content: stretch;
      }

      .hp-submit-row .hp-btn-primary {
        width: 100%;
        min-width: 0;
      }

      .hp-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 1.15rem 0.75rem;
      }

      .hp-footer-brand {
        grid-column: 1 / -1;
      }

      .hp-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }

      .hp-footer-legal {
        margin-left: 0;
        justify-content: flex-start;
      }

      .hp-footer-contact-mail {
        max-width: none;
      }

      .hp-store-links {
        flex-direction: column;
      }

      .hp-store-link {
        width: 100%;
        max-width: 320px;
      }

      .hp-hero-layout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
      }

      .hp-hero-devices {
        min-height: 420px;
        margin-top: 0.5rem;
      }

      .hp-device-laptop {
        width: 100%;
      }

      .hp-device-phone {
        width: 150px;
        right: 0;
        bottom: -12px;
      }

      .hp-device-phone__screen {
        min-height: 260px;
      }

      .hp-screen-app {
        min-height: 260px;
      }

      .hp-screen-dash__kpis {
        grid-template-columns: repeat(2, 1fr);
      }

      .hp-card-live {
        top: 48px;
        left: 8px;
        font-size: 0.8rem;
        padding: 10px 14px;
      }

      .hp-card-ride {
        bottom: 36px;
        left: 12px;
        font-size: 0.8rem;
        padding: 10px 14px;
      }

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

      .hp-dynamic-placeholder {
        border-radius: 16px;
      }

      .hp-hero h1 {
        font-size: 2rem;
        max-width: none;
      }

      .hp-section h2 {
        font-size: 1.65rem;
      }

      .hp-hero-cta {
        flex-direction: column;
        align-items: stretch;
      }

      .hp-hero-cta .hp-btn-primary,
      .hp-hero-cta .hp-btn-ghost {
        justify-content: center;
      }
    }
