html,
body {
  margin: 0;
  min-height: 100%;
  background: #fff;
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
  overflow-x: hidden;
}

body {
  font-family: Arial, "Microsoft YaHei", sans-serif;
  padding-top: 108px;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(170px, 300px) 1fr;
  align-items: center;
  gap: 28px;
  min-height: 88px;
  padding: 10px clamp(20px, 4.5vw, 86px);
  background: #f4f4f4;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav-logo {
  display: block;
  width: min(294px, 100%);
}

.nav-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: #151515;
  font-size: 18px;
  line-height: 1.2;
  white-space: nowrap;
}

.nav-menu a {
  padding: 12px 0;
}

.nav-menu a:hover {
  color: #ed1c24;
}

.page {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.section-anchor {
  position: absolute;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.section-anchor-product {
  top: calc(var(--design-width, 100vw) * 6.48148 * 0.145);
}

.section-anchor-video {
  top: calc(var(--design-width, 100vw) * 6.48148 * 0.235);
}

.section-anchor-why {
  top: calc(var(--design-width, 100vw) * 6.48148 * 0.36);
}

.section-anchor-detail {
  top: calc(var(--design-width, 100vw) * 6.48148 * 0.52);
}

.design-slices {
  width: 100%;
}

.design-slice {
  display: block;
  width: 100%;
  height: auto;
}

.deferred-slice {
  background: #fff;
}

.mobile-page {
  display: none;
}

.video-slot {
  position: absolute;
  z-index: 10;
  top: calc(var(--design-width, 100vw) * 6.48148 * 0.243);
  left: 23.06%;
  width: 53.87%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.video-poster,
.video-embed {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: #000;
}

.video-poster {
  position: relative;
  cursor: pointer;
}

.video-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: clamp(42px, 6vw, 82px);
  height: clamp(42px, 6vw, 82px);
  border-radius: 50%;
  background: rgba(13, 116, 200, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-top: clamp(10px, 1.4vw, 18px) solid transparent;
  border-bottom: clamp(10px, 1.4vw, 18px) solid transparent;
  border-left: clamp(16px, 2vw, 28px) solid #fff;
}

.consult-hotspot {
  position: absolute;
  z-index: 13;
  display: block;
  border-radius: 999px;
  background: rgba(13, 116, 200, 0);
  cursor: pointer;
}

.consult-hotspot:hover {
  background: rgba(13, 116, 200, 0.08);
}

.consult-hotspot:focus-visible {
  outline: 3px solid rgba(13, 116, 200, 0.72);
  outline-offset: 2px;
}

.consult-hotspot-hero {
  top: calc(var(--design-width, 100vw) * 6.48148 * 0.0647);
  left: 40.9%;
  width: 18.4%;
  height: calc(var(--design-width, 100vw) * 0.068);
}

.floating-inquiry {
  position: fixed;
  top: 128px;
  right: clamp(14px, 2vw, 28px);
  z-index: 40;
  width: min(330px, calc(100vw - 28px));
  color: #eaf4fc;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.floating-inquiry.is-hidden {
  visibility: hidden;
  opacity: 0;
  transform: translateX(calc(100% + 32px));
  pointer-events: none;
}

.floating-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 8px 8px 0 0;
  padding: 0 14px;
  color: #fff;
  background: linear-gradient(135deg, #ed1c24, #b5121a);
  font: 800 14px/1 Arial, "Microsoft YaHei", sans-serif;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26);
}

.floating-toggle-icon {
  position: relative;
  width: 14px;
  height: 14px;
}

.floating-toggle-icon::before,
.floating-toggle-icon::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 1px;
  width: 12px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.18s ease;
}

.floating-toggle-icon::after {
  transform: rotate(90deg);
}

.floating-inquiry.is-collapsed .floating-toggle {
  border-radius: 8px;
}

.floating-inquiry.is-collapsed .floating-toggle-icon::after {
  transform: rotate(0);
}

.floating-form-body {
  overflow: hidden;
  max-height: 680px;
  padding: 16px;
  background: rgba(12, 20, 28, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
  transition: max-height 0.22s ease, padding 0.22s ease, border-width 0.22s ease;
}

.floating-inquiry.is-collapsed .floating-form-body {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0 1px;
}

.floating-form {
  gap: 11px;
}

.floating-form textarea {
  min-height: 84px;
}

.floating-form .quote-button {
  width: 100%;
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(13, 116, 200, 0.2), transparent 36%),
    radial-gradient(circle at 86% 14%, rgba(79, 180, 255, 0.22), transparent 31%),
    #0c141c;
  color: #d7e1ea;
  padding: clamp(42px, 6vw, 82px) clamp(18px, 5vw, 72px) 24px;
}

.footer-visual {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 82%);
}

.footer-visual::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 180, 255, 0.7), transparent);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(560px, 720px);
  align-items: stretch;
  justify-content: center;
  gap: clamp(64px, 8vw, 130px);
  max-width: 1260px;
  margin: 0 auto;
}

.site-footer h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 18px;
  line-height: 1.3;
}

.site-footer p {
  margin: 0 0 11px;
  color: #b9c6d1;
  font-size: 14px;
  line-height: 1.65;
}

.site-footer a:hover {
  color: #4fb4ff;
}

.footer-brand img {
  display: block;
  width: min(260px, 70vw);
  height: auto;
  max-height: 90px;
  object-fit: contain;
  margin: 0 0 22px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand .company {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.footer-stats {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.footer-stats span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 260px;
  padding: 11px 14px;
  color: #cbd8e4;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 13px;
}

.footer-stats strong {
  color: #fff;
  font-size: 15px;
}

.footer-contact-panel {
  display: grid;
  align-self: stretch;
  align-content: start;
  padding: clamp(18px, 2.4vw, 26px);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.footer-contact-panel > p {
  max-width: 620px;
  margin-bottom: 16px;
}

.inquiry-form {
  display: grid;
  gap: 10px;
}

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

.inquiry-form label {
  display: grid;
  gap: 5px;
}

.inquiry-form label span {
  color: #eaf4fc;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  padding: 9px 11px;
  color: #fff;
  background: rgba(5, 12, 18, 0.72);
  font: 14px/1.4 Arial, "Microsoft YaHei", sans-serif;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.inquiry-form select {
  color-scheme: dark;
}

.inquiry-form textarea {
  min-height: 66px;
  resize: vertical;
}

.footer-contact-panel .inquiry-form > label,
.footer-contact-panel .form-actions,
.footer-contact-panel .form-status {
  grid-column: auto;
}

.footer-contact-panel .inquiry-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 14px;
  row-gap: 9px;
}

.footer-contact-panel .message-field {
  grid-column: 2;
  grid-row: 3 / span 2;
}

.footer-contact-panel .message-field textarea {
  min-height: 88px;
  height: 100%;
}

.footer-contact-panel .form-actions {
  grid-column: 1;
}

.footer-contact-panel .form-status {
  grid-column: 2;
  align-self: center;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: #7f95a8;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: rgba(79, 180, 255, 0.82);
  box-shadow: 0 0 0 3px rgba(79, 180, 255, 0.16);
  background: rgba(7, 17, 26, 0.92);
}

.inquiry-form .field-error {
  border-color: #ff8f7d;
  box-shadow: 0 0 0 3px rgba(255, 143, 125, 0.12);
}

.form-trap {
  position: absolute;
  left: -10000px;
}

.form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.quote-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 0;
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(135deg, #1084de, #0d64ac);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(13, 116, 200, 0.25);
}

.quote-button:hover {
  color: #fff;
  background: linear-gradient(135deg, #1c9afa, #1077c8);
}

.quote-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.secondary-link {
  color: #a8c7df;
  font-size: 14px;
  font-weight: 700;
}

.form-status {
  min-height: 18px;
  margin: 0;
  color: #9fd7ff;
}

.form-status.is-error {
  color: #ffb2a6;
}

.form-status.is-success {
  color: #9df2bd;
}

.footer-links {
  display: grid;
  gap: 28px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: 1280px;
  margin: 100px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: #8fa1b0;
  font-size: 13px;
}

@media (max-width: 900px) {
  html,
  body {
    scroll-padding-top: 150px;
  }

  body {
    padding-top: 150px;
  }

  .site-nav {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
    padding-block: 12px;
  }

  .nav-logo {
    width: 220px;
    margin: 0 auto;
  }

  .nav-menu {
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .footer-stats span {
    max-width: none;
  }

  .floating-inquiry {
    top: auto;
    right: 14px;
    bottom: 16px;
    width: min(320px, calc(100vw - 28px));
  }
}

@media (max-width: 560px) {
  html,
  body {
    scroll-padding-top: 96px;
  }

  body {
    padding-top: 96px;
    padding-bottom: 56px;
  }

  .site-nav {
    padding-inline: 14px;
  }

  .nav-menu {
    gap: 4px 12px;
    font-size: 14px;
  }

  .design-slices,
  .section-anchor,
  .video-slot,
  .consult-hotspot {
    display: none;
  }

  .mobile-page {
    display: block;
    background: #0c141c;
    color: #fff;
  }

  .mobile-hero {
    min-height: calc(100svh - 96px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 28px 18px 34px;
    background:
      linear-gradient(145deg, rgba(237, 28, 36, 0.24), transparent 42%),
      radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.12), transparent 26%),
      linear-gradient(180deg, #122536 0%, #071016 100%);
  }

  .mobile-hero-logo {
    width: min(250px, 74vw);
    height: auto;
    margin-bottom: 28px;
  }

  .mobile-overline {
    margin: 0 0 12px;
    color: #ed1c24;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-hero h1 {
    margin: 0;
    color: #fff;
    font-size: 34px;
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-hero p:not(.mobile-overline) {
    margin: 18px 0 0;
    color: #c9d6df;
    font-size: 15px;
    line-height: 1.7;
  }

  .mobile-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .mobile-hero-stats span {
    min-height: 58px;
    padding: 10px 8px;
    color: #c9d6df;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    font-size: 11px;
    line-height: 1.25;
  }

  .mobile-hero-stats strong {
    display: block;
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
  }

  .mobile-hero-media {
    margin: 22px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
  }

  .mobile-hero-media img {
    display: block;
    width: 100%;
    height: auto;
  }

  .mobile-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    margin-top: 22px;
    padding: 0 20px;
    color: #fff;
    background: #ed1c24;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-section {
    padding: 32px 18px;
    background: #fff;
    border-top: 1px solid #e4e9ee;
  }

  .mobile-section,
  .mobile-hero-media,
  .mobile-hero-stats {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .mobile-section.is-visible,
  .mobile-hero-media.is-visible,
  .mobile-hero-stats.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-section h2 {
    margin: 0 0 16px;
    color: #101820;
    font-size: 23px;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .mobile-product img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 16px;
    background: #e8edf2;
  }

  .mobile-product ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .mobile-product li {
    padding: 12px 14px;
    color: #2a3743;
    background: #f3f6f9;
    border-left: 3px solid #ed1c24;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.45;
  }

  .mobile-machine-layout {
    background:
      linear-gradient(135deg, rgba(237, 28, 36, 0.1), transparent 40%),
      #101820;
  }

  .mobile-machine-layout h2 {
    color: #fff;
  }

  .mobile-machine-stack {
    display: grid;
    gap: 14px;
  }

  .mobile-machine-stack article {
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 4px;
  }

  .mobile-machine-stack img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 3px;
    background: #fff;
  }

  .mobile-machine-stack h3 {
    margin: 12px 0 6px;
    color: #fff;
    font-size: 16px;
    line-height: 1.25;
    text-transform: uppercase;
  }

  .mobile-machine-stack p {
    margin: 0;
    color: #c9d6df;
    font-size: 13px;
    line-height: 1.55;
  }

  .mobile-process {
    background: #f6f8fb;
  }

  .mobile-process img,
  .mobile-detail-card img,
  .mobile-service img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
    background: #e8edf2;
  }

  .mobile-step-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
  }

  .mobile-step-list span {
    padding: 11px 12px;
    color: #101820;
    background: #fff;
    border: 1px solid #e1e7ee;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
  }

  .mobile-step-list span.is-active {
    color: #fff;
    background: #ed1c24;
    border-color: #ed1c24;
    transform: translateY(-2px);
  }

  .mobile-gallery {
    background: #fff;
  }

  .mobile-gallery-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 62%;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .mobile-gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .mobile-gallery-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
    background: #eef2f5;
    scroll-snap-align: start;
  }

  .mobile-video-card {
    background:
      linear-gradient(135deg, rgba(237, 28, 36, 0.15), transparent 45%),
      #101820;
    color: #fff;
  }

  .mobile-video-card h2 {
    color: #fff;
  }

  .mobile-video-card p {
    margin: 0 0 18px;
    color: #c9d6df;
    font-size: 15px;
    line-height: 1.6;
  }

  .mobile-video-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    color: #fff;
    background: #ed1c24;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .mobile-points span {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 14px;
    background: #101820;
    border: 1px solid #243746;
    border-radius: 4px;
    color: #526170;
    font-size: 14px;
  }

  .mobile-points strong {
    color: #fff;
  }

  .mobile-detail {
    padding-bottom: 44px;
    background: #f6f8fb;
  }

  .mobile-detail p {
    margin: 0;
    color: #526170;
    font-size: 15px;
    line-height: 1.7;
  }

  .mobile-parts {
    background: #101820;
  }

  .mobile-parts h2 {
    color: #fff;
  }

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

  .mobile-parts-grid figure {
    margin: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
  }

  .mobile-parts-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 3px;
    background: #fff;
  }

  .mobile-parts-grid figcaption {
    margin-top: 8px;
    color: #d7e1ea;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-detail-card {
    margin-top: 18px;
    padding: 12px;
    background: #fff;
    border: 1px solid #e1e7ee;
    border-radius: 4px;
  }

  .mobile-detail-card p {
    margin-top: 12px;
  }

  .mobile-spec-list {
    display: grid;
    gap: 8px;
    margin-top: 14px;
  }

  .mobile-spec-list span {
    padding: 11px 12px;
    color: #101820;
    background: #fff;
    border: 1px solid #e1e7ee;
    border-left: 3px solid #ed1c24;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
  }

  .mobile-service {
    padding-bottom: 76px;
    background: #fff;
  }

  .mobile-service p {
    margin: 14px 0 0;
    color: #526170;
    font-size: 15px;
    line-height: 1.7;
  }

  .floating-inquiry {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    width: 100%;
    transform: none;
  }

  .floating-inquiry.is-hidden {
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .floating-toggle {
    min-height: 56px;
    border-radius: 0;
    justify-content: center;
    padding: 0 18px;
    background: #ed1c24;
    font-size: 16px;
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.26);
  }

  .floating-toggle-icon {
    display: none;
  }

  .floating-form-body {
    display: none;
  }

  .floating-inquiry.is-mobile-open {
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    background: #0c141c;
  }

  .floating-inquiry.is-mobile-open .floating-toggle {
    flex: 0 0 58px;
    justify-content: space-between;
    border-radius: 0;
    box-shadow: none;
  }

  .floating-inquiry.is-mobile-open .floating-toggle::after {
    content: "Close";
    font-size: 13px;
    font-weight: 800;
  }

  .floating-inquiry.is-mobile-open .floating-form-body {
    display: block;
    flex: 1;
    max-height: none;
    overflow-y: auto;
    padding: 22px 18px 28px;
    border: 0;
    border-radius: 0;
    background:
      linear-gradient(135deg, rgba(13, 116, 200, 0.18), transparent 42%),
      #0c141c;
    box-shadow: none;
  }

  .floating-inquiry.is-mobile-open .floating-form {
    gap: 14px;
  }

  .floating-inquiry.is-mobile-open .floating-form textarea {
    min-height: 120px;
  }

  body.mobile-form-open {
    overflow: hidden;
  }

  .form-grid,
  .footer-stats {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom a {
    display: inline-block;
    margin-top: 12px;
  }
}
