.page-home {
  --home-gold-glow: rgba(201, 169, 106, 0.16);
  --home-orange-glow: rgba(255, 122, 26, 0.12);
  --home-purple-glow: rgba(184, 58, 200, 0.1);
  --home-section-pad: clamp(64px, 8vw, 120px);
  color: var(--color-text-primary);
  background: var(--color-background);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.page-home [data-reveal] {
  opacity: 1;
}

/* ========== Hero 首屏 ========== */
.page-home .hero {
  position: relative;
  min-height: min(760px, 100vh);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 48px) var(--container-pad) 64px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(145deg, var(--color-royal-blue-dark) 0%, var(--color-royal-blue) 60%, var(--color-background) 100%);
}

.page-home .hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  opacity: 0.34;
}

.page-home .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, var(--color-background) 0%, transparent 50%, var(--color-background) 100%);
}

.page-home .hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
}

.page-home .hero__glow--one {
  width: 520px;
  height: 520px;
  right: -80px;
  top: 10%;
  background: var(--home-gold-glow);
}

.page-home .hero__glow--two {
  width: 360px;
  height: 360px;
  left: -120px;
  bottom: 10%;
  background: var(--home-purple-glow);
}

.page-home .hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.page-home .hero__index {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.page-home .hero__serial {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--color-gold-bright);
  letter-spacing: 0.12em;
  border: 1px solid var(--color-border);
  padding: 6px 14px;
  background: rgba(10, 31, 61, 0.6);
  transform: rotate(-2deg);
}

.page-home .hero__version-tag {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--color-text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-home .hero__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.6rem, 6.4vw, 5.6rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  max-width: 1200px;
  margin: 0 0 24px;
  position: relative;
  color: var(--color-text-primary);
  text-shadow: 0 4px 40px rgba(10, 31, 61, 0.6);
}

.page-home .hero__title::after {
  content: "";
  display: block;
  width: 84px;
  height: 4px;
  margin-top: 28px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  transform: skewX(-18deg);
}

.page-home .hero__lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.68;
  color: var(--color-text-secondary);
  max-width: 720px;
  margin: 0 0 36px;
}

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

.page-home .site-btn--ghost {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  padding: 14px 30px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  border-radius: 0;
  transition: all 0.28s ease;
}

.page-home .site-btn--ghost:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-bright);
  box-shadow: 0 0 30px rgba(201, 169, 106, 0.18);
}

.page-home .hero__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 32px;
  max-width: 680px;
  border-top: 1px solid var(--color-border);
  padding-top: 32px;
}

.page-home .hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .hero__meta-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  color: var(--color-gold-bright);
  line-height: 1.1;
}

.page-home .hero__meta-sub {
  font-size: 0.6em;
  color: var(--color-text-secondary);
  margin-left: 2px;
}

.page-home .hero__meta-label {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
}

/* ========== Teaser 横条 ========== */
.page-home .teaser-strip {
  background: linear-gradient(100deg, var(--color-royal-blue-light), var(--color-royal-blue-dark));
  border-top: 2px solid rgba(201, 169, 106, 0.35);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.page-home .teaser-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold-bright), transparent);
  animation: home-teaser-shine 5s ease-in-out infinite alternate;
}

@keyframes home-teaser-shine {
  from { transform: translateX(-30%); }
  to { transform: translateX(30%); }
}

.page-home .teaser-strip__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 18px var(--container-pad);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page-home .teaser-strip__text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-primary);
  letter-spacing: 0.02em;
}

.page-home .teaser-strip__label {
  color: var(--color-gold-bright);
  font-weight: 700;
  font-family: var(--font-heading);
}

.page-home .teaser-strip__link {
  color: var(--color-gold-bright);
  font-weight: 600;
  font-size: 0.9rem;
  text-underline-offset: 6px;
  text-decoration: underline;
  text-decoration-color: rgba(201, 169, 106, 0.4);
  transition: color 0.2s ease;
}

.page-home .teaser-strip__link:hover {
  color: var(--color-text-primary);
}

/* ========== 更新总览 ========== */
.page-home .update-overview {
  padding: var(--home-section-pad) var(--container-pad);
  background: var(--color-background);
}

.page-home .update-overview__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
}

.page-home .update-overview__kicker,
.page-home .gift-section__kicker,
.page-home .compare-section__kicker,
.page-home .rating-section__kicker,
.page-home .service-section__kicker {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  color: var(--color-gold);
  letter-spacing: 0.14em;
  margin: 0 0 14px;
  text-transform: uppercase;
  display: inline-block;
  border-left: 3px solid var(--color-gold);
  padding-left: 12px;
}

.page-home .update-overview__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.2;
  margin: 0 0 20px;
  color: var(--color-text-primary);
}

.page-home .update-overview__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 520px;
  margin-bottom: 28px;
}

.page-home .site-btn--outline {
  display: inline-block;
  border: 1px solid var(--color-gold);
  color: var(--color-gold-bright);
  padding: 13px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
  background: transparent;
  border-radius: 0;
}

.page-home .site-btn--outline:hover {
  background: rgba(201, 169, 106, 0.12);
  box-shadow: 0 0 24px rgba(201, 169, 106, 0.18);
  transform: translateY(-2px);
}

.page-home .update-overview__timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.page-home .update-overview__timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--color-gold), var(--color-border), transparent);
}

.page-home .update-overview__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-gold);
  padding: 24px 24px 24px 40px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-home .update-overview__item::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 24px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--color-gold-bright);
  box-shadow: 0 0 12px rgba(201, 169, 106, 0.6);
}

.page-home .update-overview__item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-hard);
}

.page-home .update-overview__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.page-home .update-overview__badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  background: rgba(201, 169, 106, 0.12);
  border: 1px solid rgba(201, 169, 106, 0.35);
  color: var(--color-gold-bright);
  padding: 3px 10px;
  letter-spacing: 0.06em;
}

.page-home .update-overview__time {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

.page-home .update-overview__item-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--color-text-primary);
}

.page-home .update-overview__item-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
}

/* ========== 礼包码专区 ========== */
.page-home .gift-section {
  position: relative;
  padding: var(--home-section-pad) var(--container-pad);
  background: linear-gradient(180deg, var(--color-royal-blue-dark), var(--color-background));
  overflow: hidden;
}

.page-home .gift-section__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

.page-home .gift-section__visual {
  position: relative;
  order: -1;
}

.page-home .gift-section__img {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: var(--radius);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-hard);
  filter: saturate(1.15);
}

.page-home .gift-section__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.2;
  margin: 0 0 16px;
}

.page-home .gift-section__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 28px;
}

.page-home .gift-section__code-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 106, 0.4);
  padding: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 24px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.page-home .gift-section__code-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 10px;
  flex-wrap: wrap;
}

.page-home .gift-section__code-status {
  font-size: 0.82rem;
  color: var(--color-accent-orange);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.page-home .gift-section__code-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.page-home .gift-section__code {
  font-family: var(--font-mono);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--color-gold-bright);
  background: rgba(10, 31, 61, 0.6);
  padding: 12px 16px;
  flex: 1;
  min-width: 220px;
  border: 1px dashed rgba(201, 169, 106, 0.5);
  letter-spacing: 0.04em;
}

.page-home .gift-section__copy {
  background: var(--color-gold);
  color: var(--color-royal-blue-dark);
  border: none;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  font-family: var(--font-heading);
  transition: background 0.2s ease, transform 0.2s ease;
}

.page-home .gift-section__copy:hover {
  background: var(--color-gold-bright);
  transform: scale(1.04);
}

.page-home .gift-section__code-note {
  font-size: 0.82rem;
  color: var(--color-text-secondary);
  margin: 12px 0 0;
}

.page-home .gift-section__cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.page-home .gift-section__cat {
  font-size: 0.82rem;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
  padding: 6px 14px;
  background: rgba(10, 31, 61, 0.3);
}

/* ========== 安装包对比 ========== */
.page-home .compare-section {
  padding: var(--home-section-pad) var(--container-pad);
  background: var(--color-surface);
  border-top: 3px solid rgba(201, 169, 106, 0.3);
}

.page-home .compare-section__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.page-home .compare-section__heading {
  margin-bottom: 36px;
}

.page-home .compare-section__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin: 0 0 14px;
}

.page-home .compare-section__desc {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 640px;
}

.page-home .compare-section__img {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 0 36px;
  display: block;
  opacity: 0.8;
  border: 1px solid var(--color-border);
}

.page-home .compare-table-wrap {
  overflow-x: auto;
  margin-bottom: 24px;
}

.page-home .compare-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(10, 31, 61, 0.3);
  min-width: 640px;
}

.page-home .compare-table th,
.page-home .compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.92rem;
}

.page-home .compare-table thead th {
  background: var(--color-royal-blue);
  color: var(--color-gold-bright);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.page-home .compare-table tbody th {
  font-family: var(--font-mono);
  font-weight: 400;
  color: var(--color-text-secondary);
  white-space: nowrap;
}

.page-home .compare-table td {
  color: var(--color-text-primary);
}

.page-home .compare-table__stars {
  color: var(--color-gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.page-home .compare-section__tip {
  font-size: 0.87rem;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
  border-left: 3px solid var(--color-border);
  padding-left: 14px;
}

/* ========== 评分统计 ========== */
.page-home .rating-section {
  position: relative;
  padding: var(--home-section-pad) var(--container-pad);
  background: var(--color-royal-blue);
  overflow: hidden;
  isolation: isolate;
}

.page-home .rating-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.24;
}

.page-home .rating-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(120deg, rgba(5, 16, 32, 0.85), transparent 60%, rgba(184, 58, 200, 0.1));
  pointer-events: none;
}

.page-home .rating-section__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.page-home .rating-section__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin: 0 0 14px;
}

.page-home .rating-section__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 500px;
}

.page-home .rating-section__chart {
  background: rgba(5, 16, 32, 0.6);
  border: 1px solid rgba(201, 169, 106, 0.3);
  padding: 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-home .rating-section__score {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.page-home .rating-section__score-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(3.4rem, 6vw, 5rem);
  color: var(--color-gold-bright);
  line-height: 1;
}

.page-home .rating-section__score-total {
  font-size: 1.3rem;
  color: var(--color-text-secondary);
  font-family: var(--font-mono);
}

.page-home .rating-section__bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .rating-section__bar-row {
  display: grid;
  grid-template-columns: 40px 1fr 44px;
  align-items: center;
  gap: 12px;
}

.page-home .rating-section__bar-label {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--color-text-secondary);
}

.page-home .rating-section__bar-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  border-radius: 0;
}

.page-home .rating-section__bar-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-bright));
  transform-origin: left center;
}

.page-home .rating-section__bar-num {
  font-family: var(--font-mono);
  font-size: 0.84rem;
  color: var(--color-text-primary);
  text-align: right;
}

/* ========== 服务范围 ========== */
.page-home .service-section {
  padding: var(--home-section-pad) var(--container-pad);
  background: var(--color-background);
}

.page-home .service-section__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.page-home .service-section__heading {
  margin-bottom: 40px;
}

.page-home .service-section__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin: 0 0 14px;
}

.page-home .service-section__desc {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 680px;
}

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

.page-home .service-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.page-home .service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  transition: width 0.3s ease;
}

.page-home .service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 169, 106, 0.6);
  box-shadow: var(--shadow-hard);
}

.page-home .service-card:hover::after {
  width: 100%;
}

.page-home .service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--color-gold);
  background: rgba(201, 169, 106, 0.08);
  border: 1px solid rgba(201, 169, 106, 0.2);
}

.page-home .service-card__icon svg {
  width: 32px;
  height: 32px;
}

.page-home .service-card__icon--download {
  color: var(--color-gold);
}

.page-home .service-card__icon--auth {
  color: var(--color-accent-orange);
}

.page-home .service-card__icon--activity {
  color: var(--color-gold-bright);
}

.page-home .service-card__icon--brand {
  color: var(--color-accent-purple);
}

.page-home .service-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--color-text-primary);
}

.page-home .service-card__desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
  flex: 1;
}

.page-home .service-card__link {
  font-family: var(--font-mono);
  font-size: 0.84rem;
  color: var(--color-gold);
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ========== 信任声明 ========== */
.page-home .trust-note {
  padding: 48px var(--container-pad);
  background: var(--color-royal-blue-dark);
  border-top: 1px solid var(--color-border);
}

.page-home .trust-note__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.page-home .trust-note__text {
  color: var(--color-text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 760px;
  margin: 0;
}

.page-home .trust-note__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-home .trust-note__contact {
  color: var(--color-gold-bright);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ========== 媒体查询 ========== */
@media (min-width: 640px) {
  .page-home .hero__meta {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .gift-section__inner {
    grid-template-columns: 1fr 1.2fr;
    gap: 52px;
  }

  .page-home .gift-section__visual {
    order: 0;
  }

  .page-home .service-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .rating-section__chart {
    grid-template-columns: 1fr 1.6fr;
    align-items: center;
  }
}

@media (min-width: 960px) {
  .page-home .update-overview__inner {
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
  }

  .page-home .rating-section__inner {
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: center;
  }

  .page-home .service-section__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .gift-section__content {
    padding-right: 16px;
  }

  .page-home .gift-section__img {
    max-width: 360px;
  }
}

@media (max-width: 480px) {
  .page-home .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .page-home .hero__actions a {
    padding: 12px 18px;
    font-size: 0.9rem;
  }

  .page-home .hero__meta {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .page-home .compare-section__inner,
  .page-home .update-overview__inner,
  .page-home .gift-section__inner,
  .page-home .rating-section__inner,
  .page-home .service-section__inner {
    padding-left: 0;
    padding-right: 0;
  }

  .page-home .gift-section__code-row {
    flex-direction: column;
    align-items: stretch;
  }

  .page-home .gift-section__copy {
    width: 100%;
  }

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

  .page-home .rating-section__bar-row {
    grid-template-columns: 30px 1fr 36px;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation: none !important;
    transition: none !important;
  }

  .page-home .teaser-strip::before {
    animation: none;
  }

  .page-home .update-overview__item:hover,
  .page-home .service-card:hover,
  .page-home .gift-section__copy:hover {
    transform: none;
  }
}
