/* Homepage — modern layout (scoped to .page-home) */
.page-home {
  --hs-brand: #22b565;
  --hs-brand-dark: #1a9a52;
  --hs-brand-light: #e8f7ef;
  --hs-ink: #0f172a;
  --hs-muted: #64748b;
  --hs-border: #e2e8f0;
  --hs-surface: #ffffff;
  --hs-radius: 16px;
  --hs-radius-lg: 24px;
  --hs-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --hs-shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.12);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", sans-serif;
  color: var(--hs-ink);
  background: #f8fafc;
}

.page-home .main-wrapper {
  overflow-x: hidden;
}

/* Header on homepage — 保证始终在 Hero 手机图之上 */
.page-home .header {
  position: relative;
  z-index: 200;
}

.page-home .header-area {
  z-index: 200;
}

.page-home .header-menu-nav {
  position: relative;
  z-index: 201;
}

/* Header on homepage — 透明顶栏 / 滚动后白底 */
.page-home .header-style-3:not(.is-active) .header-area {
  padding-top: 0;
  padding-bottom: 0;
  background: transparent;
}

/* 仅一级导航为白色，下拉子菜单单独配色 */
.page-home .header-style-3:not(.is-active) .header-menu-nav > ul > li > a {
  color: rgba(255, 255, 255, 0.9);
}

.page-home .header-style-3:not(.is-active) .header-menu-nav > ul > li > a:hover,
.page-home .header-style-3:not(.is-active) .header-menu-nav.onepage-nav > ul > li.active > a {
  color: #fff;
}

.page-home .header-style-3 .header-drop-menu,
.page-home .header-style-3 .hs-nav-dropdown,
.page-home .hs-header .header-drop-menu,
.page-home .hs-header .hs-nav-dropdown {
  background: #ffffff !important;
  border: 1px solid #e2e8f0;
}

.page-home .header-style-3 .header-drop-menu a,
.page-home .header-style-3 .hs-nav-dropdown a,
.page-home .hs-header .header-drop-menu a,
.page-home .hs-header .hs-nav-dropdown a {
  color: #0f172a !important;
}

.page-home .header-style-3 .header-drop-menu a:hover,
.page-home .header-style-3 .hs-nav-dropdown a:hover,
.page-home .hs-header .header-drop-menu a:hover,
.page-home .hs-header .hs-nav-dropdown a:hover {
  color: #22b565 !important;
  background: #e8f7ef !important;
}

.page-home .header-style-3:not(.is-active) .header-menu-nav > ul > li > a::after {
  background: #fff;
}

.page-home .header-style-3:not(.is-active) .header-right li button {
  color: #fff;
  font-size: 22px;
}

.page-home .header-sticky.is-active .header-menu-nav > ul > li > a:hover {
  color: var(--hs-brand);
}

/* —— Hero —— */
.hs-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 88px 0 80px;
  overflow: hidden;
}

.hs-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d7a42 0%, #22b565 45%, #3dd47f 100%);
  z-index: 0;
}

.hs-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 90% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(0, 0, 0, 0.08) 0%, transparent 50%);
}

.hs-hero__bg::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.hs-hero .container {
  position: relative;
  z-index: 1;
}

.hs-hero__content {
  animation: hs-fade-up 0.7s ease-out both;
}

@keyframes hs-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hs-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 16px;
}

.hs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hs-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #86efac;
  box-shadow: 0 0 8px #86efac;
}

.hs-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.hs-hero__desc {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 36px;
  max-width: 480px;
}

.hs-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
  cursor: pointer;
}

.hs-btn--primary {
  background: #fff;
  color: var(--hs-brand-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.hs-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  color: var(--hs-brand-dark);
}

.hs-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.hs-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

.hs-hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hs-stat__num {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.hs-stat__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.hs-hero__visual {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 380px;
  max-height: 520px;
  margin-top: 24px;
  padding-top: 48px;
  overflow: hidden;
  animation: hs-fade-up 0.7s ease-out 0.15s both;
}

.hs-hero__phone {
  position: absolute;
  border-radius: 28px;
  box-shadow: var(--hs-shadow-lg);
  transition: transform 0.4s ease;
  pointer-events: none;
}

.hs-hero__phone--back {
  width: 48%;
  max-width: 220px;
  right: 6%;
  top: 18%;
  transform: rotate(6deg);
  z-index: 1;
  opacity: 0.92;
}

.hs-hero__phone--front {
  width: 52%;
  max-width: 260px;
  left: 6%;
  bottom: 0;
  top: auto;
  transform: rotate(-4deg);
  z-index: 2;
}

.hs-hero__phone img {
  width: 100%;
  max-height: 420px;
  height: auto;
  object-fit: contain;
  border-radius: 28px;
  display: block;
}

.page-home .hs-hero:hover .hs-hero__phone--front {
  transform: rotate(-2deg) translateY(-6px);
}

.page-home .hs-hero:hover .hs-hero__phone--back {
  transform: rotate(4deg) translateY(-4px);
}

/* —— Section header —— */
.hs-section {
  padding: 96px 0;
}

.hs-section--alt {
  background: var(--hs-surface);
}

.hs-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.hs-section-head__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hs-brand);
  margin-bottom: 12px;
}

.hs-section-head__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--hs-ink);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.hs-section-head__desc {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--hs-muted);
  margin: 0;
}

/* —— Features grid —— */
.hs-features__grid {
  display: grid;
  gap: 24px;
}

/* ≤4 条：一行两个 */
.hs-features__grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

/* >4 条：一行三个 */
.hs-features__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.hs-card {
  background: var(--hs-surface);
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius);
  padding: 32px 28px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  height: 100%;
}

.hs-card:hover {
  border-color: rgba(34, 181, 101, 0.35);
  box-shadow: var(--hs-shadow);
  transform: translateY(-4px);
}

.hs-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--hs-brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.hs-card__icon img {
  max-width: 32px;
  max-height: 32px;
  object-fit: contain;
}

.hs-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--hs-ink);
}

.hs-card__desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--hs-muted);
  margin: 0;
}

.hs-card__desc p {
  margin: 0;
}

/* —— Download / video —— */
.hs-download {
  padding: 96px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.hs-download__panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--hs-surface);
  border-radius: var(--hs-radius-lg);
  border: 1px solid var(--hs-border);
  box-shadow: var(--hs-shadow);
  overflow: hidden;
}

.hs-download__media {
  position: relative;
  min-height: 360px;
  background-size: cover;
  background-position: center;
}

.hs-download__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.5) 0%, rgba(34, 181, 101, 0.4) 100%);
}

.hs-download__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hs-download__play .popup-vimeo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hs-brand);
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.hs-download__play .popup-vimeo:hover {
  transform: scale(1.08);
  color: var(--hs-brand-dark);
}

.hs-download__play .wave-btn span {
  display: none;
}

.hs-download__body {
  padding: 48px 48px 48px 0;
}

.hs-download__tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--hs-brand);
  margin-bottom: 12px;
  display: block;
}

.hs-download__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.hs-download__desc {
  color: var(--hs-muted);
  line-height: 1.7;
  margin: 0 0 28px;
}

.hs-store-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hs-store-btns a img {
  height: 48px;
  width: auto;
  border-radius: 8px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hs-store-btns a:hover img {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* —— About —— */
.hs-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hs-about__img {
  position: relative;
}

.hs-about__img img {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(15, 23, 42, 0.12));
}

.hs-about__img::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 70%;
  left: 10%;
  bottom: 0;
  background: var(--hs-brand-light);
  border-radius: var(--hs-radius-lg);
  z-index: -1;
}

.hs-about__eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--hs-brand);
  margin-bottom: 12px;
  display: block;
}

.hs-about__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.hs-about__desc {
  color: var(--hs-muted);
  line-height: 1.75;
  margin: 0 0 28px;
}

.hs-btn--brand {
  background: var(--hs-brand);
  color: #fff;
}

.hs-btn--brand:hover {
  background: var(--hs-brand-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 181, 101, 0.35);
}

/* —— 首页新闻 Tab —— */
.hs-home-news {
  padding: 80px 0;
  background: var(--hs-surface);
  border-top: 1px solid var(--hs-border);
}

.hs-home-news .hs-section-head {
  margin-bottom: 8px;
}

.hs-home-news__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 40px;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto 40px;
  padding-bottom: 0;
  border-bottom: 1px solid var(--hs-border);
}

.hs-home-news__tab {
  position: relative;
  margin: 0;
  padding: 8px 4px 18px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--hs-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.hs-home-news__tab:hover {
  color: var(--hs-ink);
}

.hs-home-news__tab.is-active {
  color: var(--hs-ink);
}

.hs-home-news__tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  border-radius: 2px;
  background: var(--hs-brand);
}

.hs-home-news__panel[hidden] {
  display: none !important;
}

.hs-home-news__panel.is-active {
  animation: hs-fade-up 0.35s ease-out both;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.hs-home-news__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.hs-home-news__card {
  flex: 0 1 280px;
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  background: #f8fafc;
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.hs-home-news__card:hover {
  border-color: rgba(34, 181, 101, 0.35);
  box-shadow: var(--hs-shadow);
  transform: translateY(-3px);
}

.hs-home-news__card-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e2e8f0;
}

.hs-home-news__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.hs-home-news__card:hover .hs-home-news__card-thumb img {
  transform: scale(1.05);
}

.hs-home-news__card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 18px 18px;
}

.hs-home-news__card-body time {
  font-size: 12px;
  color: var(--hs-muted);
  margin-bottom: 8px;
}

.hs-home-news__card-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.hs-home-news__card-title a {
  color: var(--hs-ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hs-home-news__card-title a:hover {
  color: var(--hs-brand);
}

.hs-home-news__card-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--hs-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hs-home-news__foot {
  margin-top: 36px;
  text-align: center;
}

/* —— CTA —— */
.hs-cta {
  padding: 0 0 96px;
}

.hs-cta__box {
  background: linear-gradient(135deg, var(--hs-ink) 0%, #1e3a2f 50%, var(--hs-brand-dark) 100%);
  border-radius: var(--hs-radius-lg);
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--hs-shadow-lg);
}

.hs-cta__title {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}

.hs-cta__desc {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin: 0;
  font-size: 0.9375rem;
}

.hs-cta__form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hs-cta__form .input-field {
  flex: 1;
  min-width: 200px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 14px 20px;
  padding-left: 20px;
  padding-right: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.hs-cta__form .hs-btn {
  height: auto;
  line-height: 1.4;
}

.hs-cta__form .input-field::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.hs-cta__form .input-field:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.hs-cta__form .hs-btn--primary {
  white-space: nowrap;
  background: #fff !important;
  color: var(--hs-brand-dark) !important;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.hs-cta__form .hs-btn--primary:hover {
  color: var(--hs-brand-dark) !important;
  background: #f0fdf4 !important;
}

/* Footer on homepage */
.page-home .hs-footer {
  margin-top: 0;
}

/* —— Responsive —— */
@media (max-width: 1199px) {
  .hs-features__grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .hs-hero__grid,
  .hs-download__panel,
  .hs-about__grid,
  .hs-cta__box {
    grid-template-columns: 1fr;
  }

  .hs-hero {
    min-height: auto;
    padding: 100px 0 64px;
  }

  .hs-hero__visual {
    min-height: 280px;
    max-height: 400px;
    margin-top: 16px;
    padding-top: 32px;
  }

  .hs-hero__phone img {
    max-height: 320px;
  }

  .hs-download__body {
    padding: 32px;
  }

  .hs-download__media {
    min-height: 240px;
  }

  .hs-cta__box {
    padding: 40px 32px;
  }

  .hs-home-news__card {
    flex: 0 1 calc(50% - 10px);
    max-width: none;
  }
}

@media (max-width: 767px) {
  .page-home .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hs-section {
    padding: 56px 0;
  }

  .hs-section-head {
    margin-bottom: 36px;
    text-align: left;
  }

  .hs-section-head__eyebrow {
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .hs-section-head__title {
    font-size: 1.5rem;
  }

  .hs-section-head__desc {
    font-size: 0.9375rem;
  }

  /* —— Hero mobile —— */
  .hs-hero {
    min-height: auto;
    padding: calc(var(--hs-header-h, 64px) + 28px) 0 48px;
    text-align: center;
  }

  .hs-hero__grid {
    gap: 32px;
    padding-top: 0;
  }

  .hs-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hs-badge {
    font-size: 12px;
    padding: 6px 14px;
    margin-bottom: 16px;
  }

  .hs-hero__title {
    font-size: 1.875rem;
    margin-bottom: 14px;
    max-width: 12em;
  }

  .hs-hero__desc {
    font-size: 0.9375rem;
    margin-bottom: 24px;
    max-width: none;
    padding: 0 4px;
    align-self: stretch;
    text-align: left;
  }

  .hs-hero__actions {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-self: stretch;
    gap: 10px;
    margin-bottom: 28px;
  }

  .hs-hero__actions .hs-btn {
    width: auto;
    flex: 0 0 auto;
    padding: 11px 18px;
    border-radius: 14px;
    font-size: 14px;
  }

  .hs-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
  }

  .hs-stat {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 14px 8px;
    backdrop-filter: blur(6px);
  }

  .hs-stat__num {
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 4px;
  }

  .hs-stat__label {
    font-size: 11px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.78);
  }

  .hs-hero__visual {
    min-height: 240px;
    max-height: 300px;
    margin-top: 0;
    padding-top: 8px;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .hs-hero__phone--back {
    width: 46%;
    max-width: 150px;
    right: 8%;
    top: 12%;
  }

  .hs-hero__phone--front {
    width: 50%;
    max-width: 170px;
    left: 8%;
  }

  .hs-hero__phone img {
    max-height: 260px;
  }

  /* —— Features mobile —— */
  .hs-features__grid--2,
  .hs-features__grid--3 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hs-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 18px;
    border-radius: 14px;
  }

  .hs-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    margin-bottom: 0;
    border-radius: 12px;
  }

  .hs-card__title {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .hs-card__desc {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  /* —— Download mobile —— */
  .hs-download {
    padding: 56px 0;
  }

  .hs-download__panel {
    border-radius: 18px;
    gap: 0;
  }

  .hs-download__media {
    min-height: 200px;
    border-radius: 18px 18px 0 0;
  }

  .hs-download__play .popup-vimeo {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .hs-download__body {
    padding: 24px 20px 28px;
    text-align: left;
  }

  .hs-download__title {
    font-size: 1.375rem;
  }

  .hs-download__desc {
    font-size: 0.9375rem;
    margin-bottom: 0;
  }

  /* —— About mobile —— */
  .hs-about__grid {
    gap: 32px;
  }

  .hs-about__img {
    order: -1;
  }

  .hs-about__img img {
    max-width: 280px;
  }

  .hs-about__content {
    text-align: left;
  }

  .hs-about__title {
    font-size: 1.375rem;
  }

  .hs-about__desc {
    font-size: 0.9375rem;
    margin-bottom: 24px;
  }

  .hs-about__content .hs-btn--brand {
    width: auto;
    max-width: none;
  }

  /* —— News mobile —— */
  .hs-home-news {
    padding: 56px 0;
    overflow: hidden;
  }

  .hs-home-news .hs-section-head {
    text-align: center;
    margin-bottom: 20px;
  }

  .hs-home-news__tabs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 0;
    border-bottom: none;
    overflow-x: visible;
  }

  .hs-home-news__tabs::-webkit-scrollbar {
    display: none;
  }

  .hs-home-news__tab {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 100px;
    background: #f1f5f9;
    color: var(--hs-muted);
  }

  .hs-home-news__tab.is-active {
    background: var(--hs-brand);
    color: #fff;
  }

  .hs-home-news__tab.is-active::after {
    display: none;
  }

  .hs-home-news__grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 20px 12px;
    margin: 0 -20px;
    scrollbar-width: none;
  }

  .hs-home-news__grid::-webkit-scrollbar {
    display: none;
  }

  .hs-home-news__card {
    flex: 0 0 72%;
    max-width: 260px;
    scroll-snap-align: start;
    border-radius: 12px;
  }

  .hs-home-news__card-thumb {
    aspect-ratio: 16 / 9;
  }

  .hs-home-news__card-body {
    padding: 12px 14px 14px;
  }

  .hs-home-news__card-body time {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .hs-home-news__card-title {
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 1.4;
  }

  .hs-home-news__card-desc {
    font-size: 12px;
    line-height: 1.55;
  }

  .hs-home-news__foot {
    margin-top: 24px;
  }

  .hs-home-news__foot .hs-btn--brand {
    width: 100%;
    max-width: 280px;
    padding: 11px 20px;
    border-radius: 12px;
    font-size: 14px;
  }

  /* —— CTA mobile —— */
  .hs-cta {
    padding: 0 0 56px;
  }

  .hs-cta__box {
    padding: 28px 20px;
    border-radius: 18px;
    gap: 24px;
    text-align: center;
  }

  .hs-cta__title {
    font-size: 1.375rem;
  }

  .hs-cta__desc {
    font-size: 0.875rem;
  }

  .hs-cta__form {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
  }

  .hs-cta__form .input-field {
    flex: 1;
    min-width: 0;
    width: auto;
    height: auto;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.35;
  }

  .hs-cta__form .hs-btn {
    width: auto;
    flex-shrink: 0;
    height: auto;
    padding: 9px 14px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.35;
  }

  .hs-cta__form .hs-btn--primary {
    background: #fff !important;
    color: var(--hs-brand-dark) !important;
  }
}

@media (max-width: 480px) {
  .hs-hero__title {
    font-size: 1.625rem;
  }

  .hs-stat__num {
    font-size: 0.8125rem;
  }

  .hs-stat__label {
    font-size: 10px;
  }

  .hs-home-news__card {
    flex: 0 0 85%;
  }
}

@media (max-width: 767px) {
  .page-home .hs-footer__grid {
    gap: 32px;
  }
}
