:root {
  --hvk-blue: #57709D;
  --hvk-blue-hover: #4D6792;
  --hvk-blue-soft: #F4F9FF;
  --hvk-blue-soft-2: #F8FBFF;
  --hvk-line: #DCE8F4;
  --hvk-ink: #17202F;
  --hvk-muted: #69758B;
  --hvk-white: #ffffff;
  --hvk-shadow: 0 18px 52px rgba(87, 112, 157, .13);
  --hvk-shadow-soft: 0 12px 30px rgba(87, 112, 157, .08);
  --hvk-radius-xl: 32px;
  --hvk-radius-lg: 26px;
  --hvk-radius-md: 18px;
  --hvk-container: 1425px;
}

.hvk-passenger-page {
  overflow: hidden;
  padding: 28px 32px 72px;
  background: #fff;
}

.hvk-passenger-page .hvk-container {
  width: min(100%, var(--hvk-container));
  margin: 0 auto;
}

.hvk-passenger-page .hvk-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 8px 0 18px;
  color: #77849A;
  font-size: 14px;
  line-height: 1.35;
}

.hvk-passenger-page .hvk-breadcrumbs a {
  color: var(--hvk-blue);
  font-weight: 500;
}

.hvk-passenger-page .hvk-breadcrumbs span {
  opacity: .8;
}

.hvk-passenger-page .hvk-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, .98fr);
  gap: 34px;
  align-items: stretch;
  padding: 42px;
  border: 1px solid rgba(139, 177, 212, .4);
  border-radius: var(--hvk-radius-xl);
  background:
    radial-gradient(circle at 91% 11%, rgba(87, 112, 157, .13) 0 15%, transparent 16%),
    radial-gradient(circle at 8% 92%, rgba(87, 112, 157, .08) 0 14%, transparent 15%),
    linear-gradient(135deg, #ffffff 0%, #f4f9ff 58%, #ffffff 100%);
  box-shadow: var(--hvk-shadow);
}

.hvk-passenger-page .hvk-hero:before {
  content: "";
  position: absolute;
  inset: auto 42px 42px auto;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(87, 112, 157, .08);
  z-index: 0;
}

.hvk-passenger-page .hvk-hero > * {
  position: relative;
  z-index: 1;
}

.hvk-passenger-page .hvk-hero > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.hvk-passenger-page .hvk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  padding: 10px 15px;
  border: 1px solid rgba(87, 112, 157, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  color: var(--hvk-blue);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: 0 8px 24px rgba(42, 77, 118, .07);
}

.hvk-passenger-page .hvk-eyebrow:before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--hvk-blue);
  box-shadow: 0 0 0 5px rgba(87, 112, 157, .14);
  flex: 0 0 auto;
}

.hvk-passenger-page h1,
.hvk-passenger-page h2,
.hvk-passenger-page h3,
.hvk-passenger-page p {
  margin-top: 0;
}

.hvk-passenger-page .hvk-hero h1 {
  max-width: 820px;
  margin: 22px 0 18px;
  color: var(--hvk-ink);
  font-size: clamp(38px, 4.1vw, 64px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -.045em;
}

.hvk-passenger-page .hvk-lead {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--hvk-muted);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.55;
  font-weight: 400;
}

.hvk-passenger-page .hvk-hero-actions,
.hvk-passenger-page .hvk-call-panel,
.hvk-passenger-page .hvk-hero-meta {
  width: 100%;
  max-width: 720px;
}

.hvk-passenger-page .hvk-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 30px 0 26px;
}

.hvk-passenger-page .hvk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.hvk-passenger-page .hvk-btn:hover {
  transform: translateY(-2px);
}

.hvk-passenger-page .hvk-btn-primary {
  background: var(--hvk-blue);
  color: #fff;
  box-shadow: 0 12px 30px rgba(87, 112, 157, .24);
}

.hvk-passenger-page .hvk-btn-primary:hover {
  background: var(--hvk-blue-hover);
  box-shadow: 0 14px 34px rgba(87, 112, 157, .28);
}

.hvk-passenger-page .hvk-btn-secondary {
  background: #fff;
  color: var(--hvk-blue);
  border-color: rgba(87, 112, 157, .24);
  box-shadow: 0 10px 24px rgba(87, 112, 157, .08);
}

.hvk-passenger-page .hvk-btn-secondary:hover {
  color: var(--hvk-blue-hover);
  border-color: rgba(87, 112, 157, .42);
}

.hvk-passenger-page .hvk-call-panel {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border: 1px solid rgba(87, 112, 157, .18);
  border-radius: 24px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 30px rgba(87, 112, 157, .08);
  backdrop-filter: blur(8px);
}

.hvk-passenger-page .hvk-call-note {
  min-width: 0;
  flex: 1;
}

.hvk-passenger-page .hvk-call-panel span {
  display: block;
  color: #69758B;
  font-size: 14px;
  line-height: 1.35;
}

.hvk-passenger-page .hvk-call-phone {
  display: block;
  margin-top: 6px;
  color: var(--hvk-blue);
  font-size: 30px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -.02em;
  text-decoration: none;
  transition: color .2s ease;
}

.hvk-passenger-page .hvk-call-phone:hover {
  color: var(--hvk-blue-hover);
}

.hvk-passenger-page .hvk-call-panel .hvk-btn {
  flex: 0 0 auto;
}

.hvk-passenger-page .hvk-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hvk-passenger-page .hvk-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(87, 112, 157, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #3f516e;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.1;
}

.hvk-passenger-page .hvk-pill:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hvk-blue);
  opacity: .85;
}

.hvk-passenger-page .hvk-visual-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hvk-passenger-page .hvk-transport-illustration {
  position: relative;
  min-height: 410px;
  padding: 28px;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(150deg, #ffffff 0%, #f8fbff 48%, #edf5ff 100%);
  border: 1px solid rgba(87, 112, 157, .18);
  box-shadow: var(--hvk-shadow-soft);
}

.hvk-passenger-page .hvk-transport-illustration:before {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  right: -96px;
  top: -92px;
  background: rgba(87, 112, 157, .14);
}

.hvk-passenger-page .hvk-transport-illustration:after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: 38px;
  width: 560px;
  height: 74px;
  transform: rotate(-6deg);
  background: rgba(87, 112, 157, .10);
  border-radius: 999px;
}

.hvk-passenger-page .hvk-van-svg {
  position: absolute;
  inset: auto 22px 92px 22px;
  z-index: 2;
}

.hvk-passenger-page .hvk-van-photo {
  position: absolute;
  inset: 22px 22px 92px 22px;
  width: calc(100% - 44px);
  height: calc(100% - 114px);
  object-fit: contain;
  object-position: center;
  display: block;
  z-index: 2;
}

.hvk-passenger-page .hvk-route-line {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 58px;
  height: 3px;
  border-radius: 99px;
  background: rgba(87, 112, 157, .25);
  z-index: 1;
}

.hvk-passenger-page .hvk-visual-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(87, 112, 157, .16);
  box-shadow: 0 12px 34px rgba(87, 112, 157, .12);
}

.hvk-passenger-page .hvk-visual-caption strong {
  display: block;
  margin-bottom: 6px;
  color: var(--hvk-ink);
  font-size: 17px;
  line-height: 1.25;
}

.hvk-passenger-page .hvk-visual-caption span {
  display: block;
  color: var(--hvk-muted);
  font-size: 14px;
  line-height: 1.45;
}

.hvk-passenger-page .hvk-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hvk-passenger-page .hvk-mini-card {
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(87, 112, 157, .16);
  box-shadow: var(--hvk-shadow-soft);
}

.hvk-passenger-page .hvk-mini-card b {
  display: block;
  color: var(--hvk-blue);
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.02em;
}

.hvk-passenger-page .hvk-mini-card span {
  display: block;
  margin-top: 7px;
  color: var(--hvk-muted);
  font-size: 14px;
  line-height: 1.35;
}

.hvk-passenger-page .hvk-section {
  margin-top: 34px;
  padding: 34px;
  border: 1px solid rgba(87, 112, 157, .16);
  border-radius: var(--hvk-radius-xl);
  background: #fff;
  box-shadow: var(--hvk-shadow-soft);
}

.hvk-passenger-page .hvk-section.is-soft {
  background: linear-gradient(135deg, #f8fbff 0%, #fff 100%);
}

.hvk-passenger-page .hvk-section-head {
  max-width: 900px;
  margin-bottom: 24px;
}

.hvk-passenger-page .hvk-section-kicker {
  margin-bottom: 10px;
  color: var(--hvk-blue);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hvk-passenger-page .hvk-section h2 {
  margin: 0 0 12px;
  color: var(--hvk-ink);
  font-size: clamp(28px, 2.5vw, 42px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -.035em;
}

.hvk-passenger-page .hvk-section-head p {
  margin: 0;
  color: var(--hvk-muted);
  font-size: 17px;
  line-height: 1.58;
}

.hvk-passenger-page .hvk-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.hvk-passenger-page .hvk-info-card {
  position: relative;
  min-height: 100%;
  padding: 24px;
  border-radius: var(--hvk-radius-lg);
  background: #fff;
  border: 1px solid rgba(87, 112, 157, .16);
  box-shadow: var(--hvk-shadow-soft);
  overflow: hidden;
}

.hvk-passenger-page .hvk-info-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--hvk-blue), rgba(87, 112, 157, .35));
}

.hvk-passenger-page .hvk-card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--hvk-blue-soft);
  color: var(--hvk-blue);
  line-height: 1;
}

.hvk-passenger-page .hvk-card-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--hvk-blue);
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hvk-passenger-page .hvk-info-card h3 {
  margin: 0 0 10px;
  color: var(--hvk-ink);
  font-size: 20px;
  line-height: 1.22;
  font-weight: 600;
  letter-spacing: -.015em;
}

.hvk-passenger-page .hvk-info-card p {
  margin: 0;
  color: var(--hvk-muted);
  font-size: 15px;
  line-height: 1.56;
}

.hvk-passenger-page .hvk-products-head {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hvk-passenger-page .hvk-products-head .hvk-section-head {
  margin: 0;
  max-width: 820px;
}

.hvk-passenger-page .hvk-switch-note {
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--hvk-blue-soft);
  border: 1px solid rgba(87, 112, 157, .15);
  color: #3f516e;
  font-size: 14px;
  line-height: 1.45;
  max-width: 360px;
}

.hvk-passenger-page .hvk-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.hvk-passenger-page .hvk-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(87, 112, 157, .16);
  box-shadow: var(--hvk-shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.hvk-passenger-page .hvk-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(87, 112, 157, .14);
  border-color: rgba(87, 112, 157, .32);
}

.hvk-passenger-page .hvk-product-media {
  position: relative;
  min-height: 210px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8FBFF;
  border-bottom: 1px solid rgba(87, 112, 157, .12);
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}

.hvk-passenger-page .hvk-product-media-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.hvk-passenger-page .hvk-product-media img {
  width: 100%;
  height: 210px;
  max-height: 210px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
}

.hvk-passenger-page .hvk-product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--hvk-blue);
  border: 1px solid rgba(87, 112, 157, .18);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.hvk-passenger-page .hvk-product-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  padding: 20px;
}

.hvk-passenger-page .hvk-product-body h3 {
  margin: 0;
  color: var(--hvk-ink);
  font-size: 19px;
  line-height: 1.24;
  font-weight: 650;
  letter-spacing: -.015em;
}

.hvk-passenger-page .hvk-product-title-link {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}

.hvk-passenger-page .hvk-product-title-link:hover {
  color: var(--hvk-blue);
}

.hvk-passenger-page .hvk-product-body p {
  margin: 0;
  color: var(--hvk-muted);
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
}

.hvk-passenger-page .hvk-price {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: var(--hvk-blue);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.025em;
}

.hvk-passenger-page .hvk-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  min-height: 46px;
  padding: 13px 16px;
  border-radius: 999px;
  background: var(--hvk-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 10px 24px rgba(87, 112, 157, .22);
  text-decoration: none;
}

.hvk-passenger-page .hvk-card-link:hover {
  background: var(--hvk-blue-hover);
}

.hvk-passenger-page .hvk-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 24px;
  align-items: stretch;
}

.hvk-passenger-page .hvk-panel,
.hvk-passenger-page .hvk-note-card {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #f8fbff 0%, #fff 100%);
  border: 1px solid rgba(87, 112, 157, .16);
  box-shadow: var(--hvk-shadow-soft);
}

.hvk-passenger-page .hvk-check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hvk-passenger-page .hvk-check-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 0 0 0;
  color: #344057;
  font-size: 16px;
  line-height: 1.55;
}

.hvk-passenger-page .hvk-check-list li:before {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--hvk-blue);
  box-shadow: 0 0 0 5px rgba(87, 112, 157, .13);
}

.hvk-passenger-page .hvk-check-list li:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 9px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.hvk-passenger-page .hvk-note-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
}

.hvk-passenger-page .hvk-note-number {
  display: inline-flex;
  margin-bottom: 14px;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: var(--hvk-blue-soft);
}

.hvk-passenger-page .hvk-note-number svg {
  width: 30px;
  height: 30px;
  stroke: var(--hvk-blue);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hvk-passenger-page .hvk-note-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 650;
  letter-spacing: -.025em;
}

.hvk-passenger-page .hvk-note-card p {
  margin: 0;
  color: var(--hvk-muted);
  line-height: 1.58;
}

.hvk-passenger-page .hvk-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hvk-passenger-page .hvk-step {
  padding: 24px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(87, 112, 157, .16);
  box-shadow: var(--hvk-shadow-soft);
}

.hvk-passenger-page .hvk-step b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: var(--hvk-blue);
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

.hvk-passenger-page .hvk-step h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 650;
}

.hvk-passenger-page .hvk-step p {
  margin: 0;
  color: var(--hvk-muted);
  font-size: 15px;
  line-height: 1.55;
}

.hvk-passenger-page .hvk-seo-text {
  columns: 2;
  column-gap: 42px;
  color: #344057;
  font-size: 16px;
  line-height: 1.72;
}

.hvk-passenger-page .hvk-seo-text p {
  break-inside: avoid;
  margin: 0 0 18px;
}

.hvk-passenger-page .hvk-seo-text a {
  color: var(--hvk-blue);
  text-decoration: underline;
}

.hvk-passenger-page .hvk-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(87, 112, 157, .14);
}

.hvk-passenger-page .hvk-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(87, 112, 157, .18);
  color: var(--hvk-blue);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.hvk-passenger-page .hvk-links a:hover {
  border-color: rgba(87, 112, 157, .4);
  color: var(--hvk-blue-hover);
}

.hvk-passenger-page .hvk-faq {
  display: grid;
  gap: 12px;
}

.hvk-passenger-page .hvk-faq details {
  padding: 20px 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(87, 112, 157, .15);
  box-shadow: 0 8px 22px rgba(87, 112, 157, .06);
}

.hvk-passenger-page .hvk-faq summary {
  cursor: pointer;
  color: var(--hvk-ink);
  font-weight: 650;
  font-size: 17px;
  line-height: 1.35;
  list-style: none;
}

.hvk-passenger-page .hvk-faq summary::-webkit-details-marker {
  display: none;
}

.hvk-passenger-page .hvk-faq p {
  margin: 12px 0 0;
  color: var(--hvk-muted);
  line-height: 1.58;
}

.hvk-passenger-page .hvk-cta {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: var(--hvk-radius-xl);
  background: linear-gradient(135deg, var(--hvk-blue), #6c83aa);
  color: #fff;
  box-shadow: 0 22px 55px rgba(87, 112, 157, .22);
}

.hvk-passenger-page .hvk-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.14;
  font-weight: 650;
  letter-spacing: -.035em;
  color: #fff;
}

.hvk-passenger-page .hvk-cta p {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, .86);
  font-size: 17px;
  line-height: 1.58;
}

.hvk-passenger-page .hvk-cta .hvk-btn {
  background: #fff;
  color: var(--hvk-blue);
  border-color: #fff;
}

.hvk-passenger-page .hvk-cta .hvk-btn:hover {
  color: var(--hvk-blue-hover);
}

@media (max-width: 1180px) {
  .hvk-passenger-page .hvk-hero,
  .hvk-passenger-page .hvk-split {
    grid-template-columns: 1fr;
  }

  .hvk-passenger-page .hvk-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hvk-passenger-page .hvk-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .hvk-passenger-page .hvk-product-media img {
    height: 180px;
    max-height: 180px;
  }
}

@media (max-width: 760px) {
  .hvk-passenger-page {
    padding: 18px 15px 56px;
  }

  .hvk-passenger-page .hvk-hero,
  .hvk-passenger-page .hvk-section,
  .hvk-passenger-page .hvk-cta {
    padding: 22px;
    border-radius: 26px;
  }

  .hvk-passenger-page .hvk-hero {
    gap: 22px;
  }

  .hvk-passenger-page .hvk-transport-illustration {
    min-height: 330px;
    padding: 18px;
    border-radius: 24px;
  }

  .hvk-passenger-page .hvk-van-svg {
    inset: auto 10px 110px 10px;
  }

  .hvk-passenger-page .hvk-van-photo {
    inset: 14px 10px 110px 10px;
    width: calc(100% - 20px);
    height: calc(100% - 124px);
  }

  .hvk-passenger-page .hvk-visual-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 15px;
    border-radius: 18px;
  }

  .hvk-passenger-page .hvk-mini-grid,
  .hvk-passenger-page .hvk-card-grid,
  .hvk-passenger-page .hvk-product-grid,
  .hvk-passenger-page .hvk-steps {
    grid-template-columns: 1fr;
  }

  .hvk-passenger-page .hvk-products-head {
    align-items: stretch;
  }

  .hvk-passenger-page .hvk-switch-note {
    max-width: none;
  }

  .hvk-passenger-page .hvk-split {
    gap: 16px;
  }

  .hvk-passenger-page .hvk-panel,
  .hvk-passenger-page .hvk-note-card {
    padding: 22px;
    border-radius: 24px;
  }

  .hvk-passenger-page .hvk-seo-text {
    columns: 1;
  }

  .hvk-passenger-page .hvk-cta {
    grid-template-columns: 1fr;
  }

  .hvk-passenger-page .hvk-hero-actions {
    align-items: stretch;
  }

  .hvk-passenger-page .hvk-btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hvk-passenger-page .hvk-product-media {
    min-height: 180px;
    padding: 14px;
  }

  .hvk-passenger-page .hvk-call-panel {
    flex-wrap: wrap;
  }

  .hvk-passenger-page .hvk-call-phone {
    font-size: 24px;
  }

  .hvk-passenger-page .hvk-call-panel .hvk-btn {
    width: auto;
  }
}
