:root {
  --hm-navy: #071b31;
  --hm-blue: #0a3a67;
  --hm-bright: #0e6fad;
  --hm-orange: #f47b20;
  --hm-paper: #f6f8fb;
  --hm-ink: #10243b;
  --hm-muted: #607083;
  --hm-line: #dfe6ed;
}

.hm-page {
  color: var(--hm-ink);
  background: #fff;
}

.hm-page main {
  overflow: hidden;
}

.hm-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.hm-hero {
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 35% 0%, rgba(24, 105, 166, .35), transparent 38%),
    linear-gradient(135deg, #041226 0%, #07284a 58%, #0b416f 100%);
}

.hm-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .15;
  background-image:
    linear-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .09) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.hm-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 54px;
  padding-block: 72px 88px;
}

.hm-hero-copy {
  position: relative;
  z-index: 2;
  padding-left: 8px;
}

.hm-eyebrow,
.hm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--hm-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
}

.hm-eyebrow::before,
.hm-kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}

.hm-hero h1 {
  margin: 22px 0 0;
  font-size: clamp(48px, 5.2vw, 72px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -.045em;
}

.hm-hero h1 em {
  color: #a9d7f4;
  font-style: normal;
}

.hm-hero-copy > p {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .77);
  font-size: 17px;
  line-height: 1.8;
}

.hm-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hm-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.hm-btn:hover {
  transform: translateY(-2px);
}

.hm-btn--orange {
  color: #fff;
  background: var(--hm-orange);
  box-shadow: 0 14px 30px rgba(244, 123, 32, .26);
}

.hm-btn--glass {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .06);
}

.hm-btn--navy {
  color: #fff;
  background: var(--hm-navy);
}

.hm-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.hm-hero-points i {
  margin-right: 6px;
  color: #59c3a1;
}

.hm-hero-art {
  position: relative;
  margin: 0;
  min-height: 500px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 12px;
  overflow: hidden;
  background: #eef3f6;
  box-shadow: 0 36px 80px rgba(0, 0, 0, .34);
}

.hm-hero-art picture,
.hm-hero-art img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
}

.hm-hero-art img {
  object-fit: contain;
  object-position: center;
}

.hm-hero-art figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, .65);
  font-size: 11px;
  line-height: 1.55;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 4px;
  background: rgba(2, 11, 24, .48);
  backdrop-filter: blur(8px);
}

.hm-page .chat-tooltip { display: none !important; }

.hm-shortcuts {
  position: relative;
  z-index: 3;
  margin-top: -40px;
}

.hm-shortcut-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 55px rgba(21, 45, 68, .14);
}

.hm-shortcut-grid a {
  min-width: 0;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 14px;
  padding: 24px 22px;
  border-right: 1px solid var(--hm-line);
  transition: background .2s ease, color .2s ease;
}

.hm-shortcut-grid a:last-child {
  border-right: 0;
}

.hm-shortcut-grid a:hover {
  color: #fff;
  background: var(--hm-blue);
}

.hm-shortcut-icon {
  grid-row: 1 / 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--hm-orange);
  border-radius: 4px;
  background: #fff3e9;
}

.hm-shortcut-grid strong {
  align-self: end;
  color: var(--hm-ink);
  font-size: 15px;
}

.hm-shortcut-grid a:hover strong {
  color: #fff;
}

.hm-shortcut-grid small {
  overflow: hidden;
  color: #8290a0;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hm-shortcut-grid a:hover small {
  color: rgba(255, 255, 255, .68);
}

.hm-section {
  padding: 86px 0;
}

.hm-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .7fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 38px;
}

.hm-section-head h2,
.hm-process-head h2 {
  margin: 14px 0 0;
  color: var(--hm-ink);
  font-size: clamp(32px, 3.3vw, 46px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -.035em;
}

.hm-section-head > p {
  margin: 0;
  color: var(--hm-muted);
  font-size: 15px;
  line-height: 1.85;
}

.hm-product {
  padding-top: 108px;
  background: #fff;
}

.hm-product-grid {
  display: grid;
  grid-template-columns: minmax(360px, .88fr) minmax(0, 1.12fr);
  gap: 64px;
  align-items: center;
}

.hm-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.hm-catalog-card {
  min-width: 0;
  overflow: hidden;
  padding-bottom: 18px;
  border: 1px solid var(--hm-line);
  border-radius: 9px;
  color: var(--hm-ink);
  background: #fff;
  box-shadow: 0 16px 36px rgba(7, 43, 72, .07);
  transition: transform .2s ease, box-shadow .2s ease;
}

.hm-catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(7, 43, 72, .12);
}

.hm-catalog-media {
  position: relative;
  height: 285px;
  overflow: hidden;
  margin-bottom: 17px;
  border-bottom: 1px solid #edf1f4;
  background: #f7f9fa;
}

.hm-catalog-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
}

.hm-catalog-card > span,
.hm-catalog-card > strong,
.hm-catalog-card > small {
  display: block;
  margin-inline: 17px;
}

.hm-catalog-card > span {
  color: var(--hm-orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
}

.hm-catalog-card > strong {
  margin-top: 7px;
  color: var(--hm-navy);
  font-size: 19px;
  line-height: 1.25;
}

.hm-catalog-card > small {
  margin-top: 7px;
  color: var(--hm-muted);
  font-size: 11px;
}

.hm-catalog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 20px 22px;
  border: 1px solid var(--hm-line);
  border-left: 4px solid var(--hm-orange);
  background: #f7f9fb;
}

.hm-catalog-footer b,
.hm-catalog-footer span {
  display: block;
}

.hm-catalog-footer b {
  color: var(--hm-navy);
  font-size: 14px;
}

.hm-catalog-footer span {
  margin-top: 5px;
  color: var(--hm-muted);
  font-size: 12px;
  line-height: 1.6;
}

.hm-product-photo {
  position: relative;
  margin: 0;
  height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 70%, rgba(16, 68, 111, .06)),
    #f5f7f9;
}

.hm-product-photo::before {
  content: "海硕";
  position: absolute;
  left: -22px;
  bottom: -44px;
  color: rgba(11, 58, 103, .045);
  font-size: 150px;
  font-weight: 900;
}

.hm-product-photo picture,
.hm-product-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hm-product-photo img {
  object-fit: contain;
  padding: 34px;
}

.hm-product-photo figcaption {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  padding: 12px 15px;
  color: #fff;
  border-left: 3px solid var(--hm-orange);
  background: rgba(7, 27, 49, .88);
}

.hm-product-photo figcaption span {
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
}

.hm-product-photo figcaption strong {
  font-size: 14px;
}

.hm-label,
.hm-delivery-card > span,
.hm-delivery-card > div > span {
  color: var(--hm-orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.hm-product-copy h3 {
  margin: 13px 0 0;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 900;
}

.hm-product-copy > p {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--hm-muted);
  line-height: 1.8;
}

.hm-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.hm-check-grid > div {
  min-height: 120px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 4px 10px;
  align-content: center;
  padding: 18px;
  border: 1px solid var(--hm-line);
  border-radius: 5px;
  background: #fff;
}

.hm-check-grid i {
  grid-row: 1 / 3;
  align-self: start;
  color: var(--hm-orange);
  font-size: 21px;
}

.hm-check-grid strong {
  color: var(--hm-ink);
  font-size: 14px;
}

.hm-check-grid span {
  color: #7a8998;
  font-size: 12px;
  line-height: 1.55;
}

.hm-actions--light {
  margin-top: 24px;
}

.hm-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--hm-blue);
  font-size: 14px;
  font-weight: 800;
}

.hm-text-link:hover {
  color: var(--hm-orange);
}

.hm-equipment {
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(17, 107, 173, .35), transparent 34%),
    linear-gradient(135deg, #071b31 0%, #0a335a 100%);
}

.hm-section-head--dark h2 {
  color: #fff;
}

.hm-section-head--dark > p {
  color: rgba(255, 255, 255, .63);
}

.hm-equipment-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hm-equipment-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 7px;
  background: rgba(255, 255, 255, .07);
}

.hm-equipment-card img {
  width: 100%;
  aspect-ratio: 1.32;
  object-fit: cover;
  object-position: center;
  background: #fff;
}

.hm-equipment-card:nth-child(3) img {
  object-position: center 39%;
}

.hm-equipment-card > div {
  padding: 18px 20px 20px;
}

.hm-equipment-card small {
  color: #67b3e2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.hm-equipment-card h3 {
  margin: 5px 0 0;
  font-size: 19px;
  font-weight: 800;
}

.hm-equipment-card p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
}

.hm-swipe-hint {
  display: none;
}

.hm-delivery {
  background: var(--hm-paper);
}

.hm-delivery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
}

.hm-delivery-card {
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--hm-line);
  border-radius: 8px;
  background: #fff;
}

.hm-delivery-card--photo {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
}

.hm-delivery-card--photo picture,
.hm-delivery-card--photo img {
  width: 100%;
  height: 100%;
}

.hm-delivery-card--photo img {
  object-fit: contain;
  padding: 24px;
  background: #f8f8f6;
}

.hm-delivery-card--photo > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  background: #fff;
}

.hm-delivery-card h3 {
  margin: 10px 0 0;
  color: var(--hm-ink);
  font-size: 25px;
  line-height: 1.25;
  font-weight: 900;
}

.hm-delivery-card p {
  margin: 12px 0 0;
  color: var(--hm-muted);
  font-size: 13px;
  line-height: 1.75;
}

.hm-delivery-card--info {
  padding: 42px;
}

.hm-doc-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--hm-orange);
  border-radius: 5px;
  background: #fff0e4;
  font-size: 21px;
}

.hm-delivery-card ul {
  display: grid;
  gap: 0;
  margin: 24px 0 22px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--hm-line);
}

.hm-delivery-card li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--hm-line);
}

.hm-delivery-card li b {
  color: #a5b0bd;
  font-size: 11px;
}

.hm-delivery-card li span {
  color: var(--hm-muted);
  font-size: 12px;
}

.hm-delivery-card li strong {
  display: block;
  color: var(--hm-ink);
  font-size: 13px;
}

.hm-process {
  background: #fff;
}

.hm-process-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}

.hm-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--hm-line);
}

.hm-process-grid li {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-right: 1px solid var(--hm-line);
}

.hm-process-grid li:last-child {
  border-right: 0;
}

.hm-process-grid b {
  position: absolute;
  top: 18px;
  right: 20px;
  color: #e7ebef;
  font-size: 32px;
  font-weight: 900;
}

.hm-process-grid i {
  margin-bottom: 20px;
  color: var(--hm-orange);
  font-size: 24px;
}

.hm-process-grid strong {
  font-size: 17px;
  font-weight: 900;
}

.hm-process-grid span {
  margin-top: 5px;
  color: #7c8998;
  font-size: 12px;
}

.hm-cta {
  padding: 72px 0;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(19, 114, 180, .42), transparent 34%),
    linear-gradient(120deg, #06182e, #0a3b69);
}

.hm-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hm-cta-inner > div > span {
  color: var(--hm-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.hm-cta h2 {
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.035em;
}

.hm-cta p {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
}

@media (max-width: 1024px) {
  .hm-hero-grid {
    grid-template-columns: minmax(0, .85fr) minmax(440px, 1.15fr);
    gap: 32px;
  }

  .hm-section-head {
    gap: 36px;
  }

  .hm-product-grid {
    gap: 36px;
  }

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

  .hm-delivery-card--photo {
    grid-template-columns: 1fr;
    grid-template-rows: 290px auto;
  }
}

@media (max-width: 768px) {
  .hm-page .top-bar {
    display: none;
  }

  .hm-page .main-nav .container {
    min-height: 68px;
  }

  .hm-page .main-nav img {
    width: 42px;
    height: 42px;
  }

  .hm-container {
    width: min(100% - 32px, 620px);
  }

  .hm-hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 26px;
    padding-block: 38px 32px;
  }

  .hm-hero-copy {
    padding-left: 0;
  }

  .hm-hero h1 {
    margin-top: 16px;
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.08;
    letter-spacing: -.04em;
  }

  .hm-hero-copy > p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.7;
  }

  .hm-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .hm-btn {
    min-height: 46px;
    padding-inline: 17px;
  }

  .hm-hero-points {
    gap: 14px;
    margin-top: 20px;
    font-size: 12px;
  }

  .hm-hero-art,
  .hm-hero-art picture,
  .hm-hero-art img {
    min-height: 0;
  }

  .hm-hero-art {
    aspect-ratio: 1.22;
    border-radius: 8px;
  }

  .hm-hero-art img {
    object-position: 70% center;
  }

  .hm-hero-art figcaption {
    left: 10px;
    right: 10px;
    bottom: 9px;
    padding: 7px 9px;
    font-size: 9px;
  }

  .hm-shortcuts {
    margin-top: 0;
    padding: 16px 0 0;
    background: #fff;
  }

  .hm-shortcut-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--hm-line);
    box-shadow: 0 10px 30px rgba(21, 45, 68, .08);
  }

  .hm-shortcut-grid a {
    grid-template-columns: 36px minmax(0, 1fr);
    column-gap: 9px;
    min-height: 80px;
    padding: 14px 12px;
    border-right: 1px solid var(--hm-line);
    border-bottom: 1px solid var(--hm-line);
  }

  .hm-shortcut-grid a:nth-child(2n) {
    border-right: 0;
  }

  .hm-shortcut-grid a:nth-child(n+3) {
    border-bottom: 0;
  }

  .hm-shortcut-icon {
    width: 36px;
    height: 36px;
  }

  .hm-shortcut-grid strong {
    font-size: 13px;
  }

  .hm-shortcut-grid small {
    font-size: 9px;
  }

  .hm-section {
    padding: 54px 0;
  }

  .hm-product {
    padding-top: 60px;
  }

  .hm-section-head {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 24px;
  }

  .hm-section-head h2,
  .hm-process-head h2 {
    margin-top: 10px;
    font-size: 30px;
    line-height: 1.18;
  }

  .hm-section-head > p {
    font-size: 13px;
    line-height: 1.7;
  }

  .hm-product-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hm-catalog-grid {
    gap: 9px;
  }

  .hm-catalog-media {
    height: 205px;
    margin-bottom: 13px;
  }

  .hm-catalog-card {
    padding-bottom: 14px;
    border-radius: 7px;
  }

  .hm-catalog-card > span,
  .hm-catalog-card > strong,
  .hm-catalog-card > small {
    margin-inline: 11px;
  }

  .hm-catalog-card > span { font-size: 8px; }
  .hm-catalog-card > strong { font-size: 15px; }
  .hm-catalog-card > small { font-size: 9px; }

  .hm-catalog-footer {
    display: grid;
    gap: 16px;
    padding: 17px;
  }

  .hm-catalog-footer .hm-btn { width: 100%; }

  .hm-product-photo {
    height: min(104vw, 430px);
  }

  .hm-product-photo img {
    padding: 20px;
  }

  .hm-product-photo figcaption {
    left: 12px;
    bottom: 12px;
  }

  .hm-product-copy h3 {
    font-size: 24px;
  }

  .hm-product-copy > p {
    font-size: 13px;
    line-height: 1.7;
  }

  .hm-check-grid {
    gap: 8px;
    margin-top: 20px;
  }

  .hm-check-grid > div {
    min-height: 116px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 6px;
    padding: 15px;
  }

  .hm-check-grid i {
    grid-row: auto;
    font-size: 18px;
  }

  .hm-check-grid strong {
    font-size: 13px;
  }

  .hm-check-grid span {
    font-size: 10px;
  }

  .hm-equipment .hm-container {
    width: 100%;
  }

  .hm-equipment .hm-section-head,
  .hm-swipe-hint {
    width: calc(100% - 32px);
    margin-inline: auto;
  }

  .hm-equipment-track {
    display: flex;
    gap: 12px;
    padding: 0 16px 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .hm-equipment-track::-webkit-scrollbar {
    display: none;
  }

  .hm-equipment-card {
    flex: 0 0 82vw;
    max-width: 360px;
    scroll-snap-align: start;
  }

  .hm-equipment-card img {
    aspect-ratio: 1.25;
  }

  .hm-swipe-hint {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, .47);
    font-size: 10px;
    text-align: center;
  }

  .hm-delivery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hm-delivery-card {
    min-height: 0;
  }

  .hm-delivery-card--photo {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(250px, auto);
  }

  .hm-delivery-card--photo img {
    padding: 12px;
  }

  .hm-delivery-card--photo > div {
    padding: 20px;
  }

  .hm-delivery-card h3 {
    font-size: 20px;
  }

  .hm-delivery-card--info {
    padding: 26px 22px;
  }

  .hm-doc-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
  }

  .hm-process-head {
    align-items: end;
    margin-bottom: 22px;
  }

  .hm-process-head .hm-text-link {
    flex: 0 0 auto;
    font-size: 12px;
  }

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

  .hm-process-grid li {
    min-height: 160px;
    padding: 20px 16px;
    border-bottom: 1px solid var(--hm-line);
  }

  .hm-process-grid li:nth-child(2n) {
    border-right: 0;
  }

  .hm-process-grid li:nth-child(n+3) {
    border-bottom: 0;
  }

  .hm-process-grid b {
    top: 12px;
    right: 13px;
    font-size: 24px;
  }

  .hm-process-grid i {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .hm-process-grid strong {
    font-size: 14px;
  }

  .hm-process-grid span {
    font-size: 10px;
  }

  .hm-cta {
    padding: 52px 0 calc(52px + env(safe-area-inset-bottom));
  }

  .hm-cta-inner {
    display: block;
  }

  .hm-cta h2 {
    font-size: 30px;
  }

  .hm-cta .hm-actions {
    margin-top: 24px;
  }

  .hm-page .chat-float,
  .hm-page .chat-widget,
  .hm-page .chat-trigger {
    bottom: calc(18px + env(safe-area-inset-bottom));
  }

  .hm-page .chat-trigger {
    right: 10px !important;
    bottom: calc(10px + env(safe-area-inset-bottom)) !important;
    width: 42px !important;
    height: 42px !important;
    font-size: 18px !important;
    animation: none;
  }

  .hm-page .chat-trigger-label {
    display: none;
  }

  .hm-page .chat-tooltip {
    display: none !important;
  }
}

@media (max-width: 380px) {
  .hm-container {
    width: calc(100% - 28px);
  }

  .hm-btn {
    padding-inline: 14px;
    font-size: 13px;
  }

  .hm-hero-points {
    gap: 10px;
    font-size: 11px;
  }

  .hm-catalog-media { height: 180px; }

  .hm-delivery-card--photo {
    grid-template-columns: 1fr;
    grid-template-rows: 240px auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hm-page *,
  .hm-page *::before,
  .hm-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
