.page-home {
  --home-orange: #FF6B35;
  --home-blue: #00A8E8;
  --home-dark: #2D2D2D;
  --home-navy: #1E293B;
  --home-light: #F5F5F5;
  --home-white: #FFFFFF;
  --home-orange-light: #FFA07A;
  --home-blue-dark: #0077B6;
  --home-radius-lg: 28px;
  --home-radius-md: 16px;
  --home-radius-pill: 999px;
  --home-shadow-md: 0 8px 24px rgba(30, 41, 59, .09);
  --home-shadow-lg: 0 18px 40px rgba(30, 41, 59, .12);
  background: var(--home-light);
  color: var(--home-dark);
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
}

.page-home .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.page-home .breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px 0;
  font-size: 14px;
  color: #7A7A7A;
  display: flex;
  gap: 8px;
  align-items: center;
}

.page-home .breadcrumb a {
  color: var(--home-blue);
  text-decoration: none;
}

.page-home .breadcrumb a:hover {
  text-decoration: underline;
}

.page-home .breadcrumb [aria-current="page"] {
  color: var(--home-dark);
  font-weight: 600;
}

.page-home .home-hero {
  position: relative;
  background: linear-gradient(135deg, #1E293B 0%, #2D2D2D 60%, #3A3A3A 100%);
  border-radius: 0 0 48px 48px;
  margin-bottom: 0;
  padding: 64px 0 96px;
  overflow: hidden;
  isolation: isolate;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(255, 107, 53, .35) 0%, transparent 65%);
  z-index: -1;
  pointer-events: none;
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 168, 232, .22) 0%, transparent 65%);
  z-index: -1;
  pointer-events: none;
}

.page-home .home-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.page-home .home-hero__copy {
  position: relative;
  z-index: 2;
}

.page-home .home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--home-orange-light);
  background: rgba(255, 107, 53, .14);
  border: 1px solid rgba(255, 107, 53, .35);
  padding: 8px 18px;
  border-radius: var(--home-radius-pill);
  margin-bottom: 24px;
}

.page-home .home-hero__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, .2);
}

.page-home .home-hero__title {
  font-size: clamp(42px, 10vw, 92px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--home-white);
  font-family: "PingFang SC", "Microsoft YaHei", "Arial Black", sans-serif;
  letter-spacing: -1px;
  margin: 0 0 24px;
}

.page-home .home-hero__desc {
  font-size: 17px;
  color: rgba(255, 255, 255, .85);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.9;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.page-home .home-hero__entry-tip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(0, 168, 232, .12);
  border: 1px solid rgba(0, 168, 232, .4);
  padding: 14px 20px;
  border-radius: 12px;
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
  max-width: 480px;
}

.page-home .home-hero__entry-icon {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--home-orange);
  margin-top: 8px;
  position: relative;
}

.page-home .home-hero__entry-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(255, 107, 53, .6);
  animation: homePulse 2s ease-out infinite;
}

@keyframes homePulse {
  0% { transform: scale(.8); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.page-home .home-hero__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-home .home-hero__figure {
  margin: 0;
  width: 100%;
  max-width: 560px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--home-shadow-lg);
  border: 1px solid rgba(255, 255, 255, .1);
  transform: rotate(1.5deg);
  transition: transform .5s ease;
}

.page-home .home-hero__figure:hover {
  transform: rotate(0deg) scale(1.01);
}

.page-home .home-hero__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 100%;
}

.page-home .home-hero__badge {
  position: absolute;
  top: -16px;
  left: -10px;
  background: var(--home-orange);
  color: #fff;
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: rotate(-4deg);
  box-shadow: var(--home-shadow-md);
  z-index: 2;
  min-width: 120px;
}

.page-home .home-hero__badge-line {
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 999px;
  margin-bottom: 8px;
}

.page-home .home-hero__badge-num {
  font-family: "PingFang SC", "Microsoft YaHei", "Arial Black", sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 2px;
}

.page-home .home-hero__badge-text {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
}

.page-home .home-hero__bg {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  pointer-events: none;
}

.page-home .home-hero__wave {
  display: block;
  width: 100%;
  height: 70px;
  opacity: .9;
}

.page-home .home-hero__cutline {
  position: absolute;
  bottom: 72px;
  right: 20px;
  z-index: 1;
  opacity: .5;
  width: 140px;
  transform: rotate(2deg);
}

.page-home .home-hero__cutline img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.page-home .panel {
  padding: 64px 0;
  position: relative;
}

.page-home .panel--alt {
  background: var(--home-white);
}

.page-home .section-head {
  margin-bottom: 40px;
}

.page-home .section-title {
  font-size: 32px;
  font-weight: 900;
  font-family: "PingFang SC", "Microsoft YaHei", "Arial Black", sans-serif;
  line-height: 1.2;
  color: var(--home-dark);
  margin: 0 0 10px;
}

.page-home .section-subtitle {
  font-size: 16px;
  color: #6A6A6A;
  max-width: 680px;
  margin: 0;
}

.page-home .home-update__kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--home-blue);
  margin-bottom: 8px;
}

.page-home .home-update__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-home .home-update__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.page-home .tag-filter__btn {
  background: #F1F1F1;
  border: none;
  padding: 8px 20px;
  border-radius: var(--home-radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--home-dark);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  font-family: inherit;
}

.page-home .tag-filter__btn:hover {
  background: var(--home-orange-light);
  color: #fff;
  transform: translateY(-1px);
}

.page-home .tag-filter__btn[data-active="true"] {
  background: var(--home-blue);
  color: #fff;
  box-shadow: var(--home-shadow-sm);
}

.page-home .home-update__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-home .home-update__card {
  background: var(--home-light);
  border-radius: var(--home-radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid transparent;
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}

.page-home .home-update__card:hover {
  box-shadow: var(--home-shadow-md);
  transform: translateY(-4px);
  border-color: rgba(255, 107, 53, .3);
}

.page-home .home-update__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--home-shadow-sm);
  margin-bottom: 6px;
}

.page-home .home-update__title {
  font-size: 20px;
  font-weight: 800;
  font-family: "PingFang SC", "Microsoft YaHei", "Arial Black", sans-serif;
  margin: 0;
}

.page-home .home-update__text {
  font-size: 15px;
  color: #5A5A5A;
  margin: 0;
  flex-grow: 1;
}

.page-home .home-features {
  background: var(--home-light);
  border-radius: 48px 48px 0 0;
  padding-top: 80px;
}

.page-home .home-features__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.page-home .chapter {
  display: flex;
  align-items: center;
  gap: 16px;
}

.page-home .chapter__num {
  font-size: 48px;
  font-weight: 900;
  font-family: "PingFang SC", "Microsoft YaHei", "Arial Black", sans-serif;
  line-height: 1;
  color: var(--home-orange);
  text-shadow: 2px 2px 0 rgba(255, 107, 53, .15);
}

.page-home .chapter__annot {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 700;
  color: #9A9A9A;
  height: 56px;
  border-left: 2px solid var(--home-orange);
  padding-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .home-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-home .home-features__card {
  display: flex;
  flex-direction: column;
  background: var(--home-white);
  border-radius: var(--home-radius-lg);
  overflow: hidden;
  box-shadow: var(--home-shadow-sm);
  transition: box-shadow .3s ease, transform .3s ease;
  border: none;
}

.page-home .home-features__card:hover {
  box-shadow: var(--home-shadow-lg);
  transform: translateY(-4px);
}

.page-home .home-features__media {
  position: relative;
  padding-top: 56%;
  overflow: hidden;
  background: var(--home-navy);
}

.page-home .home-features__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 41, 59, .6) 0%, transparent 55%);
}

.page-home .home-features__media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
  transition: transform .5s ease;
}

.page-home .home-features__card:hover .home-features__media img {
  transform: scale(1.05);
}

.page-home .home-features__media--stats {
  padding-top: 56%;
}

.page-home .home-features__content {
  padding: 28px;
  position: relative;
}

.page-home .home-features__count {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 56px;
  font-weight: 900;
  font-family: "PingFang SC", "Microsoft YaHei", "Arial Black", sans-serif;
  line-height: 1;
  color: rgba(45, 45, 45, .07);
  pointer-events: none;
}

.page-home .home-features__title {
  font-size: 24px;
  font-weight: 800;
  font-family: "PingFang SC", "Microsoft YaHei", "Arial Black", sans-serif;
  margin: 0 0 10px;
  color: var(--home-dark);
}

.page-home .home-features__text {
  font-size: 15px;
  color: #5A5A5A;
  margin-bottom: 16px;
}

.page-home .home-features__data {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.page-home .home-features__data-item {
  background: var(--home-light);
  border-radius: var(--home-radius-pill);
  padding: 6px 14px;
  font-size: 13px;
  color: #5A5A5A;
  font-weight: 600;
}

.page-home .home-features__data-num {
  color: var(--home-blue);
  font-weight: 800;
  font-size: 15px;
}

.page-home .home-features__list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-home .home-features__list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: #5A5A5A;
}

.page-home .home-features__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-orange);
}

.page-home .home-features__content--plain {
  display: flex;
  flex-direction: column;
  padding-top: 40px;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--home-radius-pill);
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

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

.page-home .btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}

.page-home .btn--sm {
  padding: 8px 20px;
  font-size: 14px;
}

.page-home .btn--primary {
  background: var(--home-orange);
  color: #fff;
}

.page-home .btn--primary:hover {
  background: #e85728;
  box-shadow: 0 6px 20px rgba(255, 107, 53, .35);
}

.page-home .btn--blue {
  background: var(--home-blue);
  color: #fff;
}

.page-home .btn--blue:hover {
  background: var(--home-blue-dark);
  box-shadow: 0 6px 20px rgba(0, 168, 232, .35);
}

.page-home .btn--ghost {
  background: transparent;
  color: var(--home-blue);
  border: 2px solid var(--home-blue);
}

.page-home .btn--ghost:hover {
  background: rgba(0, 168, 232, .08);
  box-shadow: 0 4px 14px rgba(0, 168, 232, .15);
}

.page-home .home-news {
  background: var(--home-white);
  border-radius: 48px 48px 0 0;
  padding-top: 80px;
}

.page-home .home-news__head {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .home-news__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.page-home .home-news__item {
  background: var(--home-light);
  border-radius: var(--home-radius-md);
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .3s ease, transform .3s ease;
}

.page-home .home-news__item:hover {
  box-shadow: var(--home-shadow-md);
  transform: translateY(-3px);
}

.page-home .home-news__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 4px;
  border-radius: 999px;
  background: var(--home-blue);
}

.page-home .home-news__item:nth-child(even)::after {
  background: var(--home-orange);
}

.page-home .home-news__tag {
  align-self: flex-start;
}

.page-home .tag-chip {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--home-radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.page-home .tag-chip--orange {
  background: rgba(255, 107, 53, .15);
  color: #d1461c;
}

.page-home .tag-chip--blue {
  background: rgba(0, 168, 232, .15);
  color: var(--home-blue-dark);
}

.page-home .home-news__title {
  font-size: 19px;
  font-weight: 800;
  font-family: "PingFang SC", "Microsoft YaHei", "Arial Black", sans-serif;
  margin: 0;
  color: var(--home-dark);
  padding-left: 18px;
}

.page-home .home-news__excerpt {
  font-size: 15px;
  color: #6A6A6A;
  margin: 0;
  padding-left: 18px;
}

.page-home .home-news__link {
  display: inline-block;
  margin-top: 4px;
  color: var(--home-blue);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  padding-left: 18px;
}

.page-home .home-news__link:hover {
  text-decoration: underline;
}

.page-home .home-news__more {
  display: flex;
  justify-content: center;
}

.page-home .home-trust {
  background: var(--home-navy);
  border-radius: 48px 48px 0 0;
  padding-top: 80px;
  color: #fff;
}

.page-home .home-trust__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.page-home .home-trust .chapter__num {
  color: var(--home-orange);
}

.page-home .home-trust .chapter__annot {
  color: rgba(255, 255, 255, .5);
  border-left-color: var(--home-orange);
}

.page-home .home-trust .section-title {
  color: #fff;
}

.page-home .home-trust__statement {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
  color: rgba(255, 255, 255, .95);
  margin: 0 0 16px;
}

.page-home .home-trust__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.9;
  margin: 0 0 32px;
  max-width: 600px;
}

.page-home .home-trust__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.page-home .stat-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--home-radius-md);
  padding: 20px 24px;
  min-width: 120px;
  transition: background .3s ease, transform .3s ease;
}

.page-home .stat-card:hover {
  background: rgba(255, 255, 255, .14);
  transform: translateY(-3px);
}

.page-home .stat-card__num {
  display: block;
  font-size: 30px;
  font-weight: 900;
  font-family: "PingFang SC", "Microsoft YaHei", "Arial Black", sans-serif;
  color: var(--home-orange);
  line-height: 1.2;
}

.page-home .stat-card__label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  margin-top: 4px;
  letter-spacing: 1px;
}

.page-home .home-trust__side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: rgba(255, 255, 255, .06);
  border-radius: var(--home-radius-lg);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .1);
}

.page-home .home-trust__badge {
  display: flex;
  align-items: center;
  gap: 16px;
}

.page-home .home-trust__badge-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .home-trust__badge-text {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
  line-height: 1.6;
}

.page-home .home-trust__icp {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  background: rgba(0, 168, 232, .12);
  border: 1px solid rgba(0, 168, 232, .3);
  padding: 8px 14px;
  border-radius: 8px;
  align-self: flex-start;
  letter-spacing: 1px;
}

.page-home .home-trust__note {
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
  margin: 0;
}

.page-home .home-guide {
  background: var(--home-light);
  padding-top: 80px;
  border-radius: 0;
}

.page-home .home-guide__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  background: var(--home-white);
  border-radius: var(--home-radius-lg);
  padding: 40px 32px;
  box-shadow: var(--home-shadow-sm);
}

.page-home .home-guide__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.page-home .home-guide__step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.page-home .home-guide__step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--home-orange);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "PingFang SC", "Microsoft YaHei", "Arial Black", sans-serif;
  box-shadow: 0 4px 12px rgba(255, 107, 53, .3);
}

.page-home .home-guide__step h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 6px;
  font-family: "PingFang SC", "Microsoft YaHei", "Arial Black", sans-serif;
}

.page-home .home-guide__step p {
  font-size: 15px;
  color: #5A5A5A;
  margin: 0;
}

.page-home .home-guide__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  background: var(--home-light);
  border-radius: var(--home-radius-md);
  padding: 28px;
}

.page-home .home-guide__more-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--home-dark);
  margin: 0;
}

.page-home .home-guide__link {
  color: var(--home-blue);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}

.page-home .home-guide__link:hover {
  text-decoration: underline;
}

@media (min-width: 640px) {
  .page-home .home-update__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .home-features__card:first-child {
    grid-column: span 1;
  }

  .page-home .home-news__list {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .home-news__item {
    padding: 24px 20px;
  }

  .page-home .home-trust__stats {
    gap: 16px;
  }

  .page-home .stat-card {
    flex: 1;
    min-width: 80px;
    padding: 16px;
  }
}

@media (min-width: 900px) {
  .page-home .home-hero {
    padding: 80px 0 120px;
  }

  .page-home .home-hero__inner {
    grid-template-columns: 1.05fr .95fr;
    gap: 64px;
  }

  .page-home .home-hero__title {
    font-size: 92px;
  }

  .page-home .home-hero__figure {
    max-width: 560px;
  }

  .page-home .home-hero__wave {
    height: 120px;
  }

  .page-home .home-hero__cutline {
    width: 200px;
    bottom: 120px;
    right: 40px;
  }

  .page-home .home-features__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
  }

  .page-home .home-features__card {
    flex-direction: column;
  }

  .page-home .home-features__media,
  .page-home .home-features__media--stats {
    padding-top: 0;
    height: 260px;
    flex-shrink: 0;
  }

  .page-home .home-features__content {
    padding: 28px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .page-home .home-features__list {
    flex-grow: 1;
  }

  .page-home .home-trust__inner {
    grid-template-columns: 1.2fr .8fr;
    gap: 56px;
    align-items: start;
  }

  .page-home .home-guide__inner {
    grid-template-columns: 1.2fr .8fr;
    gap: 48px;
    padding: 56px 48px;
  }

  .page-home .home-update__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .page-home .home-update__card {
    padding: 22px;
  }
}

@media (max-width: 480px) {
  .page-home .home-hero__title {
    font-size: 42px;
  }

  .page-home .home-hero__badge {
    top: -10px;
    left: -4px;
    padding: 10px 14px;
    min-width: 90px;
  }

  .page-home .home-hero__badge-num {
    font-size: 16px;
  }

  .page-home .home-hero__badge-text {
    font-size: 9px;
  }

  .page-home .home-hero__cutline {
    display: none;
  }

  .page-home .home-trust__side {
    padding: 24px;
  }

  .page-home .home-trust__stats {
    flex-direction: column;
  }

  .page-home .stat-card {
    width: 100%;
  }

  .page-home .home-news__item {
    padding: 20px 16px;
  }

  .page-home .home-news__title {
    font-size: 17px;
  }
}

.page-home {
  --home-shadow-sm: var(--home-shadow-md);
}
