/**
 * OMEGA homepage — industrial catalog surface
 * Dense, ruled, brand-forward. Anti-SaaS / anti-empty-template.
 */

body[data-page="home"] {
  --home-ink: #12151a;
  --home-steel: #2a3038;
  --home-panel: #eceff2;
  --home-rule: #d4d9df;
  --home-muted: #5c6570;
  --home-accent: #e85d04;
  --font-display: "Barlow Condensed", "IBM Plex Sans", sans-serif;
  --font-body: "IBM Plex Sans", "DM Sans", sans-serif;
  background:
    linear-gradient(180deg, #f3f5f7 0%, #ffffff 28%, #ffffff 100%);
  color: var(--home-ink);
}

body[data-page="home"] .section__title,
body[data-page="home"] .hero__title,
body[data-page="home"] .promo-banner__title,
body[data-page="home"] .b2b-cta__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-wrap: balance;
}

/* ── Full-bleed industrial hero ───────────────────────────── */

body[data-page="home"] .hero {
  position: relative;
  min-height: min(78vh, 42rem);
  display: grid;
  align-items: stretch;
  border-bottom: 0;
  background: var(--home-ink);
  overflow: hidden;
  isolation: isolate;
}

body[data-page="home"] .hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

body[data-page="home"] .hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  transform: scale(1.02);
  filter: contrast(1.05) saturate(0.92);
}

body[data-page="home"] .hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(12, 14, 18, 0.88) 0%, rgba(12, 14, 18, 0.72) 36%, rgba(12, 14, 18, 0.28) 66%, rgba(12, 14, 18, 0.12) 100%),
    linear-gradient(0deg, rgba(12, 14, 18, 0.45) 0%, transparent 48%);
  pointer-events: none;
}

body[data-page="home"] .hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: end;
  gap: 0;
  min-height: inherit;
  padding-block: clamp(3.5rem, 9vh, 6.5rem) clamp(2.5rem, 6vh, 4rem);
}

body[data-page="home"] .hero__content {
  max-width: 38rem;
  color: #fff;
  animation: home-rise 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

body[data-page="home"] .hero__brand {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

body[data-page="home"] .hero__brand span {
  display: block;
  font-size: 0.34em;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffb07a;
  margin-top: 0.35rem;
}

body[data-page="home"] .hero__title {
  margin: 0 0 0.9rem;
  max-width: 16ch;
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.94);
}

body[data-page="home"] .hero__text {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

body[data-page="home"] .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

body[data-page="home"] .hero__actions .btn--primary {
  background: var(--home-accent);
  border-color: var(--home-accent);
  color: #fff;
  min-height: 3rem;
  padding-inline: 1.25rem;
  font-weight: 700;
}

body[data-page="home"] .hero__actions .btn--primary:hover {
  background: #cf5203;
  border-color: #cf5203;
}

body[data-page="home"] .hero__actions .btn--ghost {
  min-height: 3rem;
  padding-inline: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  font-weight: 600;
}

body[data-page="home"] .hero__actions .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
}

body[data-page="home"] .hero__media {
  display: none;
}

@keyframes home-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .hero__content {
    animation: none;
  }
}

/* ── Proof / trust rail ───────────────────────────────────── */

body[data-page="home"] .benefits-strip {
  background: #fff;
  border-bottom: 1px solid var(--home-rule);
  padding: 0;
}

body[data-page="home"] .benefits-strip__grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
}

body[data-page="home"] .benefit {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 0.85rem !important;
  align-items: start;
  padding: 1.15rem 1.1rem;
  border-right: 1px solid var(--home-rule);
  min-height: 5.5rem;
}

body[data-page="home"] .benefit:last-child {
  border-right: 0;
}

body[data-page="home"] .benefit__index {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--home-accent);
  line-height: 1;
  padding-top: 0.1rem;
}

body[data-page="home"] .benefit__title {
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

body[data-page="home"] .benefit__text {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--home-muted);
  line-height: 1.4;
}

/* ── Sections ─────────────────────────────────────────────── */

body[data-page="home"] .section {
  padding-block: clamp(2.25rem, 4.5vw, 3.5rem);
}

body[data-page="home"] .section--surface {
  background: #f4f6f8;
  border-block: 1px solid var(--home-rule);
}

body[data-page="home"] .section__header {
  margin-bottom: 1.35rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid var(--home-ink);
  display: grid;
  gap: 0.35rem;
}

body[data-page="home"] .section__header--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

body[data-page="home"] .section__kicker {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--home-muted);
}

body[data-page="home"] .section__title {
  margin: 0;
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

body[data-page="home"] .section__text {
  margin: 0;
  color: var(--home-muted);
  max-width: 42rem;
  font-size: 0.95rem;
}

body[data-page="home"] .text-link {
  font-weight: 700;
  color: var(--home-ink);
  text-decoration: none;
  border-bottom: 2px solid var(--home-accent);
  padding-bottom: 0.1rem;
  white-space: nowrap;
}

body[data-page="home"] .text-link:hover {
  color: var(--home-accent);
}

/* Category browse — image-led tiles */
body[data-page="home"] .category-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0.9rem !important;
  border: 0;
  background: transparent;
}

body[data-page="home"] .category-card,
body[data-page="home"] .category-card--stack {
  background: #fff !important;
  border: 1px solid var(--home-rule) !important;
  border-radius: 10px !important;
  box-shadow: 0 1px 0 rgba(18, 21, 26, 0.03) !important;
  outline: 0;
  overflow: hidden;
  transition: border-color 160ms ease-out, box-shadow 160ms ease-out, transform 160ms ease-out;
}

body[data-page="home"] .category-card:hover {
  background: #fff !important;
  border-color: #c5ccd4 !important;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(18, 21, 26, 0.08) !important;
}

body[data-page="home"] .category-grid > .category-card--stack:nth-child(1),
body[data-page="home"] .category-grid > .category-card--stack:nth-child(2) {
  border-color: #d8dde3 !important;
  box-shadow: 0 8px 22px rgba(18, 21, 26, 0.06) !important;
}

body[data-page="home"] .category-grid > .category-card--stack:nth-child(1)::before,
body[data-page="home"] .category-grid > .category-card--stack:nth-child(2)::before {
  content: "";
  display: block;
  height: 3px;
  background: var(--home-accent);
}

body[data-page="home"] .category-card--stack .category-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  text-decoration: none;
  color: inherit;
}

body[data-page="home"] .category-card--stack .category-card__thumb {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 50% 45%, #f7f8fa 0%, #e7ebf0 72%);
  border: 0;
  overflow: hidden;
  flex-shrink: 0;
}

body[data-page="home"] .category-card--stack .category-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(18, 21, 26, 0.04) 100%);
  pointer-events: none;
}

body[data-page="home"] .category-card--stack .category-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 1rem;
  /* Soften mismatched packshot plates into one panel */
  mix-blend-mode: multiply;
  filter: contrast(1.02) saturate(0.95);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

body[data-page="home"] .category-card--stack:hover .category-card__thumb img {
  transform: scale(1.05);
}

body[data-page="home"] .category-card--stack .category-card__body {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.25rem 0.65rem;
  align-items: center;
  padding: 0.95rem 1rem 1.05rem;
  min-height: auto;
  border-top: 1px solid #eef1f4;
}

body[data-page="home"] .category-card--stack .category-card__index {
  display: none;
}

body[data-page="home"] .category-card--stack .category-card__title {
  margin: 0;
  grid-column: 1;
  grid-row: 1;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

body[data-page="home"] .category-card--stack .category-card__count {
  margin: 0;
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--home-muted);
}

body[data-page="home"] .category-card--stack .category-card__count strong {
  color: var(--home-ink);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

body[data-page="home"] .category-card--stack .category-card__arrow {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f5f7;
  color: var(--home-ink);
  opacity: 1;
  transition: background-color 140ms ease-out, color 140ms ease-out, transform 140ms ease-out;
}

body[data-page="home"] .category-card--stack .category-card__arrow svg {
  width: 1rem;
  height: 1rem;
}

body[data-page="home"] .category-card--stack:hover .category-card__arrow {
  background: var(--home-accent);
  color: #fff;
  transform: translateX(2px);
}

/* Featured top categories: first two span wider visual weight */
body[data-page="home"] .category-grid > .category-card--stack:nth-child(1),
body[data-page="home"] .category-grid > .category-card--stack:nth-child(2) {
  grid-column: span 2;
}

body[data-page="home"] .category-grid > .category-card--stack:nth-child(1) .category-card__link,
body[data-page="home"] .category-grid > .category-card--stack:nth-child(2) .category-card__link {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
  min-height: 13.5rem;
}

body[data-page="home"] .category-grid > .category-card--stack:nth-child(1) .category-card__thumb,
body[data-page="home"] .category-grid > .category-card--stack:nth-child(2) .category-card__thumb {
  aspect-ratio: auto;
  height: 100%;
  min-height: 13.5rem;
  max-height: 15rem;
}

body[data-page="home"] .category-grid > .category-card--stack:nth-child(1) .category-card__thumb img,
body[data-page="home"] .category-grid > .category-card--stack:nth-child(2) .category-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 1.25rem 1.5rem;
}

body[data-page="home"] .category-grid > .category-card--stack:nth-child(1) .category-card__body,
body[data-page="home"] .category-grid > .category-card--stack:nth-child(2) .category-card__body {
  border-top: 0;
  border-left: 1px solid #eef1f4;
  padding: 1.35rem 1.25rem;
  align-content: center;
  min-height: 13.5rem;
}

body[data-page="home"] .category-grid > .category-card--stack:nth-child(1) .category-card__title,
body[data-page="home"] .category-grid > .category-card--stack:nth-child(2) .category-card__title {
  font-size: 1.55rem;
}

/* Product cards denser on home */
body[data-page="home"] .product-grid {
  gap: 0.85rem !important;
}

body[data-page="home"] .product-card {
  border-radius: 6px !important;
  border: 1px solid var(--home-rule) !important;
  box-shadow: none !important;
  background: #fff;
  transition: border-color 160ms ease-out, transform 160ms ease-out;
}

body[data-page="home"] .product-card:hover {
  border-color: #b8c0ca !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(18, 21, 26, 0.08) !important;
}

body[data-page="home"] .product-card__media {
  background:
    linear-gradient(180deg, #f7f8fa 0%, #eef1f4 100%);
  border-bottom: 1px solid var(--home-rule);
}

/* Concrete program — image stage + floating panel */
body[data-page="home"] .promo-banner,
body[data-page="home"] .promo-banner--concrete {
  background: transparent !important;
  color: #fff;
  border-block: 0 !important;
  padding-block: clamp(0.5rem, 2vw, 1.25rem);
}

body[data-page="home"] .promo-banner__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 26rem);
  min-height: 26rem;
  border-radius: 14px;
  overflow: hidden;
  background: #15181d;
  box-shadow: 0 18px 48px rgba(18, 21, 26, 0.14);
}

body[data-page="home"] .promo-banner__media {
  position: relative;
  margin: 0;
  border-radius: 0;
  grid-column: 1 / -1;
  grid-row: 1;
  min-height: 26rem;
  background:
    radial-gradient(circle at 70% 40%, #3a424c 0%, #1a1e24 55%, #12151a 100%);
  overflow: hidden;
}

body[data-page="home"] .promo-banner__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 14, 18, 0.82) 0%, rgba(12, 14, 18, 0.55) 42%, rgba(12, 14, 18, 0.18) 72%, rgba(12, 14, 18, 0.08) 100%),
    linear-gradient(0deg, rgba(12, 14, 18, 0.35) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

body[data-page="home"] .promo-banner__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: 72% center;
  padding: 2.5rem 3rem 2.5rem 42%;
  opacity: 1;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.35));
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

body[data-page="home"] .promo-banner--concrete:hover .promo-banner__media img {
  transform: scale(1.04) translateX(-1%);
}

body[data-page="home"] .promo-banner__content {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  width: min(100%, 28rem);
  margin: clamp(1.25rem, 3vw, 2.25rem);
  padding: clamp(1.35rem, 2.5vw, 1.85rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(18, 21, 26, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

body[data-page="home"] .promo-banner__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.1rem;
  right: 1.1rem;
  height: 3px;
  border-radius: 0 0 2px 2px;
  background: var(--home-accent);
}

body[data-page="home"] .promo-banner__meta {
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffb07a;
}

body[data-page="home"] .promo-banner__title {
  margin: 0 0 0.75rem;
  max-width: 14ch;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1.05;
  color: #fff !important;
  text-wrap: balance;
}

body[data-page="home"] .promo-banner__text {
  margin: 0 0 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

body[data-page="home"] .promo-banner__links {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

body[data-page="home"] .promo-banner__links a {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 140ms ease-out, border-color 140ms ease-out, color 140ms ease-out;
}

body[data-page="home"] .promo-banner__links a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

body[data-page="home"] .promo-banner__content .btn--primary {
  align-self: flex-start;
  min-height: 2.85rem;
  padding-inline: 1.2rem;
  background: var(--home-accent);
  border-color: var(--home-accent);
  font-weight: 700;
}

body[data-page="home"] .promo-banner__content .btn--primary:hover {
  background: #cf5203;
  border-color: #cf5203;
}

/* Spec rail — why Omega */
body[data-page="home"] .why-omega {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: transparent;
  border: 1px solid var(--home-rule);
}

body[data-page="home"] .why-omega__item {
  background: #fff;
  padding: 1.35rem 1.15rem;
  border-right: 1px solid var(--home-rule);
  position: relative;
}

body[data-page="home"] .why-omega__item:last-child {
  border-right: 0;
}

body[data-page="home"] .why-omega__item::before {
  content: "";
  display: block;
  width: 1.75rem;
  height: 3px;
  background: var(--home-accent);
  margin-bottom: 0.85rem;
}

body[data-page="home"] .why-omega__item h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

body[data-page="home"] .why-omega__item p {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* Matest strip */
body[data-page="home"] .brand-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 1.35rem;
  background: #fff;
  border: 1px solid var(--home-rule);
}

body[data-page="home"] .brand-strip__label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--home-muted);
}

body[data-page="home"] .brand-strip__name {
  margin: 0.2rem 0 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

body[data-page="home"] .brand-strip__note {
  margin: 0;
  max-width: 28rem;
  font-size: 0.9rem;
  color: var(--home-muted);
  text-align: right;
}

/* B2B band */
body[data-page="home"] .b2b-cta {
  background: var(--home-accent) !important;
  border: 0 !important;
  color: #fff;
}

body[data-page="home"] .b2b-cta__inner {
  padding-block: 2.25rem;
}

body[data-page="home"] .b2b-cta__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #fff;
}

body[data-page="home"] .b2b-cta__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  max-width: 36rem;
}

body[data-page="home"] .b2b-cta .btn {
  background: #12151a;
  border-color: #12151a;
  color: #fff;
  font-weight: 700;
  min-height: 3rem;
}

body[data-page="home"] .b2b-cta .btn:hover {
  background: #000;
  border-color: #000;
}

/* Catalog stats band between hero benefits and cats */
body[data-page="home"] .catalog-band {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: end;
  padding-block: 0.25rem;
  margin-bottom: 1.35rem;
}

body[data-page="home"] .catalog-band__stat {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.25rem;
}

body[data-page="home"] .catalog-band__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--home-ink);
}

body[data-page="home"] .catalog-band__stat span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--home-muted);
}

/* Responsive */
@media (max-width: 1100px) {
  body[data-page="home"] .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  body[data-page="home"] .category-grid > .category-card--stack:nth-child(1),
  body[data-page="home"] .category-grid > .category-card--stack:nth-child(2) {
    grid-column: span 3;
  }

  body[data-page="home"] .why-omega {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .why-omega__item:nth-child(2) {
    border-right: 0;
  }

  body[data-page="home"] .why-omega__item:nth-child(1),
  body[data-page="home"] .why-omega__item:nth-child(2) {
    border-bottom: 1px solid var(--home-rule);
  }
}

@media (max-width: 900px) {
  body[data-page="home"] .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body[data-page="home"] .category-grid > .category-card--stack:nth-child(1),
  body[data-page="home"] .category-grid > .category-card--stack:nth-child(2) {
    grid-column: span 2;
  }

  body[data-page="home"] .benefits-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: 1fr 1fr;
    align-items: stretch !important;
  }

  body[data-page="home"] .benefit:nth-child(2) {
    border-right: 0;
  }

  body[data-page="home"] .benefit:nth-child(1),
  body[data-page="home"] .benefit:nth-child(2) {
    border-bottom: 1px solid var(--home-rule);
  }

  body[data-page="home"] .promo-banner__stage {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body[data-page="home"] .promo-banner__media {
    min-height: 20rem;
  }

  body[data-page="home"] .promo-banner__media img {
    padding: 1.5rem 1.25rem 8.5rem;
    object-position: center 20%;
  }

  body[data-page="home"] .promo-banner__content {
    width: auto;
    margin: auto 1rem 1rem;
    align-self: end;
  }

  body[data-page="home"] .catalog-band,
  body[data-page="home"] .brand-strip {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  body[data-page="home"] .brand-strip__note {
    text-align: left;
  }
}

@media (max-width: 640px) {
  body[data-page="home"] .hero {
    min-height: min(70vh, 34rem);
  }

  body[data-page="home"] .hero__visual img {
    object-position: 75% center;
  }

  body[data-page="home"] .category-grid {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }

  body[data-page="home"] .category-grid > .category-card--stack:nth-child(1),
  body[data-page="home"] .category-grid > .category-card--stack:nth-child(2) {
    grid-column: auto;
  }

  body[data-page="home"] .category-grid > .category-card--stack:nth-child(1) .category-card__link,
  body[data-page="home"] .category-grid > .category-card--stack:nth-child(2) .category-card__link {
    display: flex;
    flex-direction: column;
  }

  body[data-page="home"] .category-grid > .category-card--stack:nth-child(1) .category-card__thumb,
  body[data-page="home"] .category-grid > .category-card--stack:nth-child(2) .category-card__thumb {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  body[data-page="home"] .category-grid > .category-card--stack:nth-child(1) .category-card__body,
  body[data-page="home"] .category-grid > .category-card--stack:nth-child(2) .category-card__body {
    border-left: 0;
    border-top: 1px solid #eef1f4;
  }

  body[data-page="home"] .benefits-strip__grid,
  body[data-page="home"] .why-omega {
    grid-template-columns: 1fr !important;
  }

  body[data-page="home"] .benefit,
  body[data-page="home"] .why-omega__item {
    border-right: 0 !important;
    border-bottom: 1px solid var(--home-rule);
  }

  body[data-page="home"] .benefit:last-child,
  body[data-page="home"] .why-omega__item:last-child {
    border-bottom: 0;
  }

  body[data-page="home"] .b2b-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  body[data-page="home"] .promo-banner__media {
    min-height: 22rem;
  }

  body[data-page="home"] .promo-banner__title {
    max-width: none;
    font-size: 1.7rem;
  }
}
