/* Homepage — modular, minimal, CLS-safe */
.hp {
  --hp-ink: #1a1c1e;
  --hp-muted: #5f6368;
  --hp-line: #e6e4df;
  --hp-paper: #f6f5f2;
  --hp-card: #ffffff;
  --hp-navy: #26498A;
  --hp-red: #EE2128;
  --hp-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --hp-sans: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --hp-display: "Space Grotesk", Inter, sans-serif;
  color: var(--hp-ink);
  background: var(--hp-card);
  font-family: var(--hp-sans);
  overflow-x: hidden;
}

.hp img {
  max-width: 100%;
  height: auto;
  display: block;
}
.hp img.is-broken { display: none !important; }
.hp .hp-media-fallback {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #eceae5;
  color: var(--hp-muted);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}
.hp .hp-media-fallback.is-on { display: flex; }

.hp-section {
  padding: clamp(56px, 8vw, 96px) 0;
}
.hp-section--tight { padding: clamp(36px, 5vw, 56px) 0; }
.hp-section--soft { background: var(--hp-paper); }
.hp-section--plain { background: var(--hp-card); }

.hp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--hp-navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hp-h2 {
  font-family: var(--hp-display);
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--hp-ink);
  margin: 10px 0 0;
}
.hp-lead {
  margin: 12px 0 0;
  max-width: 34rem;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--hp-muted);
}
.hp-section-head { margin-bottom: clamp(24px, 4vw, 40px); }
.hp-section-head--center { text-align: center; }
.hp-section-head--center .hp-lead { margin-left: auto; margin-right: auto; }
.hp-section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.hp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--hp-navy);
  text-decoration: none;
  transition: gap 0.25s var(--hp-ease), color 0.25s var(--hp-ease);
}
.hp-link:hover { gap: 10px; color: var(--hp-red); }
a.hp-svc, a.hp-bento__card, a.hp-step, a.hp-feature {
  text-decoration: none;
  color: inherit;
}
a.hp-bento__card:focus-visible,
a.hp-svc:focus-visible,
a.hp-step:focus-visible,
.hp-btn:focus-visible {
  outline: 2px solid var(--hp-navy);
  outline-offset: 3px;
}

.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 8px;
  font-family: var(--hp-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s var(--hp-ease), background 0.25s var(--hp-ease), border-color 0.25s var(--hp-ease), color 0.25s var(--hp-ease);
}
.hp-btn--primary {
  background: var(--hp-red);
  color: #fff;
}
.hp-btn--primary:hover { color: #fff; background: #d51d23; transform: translateY(-1px); }
.hp-btn--ghost {
  background: transparent;
  color: var(--hp-ink);
  border-color: var(--hp-line);
}
.hp-btn--ghost:hover { border-color: var(--hp-ink); color: var(--hp-ink); }
.hp-btn--light {
  background: #fff;
  color: var(--hp-ink);
}
.hp-btn--light:hover { color: var(--hp-ink); transform: translateY(-1px); }
.hp-hero .hp-btn--ghost {
  color: var(--hp-ink);
  border-color: #cfcbc3;
}

/* Hero */
.hp-hero {
  background: var(--hp-paper);
  padding: clamp(28px, 5vw, 56px) 0 clamp(32px, 5vw, 48px);
}
.hp-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.hp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--hp-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.hp-hero__badge i { color: var(--hp-red); }
.hp-hero__title {
  font-family: var(--hp-display);
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
  color: var(--hp-ink);
  text-wrap: balance;
}
.hp-hero__title .hp-accent { color: var(--hp-navy); }
.hp-hero__copy {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 34rem;
  margin: 0 0 24px;
  color: var(--hp-muted);
}
.hp-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.hp-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding-top: 18px;
  border-top: 1px solid var(--hp-line);
}
.hp-hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--hp-muted);
  font-weight: 500;
}
.hp-hero__trust i { color: var(--hp-navy); }
.hp-hero__now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 8px;
  color: var(--hp-ink);
  font-size: 0.86rem;
  font-weight: 600;
}
.hp-hero .hero-slider__dots {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  z-index: 1;
  margin-top: 8px;
}
.hp-hero .hero-slider__dot {
  position: relative;
  overflow: hidden;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #c9c5bd;
  transform: none;
  transition: width 0.3s var(--hp-ease), background 0.25s var(--hp-ease);
}
.hp-hero .hero-slider__dot.is-active {
  width: 28px;
  background: #d8d4cc;
  transform: none;
}
.hp-hero .hero-slider__dot-fill {
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--hp-red);
  border-radius: inherit;
}
.hp-hero .hero-slider__dot.is-active .hero-slider__dot-fill {
  animation: hpDotFill 4.5s linear forwards;
}
@keyframes hpDotFill { to { transform: scaleX(1); } }

.hp-collage {
  position: relative;
  aspect-ratio: 5 / 4;
  width: 100%;
  background: #eceae5;
  border-radius: 16px;
  overflow: hidden;
}
.hp-collage .hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s var(--hp-ease), visibility 0.7s var(--hp-ease);
}
.hp-collage .hero-slide.is-active,
.hp-collage .hero-slide[data-stack="0"] {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.hp-collage .hero-slide img,
.hp-collage .hero-slide .hp-media-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hp-collage figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 3;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--hp-ink);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.35s var(--hp-ease);
}
.hp-collage .hero-slide.is-active figcaption {
  opacity: 1;
}

.hp-stats {
  margin-top: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.hp-stat {
  position: relative;
  padding: 22px 20px 20px;
  border-radius: 16px;
  background: var(--hp-navy);
  color: #fff;
  min-height: 100%;
}
.hp-stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.95rem;
}
.hp-stat--live .hp-stat__icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.hp-stat--live .hp-stat__icon i {
  animation: hpStatPulse 1.8s ease-in-out infinite;
}
.hp-stat__num {
  font-family: var(--hp-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
}
.hp-stat__label {
  margin-top: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
}
.hp-stat__hint {
  margin: 6px 0 0;
  max-width: 16rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}
.hp-stat__bar {
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.7s var(--hp-ease);
}
.hp-stat--live .hp-stat__bar { background: #fff; }
.hp-stats.is-in .hp-stat__bar { transform: scaleX(1); }
.hp-stats.is-in .hp-stat:nth-child(2) .hp-stat__bar { transition-delay: 0.18s; }
.hp-stats.is-in .hp-stat:nth-child(3) .hp-stat__bar { transition-delay: 0.28s; }
.hp-stats.is-in .hp-stat:nth-child(4) .hp-stat__bar { transition-delay: 0.38s; }
@keyframes hpStatPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.7; }
}

/* Trusted clients — shuffled card deck */
.hp-trust { overflow: hidden; }
.hp-trust-deck {
  margin-top: 8px;
  padding: 8px 4vw 12px;
}
.hp-trust-deck__stage {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  min-height: 230px;
  perspective: 1400px;
}
.hp-trust-card {
  position: relative;
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  aspect-ratio: 5 / 7;
  min-height: 196px;
  perspective: 900px;
  cursor: default;
  transition: transform 0.28s var(--hp-ease);
}
.hp-trust-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateY(180deg);
  transition: transform 0.45s var(--hp-ease);
  border-radius: 16px;
}
.hp-trust-deck.is-stacked .hp-trust-card:not(.is-flipped) .hp-trust-card__inner {
  transform: rotateY(0deg);
}
.hp-trust-card.is-flipped .hp-trust-card__inner,
.hp-trust-deck.is-static .hp-trust-card__inner {
  transform: rotateY(180deg);
}
.hp-trust-card__back,
.hp-trust-card__front {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 18px 32px -20px rgba(26, 28, 30, 0.45);
  overflow: hidden;
}
.hp-trust-card__back {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.28), transparent 36%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 8px, transparent 8px 16px),
    var(--hp-navy);
  color: #fff;
}
.hp-trust-card__pip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78%;
  padding: 0.45em 0.7em;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  font-family: var(--hp-display);
  font-size: clamp(0.78rem, 1.8vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: lowercase;
}
.hp-trust-card__front {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--hp-navy) 16%, #fff) 0%, #fff 42%);
  border: 3px solid var(--hp-navy);
  transform: rotateY(180deg);
}
.hp-trust-card__plate {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
}
.hp-trust-card__plate img {
  max-width: 86%;
  max-height: 52%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.hp-trust-card .hp-trust__name {
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: var(--hp-ink);
  line-height: 1.3;
}
.hp-trust-card .hp-media-fallback {
  border-radius: 12px;
  background: color-mix(in srgb, var(--hp-navy) 8%, #fff);
  color: var(--hp-ink);
}
.hp-trust-card.is-dealt:hover {
  z-index: 3;
  transform: translateY(-10px) rotate(-2deg) scale(1.04);
}
.hp-trust-deck.is-paused .hp-trust-card {
  transition-duration: 0.14s;
}
@media (max-width: 991.98px) {
  .hp-trust-deck__stage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 460px;
  }
}
@media (max-width: 575.98px) {
  .hp-trust-deck__stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 640px;
  }
  .hp-trust-card { min-height: 176px; }
}

.hp-bento {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-auto-rows: minmax(200px, 24vw);
  gap: 14px;
}
.hp-bento__card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: #eceae5;
  isolation: isolate;
  min-height: 200px;
}
.hp-bento__card:first-child {
  grid-row: span 2;
  min-height: 414px;
}
.hp-bento__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.55s var(--hp-ease);
}
.hp-bento__card:first-child img { aspect-ratio: 3 / 4; }
.hp-bento__card:hover img { transform: scale(1.04); }
.hp-bento__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(26, 28, 30, 0.78) 100%);
  z-index: 1;
}
.hp-bento__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 20px;
  color: #fff;
}
.hp-bento__body h3 {
  font-family: var(--hp-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: #fff;
}
.hp-bento__body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}
.hp-bento__icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  background: var(--hp-red);
  color: #fff;
  margin-bottom: 10px;
}

.hp-grid { display: grid; gap: 16px; }
.hp-grid--3 { grid-template-columns: repeat(3, 1fr); }
.hp-grid--4 { grid-template-columns: repeat(4, 1fr); }
.hp-grid--2 { grid-template-columns: repeat(2, 1fr); }

.hp-svc {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: var(--hp-card);
  border: 1px solid var(--hp-line);
  border-radius: 14px;
  transition: transform 0.3s var(--hp-ease), border-color 0.3s var(--hp-ease);
}
.hp-svc:hover { transform: translateY(-3px); border-color: #cfcbc3; }
.hp-svc__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eceae5;
}
.hp-svc__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--hp-ease);
}
.hp-svc:hover .hp-svc__media img { transform: scale(1.04); }
.hp-svc__body { display: flex; flex-direction: column; flex: 1; padding: 18px 18px 20px; }
.hp-svc h3 {
  font-family: var(--hp-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--hp-ink);
  margin: 0 0 8px;
}
.hp-svc p { font-size: 0.9rem; line-height: 1.6; color: var(--hp-muted); margin: 0 0 14px; }
.hp-svc__link { margin-top: auto; }

.hp-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  border-radius: 16px;
  background: var(--hp-navy);
  color: #fff;
  min-height: 340px;
}
.hp-feature__media {
  position: relative;
  min-height: 260px;
  aspect-ratio: 4 / 3;
  background: #1c3970;
}
.hp-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hp-feature__copy {
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hp-feature__copy .hp-eyebrow { color: #d0d4dc; }
.hp-feature__copy h3 {
  font-family: var(--hp-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 600;
  color: #fff;
  margin: 10px 0 12px;
}
.hp-feature__copy p { color: rgba(255, 255, 255, 0.72); line-height: 1.7; margin: 0 0 22px; }

.hp-why {
  background: var(--hp-navy);
  color: #fff;
}
.hp-why .hp-h2 { color: #fff; }
.hp-why .hp-lead { color: rgba(255, 255, 255, 0.72); max-width: 28rem; }
.hp-why .hp-eyebrow { color: #c5d0e4; }
.hp-why .hp-btn--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.28); }
.hp-why .hp-btn--ghost:hover { border-color: #fff; color: #fff; }
.hp-why__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}
.hp-why__intro .hp-btn { margin-top: 28px; }
.hp-why__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hp-why__item {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: 8px 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.hp-why__item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.hp-why__num {
  font-family: var(--hp-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  padding-top: 3px;
}
.hp-why__body h3 {
  font-family: var(--hp-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
}
.hp-why__body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.hp-step {
  padding: 22px;
  border-radius: 14px;
  background: var(--hp-card);
  border: 1px solid var(--hp-line);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--hp-ease), border-color 0.3s var(--hp-ease);
}
.hp-step:hover { transform: translateY(-3px); border-color: #cfcbc3; }
.hp-step .hp-link { margin-top: auto; padding-top: 14px; }
.hp-step__num {
  font-family: var(--hp-display);
  font-weight: 600;
  color: var(--hp-red);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.hp-step h4 { font-size: 1rem; font-weight: 600; color: var(--hp-ink); margin: 0 0 6px; }
.hp-step p { font-size: 0.9rem; line-height: 1.6; color: var(--hp-muted); margin: 0; }

.hp-testimonial {
  margin: 0;
  padding: 24px;
  border-radius: 14px;
  background: var(--hp-card);
  border: 1px solid var(--hp-line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}
.hp-testimonial__stars { color: #f5b301; letter-spacing: 2px; font-size: 0.78rem; }
.hp-testimonial p { font-size: 1rem; line-height: 1.65; color: var(--hp-ink); margin: 0; flex: 1; }
.hp-testimonial footer { display: flex; flex-direction: column; gap: 2px; }
.hp-testimonial footer span { font-size: 0.82rem; color: var(--hp-muted); }

.hp-cta-band {
  border-radius: 16px;
  padding: clamp(32px, 5vw, 52px);
  background: linear-gradient(135deg, #2f5aa8 0%, var(--hp-navy) 55%, #1c3970 100%);
  color: #fff;
}
.hp-cta-band h2 {
  font-family: var(--hp-display);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  color: #fff;
}
.hp-cta-band p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 32rem;
  margin: 0;
}
.hp-cta-band__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hp-cta-band .hp-btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.hp-cta-band .hp-btn--ghost:hover {
  border-color: #fff;
  color: #fff;
}

.hp-areas__pills { display: flex; flex-wrap: wrap; gap: 8px; }
.hp-areas__pills span {
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.84rem;
  background: var(--hp-card);
  border: 1px solid var(--hp-line);
  color: var(--hp-ink);
}

.hp-credit {
  margin: 16px 0 0;
  font-size: 0.72rem;
  color: var(--hp-muted);
}

@media (max-width: 991.98px) {
  .hp-hero__grid { grid-template-columns: 1fr; }
  .hp-collage { aspect-ratio: 16 / 10; }
  .hp-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .hp-bento { grid-template-columns: 1fr 1fr; grid-auto-rows: minmax(190px, 30vw); }
  .hp-bento__card:first-child { grid-row: auto; grid-column: 1 / -1; min-height: 240px; }
  .hp-feature { grid-template-columns: 1fr; }
  .hp-feature__media { aspect-ratio: 16 / 9; min-height: 0; }
  .hp-why__layout { grid-template-columns: 1fr; gap: 28px; }
  .hp-grid--3, .hp-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
  .hp-bento, .hp-grid--2, .hp-grid--3, .hp-grid--4 { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .hp *,
  .hp *::before,
  .hp *::after {
    animation: none !important;
    transition: none !important;
  }
}
