/* Home — techno-futuristic layer (navy / steel / gold) */

.page-home [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.page-home [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

.page-home .home-adv.prod-adv {
  padding: 3rem 0 3.25rem;
}

.page-home .home-gallery.prod-gallery {
  padding: 3rem 0 3.25rem;
}

.page-home .home-adv .prod-adv__head,
.page-home .home-gallery .prod-gallery__head {
  margin-bottom: 1.75rem;
}

/* Home — production CTA band */
.page-home .home-prod {
  position: relative;
  overflow: clip;
  padding: 3.25rem 0 3.5rem;
  color: var(--white);
  background:
    radial-gradient(ellipse 46% 58% at 88% 30%, rgba(232, 185, 35, 0.2), transparent 64%),
    radial-gradient(ellipse 34% 48% at 6% 80%, rgba(30, 79, 133, 0.5), transparent 68%),
    linear-gradient(155deg, #030914 0%, #071525 40%, #0c2444 78%, #0a1a32 100%);
}

.page-home .home-prod__atmos {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.page-home .home-prod__glow {
  position: absolute;
  width: min(52vw, 460px);
  height: min(52vw, 460px);
  border-radius: 50%;
  right: -8%;
  top: -18%;
  background: radial-gradient(circle, rgba(232, 185, 35, 0.32) 0%, rgba(232, 185, 35, 0.08) 40%, transparent 70%);
  animation: home-prod-glow 11s ease-in-out infinite alternate;
}

.page-home .home-prod__glow--2 {
  right: auto;
  left: -12%;
  top: auto;
  bottom: -22%;
  width: min(48vw, 420px);
  height: min(48vw, 420px);
  background: radial-gradient(circle, rgba(30, 79, 133, 0.45) 0%, rgba(20, 58, 102, 0.12) 48%, transparent 72%);
  animation-duration: 14s;
  animation-direction: alternate-reverse;
}

.page-home .home-prod__grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(232, 185, 35, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 70% 65% at 60% 40%, #000 15%, transparent 75%);
  animation: home-prod-grid 28s linear infinite;
}

.page-home .home-prod__scan {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28%;
  left: -30%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(232, 185, 35, 0.07) 45%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(232, 185, 35, 0.06) 55%,
    transparent
  );
  animation: home-prod-scan 16s ease-in-out infinite;
}

.page-home .home-prod__ring {
  position: absolute;
  right: max(2%, calc((100% - var(--max)) / 2));
  top: 58%;
  width: min(22vw, 200px);
  aspect-ratio: 1;
  border: 1px solid rgba(232, 185, 35, 0.28);
  border-radius: 50%;
  opacity: 0.55;
  transform: translateY(-50%);
  animation: home-prod-ring 32s linear infinite;
}

.page-home .home-prod__ring::before {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.page-home .home-prod__ring--2 {
  right: auto;
  left: max(0%, calc((100% - var(--max)) / 2 - 1rem));
  top: 22%;
  width: min(14vw, 120px);
  opacity: 0.35;
  animation-duration: 40s;
  animation-direction: reverse;
}

.page-home .home-prod__bolt {
  position: absolute;
  right: 18%;
  top: 18%;
  width: 2px;
  height: 4.5rem;
  background: linear-gradient(180deg, transparent, var(--gold-400), transparent);
  opacity: 0.55;
  transform: rotate(18deg);
  box-shadow: 0 0 18px rgba(232, 185, 35, 0.45);
}

@keyframes home-prod-glow {
  from { opacity: 0.7; transform: scale(1); }
  to { opacity: 1; transform: scale(1.08); }
}

@keyframes home-prod-grid {
  to { transform: translate3d(-52px, -52px, 0); }
}

@keyframes home-prod-scan {
  0% { transform: translateX(0); opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { transform: translateX(480%); opacity: 0; }
}

@keyframes home-prod-ring {
  to { transform: translateY(-50%) rotate(360deg); }
}

.page-home .home-prod__wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.95fr);
  gap: 2rem 3rem;
  align-items: center;
}

.page-home .home-prod__copy .section__eyebrow {
  color: var(--gold-400);
}

.page-home .home-prod__title {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
}

.page-home .home-prod__title::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 3px;
  margin-top: 0.85rem;
  background: linear-gradient(90deg, var(--gold-400), rgba(232, 185, 35, 0.15));
}

.page-home .home-prod__lead {
  margin: 1rem 0 0;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

.page-home .home-prod__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.6rem;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--navy-950);
  background: var(--gold-400);
  border: 1px solid transparent;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.page-home .home-prod__btn::after {
  content: "→";
  transition: transform 0.2s;
}

.page-home .home-prod__btn:hover {
  background: var(--gold-300);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  color: var(--navy-950);
}

.page-home .home-prod__btn:hover::after {
  transform: translateX(4px);
}

.page-home .home-prod__viz {
  position: relative;
  justify-self: stretch;
  align-self: center;
}

.page-home .home-prod__deck {
  position: relative;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.page-home .home-prod__deck-glow {
  position: absolute;
  inset: 8% 4% 12%;
  background:
    radial-gradient(ellipse at 55% 45%, rgba(232, 185, 35, 0.22), transparent 62%),
    radial-gradient(ellipse at 30% 70%, rgba(30, 79, 133, 0.28), transparent 65%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}

.page-home .home-prod__nest {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 440 / 300;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.35));
}

.page-home .home-prod__nest-cut {
  stroke-dasharray: 18 82;
  stroke-dashoffset: 100;
  animation: home-prod-cut 4.8s linear infinite;
  filter: drop-shadow(0 0 6px rgba(232, 185, 35, 0.55));
}

.page-home .home-prod__nest-head {
  animation: home-prod-beam 4.8s linear infinite;
}

@keyframes home-prod-cut {
  to { stroke-dashoffset: 0; }
}

@keyframes home-prod-beam {
  0% { transform: translateX(0); }
  100% { transform: translateX(360px); }
}

/* Home gallery — denser, autoplay-friendly */
.page-home .home-gallery .prod-gallery__viewport {
  min-height: clamp(180px, 22vw, 250px);
  --gallery-visible: 5;
}

.page-home .home-gallery .prod-gallery__row {
  gap: 0.75rem;
}

.page-home .home-gallery .prod-gallery__card {
  aspect-ratio: 4 / 5;
  flex-basis: calc((100cqi - (var(--gallery-visible) - 1) * 0.75rem) / var(--gallery-visible));
  width: calc((100cqi - (var(--gallery-visible) - 1) * 0.75rem) / var(--gallery-visible));
}

.page-home .home-gallery .prod-gallery__arrow {
  width: 2.25rem;
  height: 2.25rem;
}

.page-home .home-gallery .prod-gallery__meta {
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .page-home .home-prod__wrap {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .page-home .home-prod__viz {
    max-width: 28rem;
  }

  .page-home .home-prod__ring,
  .page-home .home-prod__bolt {
    opacity: 0.25;
  }
}

@media (max-width: 640px) {
  .page-home .home-prod {
    padding: 2.75rem 0 3rem;
  }

  .page-home .home-prod__title {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .page-home .home-gallery .prod-gallery__viewport {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-prod__glow,
  .page-home .home-prod__grid,
  .page-home .home-prod__scan,
  .page-home .home-prod__ring,
  .page-home .home-prod__nest-cut,
  .page-home .home-prod__nest-head {
    animation: none;
  }

  .page-home .home-prod__nest-cut {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }
}

.page-home .home-adv [data-stagger] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease);
  transition-delay: calc(var(--stagger, 0) * 70ms);
}

.page-home .home-adv.is-revealed [data-stagger],
.page-home .home-adv[data-reveal].is-revealed [data-stagger] {
  opacity: 1;
  transform: none;
}

/* —— Hero: deeper tech field —— */
.page-home .hero {
  background:
    radial-gradient(ellipse 55% 40% at 78% 28%, rgba(232, 185, 35, 0.16), transparent 62%),
    radial-gradient(ellipse 42% 48% at 12% 70%, rgba(30, 79, 133, 0.55), transparent 68%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(7, 21, 37, 0.9), transparent 55%),
    linear-gradient(165deg, #030914 0%, #071525 32%, #0b1f3a 58%, #123458 100%);
}

.page-home .hero__glow--cool {
  left: max(-6rem, calc((100% - var(--max)) / 2 - 8rem));
  right: auto;
  top: 42%;
  width: min(36rem, 55vw);
  height: min(36rem, 55vw);
  background: radial-gradient(
    circle,
    rgba(30, 79, 133, 0.55) 0%,
    rgba(20, 58, 102, 0.22) 40%,
    transparent 70%
  );
  animation: heroGlow 11s ease-in-out infinite alternate-reverse;
  filter: blur(4px);
}

.page-home .hero__grid {
  background-image:
    linear-gradient(rgba(232, 185, 35, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 78% 70% at 70% 40%, black 12%, transparent 75%);
  opacity: 0.95;
}

.page-home .hero__scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 3px,
    rgba(255, 255, 255, 0.012) 3px,
    rgba(255, 255, 255, 0.012) 4px
  );
  opacity: 0.55;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.page-home .hero__horizon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(232, 185, 35, 0.15) 18%,
    rgba(232, 185, 35, 0.55) 50%,
    rgba(232, 185, 35, 0.15) 82%,
    transparent 100%
  );
  box-shadow: 0 0 24px rgba(232, 185, 35, 0.35);
  opacity: 0.85;
}

.page-home .hero__brand {
  text-shadow:
    0 0 40px rgba(232, 185, 35, 0.25),
    0 0 80px rgba(30, 79, 133, 0.35);
}

.page-home .hero__brand span {
  text-shadow: 0 0 28px rgba(232, 185, 35, 0.55);
}

.page-home .hero__content {
  border-left-color: rgba(232, 185, 35, 0.9);
  box-shadow:
    -18px 0 40px -28px rgba(232, 185, 35, 0.55),
    inset 2px 0 0 rgba(232, 185, 35, 0.15);
}

.page-home .hero__title {
  max-width: 20ch;
}

.page-home .hero__metrics {
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(7, 21, 37, 0.15), rgba(7, 21, 37, 0.55));
  border-top-color: rgba(232, 185, 35, 0.18);
}

.page-home .hero__metric-value {
  letter-spacing: 0.04em;
}

/* Intentional motion (2–3 presence motions) */
.page-home .hero__stage {
  animation: heroStageIn 1.15s var(--ease) both;
}

.page-home .hero__stage.is-ready::before {
  animation: heroGlowPulse 4.5s ease-in-out infinite;
}

@keyframes heroStageIn {
  from {
    opacity: 0;
    transform: translateY(calc(-50% + 22px)) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

.page-home .hero__orbit-ring,
.page-home .hero__orbit-ring--2 {
  animation: orbitSpin 28s linear infinite;
}

.page-home .hero__orbit-ring--2 {
  animation-duration: 40s;
  animation-direction: reverse;
}

.page-home .hero__orbit-dot,
.page-home .hero__orbit-dot--2,
.page-home .hero__orbit-dot--3 {
  animation: orbitPulse 3.5s ease-in-out infinite;
}

.page-home .hero__orbit-dot--2 {
  animation-delay: 1.1s;
}

.page-home .hero__orbit-dot--3 {
  animation-delay: 2s;
}

/* —— Catalog band: steel tech —— */
.page-home .home-cat {
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(232, 185, 35, 0.08), transparent 55%),
    linear-gradient(180deg, #0e1c30 0%, #142844 45%, #1a3354 100%);
  color: var(--white);
  overflow: hidden;
}

.page-home .home-cat::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 90%);
}

.page-home .home-cat > .container {
  position: relative;
  z-index: 1;
}

.page-home .home-cat__eyebrow,
.page-home .home-cat .section__eyebrow {
  color: var(--gold-400);
}

.page-home .home-cat__title {
  color: var(--white);
}

.page-home .home-cat__all {
  color: var(--navy-950);
  background: var(--gold-400);
  border: none;
}

.page-home .home-cat__all:hover {
  color: var(--navy-950);
  background: var(--gold-300);
  border: none;
}

.page-home .home-cat__arrow {
  background: rgba(7, 21, 37, 0.65);
  border-color: rgba(232, 185, 35, 0.35);
  color: var(--gold-300);
}

.page-home .home-cat__arrow:hover:not(:disabled) {
  background: var(--gold-400);
  color: var(--navy-950);
  border-color: var(--gold-400);
}

.page-home .home-cat__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.page-home .home-cat__card:hover,
.page-home .home-cat__card:focus-visible {
  border-color: rgba(232, 185, 35, 0.55);
  background: rgba(255, 255, 255, 0.07);
}

.page-home .home-cat__name {
  color: var(--white);
}

.page-home .home-cat__teaser {
  color: rgba(255, 255, 255, 0.68);
}

.page-home .home-cat__codes {
  color: rgba(232, 185, 35, 0.85);
}

.page-home .home-cat__more {
  color: var(--gold-300);
}

.page-home .home-cat__idx {
  color: rgba(255, 255, 255, 0.2);
}

.page-home .home-cat__card:hover .home-cat__idx,
.page-home .home-cat__card:focus-visible .home-cat__idx {
  color: rgba(232, 185, 35, 0.55);
}

.page-home .home-cat__body {
  background: transparent;
}

.page-home .home-cat__card:hover .home-cat__body,
.page-home .home-cat__card:focus-visible .home-cat__body {
  background: rgba(7, 21, 37, 0.35);
}

.page-home .home-cat__dot {
  background: rgba(255, 255, 255, 0.25);
}

.page-home .home-cat__dot.is-active {
  background: var(--gold-400);
  width: 1.6rem;
}

/* —— Custom section: stronger wireframe pulse —— */
.page-home .home-custom {
  background:
    radial-gradient(ellipse 48% 60% at 82% 45%, rgba(232, 185, 35, 0.28), transparent 60%),
    radial-gradient(ellipse 30rem 34rem at 6% 85%, rgba(30, 79, 133, 0.4), transparent 70%),
    linear-gradient(150deg, #020810 0%, #071525 48%, #0d2848 100%);
}

.page-home .home-custom__art-stage {
  animation: customArtFloat 7s ease-in-out infinite;
}

.page-home .home-custom__stage.is-ready canvas {
  animation: customStageIn 0.9s var(--ease) both;
}

.page-home .home-custom__btn {
  box-shadow: 0 0 0 1px rgba(232, 185, 35, 0.35), 0 12px 36px rgba(232, 185, 35, 0.2);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s var(--ease);
}

.page-home .home-custom__btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 0 1px rgba(232, 185, 35, 0.55), 0 16px 44px rgba(232, 185, 35, 0.32);
}

.page-home .home-custom__path span {
  transition: color 0.35s var(--ease), text-shadow 0.35s var(--ease);
}

.page-home .home-custom:hover .home-custom__path span {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 0 18px rgba(232, 185, 35, 0.35);
}

@keyframes customArtFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes customStageIn {
  from {
    opacity: 0;
    filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.45)) blur(2px);
    transform: scale(0.96) translateY(12px);
  }
  to {
    opacity: 1;
    filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.45));
    transform: none;
  }
}

.page-home .home-custom__lead .home-mark {
  background-image: linear-gradient(
    transparent 62%,
    rgba(30, 79, 133, 0) 62%,
    rgba(30, 79, 133, 0) 100%
  );
  background-repeat: no-repeat;
  background-size: 100% 100%;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  transition: background-image 0.7s var(--ease);
  border-radius: 2px;
  padding: 0 0.06em;
}

.page-home [data-reveal].is-revealed .home-custom__lead .home-mark,
.page-home .home-custom__lead .home-mark.is-lit {
  background-image: linear-gradient(
    transparent 62%,
    rgba(232, 185, 35, 0.42) 62%,
    rgba(232, 185, 35, 0.42) 100%
  );
}

/* —— Flow: darker tech strip —— */
.page-home .home-flow {
  background:
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(30, 79, 133, 0.12), transparent 55%),
    linear-gradient(180deg, #e8eef5 0%, #f3f6fa 100%);
}

.page-home .home-flow__num {
  color: rgba(20, 58, 102, 0.2);
  font-variant-numeric: tabular-nums;
}

.page-home .home-flow__item {
  position: relative;
}

.page-home .home-flow__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-400), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.page-home .home-flow__item:hover::after {
  opacity: 1;
}

@media (max-width: 900px) {
  .page-home .hero__horizon {
    bottom: 28%;
    opacity: 0.55;
  }

  .page-home .hero__glow--cool {
    opacity: 0.7;
  }
}

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

  .page-home .home-adv [data-stagger] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-home .hero__stage,
  .page-home .hero__orbit-ring,
  .page-home .hero__orbit-ring--2,
  .page-home .hero__orbit-dot,
  .page-home .hero__orbit-dot--2,
  .page-home .hero__orbit-dot--3,
  .page-home .hero__glow,
  .page-home .hero__glow--cool,
  .page-home .hero__grid,
  .page-home .hero__lines span,
  .page-home .home-custom__glow,
  .page-home .home-custom__grid,
  .page-home .home-custom__ring,
  .page-home .home-custom__ring--2,
  .page-home .home-custom__art-stage,
  .page-home .home-custom__stage.is-ready canvas,
  .home-custom__stage::before {
    animation: none !important;
  }

  .page-home .home-custom__lead .home-mark {
    background-image: linear-gradient(
      transparent 62%,
      rgba(232, 185, 35, 0.42) 62%,
      rgba(232, 185, 35, 0.42) 100%
    );
    transition: none;
  }
}

/* Home — about (dark) + reviews (light) */
.page-home .home-trust {
  background: transparent;
}

.page-home .home-about {
  position: relative;
  overflow: clip;
  padding: 2.75rem 0;
  color: var(--white);
  background:
    radial-gradient(ellipse 40% 70% at 88% 50%, rgba(232, 185, 35, 0.14), transparent 60%),
    radial-gradient(ellipse 34% 60% at 6% 80%, rgba(30, 79, 133, 0.35), transparent 65%),
    linear-gradient(155deg, #030914 0%, #071525 45%, #0a1f3a 100%);
  border: none;
}

.page-home .home-about__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
}

.page-home .home-about__copy {
  min-width: 0;
  max-width: 44rem;
  padding-left: 1.15rem;
  border-left: 3px solid var(--gold-400);
}

.page-home .home-about__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--white);
}

.page-home .home-about__lead {
  margin: 0.55rem 0 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

.page-home .home-about__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--navy-950);
  background: var(--gold-400);
  transition: background 0.2s, transform 0.2s;
}

.page-home .home-about__btn::after {
  content: "→";
  transition: transform 0.2s;
}

.page-home .home-about__btn:hover {
  background: var(--gold-300);
  color: var(--navy-950);
  transform: translateY(-1px);
}

.page-home .home-about__btn:hover::after {
  transform: translateX(3px);
}

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

.page-home .home-reviews.about-reviews {
  padding: 3rem 0 3.25rem;
  background: var(--white);
}

.page-home .home-reviews__head {
  text-align: center;
  margin: 0 auto 1.75rem;
  max-width: 38rem;
}

@media (max-width: 720px) {
  .page-home .home-about__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-home .home-about__btn {
    align-self: stretch;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .page-home .home-about {
    padding: 2.35rem 0;
  }

  .page-home .home-reviews.about-reviews {
    padding: 2.5rem 0 2.75rem;
  }
}
