/* ============================================================
   Baolian Design System — Component Styles
   ============================================================ */

html {
  scrollbar-gutter: stable;
}

body.bl-scroll-lock {
  overflow: hidden;
}

@supports not (scrollbar-gutter: stable) {
  body.bl-scroll-lock {
    padding-right: var(--bl-scrollbar-width, 0px);
  }

  body.bl-scroll-lock .header,
  body.bl-scroll-lock .mobile-menu {
    right: var(--bl-scrollbar-width, 0px);
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 14px 28px;
  font-size: var(--text-body);
  font-weight: var(--weight-regular);
  line-height: 1;
  border-radius: var(--radius-lg);
  transition: all var(--duration-normal) var(--ease-smooth);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-text-primary);
  border: 1px solid var(--color-accent);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  color: var(--color-text-primary);
  border-color: var(--color-accent-hover);
  box-shadow: var(--shadow-glow);
  text-decoration: none;
}

.btn-primary:active {
  background-color: var(--color-accent-active);
  color: var(--color-text-primary);
}

.btn-primary:focus,
.btn-primary:focus-visible {
  color: var(--color-text-primary);
  text-decoration: none;
}

a.btn,
a.btn:hover,
a.btn:focus,
a.btn:active {
  text-decoration: none;
}

a.btn-primary,
a.btn-primary:hover,
a.btn-primary:focus,
a.btn-primary:active,
button.btn-primary,
button.btn-primary:hover,
button.btn-primary:focus,
button.btn-primary:active,
input.btn-primary,
input.btn-primary:hover,
input.btn-primary:focus,
input.btn-primary:active {
  color: var(--color-text-primary);
}

/* Keep red primary buttons readable when global link hover styles are active. */
a.btn-primary:hover,
a.btn-primary:focus,
a.btn-primary:active,
a.btn-primary:visited,
a.blpd-btn-primary:hover,
a.blpd-btn-primary:focus,
a.blpd-btn-primary:active,
a.blpd-btn-primary:visited,
.blps-btn--primary:hover,
.blps-btn--primary:focus,
.blps-btn--primary:active,
.header-search__form button:hover,
.header-search__form button:focus,
.site-search__form button:hover,
.site-search__form button:focus,
.site-search__pagination .current,
.site-search__pagination a:hover {
  color: var(--color-text-primary) !important;
  text-decoration: none;
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-text-primary);
}

.btn-outline:hover {
  background-color: var(--color-bg-elevated);
  color: var(--color-text-primary);
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-text-secondary);
  border: none;
  padding: var(--space-2) var(--space-4);
}

.btn-ghost:hover {
  color: var(--color-text-primary);
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  padding: 10px 0;
  transition: background-color var(--duration-normal) var(--ease-smooth),
              backdrop-filter var(--duration-normal) var(--ease-smooth);
}

.header--transparent {
  background-color: transparent;
}

.header--scrolled {
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: var(--border-width) solid var(--color-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 2.2vw, 34px);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.header__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

/* ── Header Logo (Responsive) ── */
.header__logo img,
.header__logo-img {
  height: auto;
  width: auto;
  max-width: clamp(210px, 22vw, 286px);
  max-height: 58px;
  object-fit: contain;
  /* The logo asset has asymmetric transparent padding; lift the visible mark to align with the nav center. */
  transform: translateY(-7px);
}

@media (min-width: 1024px) {
  .header__logo img,
  .header__logo-img {
    max-width: clamp(240px, 20vw, 300px);
    max-height: 62px;
  }
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: clamp(24px, 3.2vw, 54px);
}

.header__nav a {
  font-size: 17px;
  font-weight: var(--weight-medium);
  color: var(--color-text-primary);
  letter-spacing: 0;
  white-space: nowrap;
  transition: color var(--duration-normal) var(--ease-smooth);
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--color-text-primary);
}

.header__actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: clamp(14px, 1.8vw, 24px);
}

.header__actions .btn-primary {
  min-height: 48px;
  padding: 0 26px;
  font-size: 17px;
  font-weight: var(--weight-medium);
  line-height: 1;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 24px rgba(229, 9, 20, 0.18);
}

.header-language {
  position: relative;
}

.header-language__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 42px;
  min-height: 42px;
  padding: 0 10px;
  color: var(--color-text-primary);
  border-radius: var(--radius-full);
}

.header-language__current {
  font-size: 12px;
  font-weight: var(--weight-medium);
  letter-spacing: 0;
  line-height: 1;
}

.header-language__menu {
  position: absolute;
  top: calc(100% + var(--space-2));
  right: 0;
  z-index: calc(var(--z-header) + 1);
  width: max-content;
  min-width: 124px;
  padding: 6px;
  background: rgba(8, 8, 8, 0.94);
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity var(--duration-fast) var(--ease-smooth),
              transform var(--duration-fast) var(--ease-smooth);
}

.header-language.is-open .header-language__menu,
.header-language:focus-within .header-language__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header-language__menu a {
  display: block;
  padding: 10px 12px;
  color: var(--color-text-primary);
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--radius-md);
}

.header-language__menu a:hover,
.header-language__menu a:focus,
.header-language__menu a[aria-current="page"] {
  color: var(--color-text-primary);
  background: rgba(255, 255, 255, 0.08);
}

.header-explore-toggle__label,
.mobile-menu__feature {
  display: none;
}

.mobile-menu__logo {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  height: 44px;
}

.mobile-menu__logo img {
  display: block;
  width: auto;
  max-width: 190px;
  max-height: 44px;
}

.header-search {
  position: relative;
}

.header-search__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0;
  color: var(--color-text-primary);
  border-radius: var(--radius-full);
}

.header-search__form {
  position: absolute;
  top: calc(100% + var(--space-2));
  right: 0;
  z-index: calc(var(--z-header) + 1);
  display: flex;
  align-items: center;
  width: min(360px, calc(100vw - 32px));
  padding: var(--space-2);
  background: rgba(8, 8, 8, 0.94);
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity var(--duration-fast) var(--ease-smooth),
              transform var(--duration-fast) var(--ease-smooth);
}

.header-search.is-open .header-search__form,
.header-search:focus-within .header-search__form {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header-search__form input {
  flex: 1;
  min-width: 0;
  height: 42px;
  padding: 0 var(--space-4);
  color: var(--color-text-primary);
  font-size: 15px;
  background: rgba(255, 255, 255, 0.08);
  border: var(--border-width) solid transparent;
  border-radius: var(--radius-full);
  outline: none;
}

.header-search__form input:focus {
  border-color: var(--color-accent);
}

.header-search__form input::placeholder {
  color: var(--color-text-muted);
}

.header-search__form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-left: var(--space-2);
  color: var(--color-text-primary);
  background: var(--color-accent);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
}

/* ── Search Page ── */
.site-search {
  min-height: 100vh;
  background: var(--color-bg);
  color: var(--color-text-primary);
}

.site-search__hero {
  padding: 180px 0 var(--space-12);
  background: linear-gradient(180deg, rgba(229, 9, 20, 0.14), rgba(0, 0, 0, 0));
  border-bottom: var(--border-width) solid var(--color-border);
}

.site-search__eyebrow {
  margin: 0 0 var(--space-3);
  color: var(--color-accent);
  font-size: 13px;
  text-transform: uppercase;
}

.site-search__title {
  margin: 0 0 var(--space-8);
  font-size: clamp(40px, 7vw, 76px);
  font-weight: var(--weight-light);
}

.site-search__form {
  display: flex;
  max-width: 720px;
  padding: var(--space-2);
  background: rgba(255, 255, 255, 0.06);
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius-sm);
}

.site-search__form input {
  flex: 1;
  min-width: 0;
  height: 54px;
  padding: 0 var(--space-5);
  color: var(--color-text-primary);
  background: transparent;
  border: none;
  outline: none;
  font-size: 17px;
}

.site-search__form input::placeholder {
  color: var(--color-text-tertiary);
}

.site-search__form button {
  min-width: 96px;
  height: 54px;
  color: var(--color-text-primary);
  background: var(--color-accent);
  border: none;
  border-radius: var(--radius-xs);
  cursor: pointer;
}

.site-search__summary {
  margin: var(--space-5) 0 0;
  color: var(--color-text-secondary);
}

.site-search__body {
  padding: var(--space-12) 0;
}

.site-search__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
}

.site-search-card {
  overflow: hidden;
  background: var(--color-bg-elevated);
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius-sm);
}

.site-search-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.04);
}

.site-search-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-search-card__content {
  padding: var(--space-5);
}

.site-search-card__content h2 {
  margin: 0 0 var(--space-3);
  font-size: 20px;
  line-height: 1.35;
}

.site-search-card__content a {
  color: var(--color-text-primary);
  text-decoration: none;
}

.site-search-card__content p,
.site-search__empty p {
  margin: 0;
  color: var(--color-text-secondary);
}

.site-search__empty {
  max-width: 720px;
  padding: var(--space-8);
  background: var(--color-bg-elevated);
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius-sm);
}

.site-search__empty h2 {
  margin: 0 0 var(--space-3);
  font-size: 28px;
}

.site-search__pagination {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-10);
}

.site-search__pagination a,
.site-search__pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 var(--space-4);
  color: var(--color-text-secondary);
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius-xs);
  text-decoration: none;
}

.site-search__pagination .current,
.site-search__pagination a:hover {
  color: var(--color-text-primary);
  background: var(--color-accent);
  border-color: var(--color-accent);
}

@media (max-width: 767px) {
  .site-search__hero {
    padding-top: 132px;
  }

  .site-search__form {
    flex-direction: column;
    gap: var(--space-2);
  }

  .site-search__form button {
    width: 100%;
  }
}

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding-top: 80px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: var(--space-5);
  padding: 0 var(--space-3);
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1;
  background: rgba(229, 9, 20, 0.16);
  border: var(--border-width) solid rgba(229, 9, 20, 0.38);
  border-radius: var(--radius-sm);
}

.hero__message {
  max-width: 620px;
}

.page-template-page-products .hero__message {
  max-width: 540px;
}

.hero__title {
  max-width: 620px;
  margin-bottom: var(--space-5);
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.05;
}

.page-template-page-products .hero__title {
  font-size: clamp(36px, 3.8vw, 54px);
  font-weight: 400;
  line-height: 1.12;
  text-transform: none;
}

.hero__subtitle {
  max-width: 560px;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.45;
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

.page-template-page-products .hero__subtitle {
  font-size: clamp(15px, 1.12vw, 18px);
  font-weight: 400;
  line-height: 1.5;
}

.page-template-page-products .hero--fullscreen .hero__content {
  max-width: min(960px, 82vw);
  padding-top: 0;
  padding-bottom: 0;
}

.page-template-page-products .hero--fullscreen .hero__container {
  display: flex;
  align-items: center;
  min-height: calc(100svh - 72px);
  width: 100%;
}

.page-template-page-products .hero__message {
  max-width: 960px;
}

.page-template-page-products .hero__title {
  max-width: 980px;
  margin-bottom: clamp(18px, 2.4vw, 26px);
  color: #fff;
  font-size: clamp(40px, 4.7vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

.page-template-page-products .hero__subtitle,
.page-template-page-products .hero__description {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 400;
  line-height: 1.45;
}

.page-template-page-products .hero__ctas {
  margin-top: clamp(42px, 6vh, 64px);
}

.page-template-page-products .hero__ctas .btn {
  justify-content: center;
  min-height: 56px;
  padding-inline: 28px;
  border-radius: var(--radius-lg);
  font-size: 16px;
  font-weight: 500;
}

.page-template-page-products .hero__ctas .btn svg {
  width: 18px;
  height: 18px;
}

.hero__description {
  max-width: 560px;
  margin-bottom: var(--space-8);
}

.hero__ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: clamp(var(--space-10), 10vh, 112px);
}

.hero__proof {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
  max-width: 560px;
  margin-top: var(--space-10);
}

.hero__proof div {
  padding: var(--space-4);
  background: rgba(5, 7, 10, 0.48);
  border: var(--border-width) solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.hero__proof strong {
  display: block;
  color: var(--color-text-primary);
  font-family: var(--font-mono);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: var(--weight-regular);
  line-height: 1;
}

.hero__proof span {
  display: block;
  margin-top: var(--space-2);
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.35;
}

.hero__image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero--fullscreen .hero__container,
  .brand-page__hero .container,
  .products-hero > .container,
  .bl-news-hero--visual > .container {
    padding-inline: calc(var(--container-padding) + clamp(40px, 4vw, 64px));
  }

}

@media (max-width: 1023px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 96px;
  }
  .hero__content {
    max-width: 100%;
    padding-top: 88px;
  }
  .hero__title,
  .hero__subtitle,
  .hero__description {
    margin-inline: auto;
  }
  .hero__ctas {
    justify-content: center;
  }
  .hero__proof {
    margin-inline: auto;
  }
  .hero__image {
    position: relative;
    width: 100%;
    margin-top: var(--space-10);
  }
}

@media (max-width: 767px) {
  .hero--fullscreen .hero__container {
    display: flex;
    align-items: stretch;
    min-height: 100svh;
  }
  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100svh;
    width: 100%;
    padding-top: calc(92px + env(safe-area-inset-top));
    padding-bottom: calc(104px + env(safe-area-inset-bottom));
  }
  .hero__message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    isolation: isolate;
    min-height: 45svh;
    width: 100%;
    margin-top: calc(8vh + env(safe-area-inset-top));
    text-align: center;
  }

  .page-template-page-products .hero--fullscreen .hero__message {
    min-height: 32svh;
    margin-top: calc(14vh + env(safe-area-inset-top));
  }

  .hero__message::before {
    content: "";
    position: absolute;
    inset: 20% -12% 14%;
    z-index: -1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.34) 42%, rgba(0, 0, 0, 0) 72%);
    pointer-events: none;
  }
  .hero__eyebrow {
    min-height: 26px;
    margin-bottom: var(--space-4);
    font-size: 11px;
  }
  .hero__title {
    max-width: 360px;
    font-size: clamp(32px, 8.8vw, 42px);
    font-weight: 400;
    line-height: 1.08;
  }
  .hero__subtitle {
    max-width: 340px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.94);
  }
  .hero__ctas {
    width: 100%;
    max-width: 360px;
    margin: auto auto 0;
  }
  .hero__proof {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

/* ── Capability Card ── */
.capability-card {
  position: relative;
  display: block;
  padding: var(--space-8);
  color: inherit;
  text-decoration: none;
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: border-color var(--duration-normal) var(--ease-smooth),
              background-color var(--duration-normal) var(--ease-smooth),
              transform var(--duration-normal) var(--ease-smooth);
}

.capability-card:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 9, 20, 0.36);
  background-color: rgba(255, 255, 255, 0.045);
}

.capability-card__icon {
  width: 48px;
  height: 48px;
  color: var(--color-accent);
  margin-bottom: var(--space-6);
}

.capability-card__title {
  font-size: var(--text-h3);
  font-weight: var(--weight-regular);
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
}

.capability-card__description {
  font-size: var(--text-body);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* ── Product Card ── */
.product-card {
  display: block;
  background-color: var(--color-bg-secondary);
  color: inherit;
  text-decoration: none;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: inherit;
  text-decoration: none;
}

.product-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--color-bg-primary);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-default);
}

.product-card:hover .product-card__image img {
  transform: scale(1.03);
}

.product-card__content {
  padding: var(--space-6);
}

.product-card__title {
  font-size: var(--text-h3);
  color: var(--color-text-primary);
  margin-bottom: var(--space-2);
}

.product-card__description {
  font-size: var(--text-body);
  color: var(--color-text-secondary);
}

/* ── Featured Products ── */
.featured-products {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #101215 0%, #08090b 100%);
  border-top: var(--border-width) solid rgba(255, 255, 255, 0.08);
  border-bottom: var(--border-width) solid rgba(255, 255, 255, 0.08);
}

.featured-products::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 80% 12%, rgba(229, 9, 20, 0.12), transparent 34%);
  background-size: 96px 96px, 96px 96px, auto;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 82%, transparent);
  pointer-events: none;
}

.featured-products > .container {
  position: relative;
  z-index: 1;
}

.featured-products .section-header {
  max-width: 860px;
  margin-bottom: var(--space-10);
}

.featured-products .products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto;
  gap: var(--space-6);
}

.featured-products .products-grid .product-card:first-child {
  grid-row: auto;
}

.featured-products .product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #0f1115;
  border: var(--border-width) solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.featured-products .product-card__image {
  aspect-ratio: 16 / 10;
  background: #15181d;
  border-bottom: var(--border-width) solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.featured-products .product-card__content {
  flex: 1;
  padding: var(--space-5) var(--space-5) var(--space-6);
}

.featured-products .product-card__title {
  font-size: 22px;
  letter-spacing: 0;
}

.featured-products .product-card__description {
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 1023px) {
  .featured-products .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-4);
  }

  .featured-products .product-card__title {
    font-size: 18px;
  }

  .featured-products .product-card__description {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .featured-products .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Section Header ── */
.section-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-16);
}

.section-header__label {
  font-size: var(--text-small);
  font-weight: var(--weight-medium);
  color: var(--color-accent);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.section-header__title {
  margin-bottom: var(--space-4);
}

.section-header__description {
  color: var(--color-text-secondary);
}

.home-capabilities {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 120px;
  background-color: #0b0d10;
  border-top: var(--border-width) solid rgba(255, 255, 255, 0.08);
}

.home-capabilities::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 11, 14, 0.9), rgba(10, 14, 18, 0.82)),
    radial-gradient(circle at 22% 8%, rgba(229, 9, 20, 0.12), transparent 30%),
    linear-gradient(115deg, rgba(22, 31, 42, 0.92), rgba(7, 8, 10, 0.84) 54%, rgba(18, 22, 27, 0.9));
  pointer-events: none;
}

.home-capabilities::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.45;
  mask-image: linear-gradient(180deg, transparent, black 16%, black 78%, transparent);
  pointer-events: none;
}

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

.home-capability-grid {
  align-items: stretch;
}

.home-capability-grid .capability-card {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.068), rgba(255, 255, 255, 0.028)),
    rgba(12, 15, 19, 0.88);
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.home-capability-grid .capability-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--space-8);
  right: var(--space-8);
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  opacity: 0.78;
}

.home-technology {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 120px;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.9) 0%, rgba(7, 10, 14, 0.68) 46%, rgba(7, 10, 14, 0.34) 100%),
    linear-gradient(180deg, rgba(9, 12, 16, 0.72), rgba(8, 10, 13, 0.7)),
    var(--home-technology-bg, url("../assets/images/backgrounds/rnd-electronics-workbench-v1.png")) center right / cover no-repeat,
    #0b0d10;
  border-top: var(--border-width) solid rgba(255, 255, 255, 0.08);
  border-bottom: var(--border-width) solid rgba(255, 255, 255, 0.08);
}

.home-technology::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 32%, rgba(0, 0, 0, 0.28)),
    radial-gradient(circle at 72% 32%, rgba(229, 9, 20, 0.12), transparent 34%);
  pointer-events: none;
}

.home-technology::after {
  content: "";
  position: absolute;
  right: max(24px, calc((100vw - var(--container-max)) / 2));
  top: 50%;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle, black 0%, transparent 66%);
  opacity: 0.36;
  pointer-events: none;
}

.home-technology__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: var(--space-12);
}

.home-technology__content {
  max-width: 720px;
}

.home-technology__content .h2 {
  margin-bottom: var(--space-5);
}

.home-technology__content p:not(.section-header__label) {
  max-width: 680px;
  color: var(--color-text-secondary);
}

.home-tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-8);
}

.home-tech-list span,
.home-tech-list a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 var(--space-3);
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1;
  background: transparent;
  border: var(--border-width) solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: border-color var(--duration-normal) var(--ease-smooth),
              color var(--duration-normal) var(--ease-smooth),
              background-color var(--duration-normal) var(--ease-smooth);
}

.home-tech-list a:hover {
  color: var(--color-text-primary);
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(229, 9, 20, 0.34);
}

.home-technology__panel {
  counter-reset: tech-panel;
  display: grid;
  gap: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(13, 16, 20, 0.9);
  border: var(--border-width) solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.home-technology__panel > div {
  counter-increment: tech-panel;
  position: relative;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: var(--space-5);
  padding: var(--space-6);
  background: transparent;
  border: 0;
  border-bottom: var(--border-width) solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
}

.home-technology__panel > div:first-child {
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
}

.home-technology__panel > div:last-child {
  border-bottom-left-radius: var(--radius-xl);
  border-bottom-right-radius: var(--radius-xl);
}

.home-technology__panel > div:last-child {
  border-bottom: 0;
}

.home-technology__panel > div::before {
  content: "0" counter(tech-panel);
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  border: var(--border-width) solid rgba(229, 9, 20, 0.38);
  background: rgba(229, 9, 20, 0.08);
}

.home-technology__panel strong {
  grid-column: 2;
  display: block;
  margin-bottom: var(--space-2);
  color: var(--color-text-primary);
  font-size: 19px;
  font-weight: var(--weight-medium);
  line-height: var(--leading-snug);
}

.home-technology__panel p {
  grid-column: 2;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.home-product-range {
  scroll-margin-top: 120px;
  background:
    linear-gradient(180deg, #0a0c0f, #111419 52%, #08090b);
}

.home-partnerships {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 120px;
  padding-block: var(--space-20);
  background:
    linear-gradient(180deg, #08090b, #11151a 52%, #08090b);
  border-top: var(--border-width) solid rgba(255, 255, 255, 0.08);
  border-bottom: var(--border-width) solid rgba(255, 255, 255, 0.08);
}

.home-partnerships::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(120deg, rgba(229, 9, 20, 0.16), transparent 36%, rgba(255, 255, 255, 0.035));
  background-size: 112px 112px, 112px 112px, auto;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 82%, transparent);
  pointer-events: none;
}

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

.home-partnerships--brand {
  margin-top: var(--space-6);
  padding-block: var(--space-16);
}

.home-partnerships__header {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

.home-partnerships__header .h2 {
  max-width: 760px;
  margin: 0;
}

.home-partnerships__header p:not(.section-header__label) {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.75;
}

.home-partnerships__logos {
  --partner-grid-columns: 4;
  display: grid;
  grid-template-columns: repeat(var(--partner-grid-columns), minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: var(--border-width) solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.home-partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 112px;
  padding: var(--space-6);
  color: var(--color-text-primary);
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(12, 14, 18, 0.96);
  transition: background-color var(--duration-normal) var(--ease-smooth),
              transform var(--duration-normal) var(--ease-smooth);
}

.home-partner-logo:hover {
  color: var(--color-text-primary);
  text-decoration: none;
  background-color: rgba(20, 24, 30, 0.98);
}

.home-partner-logo--3mindwave {
  min-height: 128px;
  padding: max(var(--space-7), 28px);
}

.home-partner-logo img {
  display: block;
  width: auto;
  max-width: min(100%, 210px);
  max-height: 58px;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transition: opacity var(--duration-normal) var(--ease-smooth),
              filter var(--duration-normal) var(--ease-smooth),
              transform var(--duration-normal) var(--ease-smooth);
}

.home-partner-logo--3mindwave img {
  max-width: min(100%, 190px);
  max-height: 50px;
}

.home-partner-logo:hover img {
  opacity: 1;
  filter: none;
  transform: translateY(-1px);
}

.home-partner-logo__fallback {
  max-width: 100%;
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: var(--weight-medium);
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.home-partner-logo--more {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(229, 9, 20, 0.11), rgba(255, 255, 255, 0.018)),
    rgba(12, 14, 18, 0.96);
}

.home-partner-logo__dots {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.home-partner-logo__dots i {
  display: block;
  width: 7px;
  height: 7px;
  background: var(--color-accent);
  border-radius: var(--radius-full);
  box-shadow: 0 0 16px rgba(229, 9, 20, 0.24);
}

.home-product-range .product-card__image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-proof {
  scroll-margin-top: 120px;
  padding-block: var(--space-20);
  background:
    linear-gradient(90deg, rgba(229, 9, 20, 0.2), rgba(229, 9, 20, 0.03) 42%, rgba(255, 255, 255, 0.03)),
    #08080a;
  border-top: var(--border-width) solid var(--color-border);
}

.home-proof__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: var(--space-8);
  align-items: center;
}

.home-proof__grid .h2 {
  max-width: 660px;
}

.home-proof__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
}

.home-proof__stats div {
  min-height: 150px;
  padding: var(--space-5) clamp(14px, 1.35vw, 18px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: var(--space-6);
  background: rgba(0, 0, 0, 0.32);
  border: var(--border-width) solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
}

.home-proof__stats strong {
  display: block;
  color: var(--color-text-primary);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: var(--weight-light);
  line-height: 1;
  min-height: clamp(34px, 3vw, 44px);
  white-space: nowrap;
}

.home-proof__stats span {
  display: block;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.55;
  min-height: 3em;
  text-wrap: balance;
  word-break: keep-all;
}

@media (min-width: 1024px) {
  .home-proof__stats span {
    font-size: 13px;
    line-height: 1.5;
  }

  .home-proof__stats div:last-child strong {
    font-size: clamp(25px, 2.35vw, 29px);
  }
}

@media (max-width: 1023px) {
  .home-capability-grid.grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-proof__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .home-technology__grid,
  .home-proof__grid,
  .home-partnerships__header {
    grid-template-columns: 1fr;
  }

  .home-partnerships__logos {
    --partner-grid-columns: 3;
  }

  .home-technology::after {
    width: 92vw;
    right: -24vw;
    top: 34%;
    opacity: 0.22;
  }
}

@media (max-width: 767px) {
  .home-capability-grid.grid-4,
  .home-proof__stats {
    grid-template-columns: 1fr;
  }

  .home-technology__grid,
  .home-proof__grid {
    gap: var(--space-8);
  }

  .home-partnerships {
    padding-block: var(--space-12);
  }

  .home-partnerships__header {
    gap: var(--space-5);
    margin-bottom: var(--space-8);
  }

  .home-partnerships__logos {
    --partner-grid-columns: 2;
  }

  .home-partner-logo {
    min-height: 96px;
    padding: var(--space-5);
  }

  .home-partner-logo img {
    max-height: 38px;
  }

  .home-tech-list span,
  .home-tech-list a {
    width: 100%;
    justify-content: center;
  }

  .home-proof__stats div {
    min-height: 118px;
  }
}

/* ── Footer Logo (Responsive) ── */
.footer__logo-img {
  height: auto;
  width: auto;
  max-width: clamp(120px, 20vw, 200px);
  max-height: 96px;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .footer__logo-img {
    max-width: clamp(160px, 15vw, 280px);
    max-height: 96px;
  }
}

/* ── Footer ── */
.footer {
  background-color: var(--color-bg-primary);
  border-top: var(--border-width) solid var(--color-border);
  padding-block: var(--space-16) var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

.footer__heading {
  font-size: var(--text-small);
  font-weight: var(--weight-medium);
  color: var(--color-text-primary);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.footer__links a {
  display: block;
  font-size: var(--text-small);
  color: var(--color-text-muted);
  padding-block: var(--space-1);
  transition: color var(--duration-normal) var(--ease-smooth);
}

.footer__links a:hover {
  color: var(--color-text-primary);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  border-top: var(--border-width) solid var(--color-border);
}

.footer__copyright {
  font-size: var(--text-small);
  color: var(--color-text-muted);
}

.footer__icp {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-normal) var(--ease-smooth);
}

.footer__icp:hover {
  color: var(--color-text-primary);
}

@media (max-width: 767px) {
  .footer {
    padding-block: var(--space-12) var(--space-6);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: var(--space-10);
    margin-bottom: var(--space-10);
    text-align: center;
  }

  .footer__grid > div {
    width: min(100%, 360px);
  }

  .footer__logo-img {
    margin-inline: auto;
  }

  .footer__grid .text-small {
    max-width: 340px !important;
    margin-inline: auto;
    font-size: 15px;
    line-height: 1.75;
  }

  .footer__heading {
    margin-bottom: var(--space-3);
    font-size: 15px;
    letter-spacing: var(--tracking-wide);
  }

  .footer__links a {
    font-size: 15px;
    line-height: 1.5;
    padding-block: 6px;
  }

  .footer__bottom {
    justify-content: center;
    padding-top: var(--space-6);
    text-align: center;
  }

  .footer__copyright {
    max-width: 320px;
    font-size: 13px;
    line-height: 1.6;
  }
}

/* ── Brand Editable Pages ── */
.brand-page {
  min-height: 100vh;
  background: var(--color-bg);
  color: var(--color-text-primary);
}

.brand-page__hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 62vh;
  padding: 156px 0 var(--space-10);
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.58) 42%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.88)),
    var(--brand-hero-image);
  background-position: center;
  background-size: cover;
  border-bottom: var(--border-width) solid var(--color-border);
}

.brand-page__hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), rgba(229, 9, 20, 0));
}

.brand-page__hero .container {
  position: relative;
  z-index: 1;
}

.brand-page__eyebrow,
.brand-kicker {
  margin: 0 0 var(--space-3);
  color: var(--color-accent);
  font-size: 13px;
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
}

.brand-page__title {
  margin: 0;
  font-size: var(--text-h1);
  font-weight: var(--weight-light);
  letter-spacing: 0;
  line-height: var(--leading-tight);
  max-width: 720px;
}

.brand-page__subtitle {
  max-width: 620px;
  margin: var(--space-4) 0 0;
  color: var(--color-text-secondary);
  font-size: var(--text-body);
  line-height: var(--leading-relaxed);
}

.brand-page__body {
  padding: var(--space-12) 0 var(--space-16);
  background:
    linear-gradient(180deg, rgba(229, 9, 20, 0.05), rgba(229, 9, 20, 0) 240px),
    var(--color-bg);
}

.brand-page__content {
  max-width: 1180px;
  margin-inline: auto;
  width: 100%;
}

.brand-section {
  margin-bottom: var(--space-12);
}

.brand-section--lead {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: var(--space-8);
  align-items: end;
  max-width: none;
}

.brand-section--lead .brand-kicker {
  grid-column: 1 / -1;
}

.brand-section--lead h2 {
  margin-bottom: 0;
}

.brand-section--lead p:not(.brand-kicker) {
  align-self: end;
  max-width: 620px;
}

.brand-section h2 {
  margin: 0 0 var(--space-4);
  font-size: var(--text-h2);
  font-weight: var(--weight-light);
  line-height: var(--leading-snug);
}

.brand-section p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.75;
}

.brand-media-block {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: var(--space-6);
  margin: var(--space-10) 0 var(--space-12);
}

.brand-media-block--reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}

.brand-media-block--reverse img {
  order: 0;
}

.brand-media-block > p:empty {
  display: none;
}

.brand-media-block img,
.brand-image-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: var(--border-width) solid var(--color-border);
}

.brand-media-block img {
  aspect-ratio: 16 / 9;
}

.brand-media-block h2,
.brand-cta-panel h2 {
  margin: 0 0 var(--space-4);
  font-size: var(--text-h2);
  font-weight: var(--weight-light);
  letter-spacing: 0;
  line-height: var(--leading-snug);
}

.brand-media-block p,
.brand-cta-panel p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.75;
}

.brand-grid,
.brand-stats,
.brand-contact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  margin: var(--space-8) 0 var(--space-10);
}

.brand-stats--premium {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.brand-grid > div,
.brand-stats > div,
.brand-contact-list > div {
  padding: var(--space-5);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    var(--color-bg-elevated);
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius-sm);
}

.brand-grid--accent > div,
.brand-contact-list--premium > div {
  position: relative;
  overflow: hidden;
}

.brand-grid--accent > div::before,
.brand-contact-list--premium > div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--color-accent);
}

.brand-grid h3 {
  margin: 0 0 var(--space-3);
  font-size: 20px;
  line-height: var(--leading-snug);
}

.brand-grid span {
  display: block;
  margin-bottom: var(--space-3);
  color: var(--color-accent);
  font-size: 12px;
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
}

.brand-grid p,
.brand-contact-list p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.brand-stats strong {
  display: block;
  margin-bottom: var(--space-2);
  color: var(--color-text-primary);
  font-size: 32px;
  font-weight: var(--weight-light);
}

.brand-stats span,
.brand-contact-list span {
  color: var(--color-text-secondary);
}

.brand-contact-list strong {
  display: block;
  margin: var(--space-2) 0;
  font-size: 18px;
  line-height: var(--leading-snug);
}

.brand-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
  margin: var(--space-8) 0 var(--space-12);
}

.brand-image-grid--wide {
  grid-template-columns: 1fr;
}

.brand-image-grid figure {
  margin: 0;
}

.brand-image-grid img {
  aspect-ratio: 16 / 9;
}

.brand-image-grid figcaption {
  margin-top: var(--space-3);
  color: var(--color-text-muted);
  font-size: var(--text-small);
}

.brand-cta-panel {
  padding: var(--space-6);
  margin-top: var(--space-10);
  background:
    linear-gradient(135deg, rgba(229, 9, 20, 0.18), rgba(255, 255, 255, 0.03)),
    var(--color-bg-elevated);
  border: var(--border-width) solid rgba(229, 9, 20, 0.34);
  border-radius: var(--radius-sm);
}

.brand-contact-form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: var(--space-8);
  align-items: start;
  scroll-margin-top: 120px;
  padding: var(--space-8);
  margin-top: var(--space-8);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0)),
    var(--color-bg-elevated);
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius-sm);
}

.brand-contact-form-section__intro h2 {
  margin: 0 0 var(--space-4);
  font-size: var(--text-h2);
  font-weight: var(--weight-light);
  line-height: var(--leading-snug);
}

.brand-contact-form-section__intro p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.75;
}

.brand-contact-form {
  display: grid;
  gap: var(--space-5);
  min-width: 0;
}

.brand-contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.brand-contact-form label {
  display: grid;
  gap: var(--space-2);
  margin: 0;
}

.brand-contact-form span {
  color: var(--color-text-primary);
  font-size: var(--text-small);
  font-weight: var(--weight-medium);
}

.brand-contact-form span strong {
  color: var(--color-accent);
  font-weight: var(--weight-medium);
}

.brand-contact-form input,
.brand-contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  color: var(--color-text-primary);
  background: rgba(0, 0, 0, 0.28);
  border: var(--border-width) solid var(--color-border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-cn);
  font-size: 15px;
  line-height: 1.5;
  outline: 0;
  transition: border-color var(--duration-fast) var(--ease-smooth),
              box-shadow var(--duration-fast) var(--ease-smooth),
              background-color var(--duration-fast) var(--ease-smooth);
}

.brand-contact-form textarea {
  min-height: 168px;
  resize: vertical;
}

.brand-contact-form input::placeholder,
.brand-contact-form textarea::placeholder {
  color: rgba(212, 212, 216, 0.5);
  opacity: 1;
}

.brand-contact-form input:focus,
.brand-contact-form textarea:focus {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(229, 9, 20, 0.74);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.16);
}

.brand-contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding-top: var(--space-2);
}

.brand-contact-form__footer p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--text-small);
  line-height: 1.6;
}

.brand-contact-form__footer .btn {
  flex: 0 0 auto;
  min-width: 136px;
  border: 0;
  cursor: pointer;
}

.brand-contact-form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.brand-form-notice {
  padding: var(--space-4);
  border-radius: var(--radius-sm);
  font-size: 15px;
  line-height: 1.6;
}

.brand-form-notice--success {
  color: #E8FFF0;
  background: rgba(34, 197, 94, 0.12);
  border: var(--border-width) solid rgba(34, 197, 94, 0.34);
}

.brand-form-notice--error {
  color: #FFE8EA;
  background: rgba(229, 9, 20, 0.12);
  border: var(--border-width) solid rgba(229, 9, 20, 0.34);
}

.brand-location-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: var(--space-6);
  align-items: stretch;
  padding: var(--space-6);
  margin: var(--space-10) 0;
  background:
    linear-gradient(135deg, rgba(229, 9, 20, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0)),
    var(--color-bg-elevated);
  border: var(--border-width) solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.brand-location-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.brand-location-section__content h2 {
  margin: 0 0 var(--space-4);
  font-size: var(--text-h2);
  font-weight: var(--weight-light);
  line-height: var(--leading-snug);
}

.brand-location-section__content p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.75;
}

.brand-location-details {
  display: grid;
  gap: var(--space-3);
  margin: var(--space-5) 0;
}

.brand-location-details div {
  padding: var(--space-4);
  background: rgba(0, 0, 0, 0.26);
  border: var(--border-width) solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
}

.brand-location-details dt {
  margin-bottom: var(--space-2);
  color: var(--color-accent);
  font-size: 12px;
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
}

.brand-location-details dd {
  margin: 0;
  color: var(--color-text-primary);
  font-size: 15px;
  line-height: 1.65;
}

.brand-location-details a {
  color: var(--color-text-primary);
  text-decoration: none;
}

.brand-location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.brand-location-section__map {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(18, 28, 42, 0.96), rgba(8, 10, 13, 0.96));
  border: var(--border-width) solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
}

.brand-location-section__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.88) contrast(1.02);
}

@media (max-width: 900px) {
  .brand-media-block,
  .brand-media-block--reverse {
    grid-template-columns: 1fr;
  }

  .brand-section--lead {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .brand-section--lead h2 {
    margin-bottom: 0;
  }

  .brand-media-block--reverse img {
    order: 0;
  }

  .brand-grid,
  .brand-stats,
  .brand-stats--premium,
  .brand-contact-list,
  .brand-image-grid,
  .brand-contact-form-section,
  .brand-location-section,
  .brand-contact-form__grid {
    grid-template-columns: 1fr;
  }

  .brand-location-section__map {
    min-height: 340px;
  }
}

@media (max-width: 767px) {
  .brand-page__hero {
    min-height: 58vh;
    padding-top: 132px;
    padding-bottom: var(--space-8);
  }

  .brand-page__body {
    padding-top: var(--space-10);
  }

  .brand-section p,
  .brand-media-block p,
  .brand-cta-panel p {
    font-size: 15px;
  }

  .brand-grid h3 {
    font-size: 18px;
  }

  .brand-media-block,
  .brand-grid,
  .brand-stats,
  .brand-contact-list,
  .brand-cta-panel,
  .brand-location-section,
  .brand-contact-form-section {
    margin-bottom: var(--space-10);
  }

  .brand-location-section,
  .brand-contact-form-section {
    padding: var(--space-5);
  }

  .brand-location-actions .btn {
    width: 100%;
  }

  .brand-contact-form__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .brand-contact-form__footer .btn {
    width: 100%;
  }
}

/* ── Animations ── */
.fade-in-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--duration-slow) var(--ease-default),
              transform var(--duration-slow) var(--ease-default);
}

/* Stagger children */
.stagger-children > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--duration-slow) var(--ease-default),
              transform var(--duration-slow) var(--ease-default);
}

@media (prefers-reduced-motion: no-preference) {
  html.js-reveal .fade-in-up:not(.is-visible) {
    opacity: 0;
    transform: translateY(14px);
  }

  html.js-reveal .stagger-children:not(.is-visible) > * {
    opacity: 0;
    transform: translateY(14px);
  }
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.is-visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.stagger-children.is-visible > *:nth-child(2) { transition-delay: 100ms; opacity: 1; transform: translateY(0); }
.stagger-children.is-visible > *:nth-child(3) { transition-delay: 200ms; opacity: 1; transform: translateY(0); }
.stagger-children.is-visible > *:nth-child(4) { transition-delay: 300ms; opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   Products Landing Page Styles
   ═══════════════════════════════════════════ */

/* ── Products Hero ── */
.products-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  padding-top: 140px;
  padding-bottom: var(--space-16);
  overflow: hidden;
}

.products-hero__content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.products-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--weight-light);
  color: var(--color-text-primary);
  margin-bottom: var(--space-2);
  letter-spacing: var(--tracking-tight);
}

.products-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: var(--weight-regular);
  color: var(--color-accent);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

.products-hero__desc {
  font-size: var(--text-body);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
}

.products-hero__cta {
  display: flex;
  gap: var(--space-4);
}

/* ── Category Grid ── */
#product-categories {
  scroll-margin-top: 96px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

@media (min-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
}

/* ── Category Card ── */
.category-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: transform var(--duration-normal) var(--ease-smooth),
              border-color var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth);
  text-decoration: none;
  cursor: pointer;
  min-height: 280px;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: 0 8px 24px rgba(229, 9, 20, 0.12);
}

.category-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-md);
  background-color: var(--color-bg-primary);
  margin-bottom: var(--space-4);
}

.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-default);
}

.category-card:hover .category-card__image img {
  transform: scale(1.05);
}

.category-card__title {
  font-size: var(--text-h3);
  font-weight: var(--weight-regular);
  color: var(--color-text-primary);
  margin-bottom: var(--space-1);
}

.category-card__subtitle {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  letter-spacing: var(--tracking-wide);
  margin-bottom: var(--space-4);
}

.category-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-small);
  font-weight: var(--weight-medium);
  color: var(--color-accent);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  transition: gap var(--duration-fast) var(--ease-smooth);
}

.category-card:hover .category-card__link {
  gap: var(--space-3);
}

.category-card__link svg {
  transition: transform var(--duration-fast) var(--ease-smooth);
}

.category-card:hover .category-card__link svg {
  transform: translateX(2px);
}

/* ── Homepage ABB-Inspired Local Prototype ── */
.home .header {
  padding: 0;
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home .header--scrolled {
  background: rgba(5, 5, 5, 0.98);
}

.home .header__inner {
  max-width: none;
  min-height: 72px;
  padding-inline: clamp(24px, 3.4vw, 56px);
}

.home .header__logo {
  min-height: 72px;
}

.home .header__logo-img,
.home .header__logo img {
  max-width: clamp(190px, 18vw, 252px);
  max-height: 52px;
  transform: translateY(-6px);
}

.home .header__nav {
  display: none;
}

.home .header__actions {
  gap: clamp(14px, 1.6vw, 22px);
  margin-left: auto;
}

.home .header__actions::before,
.home .header__actions::after {
  content: none;
  display: none;
}

.home .header__actions .btn-primary {
  display: none;
}

.home .header-search {
  order: 2;
  display: inline-flex;
}

.home .header-language {
  order: 3;
}

.home .header-language__toggle {
  position: relative;
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
}

.home .header-language__toggle svg {
  display: block;
}

.home .header-language__toggle::before {
  content: none;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 999px;
  box-shadow:
    inset 6px 0 0 -4px currentColor,
    inset -6px 0 0 -4px currentColor;
}

.home .header-language__toggle::after {
  content: none;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.home .header-language__current {
  display: none;
}

.home #mobile-menu-btn.header-explore-toggle.hide-desktop {
  position: relative;
  order: 1;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 72px;
  padding: 0 0 0 2px;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.home #mobile-menu-btn .header-explore-toggle__label {
  display: inline;
  order: 1;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.home #mobile-menu-btn svg {
  display: none;
  width: 22px;
  height: 22px;
}

.home #mobile-menu-btn::before {
  content: "";
  order: 2;
  width: 22px;
  height: 16px;
  background:
    linear-gradient(currentColor, currentColor) 0 0 / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 7px / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 14px / 100% 2px no-repeat;
}

.home #mobile-menu-btn::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--duration-normal) var(--ease-smooth);
}

.home #mobile-menu-btn:hover::after,
.home #mobile-menu-btn:focus-visible::after,
.home #mobile-menu-btn[aria-expanded="true"]::after {
  transform: scaleX(1);
}

.home .header-language__toggle,
.home .header-search__toggle,
.home .btn-ghost {
  color: #fff;
}

.home .hero--fullscreen {
  min-height: 100svh;
  align-items: center;
  padding-top: 72px;
  background: #050505;
}

.home .hero--fullscreen .hero__bg {
  top: 0;
}

.home .hero--fullscreen .hero__bg img {
  object-position: center bottom;
}

.home .hero--fullscreen .hero__video-bg {
  background-position: center bottom;
  background-size: cover;
}

.home .hero--fullscreen .hero__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.home .hero__mobile-slider {
  display: none;
}

.home .hero__mobile-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s var(--ease-smooth);
}

.home .hero__mobile-slide.active {
  opacity: 1;
}

.home .hero__mobile-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.home .hero__mobile-dots {
  display: none;
}

.home .hero__mobile-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.24s var(--ease-smooth), border-color 0.24s var(--ease-smooth), transform 0.24s var(--ease-smooth);
}

.home .hero__mobile-dot.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.12);
}

.home .hero--fullscreen::after {
  background: none;
}

.home .hero--video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(20, 22, 24, 0.24);
}

.home .hero--fullscreen::before {
  content: none;
  display: none;
}

.home .hero__media-toggle {
  position: absolute;
  right: clamp(24px, 3.6vw, 54px);
  bottom: clamp(28px, 5vw, 54px);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: var(--color-accent);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(229, 9, 20, 0.32);
  cursor: pointer;
  transition: transform 0.24s var(--ease-smooth), box-shadow 0.24s var(--ease-smooth), background 0.24s var(--ease-smooth);
}

.home .hero__media-toggle:hover,
.home .hero__media-toggle:focus-visible {
  background: #ff1722;
  box-shadow: 0 22px 42px rgba(229, 9, 20, 0.42);
  transform: translateY(-2px);
}

.home .hero__media-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 4px;
}

.home .hero__media-toggle-icon {
  grid-area: 1 / 1;
  transition: opacity 0.18s var(--ease-smooth), transform 0.18s var(--ease-smooth);
}

.home .hero__media-toggle-icon--pause {
  width: 16px;
  height: 18px;
  background: linear-gradient(to right, #fff 0 5px, transparent 5px 11px, #fff 11px 16px);
}

.home .hero__media-toggle-icon--play {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid #fff;
}

.home .hero__media-toggle[data-state="playing"] .hero__media-toggle-icon--play,
.home .hero__media-toggle[data-state="paused"] .hero__media-toggle-icon--pause {
  opacity: 0;
  transform: scale(0.82);
}

.home .hero__media-toggle[data-state="playing"] .hero__media-toggle-icon--pause,
.home .hero__media-toggle[data-state="paused"] .hero__media-toggle-icon--play {
  opacity: 1;
  transform: scale(1);
}

.home .hero--fullscreen .hero__container {
  display: flex;
  align-items: center;
  min-height: calc(100svh - 72px);
  width: 100%;
}

.home .hero--fullscreen .hero__content {
  max-width: min(960px, 82vw);
  padding-top: 0;
  padding-bottom: 0;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .home .hero--fullscreen {
    flex-direction: row;
    align-items: center;
  }

  .home .hero--fullscreen .hero__container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100svh - 72px);
  }

  .home .hero--fullscreen .hero__content {
    padding-bottom: 0;
  }

  .home .hero__ctas {
    margin-top: clamp(34px, 5vh, 52px);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .page-template-page-products .hero--fullscreen {
    flex-direction: row;
    align-items: center;
    padding-top: 72px;
  }

  .page-template-page-products .hero--fullscreen .hero__container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100svh - 72px);
  }

  .page-template-page-products .hero--fullscreen .hero__content {
    padding-top: 0;
    padding-bottom: 0;
  }

  .page-template-page-products .hero--fullscreen .hero__message {
    min-height: auto;
    margin-top: 0;
  }

  .page-template-page-products .hero__ctas {
    margin-top: clamp(34px, 5vh, 52px);
  }
}

.home .hero__message {
  max-width: 960px;
}

.home .hero__eyebrow {
  position: relative;
  min-height: 0;
  margin-bottom: clamp(18px, 2.5vw, 28px);
  padding: 0 0 0 28px;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home .hero__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 16px;
  height: 2px;
  background: var(--color-accent);
}

.home .hero__title {
  max-width: 980px;
  margin-bottom: clamp(18px, 2.4vw, 26px);
  color: #fff;
  font-size: clamp(40px, 4.7vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

.home .hero__subtitle {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 400;
}

.home .hero__ctas {
  margin-top: clamp(42px, 6vh, 64px);
}

.home .hero__ctas .btn {
  min-height: 56px;
  padding-inline: 28px;
  border-radius: var(--radius-lg);
  font-size: 16px;
  font-weight: 500;
}

.home .hero__ctas .btn svg {
  width: 18px;
  height: 18px;
}

.home .hero__dots {
  bottom: clamp(34px, 5vw, 54px);
}

@media (prefers-reduced-motion: no-preference) {
  .home .hero--ready .hero__slide.active img {
    animation: homeMediaDrift 6500ms ease-out both;
  }
}

@keyframes homeMediaDrift {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}

.home .section:not(.home-partnerships) {
  background: #050505;
}

@media (min-width: 1024px) {
  .home .section > .container {
    padding-inline: calc(var(--container-padding) + clamp(40px, 4vw, 64px));
  }
}

.home .home-abb-industries {
  padding-block: clamp(88px, 12vw, 150px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.home .home-abb-intro {
  max-width: 1020px;
  margin-bottom: clamp(54px, 8vw, 86px);
}

.home .home-abb-intro .section-header__title,
.home .section-header__title,
.home .home-technology__content .h2 {
  color: #fff;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: none;
}

.home .home-abb-intro .section-header__description,
.home .section-header__description,
.home .home-technology__content p:not(.section-header__label) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.56;
}

.home .section-header__label {
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.home .home-abb-card-rail {
  display: grid;
  grid-auto-columns: minmax(280px, 1fr);
  grid-auto-flow: column;
  gap: 3px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
}

.home .home-abb-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  scroll-snap-align: start;
  background: #111;
}

.home .home-abb-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: transform 0.7s var(--ease-smooth), opacity 0.7s var(--ease-smooth);
}

.home .home-abb-card::after {
  content: none;
  position: absolute;
  inset: 0;
  background: none;
}

.home .home-abb-card__content {
  position: absolute;
  left: clamp(22px, 2.4vw, 34px);
  right: clamp(22px, 2.4vw, 34px);
  bottom: clamp(24px, 3vw, 38px);
  z-index: 1;
}

.home .home-abb-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 400;
  line-height: 1.12;
}

.home .home-abb-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.home .home-abb-card:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.home .featured-products .products-grid,
.home .home-product-range .grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3px;
}

.home .product-card {
  border: 0;
  border-radius: 0;
  background: #111;
}

.home .product-card__image {
  border-radius: 0;
  aspect-ratio: 4 / 3;
  margin: 0;
}

.home .product-card__content {
  padding: clamp(20px, 2vw, 30px);
}

.home .product-card__title {
  color: #fff;
  font-weight: 400;
}

.home .product-card__description {
  color: rgba(255, 255, 255, 0.68);
}

.home .home-abb-capability {
  padding-block: clamp(92px, 12vw, 160px);
}

.home .home-technology__grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(44px, 7vw, 92px);
}

.home .home-technology__panel {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: inset 3px 0 0 var(--color-accent);
}

.home .home-technology__panel > div {
  padding-block: 24px;
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.home .home-technology__panel strong {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}

.home .home-technology__panel p {
  color: rgba(255, 255, 255, 0.66);
}

.home .parallax-strip {
  min-height: 72vh;
  justify-content: flex-start;
  text-align: left;
}

.home .parallax-strip__content {
  max-width: 860px;
  margin-left: var(--container-padding);
  padding: clamp(56px, 8vw, 104px) 0;
}

@media (min-width: 1024px) {
  .home .parallax-strip__content {
    margin-left: calc(var(--container-padding) + clamp(40px, 4vw, 64px));
    margin-right: calc(var(--container-padding) + clamp(40px, 4vw, 64px));
  }
}

.home .parallax-strip__content .h2 {
  color: #fff;
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 400;
  line-height: 1.1;
  text-transform: none;
}

html[lang^="en"] .home .hero__title,
html[lang^="en"] .home .home-abb-intro .section-header__title,
html[lang^="en"] .home .section-header__title,
html[lang^="en"] .home .home-technology__content .h2,
html[lang^="en"] .home .parallax-strip__content .h2 {
  font-weight: 400;
}

@media (min-width: 1024px) {
  .home .home-abb-card-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: initial;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }
}

@media (min-width: 1024px) and (max-width: 1180px) {
  .home .home-abb-card-rail,
  .home .featured-products .products-grid,
  .home .home-product-range .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home .home-proof__grid {
    grid-template-columns: 1fr;
  }

  .home .home-proof__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.home .home-partnerships {
  background: #050505;
}

.home .home-partnerships__header .h2 {
  color: #fff;
  font-size: clamp(38px, 4.6vw, 66px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.home .home-partnerships__header .section-header__label {
  font-weight: 650;
}

.home .home-partnerships__header p:not(.section-header__label) {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.28vw, 20px);
  font-weight: 400;
  line-height: 1.65;
}

.home .home-partner-logo__fallback {
  font-weight: 500;
}

.home .mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 20000;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-gutter: stable;
  background: #050505;
  isolation: isolate;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transform: none;
  backface-visibility: hidden;
  transition: clip-path 0.42s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.22s var(--ease-smooth),
              visibility 0s linear 0.42s;
  will-change: clip-path, opacity;
}

.home .mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  clip-path: inset(0 0 0 0);
  transform: none;
  transition-delay: 0s;
}

.home .mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    radial-gradient(circle at 88% 14%, rgba(229, 9, 20, 0.2), transparent 26%);
  background-size: 116px 116px, 116px 116px, auto;
  opacity: 0.9;
  pointer-events: none;
}

.home .mobile-menu__logo {
  top: 0;
  left: clamp(24px, 3.4vw, 56px);
  height: 72px;
}

.home .mobile-menu__logo img {
  max-width: clamp(190px, 18vw, 252px);
  max-height: 52px;
  transform: translateY(-6px);
}

.home .mobile-menu__close {
  top: 18px;
  right: clamp(24px, 3.4vw, 56px);
  z-index: 2;
  color: #fff;
  border-radius: 999px;
}

.home .mobile-menu__close svg {
  display: none;
}

.home .mobile-menu__close::before,
.home .mobile-menu__close::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: currentColor;
}

.home .mobile-menu__close::before {
  transform: rotate(45deg);
}

.home .mobile-menu__close::after {
  transform: rotate(-45deg);
}

.home .mobile-menu__nav {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.26fr) minmax(0, 1fr);
  align-items: start;
  justify-content: center;
  width: min(1480px, calc(100% - 48px));
  min-height: 100svh;
  padding: clamp(112px, 13vh, 138px) 0 64px;
  gap: clamp(32px, 3.8vw, 62px);
}

.home .mobile-menu__feature {
  display: none;
}

.home .mobile-menu__panels {
  grid-column: 2;
  grid-row: 1 / span 6;
  min-width: 0;
}

.home .mobile-menu__card-panel {
  display: none;
}

.home .mobile-menu__card-panel.is-active {
  display: block;
  animation: homeExplorePanelIn 0.26s var(--ease-smooth) both;
}

.home .mobile-menu__panel-heading {
  max-width: 620px;
  padding-left: clamp(20px, 2.5vw, 38px);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.home .mobile-menu__panel-heading p {
  margin: 0 0 18px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home .mobile-menu__panel-heading h2 {
  max-width: 560px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.home .mobile-menu__panel-heading > span {
  display: block;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.65;
}

.home .mobile-menu__card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
  padding-left: clamp(20px, 2.5vw, 38px);
}

.home .mobile-menu__card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(190px, 24vh, 260px);
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
}

.home .mobile-menu__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: transform 0.45s var(--ease-smooth), opacity 0.45s var(--ease-smooth);
}

.home .mobile-menu__card::after {
  content: none;
  position: absolute;
  inset: 0;
  background: none;
}

.home .mobile-menu__card-body {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 22px;
}

.home .mobile-menu__card-title {
  display: block;
  color: #fff;
  font-size: clamp(19px, 1.55vw, 24px);
  font-weight: 500;
  line-height: 1.2;
}

.home .mobile-menu__card-summary {
  display: none;
}

.home .mobile-menu__card-panel[data-menu-panel="about"] .mobile-menu__card-grid,
.home .mobile-menu__card-panel[data-menu-panel="store"] .mobile-menu__card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.home .mobile-menu__card-panel[data-menu-panel="about"] .mobile-menu__card,
.home .mobile-menu__card-panel[data-menu-panel="store"] .mobile-menu__card {
  align-items: stretch;
  min-height: clamp(164px, 19vh, 210px);
}

.home .mobile-menu__card-panel[data-menu-panel="about"] .mobile-menu__card img,
.home .mobile-menu__card-panel[data-menu-panel="store"] .mobile-menu__card img {
  position: relative;
  inset: auto;
  flex: 0 0 clamp(170px, 18vw, 240px);
  width: clamp(170px, 18vw, 240px);
  height: auto;
  min-height: 100%;
  opacity: 1;
}

.home .mobile-menu__card-panel[data-menu-panel="store"] .mobile-menu__card img {
  padding: clamp(30px, 4vw, 54px);
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  opacity: 1;
}

.home .mobile-menu__card-panel[data-menu-panel="about"] .mobile-menu__card-body,
.home .mobile-menu__card-panel[data-menu-panel="store"] .mobile-menu__card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 2.4vw, 34px);
}

.home .mobile-menu__card-panel[data-menu-panel="about"] .mobile-menu__card-summary,
.home .mobile-menu__card-panel[data-menu-panel="store"] .mobile-menu__card-summary {
  display: block;
  max-width: 620px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(16px, 1.12vw, 18px);
  font-weight: 400;
  line-height: 1.55;
}

.home .mobile-menu__card:hover,
.home .mobile-menu__card:focus {
  color: #fff;
  border-color: rgba(229, 9, 20, 0.68);
}

.home .mobile-menu__card:hover img,
.home .mobile-menu__card:focus img {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes homeExplorePanelIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.home .mobile-menu__search {
  display: none;
  grid-column: 2;
  width: min(520px, 100%);
  margin: 36px 0 0;
  border-radius: 999px;
}

.home .mobile-menu__nav > a,
.home .mobile-menu__accordion {
  grid-column: 1;
  width: 100%;
  margin-left: clamp(40px, 4vw, 64px);
}

.home .mobile-menu__nav > a {
  justify-self: start;
  width: fit-content;
  max-width: 100%;
}

.home .mobile-menu__nav > a,
.home .mobile-menu__accordion--nav .mobile-menu__accordion-toggle {
  position: relative;
  justify-content: flex-start;
  gap: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(24px, 2.7vw, 36px);
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
  transition: color 0.22s var(--ease-smooth), transform 0.22s var(--ease-smooth);
}

.home .mobile-menu__nav > a::before,
.home .mobile-menu__accordion--nav .mobile-menu__accordion-toggle::before {
  content: "\2192";
  display: inline-block;
  width: 0;
  margin-right: 0;
  overflow: hidden;
  color: var(--color-accent);
  opacity: 0;
  transform: translateX(-10px);
  transition: width 0.22s var(--ease-smooth),
              margin-right 0.22s var(--ease-smooth),
              opacity 0.22s var(--ease-smooth),
              transform 0.22s var(--ease-smooth);
}

.home .mobile-menu__nav > a:hover::before,
.home .mobile-menu__nav > a:focus-visible::before,
.home .mobile-menu__accordion--nav .mobile-menu__accordion-toggle:hover::before,
.home .mobile-menu__accordion--nav .mobile-menu__accordion-toggle:focus-visible::before,
.home .mobile-menu__accordion--nav .mobile-menu__accordion-toggle.is-active::before {
  width: 34px;
  margin-right: 12px;
  opacity: 1;
  transform: translateX(0);
}

.home .mobile-menu__nav > a:hover,
.home .mobile-menu__nav > a:focus-visible,
.home .mobile-menu__accordion--nav .mobile-menu__accordion-toggle:hover,
.home .mobile-menu__accordion--nav .mobile-menu__accordion-toggle:focus-visible,
.home .mobile-menu__accordion--nav .mobile-menu__accordion-toggle.is-active {
  color: #fff;
}

.home .mobile-menu__accordion--nav .mobile-menu__accordion-toggle::after {
  display: none;
}

.home .mobile-menu__accordion--nav .mobile-menu__accordion-panel {
  display: none !important;
}

.home .mobile-menu__accordion--nav .mobile-menu__accordion-panel a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  text-align: left;
}

.home .mobile-menu__nav > .btn.btn-primary {
  display: none;
}

.home .mobile-menu__accordion--language {
  display: none;
}

/* ── Global ABB-Inspired Explore Header ── */
.bl-explore-nav .header {
  padding: 0;
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.bl-explore-nav .header--transparent,
.bl-explore-nav .header--scrolled {
  background: rgba(5, 5, 5, 0.98);
}

.bl-explore-nav .header__inner {
  max-width: none;
  min-height: 72px;
  padding-inline: clamp(24px, 3.4vw, 56px);
}

.bl-explore-nav .header__logo {
  min-height: 72px;
}

.bl-explore-nav .header__logo-img,
.bl-explore-nav .header__logo img {
  max-width: clamp(190px, 18vw, 252px);
  max-height: 52px;
  transform: translateY(-6px);
}

.bl-explore-nav .header__nav {
  display: none !important;
}

.bl-explore-nav .header__actions {
  gap: clamp(14px, 1.6vw, 22px);
  margin-left: auto;
}

.bl-explore-nav .header__actions::before,
.bl-explore-nav .header__actions::after {
  content: none;
  display: none;
}

.bl-explore-nav .header__actions .btn-primary {
  display: none !important;
}

.bl-explore-nav .header-search {
  order: 2;
  display: inline-flex;
  align-items: center;
  min-height: 72px;
}

.bl-explore-nav .header-language {
  order: 3;
  display: inline-flex;
  align-items: center;
  min-height: 72px;
}

.bl-explore-nav .header-language__toggle {
  position: relative;
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
}

.bl-explore-nav .header-language__toggle svg {
  display: block;
}

.bl-explore-nav .header-language__toggle::before,
.bl-explore-nav .header-language__toggle::after {
  content: none;
}

.bl-explore-nav .header-language__current {
  display: none;
}

.bl-explore-nav #mobile-menu-btn.header-explore-toggle.hide-desktop {
  position: relative;
  order: 1;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 72px;
  padding: 0 0 0 2px;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.bl-explore-nav #mobile-menu-btn .header-explore-toggle__label {
  display: inline;
  order: 1;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.bl-explore-nav #mobile-menu-btn svg {
  display: none;
  width: 22px;
  height: 22px;
}

.bl-explore-nav #mobile-menu-btn::before {
  content: "";
  order: 2;
  width: 22px;
  height: 16px;
  background:
    linear-gradient(currentColor, currentColor) 0 0 / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 7px / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 14px / 100% 2px no-repeat;
}

.bl-explore-nav #mobile-menu-btn::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--duration-normal) var(--ease-smooth);
}

.bl-explore-nav #mobile-menu-btn:hover::after,
.bl-explore-nav #mobile-menu-btn:focus-visible::after,
.bl-explore-nav #mobile-menu-btn[aria-expanded="true"]::after {
  transform: scaleX(1);
}

.bl-explore-nav .header-language__toggle,
.bl-explore-nav .header-search__toggle,
.bl-explore-nav .btn-ghost {
  color: #fff;
}

.bl-explore-nav .header-search::after,
.bl-explore-nav .header-language::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--color-accent);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--duration-normal) var(--ease-smooth);
}

.bl-explore-nav .header-search:hover::after,
.bl-explore-nav .header-search:focus-within::after,
.bl-explore-nav .header-search.is-open::after,
.bl-explore-nav .header-language:hover::after,
.bl-explore-nav .header-language:focus-within::after,
.bl-explore-nav .header-language.is-open::after {
  transform: scaleX(1);
}

.bl-explore-nav .header-language__menu a {
  position: relative;
  overflow: hidden;
}

.bl-explore-nav .header-language__menu a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  background: var(--color-accent);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--duration-normal) var(--ease-smooth);
}

.bl-explore-nav .header-language__menu a:hover::after,
.bl-explore-nav .header-language__menu a:focus-visible::after,
.bl-explore-nav .header-language__menu a[aria-current="page"]::after {
  transform: scaleX(1);
}

.bl-explore-nav .mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 20000;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-gutter: stable;
  background: #050505;
  isolation: isolate;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transform: none;
  backface-visibility: hidden;
  transition: clip-path 0.42s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.22s var(--ease-smooth),
              visibility 0s linear 0.42s;
  will-change: clip-path, opacity;
}

.bl-explore-nav .mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  clip-path: inset(0 0 0 0);
  transform: none;
  transition-delay: 0s;
}

.bl-explore-nav .mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    radial-gradient(circle at 88% 14%, rgba(229, 9, 20, 0.2), transparent 26%);
  background-size: 116px 116px, 116px 116px, auto;
  opacity: 0.9;
  pointer-events: none;
}

.bl-explore-nav .mobile-menu__logo {
  top: 0;
  left: clamp(24px, 3.4vw, 56px);
  height: 72px;
}

.bl-explore-nav .mobile-menu__logo img {
  max-width: clamp(190px, 18vw, 252px);
  max-height: 52px;
  transform: translateY(-6px);
}

.bl-explore-nav .mobile-menu__close {
  top: 18px;
  right: clamp(24px, 3.4vw, 56px);
  z-index: 2;
  color: #fff;
  border-radius: 999px;
}

.bl-explore-nav .mobile-menu__close svg {
  display: none;
}

.bl-explore-nav .mobile-menu__close::before,
.bl-explore-nav .mobile-menu__close::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: currentColor;
}

.bl-explore-nav .mobile-menu__close::before {
  transform: rotate(45deg);
}

.bl-explore-nav .mobile-menu__close::after {
  transform: rotate(-45deg);
}

.bl-explore-nav .mobile-menu__nav {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.26fr) minmax(0, 1fr);
  align-items: start;
  justify-content: center;
  width: min(1480px, calc(100% - 48px));
  min-height: 100svh;
  padding: clamp(112px, 13vh, 138px) 0 64px;
  gap: clamp(32px, 3.8vw, 62px);
}

.bl-explore-nav .mobile-menu__feature {
  display: none;
}

.bl-explore-nav .mobile-menu__panels {
  grid-column: 2;
  grid-row: 1 / span 6;
  min-width: 0;
}

.bl-explore-nav .mobile-menu__card-panel {
  display: none;
}

.bl-explore-nav .mobile-menu__card-panel.is-active {
  display: block;
  animation: homeExplorePanelIn 0.26s var(--ease-smooth) both;
}

.bl-explore-nav .mobile-menu__panel-heading {
  max-width: 620px;
  padding-left: clamp(20px, 2.5vw, 38px);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.bl-explore-nav .mobile-menu__panel-heading p {
  margin: 0 0 18px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bl-explore-nav .mobile-menu__panel-heading h2 {
  max-width: 560px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.bl-explore-nav .mobile-menu__panel-heading > span {
  display: block;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.65;
}

.bl-explore-nav .mobile-menu__card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
  padding-left: clamp(20px, 2.5vw, 38px);
}

.bl-explore-nav .mobile-menu__card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(190px, 24vh, 260px);
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
}

.bl-explore-nav .mobile-menu__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: transform 0.45s var(--ease-smooth), opacity 0.45s var(--ease-smooth);
}

.bl-explore-nav .mobile-menu__card::after {
  content: none;
  position: absolute;
  inset: 0;
  background: none;
}

.bl-explore-nav .mobile-menu__card-body {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 22px;
}

.bl-explore-nav .mobile-menu__card-title {
  display: block;
  color: #fff;
  font-size: clamp(19px, 1.55vw, 24px);
  font-weight: 500;
  line-height: 1.2;
}

.bl-explore-nav .mobile-menu__card-summary {
  display: none;
}

.bl-explore-nav .mobile-menu__card-panel[data-menu-panel="about"] .mobile-menu__card-grid,
.bl-explore-nav .mobile-menu__card-panel[data-menu-panel="store"] .mobile-menu__card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bl-explore-nav .mobile-menu__card-panel[data-menu-panel="about"] .mobile-menu__card,
.bl-explore-nav .mobile-menu__card-panel[data-menu-panel="store"] .mobile-menu__card {
  align-items: stretch;
  min-height: clamp(164px, 19vh, 210px);
}

.bl-explore-nav .mobile-menu__card-panel[data-menu-panel="about"] .mobile-menu__card img,
.bl-explore-nav .mobile-menu__card-panel[data-menu-panel="store"] .mobile-menu__card img {
  position: relative;
  inset: auto;
  flex: 0 0 clamp(170px, 18vw, 240px);
  width: clamp(170px, 18vw, 240px);
  height: auto;
  min-height: 100%;
  opacity: 1;
}

.bl-explore-nav .mobile-menu__card-panel[data-menu-panel="store"] .mobile-menu__card img {
  padding: clamp(30px, 4vw, 54px);
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
}

.bl-explore-nav .mobile-menu__card-panel[data-menu-panel="about"] .mobile-menu__card-body,
.bl-explore-nav .mobile-menu__card-panel[data-menu-panel="store"] .mobile-menu__card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 2.4vw, 34px);
}

.bl-explore-nav .mobile-menu__card-panel[data-menu-panel="about"] .mobile-menu__card-summary,
.bl-explore-nav .mobile-menu__card-panel[data-menu-panel="store"] .mobile-menu__card-summary {
  display: block;
  max-width: 620px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(16px, 1.12vw, 18px);
  font-weight: 400;
  line-height: 1.55;
}

.bl-explore-nav .mobile-menu__card-panel[data-menu-panel="store"] .mobile-menu__card img {
  opacity: 1;
}

.bl-explore-nav .mobile-menu__card-panel[data-menu-panel="store"] .mobile-menu__card::after {
  background: none;
}

.bl-explore-nav .mobile-menu__card:hover,
.bl-explore-nav .mobile-menu__card:focus {
  color: #fff;
  border-color: rgba(229, 9, 20, 0.68);
}

.bl-explore-nav .mobile-menu__card:hover img,
.bl-explore-nav .mobile-menu__card:focus img {
  opacity: 1;
  transform: scale(1.05);
}

.bl-explore-nav .mobile-menu__search {
  display: none;
  grid-column: 2;
  width: min(520px, 100%);
  margin: 36px 0 0;
  border-radius: 999px;
}

.bl-explore-nav .mobile-menu__nav > a,
.bl-explore-nav .mobile-menu__accordion {
  grid-column: 1;
  width: 100%;
  margin-left: clamp(40px, 4vw, 64px);
}

.bl-explore-nav .mobile-menu__nav > a {
  justify-self: start;
  width: fit-content;
  max-width: 100%;
}

.bl-explore-nav .mobile-menu__nav > a,
.bl-explore-nav .mobile-menu__accordion--nav .mobile-menu__accordion-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  min-height: 1.22em;
  padding: 0;
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: clamp(24px, 2.7vw, 36px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
  text-align: left;
  text-decoration: none;
  text-transform: none;
  transition: color 0.22s var(--ease-smooth);
}

.bl-explore-nav .mobile-menu__nav > a::before,
.bl-explore-nav .mobile-menu__accordion--nav .mobile-menu__accordion-toggle::before {
  content: "\2192";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0;
  height: 1em;
  margin-right: 0;
  overflow: hidden;
  color: var(--color-accent);
  font-size: 0.8em;
  line-height: 1;
  opacity: 0;
  transform: translateX(-10px);
  transition: width 0.22s var(--ease-smooth),
              margin-right 0.22s var(--ease-smooth),
              opacity 0.22s var(--ease-smooth),
              transform 0.22s var(--ease-smooth);
}

.bl-explore-nav .mobile-menu__nav > a::after,
.bl-explore-nav .mobile-menu__accordion--nav .mobile-menu__accordion-toggle::after {
  display: none;
}

.bl-explore-nav .mobile-menu__nav > a:hover::before,
.bl-explore-nav .mobile-menu__nav > a:focus-visible::before,
.bl-explore-nav .mobile-menu__accordion--nav .mobile-menu__accordion-toggle:hover::before,
.bl-explore-nav .mobile-menu__accordion--nav .mobile-menu__accordion-toggle:focus-visible::before {
  width: 34px;
  margin-right: 12px;
  opacity: 1;
  transform: translateX(0);
}

.bl-explore-nav .mobile-menu__nav > a:hover,
.bl-explore-nav .mobile-menu__nav > a:focus-visible,
.bl-explore-nav .mobile-menu__accordion--nav .mobile-menu__accordion-toggle:hover,
.bl-explore-nav .mobile-menu__accordion--nav .mobile-menu__accordion-toggle:focus-visible {
  color: #fff;
}

.bl-explore-nav .mobile-menu__accordion--nav .mobile-menu__accordion-panel {
  display: none !important;
}

.bl-explore-nav .mobile-menu__nav > .btn.btn-primary {
  display: none;
}

.bl-explore-nav .mobile-menu__accordion--language {
  display: none !important;
}

@media (max-width: 1023px) {
  .home .hero--fullscreen .hero__content {
    max-width: calc(100vw - 32px);
  }

  .home .featured-products .products-grid,
  .home .home-product-range .grid,
  .home .home-technology__grid {
    grid-template-columns: 1fr;
  }

  .home #mobile-menu-btn.header-explore-toggle.hide-desktop {
    order: initial;
    gap: 0;
    min-width: 56px;
    min-height: 40px;
    padding: 0;
  }

  .home #mobile-menu-btn .header-explore-toggle__label,
  .home #mobile-menu-btn::before,
  .home #mobile-menu-btn::after,
  .home .mobile-menu__feature {
    display: none !important;
  }

  .home #mobile-menu-btn svg {
    display: block;
  }

  .home .mobile-menu {
    align-items: flex-start;
    padding: 78px 24px 32px;
  }

  .home .mobile-menu__logo {
    top: 0;
    left: clamp(24px, 3.4vw, 56px);
    height: 72px;
  }

  .home .mobile-menu__logo img {
    max-width: clamp(190px, 18vw, 252px);
    max-height: 52px;
    transform: translateY(-6px);
  }

  .home .mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: min(520px, 100%);
    min-height: calc(100svh - 110px);
    padding: 24px 0 0;
    gap: 20px;
  }

  .home .mobile-menu__panels {
    display: none;
  }

  .home .mobile-menu__panel-heading {
    display: none;
  }

  .home .mobile-menu__card-grid {
    grid-template-columns: 1fr;
    max-height: none;
    margin-top: 0;
    padding-left: 0;
    overflow: visible;
  }

  .home .mobile-menu__card {
    min-height: 96px;
  }

  .home .mobile-menu__card-body {
    padding: 16px;
  }

  .home .mobile-menu__card-title {
    font-size: 17px;
  }

  .home .mobile-menu__search {
    display: flex;
    order: -1;
    grid-column: auto;
    width: min(420px, 82vw);
    margin: 0 0 4px;
  }

  .home .mobile-menu__nav > a,
  .home .mobile-menu__accordion {
    grid-column: auto;
    display: flex;
    align-items: center;
    margin-left: 0;
  }

  .home .mobile-menu__accordion {
    flex-direction: column;
  }

  .home .mobile-menu__nav > a,
  .home .mobile-menu__accordion--nav .mobile-menu__accordion-toggle {
    justify-content: center;
    font-size: clamp(22px, 6.1vw, 30px);
    font-weight: 400;
    letter-spacing: 0.02em;
    text-align: center;
    text-transform: none;
  }

  .home .mobile-menu__accordion--nav .mobile-menu__accordion-panel {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: auto;
    max-height: none;
    margin-top: 8px;
    padding: 2px 0 4px;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .home .mobile-menu__accordion--nav .mobile-menu__accordion-panel[hidden] {
    display: none !important;
  }

  .home .mobile-menu__accordion--nav .mobile-menu__accordion-panel a {
    padding: 0;
    color: #fff;
    font-size: clamp(16px, 4.15vw, 17px);
    line-height: 1.45;
    opacity: 0.88;
    text-align: center;
    text-decoration: none;
  }

  .home .mobile-menu__accordion--nav .mobile-menu__accordion-panel a:hover,
  .home .mobile-menu__accordion--nav .mobile-menu__accordion-panel a:focus-visible {
    opacity: 1;
  }

  .home .mobile-menu__accordion--nav .mobile-menu__accordion-panel a[aria-current="page"] {
    opacity: 1;
  }

  .home .mobile-menu__nav > a::before,
  .home .mobile-menu__accordion--nav .mobile-menu__accordion-toggle::before,
  .home .mobile-menu__nav > a:hover::before,
  .home .mobile-menu__accordion--nav .mobile-menu__accordion-toggle:hover::before,
  .home .mobile-menu__nav > a:focus-visible::before,
  .home .mobile-menu__accordion--nav .mobile-menu__accordion-toggle:focus-visible::before,
  .home .mobile-menu__accordion--nav .mobile-menu__accordion-toggle.is-active::before {
    display: none;
    width: 0;
    margin-right: 0;
  }

  .home .mobile-menu__accordion--nav .mobile-menu__accordion-toggle::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    margin-left: 14px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    opacity: 0.72;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s var(--ease-smooth), opacity 0.2s var(--ease-smooth);
  }

  .home .mobile-menu__accordion--nav .mobile-menu__accordion-toggle[aria-expanded="true"]::after {
    opacity: 1;
    transform: rotate(225deg) translateY(-2px);
  }

  .home .mobile-menu__nav > .btn.btn-primary {
    display: inline-flex;
    margin-top: 4px !important;
  }

  .home .mobile-menu__accordion--language {
    display: flex !important;
  }

  .bl-explore-nav #mobile-menu-btn.header-explore-toggle.hide-desktop {
    order: initial;
    gap: 0;
    min-width: 56px;
    min-height: 40px;
    padding: 0;
  }

  .bl-explore-nav #mobile-menu-btn .header-explore-toggle__label,
  .bl-explore-nav #mobile-menu-btn::before,
  .bl-explore-nav #mobile-menu-btn::after,
  .bl-explore-nav .mobile-menu__feature {
    display: none !important;
  }

  .bl-explore-nav #mobile-menu-btn svg {
    display: block;
  }

  .bl-explore-nav .mobile-menu {
    align-items: flex-start;
    padding: 78px 24px 32px;
  }

  .bl-explore-nav .mobile-menu__logo {
    top: 0;
    left: clamp(24px, 3.4vw, 56px);
    height: 72px;
  }

  .bl-explore-nav .mobile-menu__logo img {
    max-width: clamp(190px, 18vw, 252px);
    max-height: 52px;
    transform: translateY(-6px);
  }

  .bl-explore-nav .mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: min(520px, 100%);
    min-height: calc(100svh - 110px);
    padding: 24px 0 0;
    gap: 20px;
  }

  .bl-explore-nav .mobile-menu__panels {
    display: none;
  }

  .bl-explore-nav .mobile-menu__panel-heading {
    display: none;
  }

  .bl-explore-nav .mobile-menu__card-grid {
    grid-template-columns: 1fr;
    max-height: none;
    margin-top: 0;
    padding-left: 0;
    overflow: visible;
  }

  .bl-explore-nav .mobile-menu__card {
    min-height: 96px;
  }

  .bl-explore-nav .mobile-menu__card-body {
    padding: 16px;
  }

  .bl-explore-nav .mobile-menu__card-title {
    font-size: 17px;
  }

  .bl-explore-nav .mobile-menu__search {
    display: flex;
    order: -1;
    grid-column: auto;
    width: min(420px, 82vw);
    margin: 0 0 4px;
  }

  .bl-explore-nav .mobile-menu__nav > a,
  .bl-explore-nav .mobile-menu__accordion {
    grid-column: auto;
    display: flex;
    align-items: center;
    margin-left: 0;
  }

  .bl-explore-nav .mobile-menu__accordion {
    flex-direction: column;
  }

  .bl-explore-nav .mobile-menu__nav > a,
  .bl-explore-nav .mobile-menu__accordion--nav .mobile-menu__accordion-toggle {
    justify-content: center;
    font-size: clamp(22px, 6.1vw, 30px);
    font-weight: 400;
    letter-spacing: 0.02em;
    text-align: center;
    text-transform: none;
  }

  .bl-explore-nav .mobile-menu__accordion--nav .mobile-menu__accordion-panel {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: auto;
    max-height: none;
    margin-top: 8px;
    padding: 2px 0 4px;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .bl-explore-nav .mobile-menu__accordion--nav .mobile-menu__accordion-panel[hidden] {
    display: none !important;
  }

  .bl-explore-nav .mobile-menu__accordion--nav .mobile-menu__accordion-panel a {
    padding: 0;
    color: #fff;
    font-size: clamp(16px, 4.15vw, 17px);
    line-height: 1.45;
    opacity: 0.88;
    text-align: center;
    text-decoration: none;
  }

  .bl-explore-nav .mobile-menu__accordion--nav .mobile-menu__accordion-panel a:hover,
  .bl-explore-nav .mobile-menu__accordion--nav .mobile-menu__accordion-panel a:focus-visible {
    opacity: 1;
  }

  .bl-explore-nav .mobile-menu__accordion--nav .mobile-menu__accordion-panel a[aria-current="page"] {
    opacity: 1;
  }

  .bl-explore-nav .mobile-menu__nav > a::before,
  .bl-explore-nav .mobile-menu__accordion--nav .mobile-menu__accordion-toggle::before,
  .bl-explore-nav .mobile-menu__nav > a:hover::before,
  .bl-explore-nav .mobile-menu__accordion--nav .mobile-menu__accordion-toggle:hover::before,
  .bl-explore-nav .mobile-menu__nav > a:focus-visible::before,
  .bl-explore-nav .mobile-menu__accordion--nav .mobile-menu__accordion-toggle:focus-visible::before {
    display: none;
    width: 0;
    margin-right: 0;
  }

  .bl-explore-nav .mobile-menu__accordion--nav .mobile-menu__accordion-toggle::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    margin-left: 14px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    opacity: 0.72;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s var(--ease-smooth), opacity 0.2s var(--ease-smooth);
  }

  .bl-explore-nav .mobile-menu__accordion--nav .mobile-menu__accordion-toggle[aria-expanded="true"]::after {
    opacity: 1;
    transform: rotate(225deg) translateY(-2px);
  }

  .bl-explore-nav .mobile-menu__nav > .btn.btn-primary {
    display: inline-flex;
    margin-top: 4px !important;
  }

  .bl-explore-nav .mobile-menu__accordion--language {
    display: flex !important;
  }
}

@media (max-width: 767px) {
  .home .header__inner {
    min-height: 76px;
    padding-inline: 20px;
  }

  .home .header__logo-img,
  .home .header__logo img {
    max-width: 218px;
    max-height: 50px;
    transform: translateY(-6px);
  }

  .home .mobile-menu__logo {
    top: 2px;
    left: 20px;
    height: 72px;
  }

  .home .mobile-menu__logo img {
    max-width: 218px;
    max-height: 50px;
    transform: translateY(-6px);
  }

  .bl-explore-nav .header__inner {
    min-height: 76px;
    padding-inline: 20px;
  }

  .bl-explore-nav .header__logo-img,
  .bl-explore-nav .header__logo img {
    max-width: 218px;
    max-height: 50px;
    transform: translateY(-6px);
  }

  .bl-explore-nav .mobile-menu__logo {
    top: 2px;
    left: 20px;
    height: 72px;
  }

  .bl-explore-nav .mobile-menu__logo img {
    max-width: 218px;
    max-height: 50px;
    transform: translateY(-6px);
  }

  .home .hero--fullscreen {
    padding-top: 76px;
  }

  .home .hero--fullscreen .hero__bg {
    top: 0;
  }

  .home .hero__video-bg,
  .home .hero__video,
  .home .hero__media-toggle {
    display: none;
  }

  .home .hero__mobile-slider {
    display: block;
  }

  .home .hero__mobile-dots {
    position: absolute;
    left: 50%;
    bottom: calc(32px + env(safe-area-inset-bottom));
    z-index: 3;
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
  }

  .home .hero__media-toggle {
    right: 20px;
    bottom: calc(24px + env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
    box-shadow: 0 14px 28px rgba(229, 9, 20, 0.34);
  }

  .home .hero__media-toggle-icon--pause {
    width: 14px;
    height: 16px;
    background: linear-gradient(to right, #fff 0 4px, transparent 4px 10px, #fff 10px 14px);
  }

  .home .hero__media-toggle-icon--play {
    margin-left: 3px;
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 14px;
  }

  .home .hero--fullscreen .hero__content {
    min-height: calc(100svh - 76px);
    padding-top: 0;
    padding-bottom: calc(180px + env(safe-area-inset-bottom));
  }

  .home .hero__message {
    min-height: auto;
    margin-top: clamp(148px, 24svh, 220px);
  }

  .home .hero__title {
    max-width: 360px;
    font-size: clamp(29px, 7.8vw, 36px);
  }

  .home .hero__subtitle {
    max-width: 340px;
    font-size: 15px;
  }

  .page-template-page-products .hero__title {
    max-width: 360px;
    font-size: clamp(29px, 7.8vw, 36px);
  }

  .page-template-page-products .hero__subtitle {
    max-width: 340px;
    font-size: 15px;
  }

  .page-template-page-products .hero--fullscreen {
    padding-top: 76px;
  }

  .page-template-page-products .hero--fullscreen .hero__container {
    align-items: center;
    justify-content: center;
    min-height: calc(100svh - 76px);
  }

  .page-template-page-products .hero--fullscreen .hero__content {
    justify-content: center;
    min-height: calc(100svh - 76px);
    padding-top: 0;
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .page-template-page-products .hero--fullscreen .hero__message {
    min-height: auto;
    margin-top: 0;
  }

  .page-template-page-products .hero__ctas {
    width: 100%;
    max-width: 350px;
    margin-top: clamp(22px, 4vh, 30px);
  }

  .page-template-page-products .hero__ctas .btn {
    min-height: 48px;
    flex: 1 1 0;
    padding-inline: 16px;
    font-size: 15px;
  }

  .home .hero__ctas {
    width: 100%;
    max-width: 350px;
    margin-top: clamp(22px, 4vh, 30px);
  }

  .home .hero__ctas .btn {
    min-height: 48px;
    flex: 1 1 0;
    padding-inline: 16px;
    font-size: 15px;
  }

  .home .hero__dots {
    bottom: calc(34px + env(safe-area-inset-bottom));
  }

  .home .home-abb-industries,
  .home .home-abb-capability {
    padding-block: 72px;
  }

  .home .home-abb-intro .section-header__title,
  .home .section-header__title,
  .home .home-technology__content .h2,
  .home .parallax-strip__content .h2 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .home .home-abb-card-rail {
    grid-auto-columns: minmax(76vw, 1fr);
  }

  .home .home-abb-card {
    min-height: 360px;
  }

  .home .parallax-strip {
    min-height: 62vh;
  }
}

/* ── Homepage ABB Editorial Upgrade ── */
.home .home-abb-industries,
.home .featured-products,
.home .home-abb-capability,
.home .home-product-range,
.home .home-partnerships,
.home .home-proof {
  position: relative;
  overflow: hidden;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.home .home-abb-industries,
.home .featured-products,
.home .home-abb-capability,
.home .home-product-range,
.home .home-proof {
  padding-block: clamp(86px, 10vw, 148px);
}

.home .home-partnerships {
  padding-block: clamp(78px, 9vw, 132px);
}

.home .home-abb-industries::before,
.home .featured-products::before,
.home .home-abb-capability::before,
.home .home-product-range::before,
.home .home-partnerships::before,
.home .home-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.044) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 28%, rgba(255, 255, 255, 0.02));
  background-size: 128px 128px, 128px 128px, auto;
  mask-image: linear-gradient(180deg, transparent, black 14%, black 84%, transparent);
  opacity: 0.62;
  pointer-events: none;
}

.home .home-technology::after,
.home .home-capabilities::after {
  opacity: 0.18;
}

.home .home-abb-industries > .container,
.home .featured-products > .container,
.home .home-abb-capability > .container,
.home .home-product-range > .container,
.home .home-partnerships > .container,
.home .home-proof > .container {
  position: relative;
  z-index: 1;
}

.home .home-abb-intro,
.home .featured-products .section-header,
.home .home-product-range .section-header {
  max-width: min(980px, 100%);
  margin-inline: 0;
  margin-bottom: clamp(44px, 6vw, 76px);
  text-align: left;
}

.home .home-abb-intro .section-header__title,
.home .featured-products .section-header__title,
.home .home-product-range .section-header__title,
.home .home-technology__content .h2,
.home .home-partnerships__header .h2,
.home .home-proof__grid .h2 {
  color: #fff;
  font-size: clamp(40px, 4.7vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

.home .home-abb-intro .section-header__description,
.home .featured-products .section-header__description,
.home .home-product-range .section-header__description,
.home .home-technology__content p:not(.section-header__label),
.home .home-partnerships__header p:not(.section-header__label) {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.62;
}

.home .home-abb-card-rail {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-flow: row;
  grid-auto-columns: initial;
  gap: clamp(18px, 2vw, 28px);
  overflow: visible;
  padding-bottom: 0;
  scroll-snap-type: none;
}

@media (min-width: 1024px) {
  .home .home-abb-card-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: initial;
  }
}

.home .home-abb-card {
  min-height: clamp(360px, 34vw, 500px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: #101010;
  isolation: isolate;
}

.home .home-abb-card::before {
  content: "";
  position: absolute;
  left: clamp(24px, 2.6vw, 38px);
  top: clamp(24px, 2.6vw, 38px);
  z-index: 2;
  width: 42px;
  height: 2px;
  background: var(--color-accent);
}

.home .home-abb-card::after {
  z-index: 1;
  border-radius: inherit;
  background: none;
}

.home .home-abb-card img {
  opacity: 1;
  filter: none;
}

.home .home-abb-card__content {
  z-index: 2;
  left: clamp(24px, 2.8vw, 42px);
  right: clamp(24px, 2.8vw, 42px);
  bottom: clamp(28px, 3.2vw, 46px);
}

.home .home-abb-card h3 {
  max-width: 620px;
  margin-bottom: 14px;
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 380;
  line-height: 1.05;
}

.home .home-abb-card p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.6;
}

.home .featured-products .products-grid,
.home .home-product-range .grid {
  gap: clamp(18px, 2vw, 28px);
}

@media (min-width: 1181px) {
  .home .featured-products .products-grid,
  .home .home-product-range .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.home .product-card {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #0d0d0f;
  transition: border-color var(--duration-normal) var(--ease-smooth),
              transform var(--duration-normal) var(--ease-smooth);
}

.home .product-card:hover {
  border-color: rgba(255, 255, 255, 0.26);
  transform: translateY(-3px);
}

.home .product-card__image {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px 12px 0 0;
  background-color: #111;
}

.home .product-card__image::after {
  content: none;
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.home .product-card__content {
  padding: clamp(22px, 2.3vw, 34px);
}

.home .product-card__title {
  margin-bottom: 12px;
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.12;
}

.home .product-card__description {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.6;
}

.home .home-technology__grid {
  align-items: start;
  gap: clamp(46px, 7vw, 96px);
}

@media (min-width: 1024px) {
  .home .home-technology__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  }
}

.home .home-technology__content {
  max-width: 860px;
}

.home .home-tech-list {
  gap: 10px;
  margin-top: clamp(30px, 4vw, 48px);
}

.home .home-tech-list span,
.home .home-tech-list a {
  min-height: 40px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.home .home-technology__panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.014)),
    rgba(10, 10, 11, 0.9);
  box-shadow: none;
}

.home .home-technology__panel > div {
  min-height: clamp(132px, 11vw, 168px);
  padding: clamp(28px, 3vw, 42px);
  gap: clamp(20px, 2vw, 30px);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.home .home-technology__panel > div::before {
  align-items: flex-start;
  justify-content: flex-start;
  width: auto;
  height: auto;
  color: rgba(255, 255, 255, 0.48);
  border: 0;
  background: transparent;
  font-size: 14px;
}

.home .home-technology__panel > div::after {
  content: "→";
  position: absolute;
  right: clamp(24px, 3vw, 42px);
  top: clamp(26px, 3vw, 40px);
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
  line-height: 1;
}

.home .home-technology__panel strong {
  margin-right: 36px;
  margin-bottom: 12px;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 380;
  line-height: 1.1;
}

.home .home-technology__panel p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.62;
}

.home .home-partnerships__header {
  align-items: start;
  gap: clamp(34px, 6vw, 82px);
  margin-bottom: clamp(40px, 6vw, 72px);
}

@media (min-width: 1024px) {
  .home .home-partnerships__header {
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  }
}

.home .home-partnerships__logos {
  gap: 1px;
  border-radius: 12px;
  box-shadow: none;
}

.home .home-partner-logo {
  min-height: clamp(116px, 12vw, 156px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.016)),
    #0c0c0d;
}

.home .home-proof {
  background: #050505;
}

.home .home-proof__grid {
  gap: clamp(42px, 6vw, 88px);
  align-items: end;
}

@media (min-width: 1024px) {
  .home .home-proof__grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  }
}

.home .home-proof__grid .h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.home .home-proof__stats {
  gap: clamp(14px, 1.4vw, 20px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home .home-proof__stats div {
  min-height: clamp(156px, 14vw, 206px);
  padding: clamp(24px, 2.4vw, 34px);
  justify-content: space-between;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    #0d0d0f;
}

.home .home-proof__stats div::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--color-accent);
}

.home .home-proof__stats strong {
  min-height: auto;
  color: #fff;
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 400;
  line-height: 1.05;
  white-space: normal;
}

.home .home-proof__stats span {
  min-height: auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.55;
}

@media (min-width: 1024px) and (max-width: 1180px) {
  .home .home-abb-card-rail,
  .home .featured-products .products-grid,
  .home .home-product-range .grid,
  .home .home-proof__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home .home-technology__grid,
  .home .home-proof__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1023px) {
  .home .home-abb-industries,
  .home .featured-products,
  .home .home-abb-capability,
  .home .home-product-range,
  .home .home-partnerships,
  .home .home-proof {
    padding-block: 72px;
  }

  .home .home-abb-intro .section-header__title,
  .home .featured-products .section-header__title,
  .home .home-product-range .section-header__title,
  .home .home-technology__content .h2,
  .home .home-partnerships__header .h2,
  .home .home-proof__grid .h2 {
    font-size: clamp(40px, 4.7vw, 64px);
    line-height: 1.08;
  }

  .home .home-abb-card-rail,
  .home .featured-products .products-grid,
  .home .home-product-range .grid,
  .home .home-proof__stats {
    grid-template-columns: 1fr;
  }

  .home .home-abb-card {
    min-height: 360px;
  }

  .home .home-technology__panel > div {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 122px;
  }
}

@media (max-width: 767px) {
  .home .home-abb-industries,
  .home .featured-products,
  .home .home-abb-capability,
  .home .home-product-range,
  .home .home-partnerships,
  .home .home-proof {
    padding-block: 60px;
  }

  .home .home-technology__panel > div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home .home-technology__panel > div::before,
  .home .home-technology__panel strong,
  .home .home-technology__panel p {
    grid-column: 1;
  }

  .home .home-technology__panel > div::after {
    top: 28px;
  }

  .home .home-abb-intro .section-header__title,
  .home .featured-products .section-header__title,
  .home .home-product-range .section-header__title,
  .home .home-technology__content .h2,
  .home .home-partnerships__header .h2,
  .home .home-proof__grid .h2 {
    font-size: clamp(29px, 7.8vw, 36px);
  }
}

@media (min-width: 1024px) {
  /* Keep fullscreen menu hover markers decorative so nav labels never reflow. */
  .home .mobile-menu__nav > a::before,
  .home .mobile-menu__accordion--nav .mobile-menu__accordion-toggle::before,
  .bl-explore-nav .mobile-menu__nav > a::before,
  .bl-explore-nav .mobile-menu__accordion--nav .mobile-menu__accordion-toggle::before {
    position: absolute;
    left: -46px;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 1em;
    margin-right: 0;
    opacity: 0;
    transform: translate(-8px, -50%);
    pointer-events: none;
  }

  .home .mobile-menu__nav > a:hover::before,
  .home .mobile-menu__nav > a:focus-visible::before,
  .home .mobile-menu__accordion--nav .mobile-menu__accordion-toggle:hover::before,
  .home .mobile-menu__accordion--nav .mobile-menu__accordion-toggle:focus-visible::before,
  .home .mobile-menu__accordion--nav .mobile-menu__accordion-toggle.is-active::before,
  .bl-explore-nav .mobile-menu__nav > a:hover::before,
  .bl-explore-nav .mobile-menu__nav > a:focus-visible::before,
  .bl-explore-nav .mobile-menu__accordion--nav .mobile-menu__accordion-toggle:hover::before,
  .bl-explore-nav .mobile-menu__accordion--nav .mobile-menu__accordion-toggle:focus-visible::before {
    width: 34px;
    margin-right: 0;
    opacity: 1;
    transform: translate(0, -50%);
  }
}

/* ── Products CTA Section ── */
.products-cta {
  background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  border-top: var(--border-width) solid var(--color-border);
}

.products-cta__inner {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  padding-block: var(--space-16);
}

.products-cta__title {
  font-size: var(--text-h2);
  font-weight: var(--weight-light);
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
}

.products-cta__desc {
  font-size: var(--text-body);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
}

.btn-lg {
  padding: 18px 36px;
  font-size: var(--text-body);
}
