.page-home {
  --home-gold: #D4A017;
  --home-orange: #F1785B;
  --home-deep: #0A2540;
  --home-linen: #F5F0E6;
  --home-ink: #1A1E24;
  --home-slate: #5A6472;
  --home-line: #E3D9C4;
  --home-success: #2A9D6E;
  --home-info: #1E6FD9;
  --home-radius-lg: 28px;
  --home-radius-md: 16px;
  --home-container-pad: 16px;
  background: var(--home-linen);
  color: var(--home-ink);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

.page-home img {
  max-width: 100%;
  height: auto;
  border-radius: var(--home-radius-md);
  display: block;
}

.page-home .home-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px var(--home-container-pad) 0;
  max-width: 1440px;
  margin: 0 auto;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--home-slate);
}

.page-home .home-breadcrumb a {
  color: var(--home-info);
  text-decoration: none;
  border-bottom: 1px solid rgba(30, 111, 217, 0.3);
}

.page-home .home-breadcrumb a:hover {
  border-bottom-color: var(--home-info);
}

.page-home .home-breadcrumb-sep {
  color: var(--home-slate);
}

.page-home .home-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 40px var(--home-container-pad) 48px;
  max-width: 1440px;
  margin: 0 auto;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  max-width: 1440px;
  margin: 0 auto;
  background-image:
    linear-gradient(to right, rgba(10, 37, 64, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10, 37, 64, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
  z-index: 0;
}

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

.page-home .home-hero-kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--home-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--home-deep);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 18px;
}

.page-home .home-hero h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(26px, 5.6vw, 48px);
  line-height: 1.18;
  letter-spacing: 1px;
  color: var(--home-deep);
  margin: 0 0 20px;
}

.page-home .home-hero-lead {
  font-size: 16px;
  color: var(--home-slate);
  max-width: 560px;
  margin: 0 0 28px;
}

.page-home .home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.page-home .btn-primary {
  background: var(--home-orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(241, 120, 91, 0.28);
}

.page-home .btn-secondary {
  background: var(--home-deep);
  color: #fff;
  box-shadow: 0 10px 24px rgba(10, 37, 64, 0.18);
}

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

.page-home .home-hero-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  padding: 18px;
  background: var(--home-deep);
  border-radius: var(--home-radius-lg);
  color: #fff;
}

.page-home .home-hero-trust div {
  padding: 6px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.page-home .home-hero-trust dt {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-mono);
  letter-spacing: 1px;
}

.page-home .home-hero-trust dd {
  margin: 4px 0 0;
  font-size: 22px;
  font-weight: 900;
  font-family: var(--font-mono);
  color: var(--home-gold);
}

.page-home .home-hero-index {
  position: relative;
  z-index: 2;
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius-lg);
  padding: 20px;
  box-shadow: 0 18px 40px rgba(10, 37, 64, 0.08);
}

.page-home .home-hero-index-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--home-line);
}

.page-home .home-index-label {
  display: inline-flex;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--home-deep);
  font-size: 14px;
  letter-spacing: 1px;
}

.page-home .home-coordinate-sync {
  display: inline-flex;
  font-size: 12px;
  color: var(--home-slate);
  font-family: var(--font-mono);
  background: var(--home-linen);
  padding: 4px 10px;
  border-radius: 999px;
}

.page-home .home-coordinate-list {
  display: flex;
  flex-direction: column;
}

.page-home .coordinate-entry {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 4px;
  border-bottom: 1px solid var(--home-line);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.page-home .coordinate-entry:last-child {
  border-bottom: none;
}

.page-home .coordinate-entry:hover {
  background: var(--home-linen);
  padding-left: 12px;
}

.page-home .coordinate-code {
  flex: 0 0 52px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  color: var(--home-gold);
  background: rgba(212, 160, 23, 0.1);
  border-radius: 999px;
  padding: 7px 10px;
  text-align: center;
}

.page-home .coordinate-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.page-home .coordinate-label {
  font-weight: 800;
  font-size: 16px;
  color: var(--home-deep);
}

.page-home .coordinate-desc {
  font-size: 13px;
  color: var(--home-slate);
  font-family: var(--font-mono);
}

.page-home .coordinate-arrow {
  font-size: 18px;
  color: var(--home-gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.page-home .coordinate-entry:hover .coordinate-arrow {
  opacity: 1;
  transform: translateX(0);
}

.page-home .home-hero-visual {
  position: relative;
  z-index: 1;
  border-radius: var(--home-radius-lg);
  overflow: hidden;
}

.page-home .home-hero-visual img {
  width: 100%;
  height: auto;
  min-height: 260px;
  object-fit: cover;
}

.page-home .home-visual-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.18), rgba(10, 37, 64, 0.64));
  pointer-events: none;
}

.page-home .home-login {
  background: var(--home-linen);
  padding: 48px var(--home-container-pad);
}

.page-home .home-login-intro {
  max-width: 1080px;
  margin: 0 auto;
}

.page-home .section-subtitle {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--home-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-home .home-login h2,
.page-home .home-clients h2,
.page-home .home-schedule h2,
.page-home .home-warranty h2,
.page-home .home-reviews h2,
.page-home .home-cities h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.22;
  color: var(--home-deep);
  margin: 0 0 16px;
}

.page-home .home-login p,
.page-home .home-clients p,
.page-home .home-schedule p,
.page-home .home-warranty p,
.page-home .home-reviews p,
.page-home .home-cities p {
  color: var(--home-slate);
  font-size: 15px;
  max-width: 640px;
}

.page-home .home-inline-link {
  display: inline-block;
  color: var(--home-info);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(30, 111, 217, 0.3);
  padding-bottom: 2px;
  margin-top: 10px;
}

.page-home .home-inline-link:hover {
  border-bottom-color: var(--home-info);
}

.page-home .home-login-preview {
  max-width: 1080px;
  margin: 28px auto 0;
}

.page-home .home-preview-card {
  background: #fff;
  border-radius: var(--home-radius-lg);
  border: 1px solid var(--home-line);
  padding: 20px;
  box-shadow: 0 14px 30px rgba(10, 37, 64, 0.06);
}

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

.page-home .home-preview-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--home-success);
}

.page-home .home-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-success);
  display: inline-block;
}

.page-home .home-preview-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .home-preview-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 14px 6px;
  border-top: 1px solid var(--home-line);
}

.page-home .home-preview-date {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--home-slate);
}

.page-home .home-preview-service {
  font-weight: 700;
  font-size: 15px;
  color: var(--home-deep);
}

.page-home .home-preview-state {
  justify-self: start;
  font-size: 13px;
  color: var(--home-slate);
  border: 1px solid var(--home-line);
  border-radius: 999px;
  padding: 3px 12px;
}

.page-home .home-preview-state-done {
  color: var(--home-success);
  border-color: rgba(42, 157, 110, 0.4);
}

.page-home .home-preview-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 2px solid var(--home-line);
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--home-slate);
}

.page-home .home-preview-foot a {
  color: var(--home-info);
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(30, 111, 217, 0.3);
}

.page-home .home-clients {
  background: var(--home-deep);
  padding: 48px var(--home-container-pad);
  color: #fff;
}

.page-home .home-clients-head {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.page-home .home-clients-head .section-subtitle {
  color: var(--home-gold);
}

.page-home .home-clients h2 {
  color: #fff;
}

.page-home .home-clients p {
  color: rgba(255, 255, 255, 0.72);
  margin-left: auto;
  margin-right: auto;
}

.page-home .home-clients-head .home-inline-link {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

.page-home .home-clients-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 1080px;
  margin: 28px auto 0;
}

.page-home .client-chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: 20px 16px;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.page-home .client-chip:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--home-gold);
  transform: translateY(-3px);
}

.page-home .client-platform {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 20px;
}

.page-home .client-version {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--home-gold);
}

.page-home .client-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.page-home .home-schedule {
  background: #fff;
  padding: 48px var(--home-container-pad);
}

.page-home .home-schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: center;
}

.page-home .home-schedule-media img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--home-radius-lg);
}

.page-home .home-schedule-content .section-subtitle {
  color: var(--home-orange);
}

.page-home .time-slot-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.page-home .time-slot-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  background: var(--home-linen);
  border-radius: var(--home-radius-md);
  padding: 14px 16px;
  border-left: 4px solid var(--home-gold);
}

.page-home .time-slot-city {
  font-weight: 800;
  font-size: 16px;
  color: var(--home-deep);
}

.page-home .time-slot-window {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--home-deep);
}

.page-home .time-slot-tags {
  font-size: 13px;
  color: var(--home-slate);
}

.page-home .home-warranty {
  background: var(--home-linen);
  padding: 48px var(--home-container-pad);
}

.page-home .home-warranty-head {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.page-home .home-warranty-head p {
  margin-left: auto;
  margin-right: auto;
}

.page-home .home-warranty-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1080px;
  margin: 30px auto 0;
}

.page-home .warranty-point {
  background: #fff;
  border-radius: var(--home-radius-lg);
  padding: 22px 20px;
  border-top: 6px solid var(--home-gold);
  box-shadow: 0 8px 20px rgba(10, 37, 64, 0.06);
}

.page-home .warranty-point:nth-child(2) {
  border-top-color: var(--home-orange);
}

.page-home .warranty-point:nth-child(3) {
  border-top-color: var(--home-success);
}

.page-home .warranty-point-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: var(--home-deep);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 12px;
}

.page-home .warranty-point h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 900;
  color: var(--home-deep);
  margin: 0 0 8px;
}

.page-home .warranty-point p {
  font-size: 14px;
  margin: 0;
}

.page-home .home-price-panel {
  max-width: 1080px;
  margin: 30px auto 0;
  background: var(--home-deep);
  border-radius: var(--home-radius-lg);
  padding: 22px 18px;
}

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

.page-home .home-price-label {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  color: var(--home-gold);
  letter-spacing: 1px;
}

.page-home .home-price-table {
  display: flex;
  flex-direction: column;
}

.page-home .home-price-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 13px 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.page-home .home-price-row-head {
  border-top: none;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.page-home .home-price-row span:nth-child(2) {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--home-gold);
}

.page-home .home-price-panel .home-inline-link {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.4);
  margin-top: 16px;
}

.page-home .home-reviews {
  background: #fff;
  padding: 48px var(--home-container-pad);
}

.page-home .home-reviews-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

.page-home .home-reviews-copy {
  max-width: 640px;
}

.page-home .home-reviews-art img {
  width: 100%;
  border-radius: var(--home-radius-lg);
}

.page-home .home-reviews-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1080px;
  margin: 28px auto 0;
}

.page-home .review-card {
  background: var(--home-linen);
  border-radius: var(--home-radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 6px 16px rgba(10, 37, 64, 0.05);
}

.page-home .review-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.page-home .review-service {
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--home-slate);
}

.page-home .review-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--home-ink);
}

.page-home .review-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 10px;
  border-top: 1px solid var(--home-line);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--home-slate);
}

.page-home .review-city {
  color: var(--home-gold);
}

.page-home .home-review-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 1080px;
  margin: 24px auto 0;
}

.page-home .home-filter-label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--home-slate);
  margin-right: 4px;
}

.page-home .home-filter-tip {
  font-size: 13px;
  color: var(--home-slate);
  margin-left: auto;
}

.page-home .home-cities {
  background: var(--home-deep);
  padding: 48px var(--home-container-pad);
  color: #fff;
}

.page-home .home-cities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}

.page-home .home-cities-head .section-subtitle {
  color: var(--home-gold);
}

.page-home .home-cities h2 {
  color: #fff;
}

.page-home .home-cities p {
  color: rgba(255, 255, 255, 0.7);
}

.page-home .home-cities-head .home-inline-link {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

.page-home .home-cities-map img {
  width: 100%;
  border-radius: var(--home-radius-lg);
}

.page-home .home-cities-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.page-home .city-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--home-gold);
  border-radius: 12px;
  padding: 14px 16px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.page-home .city-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-left-color: var(--home-orange);
}

.page-home .city-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 18px;
  color: #fff;
  min-width: 58px;
}

.page-home .city-status {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.66);
}

.page-home .reveal {
  opacity: 1;
  transform: none;
}

@media (min-width: 480px) {
  .page-home {
    --home-container-pad: 20px;
  }

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

  .page-home .home-preview-list li {
    grid-template-columns: 130px 1fr auto;
    align-items: center;
    gap: 12px;
  }

  .page-home .home-clients-row {
    grid-template-columns: repeat(5, 1fr);
  }

  .page-home .client-chip {
    padding: 18px 12px;
  }

  .page-home .time-slot-item {
    grid-template-columns: 90px 1fr;
  }

  .page-home .time-slot-tags {
    grid-column: 1 / -1;
  }

  .page-home .home-price-row {
    grid-template-columns: 1fr 180px 1fr;
    align-items: center;
  }

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

@media (min-width: 768px) {
  .page-home {
    --home-container-pad: 24px;
  }

  .page-home .home-hero {
    grid-template-columns: minmax(0, 5fr) minmax(0, 4fr);
    gap: 24px;
    padding-top: 56px;
  }

  .page-home .home-hero h1 {
    font-size: 42px;
  }

  .page-home .home-hero-visual {
    grid-column: 1 / -1;
    max-height: 480px;
  }

  .page-home .home-hero-visual img {
    height: 480px;
    object-fit: cover;
  }

  .page-home .home-login {
    padding: 64px var(--home-container-pad);
  }

  .page-home .home-login-preview {
    margin-top: 36px;
  }

  .page-home .home-clients {
    padding: 64px var(--home-container-pad);
  }

  .page-home .home-schedule {
    padding: 64px var(--home-container-pad);
  }

  .page-home .home-schedule-grid {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    gap: 32px;
  }

  .page-home .home-warranty {
    padding: 64px var(--home-container-pad);
  }

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

  .page-home .home-price-panel {
    padding: 28px 24px;
  }

  .page-home .home-reviews {
    padding: 64px var(--home-container-pad);
  }

  .page-home .home-reviews-head {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    align-items: center;
  }

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

  .page-home .home-cities {
    padding: 64px var(--home-container-pad);
  }

  .page-home .home-cities-grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 4fr);
    gap: 28px;
  }

  .page-home .home-cities-head {
    grid-column: 1 / -1;
  }

  .page-home .home-cities-list {
    grid-column: 2;
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .home-cities-map {
    grid-column: 1;
    grid-row: 2;
  }

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

@media (min-width: 1200px) {
  .page-home .home-hero {
    grid-template-columns: minmax(0, 5fr) minmax(0, 4fr) minmax(0, 3fr);
    gap: 20px;
  }

  .page-home .home-hero-visual {
    grid-column: auto;
    grid-row: auto;
    align-self: stretch;
    max-height: none;
  }

  .page-home .home-hero-visual img {
    height: 100%;
    min-height: 640px;
    object-fit: cover;
  }

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

  .page-home .home-reviews-head {
    margin-bottom: 12px;
  }

  .page-home .home-cities-grid {
    grid-template-columns: minmax(0, 2fr) minmax(0, 5fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .page-home .coordinate-entry,
  .page-home .client-chip,
  .page-home .city-item,
  .page-home .btn {
    transition: none !important;
  }

  .page-home .coordinate-entry:hover,
  .page-home .client-chip:hover,
  .page-home .btn:hover {
    transform: none !important;
  }
}
