@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@400;600;700;800&display=swap");

:root {
  --wmx-primary: #4c459c;
  --wmx-primary-dark: #2f2a63;
  --wmx-primary-soft: #6a63c8;
  --wmx-accent: #9df3cf;
  --wmx-cta-gradient: linear-gradient(to bottom, transparent, #ee4f7e, transparent);
  --wmx-ink: #16152a;
  --wmx-text: #4f5575;
  --wmx-surface: #ffffff;
  --wmx-surface-alt: #f6f7fc;
  --wmx-border: rgba(76, 69, 156, 0.12);
  --wmx-shadow: 0 24px 80px rgba(28, 28, 58, 0.14);
  --wmx-radius: 28px;
  --wmx-container: min(1240px, calc(100vw - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--wmx-text);
  background:
    radial-gradient(circle at top left, rgba(157, 243, 207, 0.26), transparent 20rem),
    radial-gradient(circle at top right, rgba(76, 69, 156, 0.15), transparent 24rem),
    linear-gradient(180deg, #f5f6fc 0%, #ffffff 24%, #f7f7fb 100%);
  line-height: 1.65;
}

body.mobile-nav-open {
  overflow: hidden;
}

a {
  color: var(--wmx-primary);
  text-decoration: none;
}

a:hover {
  color: var(--wmx-primary-dark);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.8rem;
  color: var(--wmx-ink);
  font-family: "Sora", "Manrope", sans-serif;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.5rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

p {
  margin: 0 0 1rem;
}

.site-shell {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0;
  transition: padding 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 0;
}

.site-header__bar {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem max(24px, calc((100vw - min(1240px, calc(100vw - 48px))) / 2));
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(20px);
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 0;
  box-shadow: 0 16px 40px rgba(35, 33, 76, 0.08);
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, border-radius 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled .site-header__bar {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(76, 69, 156, 0.1);
  border-radius: 0;
  box-shadow: 0 18px 42px rgba(23, 22, 48, 0.12);
  padding: 0.85rem max(24px, calc((100vw - min(1240px, calc(100vw - 48px))) / 2));
}

.site-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  flex: 0 1 auto;
}

.site-brand__logo--full {
  width: min(280px, 28vw);
}

.site-brand__logo--mark {
  display: none;
  width: 60px;
}

.site-header__nav {
  display: flex;
  align-items: center;
  /* gap: 1rem; */
  flex: 1;
  justify-content: flex-end;
}

.site-header__utility,
.site-header__mainnav,
.site-header__cta {
  display: flex;
  align-items: center;
}

.site-header__utility .region,
.site-header__mainnav .region,
.site-header__cta .region {
  display: contents;
}

.menu-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.menu-list a,
.sf-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.65rem 1rem;
  border-radius: 0;
  color: var(--wmx-ink);
  font-size: 0.96rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled .menu-list a,
.site-header.is-scrolled .sf-menu a {
  color: var(--wmx-ink);
}

.menu-list a:hover,
.menu-list a.is-active,
.sf-menu a:hover,
.sf-menu a.is-active {
  background: linear-gradient(180deg, rgba(76, 69, 156, 0.08), rgba(76, 69, 156, 0.03));
  color: var(--wmx-primary);
  border-radius: 20px;
}

.site-header.is-scrolled .menu-list a:hover,
.site-header.is-scrolled .menu-list a.is-active,
.site-header.is-scrolled .sf-menu a:hover,
.site-header.is-scrolled .sf-menu a.is-active {
  background: linear-gradient(180deg, rgba(76, 69, 156, 0.1), rgba(76, 69, 156, 0.04));
  color: var(--wmx-primary);
}

.sf-menu,
.sf-menu ul {
  float: none;
  display: flex;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sf-menu li {
  float: none;
}

@media (min-width: 1101px) {
  .site-header__mainnav {
    position: relative;
    z-index: 15;
  }

  .site-header__mainnav .sf-menu {
    position: relative;
    align-items: center;
  }

  .site-header__mainnav .sf-menu>li {
    position: relative;
  }

  .site-header__mainnav .sf-menu ul {
    position: absolute;
    top: calc(100% + 0.9rem);
    left: 0;
    min-width: 240px;
    display: grid;
    gap: 0.35rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(76, 69, 156, 0.1);
    border-radius: 0;
    box-shadow: 0 24px 48px rgba(24, 23, 52, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    z-index: 30;
  }

  .site-header__mainnav .sf-menu ul ul {
    top: -0.8rem;
    left: calc(100% + 0.7rem);
  }

  .site-header__mainnav .sf-menu li:hover>ul,
  .site-header__mainnav .sf-menu li:focus-within>ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header__mainnav .sf-menu ul li {
    position: relative;
  }

  .site-header__mainnav .sf-menu ul a {
    width: 100%;
    justify-content: flex-start;
    min-height: 2.9rem;
    padding: 0.8rem 0.95rem;
    border-radius: 0;
    font-size: 0.92rem;
    line-height: 1.25;
  }

  .site-header__mainnav .sf-menu li.menuparent>a::after {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    margin-left: 0.45rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    opacity: 0.75;
  }

  .site-header__mainnav .sf-menu ul li.menuparent>a::after {
    margin-left: auto;
    transform: rotate(-45deg);
  }
}

.site-header__cta .block,
.site-header__cta #block-wattmaix-site-branding {
  margin: 0;
}

.site-header__cta a,
.site-header__cta .button,
.site-header__cta input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.35rem;
  min-width: 11.5rem;
  border-radius: 999px;
  border: 0;
  background: var(--wmx-cta-gradient), linear-gradient(135deg, #c52f66 0%, #ee4f7e 48%, #ff8ba9 100%);
  box-shadow: 0 14px 32px rgba(238, 79, 126, 0.24);
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.site-header__cta a:hover,
.site-header__cta .button:hover,
.site-header__cta input[type="submit"]:hover {
  color: #fff;
  transform: translateY(-1px);
}

.site-header.is-scrolled .site-header__cta a,
.site-header.is-scrolled .site-header__cta .button,
.site-header.is-scrolled .site-header__cta input[type="submit"] {
  background: var(--wmx-cta-gradient), linear-gradient(135deg, #c52f66 0%, #ee4f7e 48%, #ff8ba9 100%);
  box-shadow: 0 14px 28px rgba(238, 79, 126, 0.22);
  color: #fff;
}

.site-header__toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(76, 69, 156, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(35, 33, 76, 0.1);
  cursor: pointer;
  flex: 0 0 auto;
  position: relative;
  z-index: 3;
}

.site-header__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--wmx-primary-dark);
  transform-origin: center;
  transition: transform 220ms ease, opacity 180ms ease, background-color 180ms ease;
}

.site-header__toggle:hover span {
  background: var(--wmx-primary);
}

.site-header__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.site-header__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-header__mobile {
  display: none;
}

.page-featured,
.page-breadcrumb,
.page-main,
.site-footer__top,
.site-footer__bottom {
  width: var(--wmx-container);
  margin-inline: auto;
}

.page-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  /* gap: 2rem; */
  /* padding: 2rem 0 5rem; */
}

.page-main--has-left,
.page-main--has-right {
  grid-template-columns: 280px minmax(0, 1fr) 280px;
}

.page-main--has-left:not(.page-main--has-right) {
  grid-template-columns: 280px minmax(0, 1fr);
}

.page-main--has-right:not(.page-main--has-left) {
  grid-template-columns: minmax(0, 1fr) 280px;
}

.page-content>*+* {
  margin-top: 2rem;
}

.field--name-title,
.page-title {
  margin-bottom: 1rem;
}

.paragraph,
.node,
.block,
.views-row {
  transition: opacity 420ms ease, transform 420ms ease;
}

.is-reveal-ready {
  opacity: 0;
  transform: translateY(18px);
}

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

.hero-wrapper,
.feature-section,
.image-with-text-wrapper,
.contact-us-main-wrapper,
.banner-wrapper,
.project-main-wrapper,
.products-detail-wrapper,
.profile-node-wrapper,
.blog-main-wrapper {
  position: relative;
  border-radius: var(--wmx-radius);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--wmx-border);
  box-shadow: var(--wmx-shadow);
  overflow: hidden;
}

.hero-wrapper {
  min-height: 80vh;
  display: grid;
  align-items: end;
  isolation: isolate;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  background:
    linear-gradient(115deg, rgba(22, 21, 42, 0.72), rgba(76, 69, 156, 0.54)),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 52%, rgba(15, 17, 31, 0.4) 100%);
}

.hero-wrapper::before {
  content: "";
  position: absolute;
  inset: auto auto -10% -8%;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 243, 207, 0.26), transparent 70%);
  z-index: 1;
}

.hero-wrapper .hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero-wrapper .hero-image>*,
.hero-wrapper .hero-image .field,
.hero-wrapper .hero-image .field__item,
.hero-wrapper .hero-image .media,
.hero-wrapper .hero-image .contextual-region {
  width: 100%;
  height: 100%;
}

.hero-wrapper .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-wrapper .body-main-wrapper {
  position: relative;
  z-index: 2;
  width: min(var(--wmx-container), calc(100vw - 48px));
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 4rem);
}

.hero-wrapper .hero-content {
  width: 100%;
  max-width: none;
  color: rgba(255, 255, 255, 0.86);
}

.hero-wrapper .hero-content h1,
.hero-wrapper .hero-content h2,
.hero-wrapper .hero-content h3,
.hero-wrapper .hero-content h4,
.hero-wrapper .hero-content h5,
.hero-wrapper .hero-content h6 {
  color: #fff;
}

.hero-wrapper .above-content {
  display: grid;
  gap: 1.25rem;
}

.hero-wrapper .social-links {
  margin-top: 2rem;
}

.hero-wrapper .social-media-links--platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0;
}

.hero-wrapper .social-media-link-item a {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.feature-section,
.image-with-text-wrapper,
.contact-us-main-wrapper,
.banner-wrapper,
.project-main-wrapper,
.products-detail-wrapper,
.profile-node-wrapper,
.blog-main-wrapper {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.feature-section,
.image-with-text-wrapper,
.profile-node-wrapper,
.products-detail-wrapper .gallery,
.blog-main-wrapper .body-with-view {
  display: grid;
  gap: 2rem;
}

.feature-section {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  margin: 20px 0 0 0;
}

.feature-section .right-section {
  display: grid;
  align-content: center;
  gap: 0.9rem;
}

.feature-section .right-section>.field--name-field-description {
  display: grid;
  gap: 0.75rem;
}

.feature-section .right-section>.field--name-field-description p {
  margin: 0;
}

.feature-section .right-section>.field--name-field-description ul {
  display: none;
}

.feature-section .large-image,
.image-with-text-wrapper .image,
.project-main-wrapper .image-wrapper,
.blog-main-wrapper .blog-image,
.profile-node-wrapper .image-wrapper,
.products-detail-wrapper .preview-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #f5f6fd, #eceeff);
}

.feature-section .small-image {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  width: min(42%, 220px);
  border-radius: 22px;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 20px 45px rgba(31, 29, 73, 0.2);
}

.feature-section .counter-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 1.15rem 0 1rem;
}

.counter-num {
  padding: 1.25rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f3f4fb);
  border: 1px solid rgba(76, 69, 156, 0.1);
  height: 100%;
}

.counter-num .number {
  color: var(--wmx-primary);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  font-weight: 800;
}

.counter-num .label {
  color: var(--wmx-text);
  font-size: 0.92rem;
  font-weight: 700;
}

.cta-links a,
.field--name-field-cta-link a,
.field--name-field-link a,
.paragraph .button,
.webform-button--submit,
.page-main button,
.page-main input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.25rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  border: 0;
  background: var(--wmx-cta-gradient), linear-gradient(135deg, #c52f66 0%, #ee4f7e 48%, #ff8ba9 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(238, 79, 126, 0.22);
}

.banner-wrapper {
  min-height: 360px;
  display: grid;
  align-items: end;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  box-shadow: none;
}

.paragraph--type--banner-with-image .banner-wrapper {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  box-shadow: none;
}

.banner-wrapper .image-wrapper {
  position: absolute;
  inset: 0;
}

.banner-wrapper .image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 16, 30, 0.08) 0%, rgba(14, 16, 30, 0.2) 42%, rgba(14, 16, 30, 0.7) 100%);
  pointer-events: none;
}

.banner-wrapper .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-wrapper .text-wrapper {
  position: relative;
  z-index: 1;
  width: min(var(--wmx-container), calc(100vw - 48px));
  margin-inline: auto;
  padding: 2.4rem;
  background: unset !important;
}

.banner-wrapper .text-wrapper * {
  color: #fff;
}

.image-with-text-wrapper {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.contact-us-main-wrapper .webform-with-info {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
}

.page-content>.region--content>article {
  display: grid;
  gap: clamp(2rem, 3vw, 2.75rem);
}

.paragraph--type--contact-us .banner-wrapper,
.paragraph--type--banner-with-image .banner-wrapper {
  min-height: clamp(320px, 42vw, 480px);
}

.paragraph--type--contact-us .paragraph--type--banner-with-image .banner-wrapper,
.paragraph--type--contact-us+.paragraph--type--banner-with-image .banner-wrapper,
.page-content .paragraph--type--contact-us~.paragraph--type--banner-with-image .banner-wrapper,
.page-content .paragraph--type--banner-with-image:has(+ .paragraph--type--contact-us) .banner-wrapper,
.page-content .paragraph--type--contact-us .banner-wrapper {
  min-height: clamp(300px, 42vw, 420px);
  align-items: stretch;
  background:
    linear-gradient(120deg, rgba(14, 14, 28, 0.56), rgba(76, 69, 156, 0.28)),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 22%, rgba(22, 21, 42, 0.54) 100%);
}

.paragraph--type--contact-us .banner-wrapper::before {
  content: "";
  position: absolute;
  inset: auto auto -12% -4%;
  width: clamp(220px, 24vw, 320px);
  height: clamp(220px, 24vw, 320px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 243, 207, 0.3), transparent 72%);
  z-index: 0;
}

.paragraph--type--contact-us .banner-wrapper .text-wrapper {
  display: grid;
  align-content: end;
  gap: 0.8rem;
  min-height: 100%;
  width: min(var(--wmx-container), calc(100vw - 48px));
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 3rem);
}

.project-listing-wrapper {
  margin: 20px 0;
}

.project-listing-wrapper {
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.6rem);
}

.page-content .paragraph--type--banner-with-image .banner-wrapper {
  overflow: hidden;
}

.page-content .paragraph--type--banner-with-image .banner-wrapper {
  min-height: clamp(320px, 42vw, 480px);
}

.page-content .paragraph--type--banner-with-image .banner-wrapper {
  background:
    linear-gradient(180deg, rgba(11, 14, 28, 0.08) 0%, rgba(11, 14, 28, 0.18) 34%, rgba(11, 14, 28, 0.88) 100%);
}

.page-content>.region--content>article .project-listing-wrapper,
.page-content>.region--content>article .dealer-main-wrapper,
.page-content>.region--content>article .latest-product-wrapper,
.page-content>.region--content>article .feature-section,
.page-content>.region--content>article .image-with-text-wrapper {
  margin-top: 20px;
}

.page-content>.region--content>article .banner-wrapper {
  min-height: clamp(320px, 42vw, 480px);
}

.page-content>.region--content>article:has(.project-listing-wrapper) .banner-wrapper:has(+ .project-listing-wrapper),
.page-content>.region--content>article:has(.project-listing-wrapper) .paragraph--type--banner-with-image:has(+ .paragraph--type--all-blocks) .banner-wrapper {
  min-height: clamp(380px, 52vw, 620px);
  background:
    linear-gradient(180deg, rgba(11, 14, 28, 0.08) 0%, rgba(11, 14, 28, 0.18) 34%, rgba(11, 14, 28, 0.88) 100%);
}

.page-content>.region--content>article:has(.project-listing-wrapper) .paragraph--type--banner-with-image:has(+ .paragraph--type--all-blocks) .banner-wrapper::before {
  content: "";
  position: absolute;
  inset: auto auto -18% -2%;
  width: clamp(260px, 28vw, 420px);
  height: clamp(260px, 28vw, 420px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 243, 207, 0.24), transparent 72%);
  z-index: 0;
}

.page-content>.region--content>article:has(.project-listing-wrapper) .paragraph--type--banner-with-image:has(+ .paragraph--type--all-blocks) .banner-wrapper .text-wrapper {
  display: grid;
  align-content: end;
  gap: 0.95rem;
  min-height: 100%;
  width: min(var(--wmx-container), calc(100vw - 48px));
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(0.25rem, 0.6vw, 0.35rem) clamp(2.2rem, 5vw, 4rem);
}

.page-content>.region--content>article:has(.project-listing-wrapper) .paragraph--type--banner-with-image:has(+ .paragraph--type--all-blocks) .banner-wrapper .text-wrapper::before {
  content: "Project Gallery";
  display: inline-flex;
  width: fit-content;
  padding: 0.48rem 0.86rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(157, 243, 207, 0.98);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-content>.region--content>article:has(.project-listing-wrapper) .paragraph--type--banner-with-image:has(+ .paragraph--type--all-blocks) .banner-wrapper .text-wrapper::after {
  content: "A closer look at Wattmaix installations, site deployments, and solar systems delivering performance in real environments.";
  max-width: 46rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.85;
}

.page-content>.region--content>article .paragraph--type--banner-with-image .banner-wrapper h1 {
  max-width: 8ch;
  margin: 0;
  color: #fff;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.project-listing-wrapper>header {
  display: none;
}

.project-listing-wrapper .view-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.project-listing-wrapper .views-row {
  height: 100%;
}

.project-listing-wrapper .views-row:first-child {
  grid-column: auto;
}

.project-view-wrapper {
  position: relative;
  display: grid;
  height: 100%;
  min-height: 360px;
  padding: 0.55rem;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fd 100%);
  border: 1px solid rgba(76, 69, 156, 0.1);
  box-shadow: 0 24px 56px rgba(24, 23, 52, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.project-view-wrapper:hover {
  transform: translateY(-8px);
  border-color: rgba(76, 69, 156, 0.18);
  box-shadow: 0 30px 68px rgba(24, 23, 52, 0.18);
}

.project-view-wrapper .image-wrapper,
.project-view-wrapper .image-wrapper a {
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.project-view-wrapper .image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(14, 16, 30, 0.04) 0%, rgba(14, 16, 30, 0.18) 42%, rgba(14, 16, 30, 0.9) 100%);
  pointer-events: none;
}

.project-view-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.project-view-wrapper:hover img {
  transform: scale(1.04);
}

.project-view-wrapper .detail {
  position: absolute;
  inset: auto 0.55rem 0.55rem;
  z-index: 1;
  padding: 1.35rem 1.35rem 1.25rem;
}

.project-view-wrapper .detail a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.35;
}

.project-view-wrapper .detail a::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--wmx-accent);
  box-shadow: 0 0 0 6px rgba(157, 243, 207, 0.18);
  flex: 0 0 auto;
}

.project-detail-wrapper {
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.75rem);
}

.project-detail-hero {
  display: grid;
  gap: 1rem;
  padding: clamp(2rem, 4vw, 3.25rem);
  border-radius: 34px;
  background:
    radial-gradient(circle at left top, rgba(157, 243, 207, 0.18), transparent 18rem),
    linear-gradient(135deg, #181734 0%, #29255b 58%, #4c459c 100%);
  box-shadow: 0 28px 70px rgba(24, 23, 52, 0.16);
}

.project-detail-hero__eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(157, 243, 207, 0.98);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-detail-hero__title {
  max-width: 12ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.project-detail-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.project-detail-hero__tag {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.9rem;
  font-weight: 700;
}

.project-detail-main {
  display: grid;
  gap: 1.75rem;
}

.project-detail-gallery {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fd 100%);
  border: 1px solid rgba(76, 69, 156, 0.1);
  box-shadow: var(--wmx-shadow);
}

.project-detail-gallery__images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.project-detail-gallery__images>.field,
.project-detail-gallery__images .field__item,
.project-detail-gallery__images .image-formatter,
.project-detail-gallery__images .image-style {
  display: contents;
}

.project-detail-gallery__images img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 24px;
  background: #eef1ff;
  box-shadow: 0 16px 34px rgba(24, 23, 52, 0.08);
}

.project-detail-gallery__video {
  border-radius: 28px;
  overflow: hidden;
  background: #101322;
  box-shadow: 0 18px 40px rgba(24, 23, 52, 0.12);
}

.project-detail-gallery__video video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 620px;
  background: #0d1120;
}

.project-detail-story {
  display: grid;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fd 100%);
  border: 1px solid rgba(76, 69, 156, 0.1);
  box-shadow: var(--wmx-shadow);
}

.project-detail-story__label {
  display: inline-flex;
  width: fit-content;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(76, 69, 156, 0.08);
  color: var(--wmx-primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-detail-story__content h2,
.project-detail-story__content h3 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.02;
}

.project-detail-story__content p,
.project-detail-story__content li {
  color: var(--wmx-text);
  font-size: 1rem;
  line-height: 1.85;
}

.dealer-main-wrapper {
  display: grid;
  gap: clamp(1.6rem, 3vw, 2.5rem);
}

.dealer-main-wrapper>header {
  display: grid;
  gap: 0.85rem;
  justify-items: center;
  text-align: center;
  padding: clamp(2.1rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 34px;
  background:
    radial-gradient(circle at left top, rgba(157, 243, 207, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 246, 252, 0.98));
  border: 1px solid rgba(76, 69, 156, 0.08);
  box-shadow: var(--wmx-shadow);
}

.dealer-main-wrapper>header::before {
  content: "Authorized Network";
  display: inline-flex;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(76, 69, 156, 0.08);
  color: var(--wmx-primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dealer-main-wrapper>header h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.98;
}

.dealer-main-wrapper>header::after {
  content: "Find official Wattmaix dealers and distributors for trusted guidance, local support, and verified product availability.";
  max-width: 50rem;
  color: var(--wmx-text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.8;
}

.dealer-main-wrapper .view-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.dealer-card-wrapper {
  height: 100%;
}

.dealer-wrapper {
  display: grid;
  gap: 1.1rem;
  height: 100%;
  padding: 1.4rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fd 100%);
  border: 1px solid rgba(76, 69, 156, 0.1);
  box-shadow: 0 18px 40px rgba(24, 23, 52, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.dealer-wrapper:hover {
  transform: translateY(-6px);
  border-color: rgba(76, 69, 156, 0.18);
  box-shadow: 0 26px 54px rgba(24, 23, 52, 0.12);
}

.dealer-wrapper>a:first-child {
  color: var(--wmx-ink);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.35;
}

.dealer-detail {
  display: grid;
  gap: 0.8rem;
}

.dealer-detail>div {
  position: relative;
  padding: 0.9rem 1rem 0.9rem 3.1rem;
  border-radius: 20px;
  background: rgba(76, 69, 156, 0.04);
  color: var(--wmx-text);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.7;
}

.dealer-detail>div::before {
  position: absolute;
  left: 1rem;
  top: 0.95rem;
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(76, 69, 156, 0.1);
  color: var(--wmx-primary);
  font-size: 0.78rem;
  font-weight: 800;
}

.dealer-detail .location::before {
  content: "L";
}

.dealer-detail .email::before {
  content: "E";
}

.dealer-detail .phone::before {
  content: "P";
}

.dealer-detail .time::before {
  content: "T";
}

.dealer-detail .email:empty,
.dealer-detail .email:empty::before {
  display: none;
}

.dealer-wrapper .contact-us {
  margin-top: auto;
}

.dealer-wrapper .contact-us a {
  width: 100%;
}

.page-content .paragraph--type--banner-with-image:has(+ .paragraph--type--contact-us) .text-wrapper::before {
  content: "Contact Wattmaix";
  display: block;
  max-width: 12ch;
  color: #fff;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.page-content .paragraph--type--banner-with-image:has(+ .paragraph--type--contact-us) .text-wrapper::after {
  content: "Let’s plan smarter solar, faster support, and dependable power solutions for your home or business.";
  display: block;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.8;
}

.page-content .paragraph--type--contact-us .contact-us-main-wrapper {
  padding: clamp(1.15rem, 2vw, 1.5rem);
  background:
    radial-gradient(circle at top right, rgba(157, 243, 207, 0.16), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 253, 0.96));
}

.page-content .paragraph--type--contact-us .webform-with-info {
  gap: clamp(1.2rem, 2vw, 2rem);
  align-items: stretch;
}

.page-content .paragraph--type--contact-us .webform-submission-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.6rem, 3vw, 2.3rem);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(157, 243, 207, 0.16), transparent 18rem),
    linear-gradient(180deg, #ffffff 0%, #f9f9ff 100%);
  box-shadow: 0 22px 52px rgba(27, 24, 60, 0.08);
}

.page-content .paragraph--type--contact-us .webform-submission-form #edit-markup {
  margin-bottom: 0.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(76, 69, 156, 0.08);
}

.page-content .paragraph--type--contact-us .webform-submission-form #edit-markup h1 {
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 0.98;
}

.page-content .paragraph--type--contact-us .webform-submission-form #edit-markup h1 span {
  color: var(--wmx-primary);
}

.page-content .paragraph--type--contact-us .webform-submission-form .form-item {
  margin: 0;
}

.page-content .paragraph--type--contact-us .webform-submission-form label {
  margin-bottom: 0.55rem;
  font-size: 0.94rem;
  letter-spacing: -0.01em;
}

.page-content .paragraph--type--contact-us .webform-submission-form input[type="text"],
.page-content .paragraph--type--contact-us .webform-submission-form input[type="email"],
.page-content .paragraph--type--contact-us .webform-submission-form input[type="tel"],
.page-content .paragraph--type--contact-us .webform-submission-form textarea {
  min-height: 3.35rem;
  border-radius: 18px;
  border-color: rgba(76, 69, 156, 0.12);
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.page-content .paragraph--type--contact-us .webform-submission-form textarea {
  min-height: 9.5rem;
  resize: vertical;
}

.page-content .paragraph--type--contact-us .webform-submission-form input:focus,
.page-content .paragraph--type--contact-us .webform-submission-form textarea:focus {
  outline: none;
  border-color: rgba(76, 69, 156, 0.28);
  box-shadow: 0 0 0 4px rgba(76, 69, 156, 0.08);
}

.page-content .paragraph--type--contact-us .webform-submission-form .webform-button--submit {
  width: 100%;
  margin-top: 0.4rem;
}

.page-content .paragraph--type--contact-us .contact-info-with-map {
  display: grid;
  grid-template-rows: auto minmax(260px, 1fr);
  gap: 1rem;
  height: 100%;
}

.page-content .paragraph--type--contact-us .contact-info {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1.4rem, 2vw, 1.9rem);
  border-radius: 28px;
  background:
    linear-gradient(135deg, #181734 0%, #29255b 52%, #4c459c 100%);
  box-shadow: 0 28px 68px rgba(28, 26, 64, 0.18);
}

.page-content .paragraph--type--contact-us .contact-info::before {
  content: "Reach Our Team";
  display: block;
  margin-bottom: 0.2rem;
  color: #fff;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.page-content .paragraph--type--contact-us .icon-with-text {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 0.95rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-content .paragraph--type--contact-us .icon-with-text>div:first-child {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.page-content .paragraph--type--contact-us .icon-with-text img {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}

.page-content .paragraph--type--contact-us .icon-with-text p,
.page-content .paragraph--type--contact-us .icon-with-text a {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.7;
}

.page-content .paragraph--type--contact-us .icon-with-text a:hover {
  color: var(--wmx-accent);
}

.page-content .paragraph--type--contact-us .map-wrapper {
  overflow: hidden;
  min-height: 100%;
  border-radius: 28px;
  border: 1px solid rgba(76, 69, 156, 0.1);
  background: #eef1ff;
  box-shadow: 0 22px 48px rgba(26, 24, 58, 0.1);
}

.page-content .paragraph--type--contact-us .map-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.webform-submission-form,
.webform-client-form {
  padding: 1.75rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #f5f6fc);
  border: 1px solid var(--wmx-border);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(76, 69, 156, 0.18);
  border-radius: 16px;
  background: #fff;
  color: var(--wmx-ink);
  font: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.4rem;
  color: var(--wmx-ink);
  font-weight: 700;
}

.version-1,
.version-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.product-card-link,
.version-1 .views-row>*:first-child,
.version-2 .views-row>*:first-child {
  display: block;
  height: 100%;
}

.product-page-view,
.project-main-wrapper .views-row article,
.version-2 .views-row article,
.version-1 .views-row article {
  height: 100%;
  padding: 1.35rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f6f7fc);
  border: 1px solid rgba(76, 69, 156, 0.1);
  box-shadow: 0 14px 30px rgba(26, 24, 58, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.product-card-link:hover .product-page-view,
.version-1 .views-row:hover article,
.version-2 .views-row:hover article {
  transform: translateY(-6px);
  box-shadow: 0 22px 38px rgba(26, 24, 58, 0.14);
}

.product-page-view .product-image,
.product-page-view .field-content img {
  border-radius: 20px;
  overflow: hidden;
}

.product-page-view .description {
  margin-top: 1rem;
}

.products-detail-wrapper .gallery {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.products-detail-wrapper .left-section {
  display: grid;
  gap: 1rem;
}

.products-detail-wrapper .image-wrapper {
  border-radius: 20px;
  overflow: hidden;
}

.products-detail-wrapper .thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 0.85rem;
}

.products-detail-wrapper .thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  cursor: pointer;
}

.products-detail-wrapper .features {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--wmx-border);
}

.products-detail-wrapper {
  display: grid;
  gap: 2rem;
}

.products-detail-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1.75rem, 4vw, 3rem);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(157, 243, 207, 0.24), transparent 18rem),
    linear-gradient(135deg, #181734 0%, #29255b 58%, #4c459c 100%);
  color: #fff;
  box-shadow: 0 26px 68px rgba(26, 24, 58, 0.18);
}

.products-detail-hero__content {
  display: grid;
  gap: 1rem;
  max-width: 52rem;
}

.products-detail-hero__eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(157, 243, 207, 0.14);
  color: var(--wmx-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.products-detail-hero__title {
  margin: 0;
  max-width: 10ch;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.95;
}

.products-detail-hero__lede {
  max-width: 44rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.85;
}

.products-detail-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.products-detail-hero__tag {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.86rem;
  font-weight: 700;
}

.products-detail-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(1.4rem, 2.4vw, 2rem);
  padding: clamp(1.5rem, 2.8vw, 2rem);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(157, 243, 207, 0.18), transparent 18rem),
    linear-gradient(180deg, #ffffff 0%, #f7f8fd 100%);
  border: 1px solid var(--wmx-border);
  box-shadow: 0 20px 48px rgba(28, 26, 64, 0.1);
}

.products-detail-showcase__media,
.products-detail-showcase__content {
  min-width: 0;
}

.products-detail-showcase__content {
  display: grid;
  align-content: start;
  gap: 1.25rem;
}

.products-detail-wrapper .gallery {
  display: block;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.products-detail-wrapper .preview-wrapper {
  padding: clamp(1rem, 2vw, 1.4rem);
  border-radius: 30px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.96), rgba(236, 239, 252, 0.92));
  border: 1px solid rgba(76, 69, 156, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 18px 38px rgba(27, 24, 60, 0.08);
}

.products-detail-wrapper .image-wrapper {
  border-radius: 24px;
  overflow: hidden;
}

.products-detail-wrapper #mainPreview {
  width: 100%;
  height: min(540px, 58vh);
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}

.products-detail-wrapper .thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.products-detail-thumb {
  display: block;
  padding: 0.45rem;
  border: 0;
  border: 1px solid rgba(76, 69, 156, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(25, 24, 58, 0.06);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.products-detail-thumb:hover,
.products-detail-thumb.is-active {
  transform: translateY(-2px);
  border-color: rgba(76, 69, 156, 0.22);
  box-shadow: 0 16px 28px rgba(25, 24, 58, 0.1);
}

.products-detail-thumb .image-wrapper {
  padding: 0.4rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

.products-detail-wrapper .thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.products-detail-summary {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.35rem);
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(76, 69, 156, 0.08);
  box-shadow: 0 16px 38px rgba(28, 26, 64, 0.06);
}

.products-detail-summary h4 {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.55rem;
  padding: 0.34rem 0.72rem 0.34rem 0.48rem;
  border-radius: 999px;
  background: rgba(76, 69, 156, 0.08);
  color: var(--wmx-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.products-detail-summary h4::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(76, 69, 156, 0.08);
}

.products-detail-summary h3 {
  margin: 0;
  color: var(--wmx-ink);
  font-size: clamp(1.65rem, 2.6vw, 2.5rem);
  line-height: 1.08;
}

.products-detail-summary h6 {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(157, 243, 207, 0.14);
  color: #1d2141;
  font-size: 0.88rem;
  font-weight: 800;
}

.products-detail-summary p {
  margin: 0;
  color: var(--wmx-text);
  line-height: 1.85;
}

.products-detail-info-card {
  display: grid;
  gap: 0.85rem;
  padding: clamp(1rem, 2vw, 1.3rem);
  border-radius: 28px;
  background: linear-gradient(135deg, #181734 0%, #29255b 54%, #4c459c 100%);
  box-shadow: 0 22px 52px rgba(26, 24, 58, 0.16);
}

.products-detail-info-card__item {
  display: grid;
  gap: 0.22rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.products-detail-info-card__item span {
  color: rgba(157, 243, 207, 0.92);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.products-detail-info-card__item strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.products-detail-section-heading {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.products-detail-section-heading span {
  display: inline-flex;
  width: fit-content;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(76, 69, 156, 0.08);
  color: var(--wmx-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.products-detail-section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
}

.products-detail-section-heading p {
  max-width: 48rem;
  margin: 0;
  color: var(--wmx-text);
  line-height: 1.8;
}

.products-detail-wrapper .features {
  display: grid;
  gap: 1.2rem;
  padding: 0;
  margin-top: 0.35rem;
  border-top: 0;
}

.products-detail-features-card {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
  border: 1px solid var(--wmx-border);
  box-shadow: 0 20px 46px rgba(26, 24, 58, 0.08);
}

.products-detail-features-card>p {
  margin: 1rem 0;
  color: var(--wmx-text);
}

.products-detail-features-card>p:empty {
  display: none;
}

.products-detail-features-card h2 {
  margin: 0 0 1rem;
  color: var(--wmx-ink);
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.15;
}

.products-detail-features-card h5 {
  display: inline-flex;
  width: fit-content;
  margin: 1.25rem 0 0.9rem;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(76, 69, 156, 0.08);
  color: var(--wmx-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.products-detail-features-card h6 {
  margin: 0;
  color: var(--wmx-ink);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.6;
}

.products-detail-wrapper .features ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
}

.products-detail-wrapper .features li,
.products-detail-wrapper .features p {
  color: var(--wmx-text);
  line-height: 1.85;
}

.products-detail-wrapper .features li {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(76, 69, 156, 0.08);
  box-shadow: 0 10px 24px rgba(25, 24, 58, 0.05);
}

.profile-node-wrapper {
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  align-items: start;
}

.profile-node-content {
  display: grid;
  gap: 1rem;
}

.ui-widget.ui-dialog {
  border: 0;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 28px 80px rgba(19, 18, 41, 0.22);
}

.ui-widget-overlay.ui-front {
  background: rgba(16, 18, 34, 0.54);
  opacity: 1;
  backdrop-filter: blur(6px);
}

.ui-dialog .ui-dialog-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem 1rem;
  border: 0;
  background:
    radial-gradient(circle at left top, rgba(157, 243, 207, 0.18), transparent 12rem),
    linear-gradient(135deg, #181734 0%, #28245b 58%, #4c459c 100%);
  color: #fff;
}

.ui-dialog .ui-dialog-title {
  margin: 0;
  color: #fff;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.ui-dialog .ui-dialog-titlebar-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background-color 180ms ease, transform 180ms ease;
}

.ui-dialog .ui-dialog-titlebar-close:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.ui-dialog .ui-dialog-titlebar-close .ui-icon {
  filter: brightness(10);
}

.ui-dialog .ui-dialog-content {
  padding: 0;
}

#drupal-modal article[data-history-node-id] {
  padding: 1.5rem;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}

#drupal-modal .profile-node-wrapper {
  display: grid;
  grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 0;
}

#drupal-modal .profile-node-content {
  gap: 1rem;
  padding: 18px;
  font-weight: bold;
}

#drupal-modal .profile-node-content .image-wrapper {
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(180deg, #eef1ff, #fbfbff);
  box-shadow: 0 18px 42px rgba(25, 24, 58, 0.08);
}


#drupal-modal .profile-node-content .image-wrapper img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

#drupal-modal .profile-node-content>.field--name-field-designation,
#drupal-modal .profile-node-content>div:not(.image-wrapper):not([class]) {
  display: inline-flex;
  width: fit-content;
  padding: 0.48rem 0.82rem;
  border-radius: 999px;
  background: rgba(76, 69, 156, 0.08);
  color: var(--wmx-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#drupal-modal .profile-node-info {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding-right: 1rem;
  padding-left: 0.35rem;
}

#drupal-modal .profile-node-info p {
  margin: 0;
  color: var(--wmx-text);
  font-size: 1rem;
  line-height: 1.9;
}

.blog-main-wrapper {
  display: grid;
  gap: 2rem;
}

.blog-main-wrapper .blog-content-label {
  color: var(--wmx-ink);
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
}

.blog-main-wrapper .sher-iocn-with-info,
.blog-main-wrapper .author-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.blog-main-wrapper .author-photo img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 50%;
}

.site-footer {
  position: relative;
  padding: 2.75rem 0 3.25rem;
  background: linear-gradient(180deg, #18162f 0%, #221d4d 100%);
  color: rgba(255, 255, 255, 0.72);
  overflow: clip;
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(157, 243, 207, 0.6), transparent);
}

.site-footer__bubble {
  position: absolute;
  z-index: 0;
  opacity: 0.22;
  pointer-events: none;
  animation: footerFloat 8s ease-in-out infinite;
}

.site-footer__bubble img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer__bubble--large {
  top: 1.5rem;
  right: -2.5rem;
  width: clamp(120px, 14vw, 180px);
}

.site-footer__bubble--small {
  left: 5%;
  bottom: 2rem;
  width: clamp(42px, 5vw, 55px);
  animation-duration: 10s;
  animation-delay: -2s;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.site-footer__brand img {
  width: min(280px, 100%);
  margin-bottom: 1.2rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.8rem;
}

.site-footer__brand,
.site-footer__column,
.site-footer__bottom {
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.site-footer__brand p,
.site-footer__column p,
.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.85;
}

.site-footer__brand p {
  max-width: 32ch;
  font-size: 1.02rem;
}

.site-footer__socials {
  margin-top: 1.35rem;
}

.site-footer__socials #block-sociallinks,
.site-footer__socials #block-sass-theme-msd-sociallinks {
  margin: 0;
}

.site-footer__socials .social-media-links--platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}

.site-footer__socials .social-media-links--platforms li {
  margin: 0;
}

.site-footer__socials .social-media-links--platforms a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  transition: background-color 180ms ease, transform 180ms ease, color 180ms ease;
}

.site-footer__socials .social-media-links--platforms a:hover {
  background: rgba(157, 243, 207, 0.14);
  color: var(--wmx-accent);
  transform: translateY(-2px);
}

.site-footer__socials .social-media-links--platforms .fab {
  font-size: 1.05rem;
}

.site-footer__column {
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer a {
  color: #fff;
}

.site-footer h2,
.site-footer h3,
.site-footer h4 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.site-footer a {
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.6;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.site-footer a:hover {
  color: var(--wmx-accent);
}

.site-footer__column p+p {
  margin-top: 0.2rem;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.4rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 1;
}

.site-footer__bottom p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.6;
}

@keyframes footerFloat {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -10px, 0) scale(1.03);
  }
}

@media (max-width: 1100px) {

  .site-header__bar,
  .site-header.is-scrolled .site-header__bar {
    padding-inline: 1rem;
  }

  .page-content>.region--content>article:has(.latest-product-wrapper) .views-exposed-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-content>.region--content>article:has(.latest-product-wrapper) .product-right {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-detail-showcase {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-brand__logo--full {
    display: block;
    width: min(220px, 42vw);
  }

  .site-brand__logo--mark {
    display: none;
  }

  .site-header__utility,
  .site-header__mainnav,
  .site-header__cta {
    display: none;
  }

  .site-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header__mobile {
    display: block;
    width: var(--wmx-container);
    margin: 0.75rem auto 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 220ms ease, opacity 220ms ease, visibility 220ms ease;
  }

  .site-header__mobile.is-open {
    max-height: 75vh;
    opacity: 1;
    visibility: visible;
  }

  .site-header__mobile .region,
  .site-header__mobile nav,
  .site-header__mobile ul,
  .site-header__mobile .sf-menu {
    display: grid;
    gap: 0.6rem;
  }

  .site-header__mobile>* {
    padding: 1rem 1.15rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px rgba(32, 29, 75, 0.12);
  }

  .page-main--has-left,
  .page-main--has-right,
  .page-main--has-left.page-main--has-right,
  .feature-section,
  .image-with-text-wrapper,
  .contact-us-main-wrapper .webform-with-info,
  .products-detail-showcase,
  .profile-node-wrapper,
  .site-footer__top {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-content .paragraph--type--contact-us .contact-info-with-map {
    grid-template-rows: auto auto;
  }

  .page-content .paragraph--type--contact-us .map-wrapper iframe {
    min-height: 360px;
  }

  .project-listing-wrapper .view-grid,
  .dealer-main-wrapper .view-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-listing-wrapper .views-row:first-child {
    grid-column: auto;
  }

  .project-listing-wrapper .views-row:first-child .project-view-wrapper {
    min-height: 360px;
  }

  .project-detail-gallery__images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --wmx-container: min(100vw - 24px, 1240px);
  }

  .site-header__bar {
    border-radius: 28px;
    padding: 0.9rem 1rem;
    gap: 0.9rem;
  }

  .site-brand__logo--full {
    width: min(180px, 52vw);
  }

  .hero-wrapper .body-main-wrapper,
  .feature-section,
  .image-with-text-wrapper,
  .contact-us-main-wrapper,
  .banner-wrapper,
  .project-main-wrapper,
  .products-detail-wrapper,
  .profile-node-wrapper,
  .blog-main-wrapper {
    padding: 1.2rem;
  }

  .banner-wrapper {
    min-height: 260px;
  }

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

  .hero-wrapper .body-main-wrapper,
  .banner-wrapper .text-wrapper,
  .page-content .paragraph--type--banner-with-image:has(+ .paragraph--type--contact-us) .text-wrapper,
  .page-content>.region--content>article:has(.project-listing-wrapper) .banner-wrapper .text-wrapper {
    width: min(var(--wmx-container), calc(100vw - 24px));
  }

  .page-content .paragraph--type--banner-with-image:has(+ .paragraph--type--contact-us) .text-wrapper::before {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .page-content .paragraph--type--banner-with-image:has(+ .paragraph--type--contact-us) .text-wrapper::after {
    font-size: 0.95rem;
  }

  .page-content .paragraph--type--contact-us .webform-submission-form,
  .page-content .paragraph--type--contact-us .contact-info {
    border-radius: 24px;
  }

  .page-content .paragraph--type--contact-us .icon-with-text {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-content .paragraph--type--contact-us .map-wrapper iframe {
    min-height: 280px;
  }

  .project-listing-wrapper>header,
  .dealer-main-wrapper>header {
    border-radius: 26px;
  }

  .project-listing-wrapper .view-grid,
  .dealer-main-wrapper .view-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .project-view-wrapper {
    min-height: 300px;
    border-radius: 22px;
  }

  .page-content>.region--content>article:has(.project-listing-wrapper) .banner-wrapper {
    min-height: 320px;
  }

  .page-content>.region--content>article:has(.project-listing-wrapper) .banner-wrapper .text-wrapper::after {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .project-detail-hero,
  .project-detail-gallery,
  .project-detail-story {
    border-radius: 24px;
  }

  .project-detail-gallery__images {
    grid-template-columns: minmax(0, 1fr);
  }

  .project-detail-gallery__images img {
    height: 220px;
    border-radius: 18px;
  }

  .dealer-wrapper {
    border-radius: 22px;
    padding: 1.2rem;
  }
}

.page-content>.region--content>article:has(.image-with-text-wrapper) {
  display: grid;
  gap: 2.75rem;
}

.page-content>.region--content>article:has(.latest-product-wrapper) {
  display: grid;
  gap: 2.5rem;
}

.page-content>.region--content>article:has(.latest-product-wrapper)>.node__content,
.page-content>.region--content>article:has(.latest-product-wrapper)>div {
  display: grid;
  gap: 2.5rem;
}

.page-content>.region--content>article:has(.latest-product-wrapper) .banner-wrapper {
  min-height: clamp(320px, 40vw, 460px);
  overflow: hidden;
}

.page-content>.region--content>article:has(.latest-product-wrapper) .banner-wrapper .text-wrapper {
  padding: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(180deg, rgba(14, 16, 30, 0.08) 0%, rgba(14, 16, 30, 0.78) 100%);
}

.page-content>.region--content>article:has(.latest-product-wrapper) .banner-wrapper h1 {
  max-width: 9ch;
  color: #fff;
}

.page-content>.region--content>article:has(.latest-product-wrapper) .home-stream-section {
  gap: 2.5rem;
}

.page-content>.region--content>article:has(.image-with-text-wrapper)>.node__content,
.page-content>.region--content>article:has(.image-with-text-wrapper)>div {
  display: grid;
  gap: 2.75rem;
}

.page-content>.region--content>article:has(.image-with-text-wrapper) .banner-wrapper {
  min-height: clamp(320px, 42vw, 480px);
  overflow: hidden;
}

.page-content>.region--content>article:has(.image-with-text-wrapper) .banner-wrapper .text-wrapper {
  padding: clamp(2rem, 5vw, 4rem);
  background: unset !important
}

.page-content>.region--content>article:has(.image-with-text-wrapper) .banner-wrapper h1 {
  max-width: 8ch;
  color: #fff;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.page-content>.region--content>article:has(.image-with-text-wrapper) .image-with-text-wrapper {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2.25rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.page-content>.region--content>article:has(.image-with-text-wrapper) .image-with-text-wrapper .image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 54px rgba(24, 27, 58, 0.14);
}

.page-content>.region--content>article:has(.image-with-text-wrapper) .image-with-text-wrapper .image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.page-content>.region--content>article:has(.image-with-text-wrapper) .image-with-text-wrapper .description {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.page-content>.region--content>article:has(.image-with-text-wrapper) .image-with-text-wrapper .description h3 {
  font-size: clamp(2.1rem, 3vw, 3.4rem);
  line-height: 1.02;
}

.page-content>.region--content>article:has(.image-with-text-wrapper) .image-with-text-wrapper .description p,
.page-content>.region--content>article:has(.image-with-text-wrapper) .image-with-text-wrapper .description li {
  font-size: 1rem;
  line-height: 1.8;
}

.page-content>.region--content>article:has(.image-with-text-wrapper) .image-with-text-wrapper .description ul {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding-left: 1.25rem;
}

#block-views-block-profile-block-1 .founder-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(157, 243, 207, 0.22), transparent 18rem),
    linear-gradient(135deg, #181734 0%, #29255b 56%, #4c459c 100%);
  color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 28px 70px rgba(26, 24, 58, 0.18);
}

#block-views-block-profile-block-1 .founder-wrapper>header {
  display: grid;
  align-content: space-between;
  gap: 1.25rem;
  padding: 0.5rem 0.2rem 0.5rem 0;
}

#block-views-block-profile-block-1 .founder-wrapper>header::before {
  content: "Founder Spotlight";
  display: inline-flex;
  width: fit-content;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(157, 243, 207, 0.14);
  color: var(--wmx-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

#block-views-block-profile-block-1 .founder-wrapper>header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.1rem, 3vw, 3.4rem);
  line-height: 1.02;
}

#block-views-block-profile-block-1 .founder-wrapper>header p {
  margin: 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  line-height: 1.85;
}

#block-views-block-profile-block-1 .view-grid {
  display: block;
}

#block-views-block-profile-block-1 .views-row {
  height: 100%;
}

#block-views-block-profile-block-1 .profile-content {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: 1.35rem;
  height: 100%;
  padding: 1.35rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--wmx-text);
}

#block-views-block-profile-block-1 .profile-image {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #eef1ff, #f8f9ff);
}

#block-views-block-profile-block-1 .profile-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

#block-views-block-profile-block-1 .profile-details {
  display: grid;
  align-content: center;
  gap: 0.85rem;
  padding-right: 0.6rem;
}

#block-views-block-profile-block-1 .profile-title a {
  display: inline-block;
  position: relative;
  color: #171632;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(1.85rem, 2.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-decoration: none;
  text-wrap: balance;
  text-shadow: 0 10px 22px rgba(76, 69, 156, 0.08);
  transition: color 220ms ease, transform 220ms ease;
}

#block-views-block-profile-block-1 .profile-title a::after {
  content: "";
  display: block;
  width: clamp(72px, 22%, 120px);
  height: 0.3rem;
  margin-top: 0.75rem;
  background:
    linear-gradient(to bottom, transparent, #ee4f7e, transparent),
    linear-gradient(135deg, #4c459c 0%, #ee4f7e 100%);
  opacity: 0.92;
}

#block-views-block-profile-block-1 .profile-title a:hover {
  color: var(--wmx-primary);
  transform: translateY(-1px);
}

#block-views-block-profile-block-1 .profile-designition h5 {
  margin: 0;
  color: var(--wmx-primary);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#block-views-block-profile-block-1 .profile-info p {
  margin: 0;
  color: var(--wmx-text);
  line-height: 1.8;
}

#block-views-block-duplicate-of-profile-block-1 {
  position: relative;
}

#block-views-block-duplicate-of-profile-block-1>div>.js-view-dom-id-101218a5811388cd642f186aad10e7979ecab176f8aecd9319fdbcd606f86f3a,
#block-views-block-duplicate-of-profile-block-1 .js-view-dom-id-101218a5811388cd642f186aad10e7979ecab176f8aecd9319fdbcd606f86f3a {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 34px;
  background: linear-gradient(180deg, #ffffff, #f7f8fd);
  border: 1px solid var(--wmx-border);
  box-shadow: var(--wmx-shadow);
}

#block-views-block-duplicate-of-profile-block-1 header {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

#block-views-block-duplicate-of-profile-block-1 header h2 {
  margin: 0;
  color: var(--wmx-ink);
  font-size: clamp(2.1rem, 3vw, 3.4rem);
  line-height: 1.02;
}

.image-wrapper div {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#block-views-block-duplicate-of-profile-block-1 header::before {
  content: "Leadership";
  display: inline-flex;
  width: fit-content;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(76, 69, 156, 0.08);
  color: var(--wmx-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

#block-views-block-duplicate-of-profile-block-1 header::after {
  content: "The people building Wattmaix with technical expertise, execution focus, and a shared commitment to better energy solutions.";
  max-width: 68ch;
  color: var(--wmx-text);
  line-height: 1.8;
}

#block-views-block-duplicate-of-profile-block-1 .version-2 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
}

#block-views-block-duplicate-of-profile-block-1 .views-row {
  height: 100%;
}

#block-views-block-duplicate-of-profile-block-1 .profile-card {
  display: block;
  height: 100%;
  color: inherit;
}

#block-views-block-duplicate-of-profile-block-1 .main-wrapper {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  height: 100%;
  padding: 1rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #fbfbfe);
  border: 1px solid rgba(76, 69, 156, 0.1);
  box-shadow: 0 16px 38px rgba(26, 24, 58, 0.08);
  transition: transform 380ms ease, box-shadow 380ms ease, border-color 380ms ease, background 520ms ease;
}

#block-views-block-duplicate-of-profile-block-1 .profile-card:hover .main-wrapper {
  transform: translateY(-6px);
  border-color: rgba(76, 69, 156, 0.2);
  box-shadow: 0 24px 46px rgba(26, 24, 58, 0.16);
  background:
    radial-gradient(circle at top left, rgba(157, 243, 207, 0.2), transparent 13rem),
    linear-gradient(155deg, #201c48 0%, #433d8e 48%, #6d66cf 100%);
}

#block-views-block-duplicate-of-profile-block-1 .profile-img-wrapper {
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(157, 243, 207, 0.28), transparent 14rem),
    linear-gradient(135deg, #dfe6ff 0%, #f5f7ff 100%);
}

#block-views-block-duplicate-of-profile-block-1 .profile-img-wrapper img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  transition: transform 520ms ease;
}

#block-views-block-duplicate-of-profile-block-1 .profile-card:hover .profile-img-wrapper img {
  transform: scale(1.03);
}

#block-views-block-duplicate-of-profile-block-1 .profile-description {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  padding: 0.15rem 0.55rem 0.35rem 0.2rem;
}

#block-views-block-duplicate-of-profile-block-1 .profile-title {
  color: var(--wmx-ink);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

#block-views-block-duplicate-of-profile-block-1 .profile-designation {
  color: var(--wmx-text);
  font-size: 1rem;
  line-height: 1.7;
  transition: color 380ms ease;
}

#block-views-block-duplicate-of-profile-block-1 .profile-card:hover .profile-title,
#block-views-block-duplicate-of-profile-block-1 .profile-card:hover .profile-designation {
  color: #fff;
}

#block-views-block-duplicate-of-profile-block-1 .profile-title {
  transition: color 380ms ease;
}

.hero-wrapper {
  min-height: auto;
  padding-bottom: 2rem;
  background:
    linear-gradient(90deg, rgba(18, 21, 44, 0.88) 0%, rgba(28, 32, 60, 0.7) 34%, rgba(35, 41, 77, 0.2) 68%),
    linear-gradient(180deg, rgba(8, 10, 22, 0.06) 0%, rgba(15, 17, 31, 0.42) 100%);
}

.hero-wrapper .above-content {
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 470px);
  align-items: stretch;
  gap: 1.6rem;
}

.hero-left-wrapper {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding: 1.5rem 1.4rem 1.35rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(18, 20, 41, 0.34), rgba(76, 69, 156, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-left-wrapper p {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  width: fit-content;
}

.hero-left-wrapper p span {
  color: var(--wmx-accent);
}

.hero-left-wrapper h2,
.hero-left-wrapper h1 {
  margin: 0;
}

.hero-left-wrapper h2 {
  max-width: 8ch;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.hero-left-wrapper h1 {
  max-width: 9ch;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.95;
}

.hero-left-wrapper h6 {
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  max-width: 48ch;
}

.hero-left-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.hero-left-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.hero-left-links a:first-child {
  min-width: 9.5rem;
  background: var(--wmx-cta-gradient), linear-gradient(135deg, #c52f66 0%, #ee4f7e 48%, #ff8ba9 100%);
  color: white;
  box-shadow: 0 18px 34px rgba(157, 243, 207, 0.28);
}

.hero-left-links a:last-child {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
  color: #fff;
}

.hero-left-links a:hover {
  transform: translateY(-2px);
}

.hero-product-showcase {
  padding: 1rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(28, 31, 58, 0.82), rgba(49, 52, 88, 0.64));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 60px rgba(8, 9, 20, 0.28);
  backdrop-filter: blur(18px);
  align-self: stretch;
}

.hero-product-showcase__intro {
  margin-bottom: 1rem;
}

.hero-product-showcase__intro span {
  display: inline-flex;
  margin-bottom: 0.55rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(157, 243, 207, 0.14);
  color: var(--wmx-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-product-showcase__intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.55;
}

.hero-wrapper .version-1 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.hero-wrapper .version-1>div {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.8rem;
  min-height: 100%;
  padding: 0.9rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-wrapper .version-1>div>a:first-child {
  display: block;
}

.hero-wrapper .version-1>div:first-child {
  grid-column: 1 / -1;
  grid-template-columns: 148px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 1rem;
}

.hero-wrapper .version-1>div:first-child>a:first-child {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.hero-wrapper .version-1>div:first-child .product-image {
  min-height: 156px;
  height: 100%;
}

.hero-wrapper .version-1>div:first-child .product-image img {
  height: 132px;
}

.hero-wrapper .version-1>div:first-child .description {
  align-self: end;
}

.hero-wrapper .version-1>div:first-child .description h3 {
  font-size: 1rem;
  -webkit-line-clamp: 2;
}

.hero-wrapper .version-1>div:first-child .contact-us {
  align-self: start;
}

.hero-wrapper .version-1>div:first-child .contact-us a {
  width: auto;
  min-width: 7.5rem;
  padding-inline: 1rem;
}

.hero-wrapper .version-1>div:nth-child(n + 4) {
  display: none;
}

.hero-wrapper .version-1 .product-image {
  display: grid;
  place-items: center;
  min-height: 132px;
  padding: 0.85rem;
  border-radius: 16px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.98), rgba(241, 244, 255, 0.95));
  overflow: hidden;
}

.hero-wrapper .version-1 .product-image img {
  width: 100%;
  height: 118px;
  object-fit: contain;
  object-position: center;
  transform: scale(1.02);
}

.hero-wrapper .version-1 .description {
  color: #fff;
  min-height: 0;
}

.hero-wrapper .version-1 .description h4 {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.55rem;
  padding: 0.3rem 0.65rem 0.3rem 0.45rem;
  border-radius: 999px;
  background: rgba(157, 243, 207, 0.14);
  border: 1px solid rgba(157, 243, 207, 0.18);
  color: rgba(157, 243, 207, 0.98);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-wrapper .version-1 .description h4::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(157, 243, 207, 0.14);
}

.hero-wrapper .version-1 .description h3 {
  color: #fff;
  margin-bottom: 0;
  font-size: 0.88rem;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.hero-wrapper .version-1 .description h6 {
  display: inline-flex;
  margin-top: 0.55rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(157, 243, 207, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.7rem;
  font-weight: 700;
}

.hero-wrapper .version-1 .contact-us {
  align-self: end;
}

.hero-wrapper .version-1 .contact-us a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  width: 100%;
  border-radius: 999px;
  background: var(--wmx-cta-gradient), linear-gradient(135deg, #c52f66 0%, #ee4f7e 48%, #ff8ba9 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: 0 12px 24px rgba(238, 79, 126, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-wrapper .version-1 .contact-us a:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(238, 79, 126, 0.28);
}

.hero-wrapper .social-links {
  display: none;
}

.home-stream-section {
  display: grid;
  gap: 2.5rem;
}

.latest-product-wrapper {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff, #f7f8fd);
  border: 1px solid var(--wmx-border);
  box-shadow: var(--wmx-shadow);
  margin: 20px 0;
}

.latest-product-wrapper>header {
  max-width: 720px;
  margin-bottom: 1.75rem;
}

.latest-product-wrapper .product-header h2 {
  margin-bottom: 0.75rem;
}

.latest-product-wrapper .view-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.latest-product-wrapper .products-items>a {
  display: grid;
  gap: 1rem;
  height: 100%;
  padding: 1.25rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #f4f6ff, #ffffff);
  border: 1px solid rgba(76, 69, 156, 0.12);
  box-shadow: 0 12px 28px rgba(35, 33, 76, 0.08);
}

.latest-product-wrapper .products-items {
  display: block;
  height: 100%;
}

.latest-product-wrapper .product-image {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 1.35rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.98), rgba(244, 246, 255, 0.94) 58%, rgba(232, 236, 251, 0.96) 100%);
  border: 1px solid rgba(76, 69, 156, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 12px 28px rgba(26, 24, 58, 0.06);
}

.latest-product-wrapper .product-image img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 26px rgba(25, 24, 58, 0.16));
  transform: translateY(-2px) scale(1.01);
}

.latest-product-wrapper .description h4 {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.55rem;
  padding: 0.34rem 0.72rem 0.34rem 0.48rem;
  border-radius: 999px;
  background: rgba(76, 69, 156, 0.08);
  color: var(--wmx-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.latest-product-wrapper .description h4::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(76, 69, 156, 0.08);
}

.latest-product-wrapper .description h3 {
  font-size: 1.25rem;
  line-height: 1.35;
}

.latest-product-wrapper .description h6 {
  margin-top: 0.7rem;
  color: var(--wmx-text);
  font-size: 0.88rem;
  font-weight: 700;
}

.page-content>.region--content>article:has(.latest-product-wrapper) .latest-product-wrapper {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(157, 243, 207, 0.18), transparent 18rem),
    linear-gradient(180deg, #ffffff 0%, #f7f8fd 100%);
}

.page-content>.region--content>article:has(.latest-product-wrapper) .latest-product-wrapper>header {
  display: none;
}

.page-content>.region--content>article:has(.latest-product-wrapper) .views-exposed-form {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(0, 1.6fr) minmax(180px, 220px) auto;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.6rem;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(76, 69, 156, 0.08);
}

.page-content>.region--content>article:has(.latest-product-wrapper) .views-exposed-form .form-item {
  margin: 0;
}

.page-content>.region--content>article:has(.latest-product-wrapper) .views-exposed-form .form-text,
.page-content>.region--content>article:has(.latest-product-wrapper) .views-exposed-form .form-select {
  min-height: 3.2rem;
  border-radius: 18px;
  border: 1px solid rgba(76, 69, 156, 0.14);
  background: #fff;
}

.page-content>.region--content>article:has(.latest-product-wrapper) .views-exposed-form label {
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.page-content>.region--content>article:has(.latest-product-wrapper) .fieldset-wrapper,
.page-content>.region--content>article:has(.latest-product-wrapper) .form-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.page-content>.region--content>article:has(.latest-product-wrapper) .form-type-radio {
  margin: 0;
}

.page-content>.region--content>article:has(.latest-product-wrapper) .form-type-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.page-content>.region--content>article:has(.latest-product-wrapper) .form-type-radio label {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  margin: 0;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(76, 69, 156, 0.06);
  color: var(--wmx-text);
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.page-content>.region--content>article:has(.latest-product-wrapper) .form-type-radio input:checked+label {
  background: linear-gradient(135deg, var(--wmx-primary) 0%, var(--wmx-primary-soft) 100%);
  color: #fff;
  box-shadow: 0 14px 26px rgba(76, 69, 156, 0.18);
}

.page-content>.region--content>article:has(.latest-product-wrapper) #edit-actions {
  display: flex;
  align-items: end;
}

.page-content>.region--content>article:has(.latest-product-wrapper) #edit-actions .button {
  min-width: 9rem;
}

.page-content>.region--content>article:has(.latest-product-wrapper) .product-right {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.page-content>.region--content>article:has(.latest-product-wrapper) .products-items,
.page-content>.region--content>article:has(.latest-product-wrapper) .product-card-link {
  height: 100%;
}

.page-content>.region--content>article:has(.latest-product-wrapper) .product-page-view {
  display: grid;
  height: 100%;
  padding: 1.15rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfe 100%);
  border: 1px solid rgba(76, 69, 156, 0.1);
  box-shadow: 0 16px 36px rgba(25, 24, 58, 0.08);
}

.page-content>.region--content>article:has(.latest-product-wrapper) .product-card-link:hover .product-page-view {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(25, 24, 58, 0.14);
}

.page-content>.region--content>article:has(.latest-product-wrapper) .product-page-view .right-section {
  display: grid;
  align-content: start;
  gap: 1rem;
  height: 100%;
}

.page-content>.region--content>article:has(.latest-product-wrapper) .product-page-view .product-image {
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 1rem;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.98), rgba(244, 246, 255, 0.94) 58%, rgba(232, 236, 251, 0.96) 100%);
  border: 1px solid rgba(76, 69, 156, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 12px 28px rgba(26, 24, 58, 0.06);
}

.page-content>.region--content>article:has(.latest-product-wrapper) .product-page-view .product-image img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 26px rgba(25, 24, 58, 0.16));
  transform: translateY(-2px) scale(1.01);
}

.page-content>.region--content>article:has(.latest-product-wrapper) .product-page-view .description {
  margin-top: 0;
}

.page-content>.region--content>article:has(.latest-product-wrapper) .product-page-view .description h3 {
  font-size: 1.32rem;
  line-height: 1.28;
}

.page-content>.region--content>article:has(.latest-product-wrapper) .product-page-view .description h6 {
  margin-top: 0.8rem;
  font-size: 0.92rem;
}

.page-content>.region--content>article:has(.latest-product-wrapper) .product-page-view>.field {
  display: none;
}

.site-footer__grid #block-sass-theme-msd-footerbgimage {
  display: none;
}

.contextual-region .contextual {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 20;
}

.site-footer__column h2 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.site-footer__column .menu-list,
.site-footer__column .menu-list--level-0 {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.site-footer__column .menu-list a {
  min-height: 0;
  padding: 0.3rem 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 400;

}

.site-footer__column .menu-list a:hover {
  background: transparent;
  color: #fff;
}

@media (max-width: 1100px) {

  #block-views-block-profile-block-1 .founder-wrapper,
  .page-content>.region--content>article:has(.image-with-text-wrapper) .image-with-text-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }

  #block-views-block-duplicate-of-profile-block-1 .version-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-wrapper .above-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-product-showcase {
    margin-top: 1rem;
  }

  .latest-product-wrapper .view-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .page-content>.region--content>article:has(.latest-product-wrapper) {
    gap: 2rem;
  }

  .page-content>.region--content>article:has(.latest-product-wrapper)>.node__content,
  .page-content>.region--content>article:has(.latest-product-wrapper)>div {
    gap: 2rem;
  }

  .page-content>.region--content>article:has(.latest-product-wrapper) .product-right {
    grid-template-columns: minmax(0, 1fr);
  }

  .products-detail-summary {
    padding: 1rem;
  }

  .products-detail-wrapper #mainPreview {
    height: min(420px, 52vh);
  }

  .products-detail-wrapper .features ul {
    grid-template-columns: minmax(0, 1fr);
  }

  .ui-widget.ui-dialog {
    width: min(92vw, 640px) !important;
    left: 50% !important;
    transform: translateX(-50%);
  }

  #drupal-modal .profile-node-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }

  #drupal-modal .profile-node-content .image-wrapper img {
    min-height: 260px;
  }

  .page-content>.region--content>article:has(.image-with-text-wrapper) {
    gap: 2rem;
  }

  .page-content>.region--content>article:has(.image-with-text-wrapper)>.node__content,
  .page-content>.region--content>article:has(.image-with-text-wrapper)>div {
    gap: 2rem;
  }

  #block-views-block-profile-block-1 .profile-content {
    grid-template-columns: minmax(0, 1fr);
  }

  #block-views-block-profile-block-1 .profile-image img,
  .page-content>.region--content>article:has(.image-with-text-wrapper) .image-with-text-wrapper .image img {
    min-height: 280px;
  }

  #block-views-block-duplicate-of-profile-block-1 .version-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-wrapper .version-1 {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-left-wrapper {
    padding: 1.2rem;
  }

  .hero-wrapper .version-1>div:first-child {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
  }

  .hero-wrapper .version-1>div:first-child>a:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .latest-product-wrapper .view-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {

  .page-content>.region--content>article:has(.latest-product-wrapper),
  .page-content>.region--content>article:has(.latest-product-wrapper)>.node__content,
  .page-content>.region--content>article:has(.latest-product-wrapper)>div,
  .page-content>.region--content>article:has(.latest-product-wrapper) .views-element-container,
  .page-content>.region--content>article:has(.latest-product-wrapper) .view-content,
  .page-content>.region--content>article:has(.latest-product-wrapper) .product-right,
  .page-content>.region--content>article:has(.latest-product-wrapper) .products-items,
  .page-content>.region--content>article:has(.latest-product-wrapper) .product-card-link,
  .page-content>.region--content>article:has(.latest-product-wrapper) .product-page-view {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .page-content>.region--content>article:has(.latest-product-wrapper) .latest-product-wrapper {
    padding: 1rem;
    border-radius: 22px;
  }

  .page-content>.region--content>article:has(.latest-product-wrapper) .views-exposed-form {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.85rem;
    padding: 0.9rem;
    border-radius: 18px;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 100%;
  }

  .page-content>.region--content>article:has(.latest-product-wrapper) .views-exposed-form>.form-item,
  .page-content>.region--content>article:has(.latest-product-wrapper) .views-exposed-form>fieldset,
  .page-content>.region--content>article:has(.latest-product-wrapper) .views-exposed-form>.js-form-wrapper,
  .page-content>.region--content>article:has(.latest-product-wrapper) .views-exposed-form>#edit-actions {
    width: 100%;
    min-width: 0;
  }

  .page-content>.region--content>article:has(.latest-product-wrapper) .views-exposed-form fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
  }

  .page-content>.region--content>article:has(.latest-product-wrapper) .views-exposed-form legend {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--wmx-ink);
  }

  .page-content>.region--content>article:has(.latest-product-wrapper) .views-exposed-form .fieldset-wrapper,
  .page-content>.region--content>article:has(.latest-product-wrapper) .views-exposed-form .form-radios {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .page-content>.region--content>article:has(.latest-product-wrapper) .views-exposed-form .form-type-radio {
    flex: 0 0 auto;
  }

  .page-content>.region--content>article:has(.latest-product-wrapper) .views-exposed-form .form-type-radio label {
    min-height: 2.45rem;
    padding: 0.55rem 0.8rem;
    font-size: 0.82rem;
  }

  .page-content>.region--content>article:has(.latest-product-wrapper) .views-exposed-form .form-text,
  .page-content>.region--content>article:has(.latest-product-wrapper) .views-exposed-form .form-select,
  .page-content>.region--content>article:has(.latest-product-wrapper) .views-exposed-form #edit-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 3rem;
    border-radius: 14px;
  }

  .page-content>.region--content>article:has(.latest-product-wrapper) #edit-actions {
    display: block;
  }

  .page-content>.region--content>article:has(.latest-product-wrapper) .product-page-view {
    padding: 0.9rem;
    border-radius: 20px;
    overflow: hidden;
  }

  .page-content>.region--content>article:has(.latest-product-wrapper) .product-page-view .product-image {
    border-radius: 16px;
  }

  .page-content>.region--content>article:has(.latest-product-wrapper) .product-page-view .product-image img {
    height: 220px;
    object-fit: contain;
    padding: 0.5rem;
  }

  .page-content>.region--content>article:has(.latest-product-wrapper) .product-page-view .description h4 {
    font-size: 0.7rem;
    margin-bottom: 0.45rem;
  }

  .page-content>.region--content>article:has(.latest-product-wrapper) .product-page-view .description h3 {
    font-size: 1.05rem;
    line-height: 1.25;
  }

  .page-content>.region--content>article:has(.latest-product-wrapper) .product-page-view .description h6 {
    margin-top: 0.5rem;
    font-size: 0.82rem;
  }

  .products-detail-hero {
    padding: 1.25rem 1rem;
    border-radius: 22px;
  }

  .products-detail-hero__content {
    gap: 0.85rem;
  }

  .products-detail-hero__title {
    max-width: none;
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1;
  }

  .products-detail-hero__lede {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .products-detail-hero__meta {
    gap: 0.5rem;
  }

  .products-detail-hero__tag {
    min-height: 2.2rem;
    padding: 0.45rem 0.7rem;
    font-size: 0.78rem;
  }

  .products-detail-showcase {
    gap: 1rem;
    padding: 1rem;
    border-radius: 22px;
  }

  .products-detail-wrapper .preview-wrapper {
    padding: 0.75rem;
    border-radius: 20px;
  }

  .products-detail-wrapper .image-wrapper {
    border-radius: 18px;
  }

  .products-detail-wrapper #mainPreview {
    height: auto;
    max-height: 320px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
  }

  .products-detail-wrapper .thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .products-detail-thumb {
    padding: 0.3rem;
    border-radius: 12px;
  }

  .products-detail-thumb .image-wrapper {
    padding: 0.2rem;
    border-radius: 10px;
  }

  .products-detail-showcase__content,
  .products-detail-summary,
  .products-detail-info-card {
    gap: 0.9rem;
  }

  .products-detail-summary {
    padding: 0.9rem;
    border-radius: 20px;
  }

  .products-detail-summary h3 {
    font-size: 1.35rem;
    line-height: 1.2;
  }

  .products-detail-summary p {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .products-detail-info-card {
    padding: 0.9rem;
    border-radius: 20px;
  }

  .products-detail-info-card__item {
    padding: 0.8rem 0.85rem;
    border-radius: 14px;
  }

  .products-detail-features-card {
    padding: 1rem;
    border-radius: 22px;
  }

  .products-detail-features-card h2 {
    font-size: 1.28rem;
  }

  .products-detail-features-card h6,
  .products-detail-wrapper .features li,
  .products-detail-wrapper .features p {
    font-size: 0.93rem;
    line-height: 1.65;
  }

  #block-views-block-profile-block-1 .founder-wrapper {
    gap: 1rem;
    padding: 1rem;
    border-radius: 22px;
  }

  #block-views-block-profile-block-1 .founder-wrapper>header h2,
  .page-content>.region--content>article:has(.image-with-text-wrapper) .image-with-text-wrapper .description h3 {
    font-size: clamp(1.6rem, 8vw, 2.3rem);
    line-height: 1.08;
  }

  #block-views-block-profile-block-1 .founder-wrapper>header p,
  .page-content>.region--content>article:has(.image-with-text-wrapper) .image-with-text-wrapper .description p,
  .page-content>.region--content>article:has(.image-with-text-wrapper) .image-with-text-wrapper .description li {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  #block-views-block-profile-block-1 .profile-image img,
  .page-content>.region--content>article:has(.image-with-text-wrapper) .image-with-text-wrapper .image img {
    min-height: 220px;
    max-height: 300px;
    object-fit: cover;
  }

  .page-content>.region--content>article:has(.image-with-text-wrapper) .image-with-text-wrapper {
    gap: 1rem;
    padding: 1rem;
  }

  .team-main-wrapper .version-2,
  #block-views-block-duplicate-of-profile-block-1 .version-2 {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .profile-content {
    gap: 1rem;
  }

  #block-views-block-duplicate-of-profile-block-1>div>[class*="js-view-dom-id"],
  #block-views-block-duplicate-of-profile-block-1 [class*="js-view-dom-id"] {
    padding: 1rem;
    border-radius: 22px;
  }

  #block-views-block-duplicate-of-profile-block-1 .main-wrapper {
    gap: 0.85rem;
    padding: 0.85rem;
    border-radius: 20px;
  }

  #block-views-block-duplicate-of-profile-block-1 .profile-img-wrapper {
    border-radius: 16px;
  }

  #block-views-block-duplicate-of-profile-block-1 .profile-img-wrapper img {
    aspect-ratio: 1 / 0.88;
    min-height: 180px;
    max-height: 240px;
    object-position: center top;
  }

  #block-views-block-duplicate-of-profile-block-1 .profile-description {
    gap: 0.35rem;
    padding: 0 0.15rem 0.1rem;
  }

  #block-views-block-duplicate-of-profile-block-1 .profile-title {
    font-size: 1.15rem;
    line-height: 1.18;
    letter-spacing: -0.02em;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  #block-views-block-duplicate-of-profile-block-1 .profile-designation {
    font-size: 0.88rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 430px) {
  .page-content>.region--content>article:has(.latest-product-wrapper) .latest-product-wrapper {
    padding: 0.85rem;
  }

  .page-content>.region--content>article:has(.latest-product-wrapper) .views-exposed-form {
    padding: 0.8rem;
  }

  .page-content>.region--content>article:has(.latest-product-wrapper) .product-page-view {
    padding: 0.8rem;
  }

  .page-content>.region--content>article:has(.latest-product-wrapper) .product-page-view .product-image img {
    height: 200px;
  }
}

@keyframes wmxHomeOrbFloat {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -18px, 0) scale(1.04);
  }
}

@keyframes wmxHomePanelShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.hero-wrapper {
  position: relative;
  overflow: hidden;
  min-height: clamp(680px, 92vh, 860px);
  padding: clamp(2.5rem, 5vw, 4rem) 0 3.25rem;
  background:
    linear-gradient(112deg, rgba(11, 16, 44, 0.92) 0%, rgba(31, 37, 89, 0.78) 42%, rgba(238, 79, 126, 0.16) 100%),
    linear-gradient(180deg, rgba(8, 10, 24, 0.08) 0%, rgba(8, 10, 24, 0.46) 100%);
}

.hero-wrapper::before,
.hero-wrapper::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
  animation: wmxHomeOrbFloat 8.5s ease-in-out infinite;
}

.hero-wrapper::before {
  top: 6%;
  right: 8%;
  width: clamp(200px, 24vw, 340px);
  height: clamp(200px, 24vw, 340px);
  background: radial-gradient(circle, rgba(238, 79, 126, 0.34), rgba(238, 79, 126, 0.02) 70%);
}

.hero-wrapper::after {
  left: -3%;
  bottom: 8%;
  width: clamp(240px, 28vw, 420px);
  height: clamp(240px, 28vw, 420px);
  background: radial-gradient(circle, rgba(76, 69, 156, 0.34), rgba(76, 69, 156, 0.02) 72%);
  animation-duration: 10s;
  animation-delay: -2s;
}

.hero-wrapper .hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 24, 0.52) 0%, rgba(8, 10, 24, 0.18) 42%, rgba(8, 10, 24, 0.62) 100%),
    linear-gradient(180deg, rgba(10, 14, 36, 0.08) 0%, rgba(10, 14, 36, 0.5) 100%);
}

.hero-wrapper .body-main-wrapper {
  position: relative;
  z-index: 2;
}

.hero-wrapper .above-content {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 470px);
  gap: 1.9rem;
  align-items: stretch;
}

.hero-left-wrapper {
  position: relative;
  max-width: 620px;
  padding: clamp(1.8rem, 3vw, 2.5rem);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    linear-gradient(180deg, rgba(76, 69, 156, 0.22), rgba(238, 79, 126, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 64px rgba(8, 9, 24, 0.24);
  backdrop-filter: blur(18px);
}

.hero-left-wrapper::before {
  content: "";
  position: absolute;
  inset: auto 1.5rem 1.4rem auto;
  width: 88px;
  height: 88px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(238, 79, 126, 0.24), rgba(76, 69, 156, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: rotate(12deg);
}

.hero-left-wrapper p {
  margin-bottom: 1.1rem;
  padding: 0.62rem 0.98rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-left-wrapper h1,
.hero-left-wrapper h2 {
  max-width: 10ch;
  color: #fff;
  letter-spacing: -0.05em;
  text-shadow: 0 16px 32px rgba(8, 9, 24, 0.24);
}

.hero-left-wrapper h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.hero-left-wrapper h6 {
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  line-height: 1.9;
  max-width: 56ch;
}

.hero-left-links {
  gap: 1rem;
  margin-top: 2rem;
}

.hero-left-links a {
  min-height: 3.45rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
}

.hero-left-links a:first-child {
  background: linear-gradient(135deg, #4c459c 0%, #645ed1 44%, #ee4f7e 100%);
  box-shadow: 0 20px 42px rgba(238, 79, 126, 0.24);
}

.hero-left-links a:last-child {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-product-showcase {
  position: relative;
  padding: 1.15rem;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(18, 21, 50, 0.94), rgba(38, 44, 96, 0.78), rgba(238, 79, 126, 0.26)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  background-size: 140% 140%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 34px 74px rgba(8, 9, 24, 0.3);
  backdrop-filter: blur(18px);
  animation: wmxHomePanelShift 12s ease-in-out infinite;
}

.hero-product-showcase__intro {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}

.hero-product-showcase__intro span {
  width: fit-content;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero-product-showcase__intro p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.hero-wrapper .version-1 {
  gap: 1rem;
}

.hero-wrapper .version-1>div {
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.hero-wrapper .version-1>div:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 34px rgba(8, 9, 24, 0.18);
}

.hero-wrapper .version-1 .product-image {
  min-height: 146px;
  border-radius: 18px;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 1), rgba(233, 236, 252, 0.94));
}

.hero-wrapper .version-1 .product-image img {
  height: 126px;
}

.hero-wrapper .version-1 .description h4 {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.hero-wrapper .version-1 .description h6 {
  background: linear-gradient(135deg, rgba(76, 69, 156, 0.22), rgba(238, 79, 126, 0.18));
}

.feature-section {
  position: relative;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(76, 69, 156, 0.12), transparent 18rem),
    radial-gradient(circle at bottom right, rgba(238, 79, 126, 0.1), transparent 16rem),
    linear-gradient(180deg, #ffffff 0%, #f7f8fd 100%);
}

.feature-section .right-section {
  display: grid;
  align-content: start;
  gap: 1.2rem;
}

.feature-section .right-section h2 {
  margin: 0;
  color: var(--wmx-ink);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.02;
}

.feature-section .right-section ul {
  display: none;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-section .right-section li {
  display: none;
}

.counter-wrapper {
  gap: 1rem;
}

.counter-num {
  min-height: 100%;
  padding: 1.05rem 1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f6ff 100%);
  border: 1px solid rgba(76, 69, 156, 0.08);
  box-shadow: 0 12px 24px rgba(30, 28, 68, 0.06);
}

.latest-product-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(238, 79, 126, 0.08), transparent 18rem),
    radial-gradient(circle at bottom left, rgba(76, 69, 156, 0.1), transparent 18rem),
    linear-gradient(180deg, #ffffff 0%, #f7f8fd 100%);
}

.latest-product-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(76, 69, 156, 0.02), rgba(238, 79, 126, 0.02));
  pointer-events: none;
}

.latest-product-wrapper .product-header h2 {
  color: var(--wmx-ink);
  font-size: clamp(2rem, 3vw, 3rem);
}

.latest-product-wrapper .product-header p {
  max-width: 54ch;
  color: var(--wmx-text);
  line-height: 1.8;
}

.latest-product-wrapper .products-items>a {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.latest-product-wrapper .products-items>a::after {
  content: "";
  position: absolute;
  inset: auto 1.25rem 0.9rem auto;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(76, 69, 156, 0.12), rgba(238, 79, 126, 0.14));
  opacity: 0.9;
}

.latest-product-wrapper .products-items>a:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(26, 24, 58, 0.14);
}

.home-brand-band {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.2rem) 0 clamp(3rem, 5vw, 4.5rem);
}

.home-brand-band__shell {
  width: var(--wmx-container);
  margin: 0 auto;
  padding: clamp(1.8rem, 3vw, 2.5rem);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(17, 21, 52, 0.98) 0%, rgba(43, 47, 112, 0.92) 52%, rgba(238, 79, 126, 0.82) 100%);
  box-shadow: 0 30px 72px rgba(20, 18, 48, 0.22);
  overflow: hidden;
}

.home-brand-band__shell::before {
  content: "";
  position: absolute;
  inset: auto -4% -42% auto;
  width: min(780px, 58vw);
  height: min(220px, 22vw);
  background: url("../assets/home/for-website.svg") no-repeat center / contain;
  opacity: 0.12;
  pointer-events: none;
}

.home-brand-band__intro {
  display: grid;
  gap: 0.9rem;
  max-width: 60rem;
  margin-bottom: 1.6rem;
  position: relative;
  z-index: 1;
}

.home-brand-band__intro span {
  display: inline-flex;
  width: fit-content;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-brand-band__intro h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.home-brand-band__intro p {
  margin: 0;
  max-width: 54rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
}

.home-brand-band__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-brand-band__card {
  display: grid;
  gap: 0.6rem;
  padding: 1.25rem 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.home-brand-band__card--primary {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
}

.home-brand-band__card strong {
  color: #fff;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.1rem;
  line-height: 1.25;
}

.home-brand-band__card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

@media (max-width: 1100px) {

  .hero-wrapper .above-content,
  .products-detail-showcase,
  .home-brand-band__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-left-wrapper,
  .hero-product-showcase {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .hero-wrapper {
    min-height: auto;
    padding: 1.35rem 0 2rem;
  }

  .hero-left-wrapper {
    padding: 1.35rem;
    border-radius: 26px;
  }

  .hero-left-wrapper h1 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .hero-left-links {
    flex-direction: column;
  }

  .hero-left-links a {
    width: 100%;
  }

  .hero-wrapper .version-1 {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-wrapper .version-1>div:first-child {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
  }

  .hero-wrapper .version-1>div:first-child>a:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-wrapper .version-1>div:nth-child(n + 4) {
    display: grid;
  }

  .feature-section,
  .latest-product-wrapper,
  .home-brand-band__shell {
    border-radius: 26px;
  }
}

.home-top-slider {
  position: relative;
  width: 100vw;
  margin: 0 0 2rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  overflow: hidden;
  background: #eef3fb;
  box-shadow: 0 20px 56px rgba(17, 18, 43, 0.12);
}

.home-top-slider::before {
  content: "";
  position: absolute;
  inset: auto -6% -18% auto;
  width: min(460px, 32vw);
  height: min(460px, 32vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 79, 126, 0.12), transparent 70%);
  z-index: 1;
  pointer-events: none;
  animation: wmxHomeOrbFloat 10s ease-in-out infinite;
}

.home-top-slider__track {
  position: relative;
  min-height: clamp(540px, 74vh, 780px);
}

.home-top-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  transition: opacity 700ms ease, transform 1200ms ease, visibility 700ms ease;
}

.home-top-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.home-top-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.home-top-slider__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 14, 36, 0.64) 0%, rgba(10, 14, 36, 0.38) 18%, rgba(10, 14, 36, 0.12) 34%, rgba(10, 14, 36, 0) 56%),
    linear-gradient(135deg, rgba(76, 69, 156, 0.1) 0%, rgba(238, 79, 126, 0.04) 26%, rgba(255, 255, 255, 0) 55%);
}

.home-top-slider__content {
  position: absolute;
  left: clamp(1.5rem, 5vw, 5rem);
  bottom: clamp(1.75rem, 5vw, 4rem);
  z-index: 2;
  max-width: min(640px, 44vw);
  display: grid;
  gap: 1rem;
}

.home-top-slider__content span {
  display: inline-flex;
  width: fit-content;
  padding: 0.46rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-top-slider__content h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-shadow: 0 16px 28px rgba(8, 12, 31, 0.22);
}

.home-top-slider__content p {
  margin: 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 500;
  line-height: 1.75;
}

.home-top-slider__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.35rem;
}

.home-top-slider__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.home-top-slider__actions a:first-child {
  background: linear-gradient(135deg, #4c459c 0%, #645ed1 44%, #ee4f7e 100%);
  box-shadow: 0 18px 34px rgba(238, 79, 126, 0.22);
}

.home-top-slider__actions a:last-child {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.home-top-slider__actions a:hover {
  transform: translateY(-2px);
}

.home-top-slider__nav {
  position: absolute;
  right: clamp(1.1rem, 3vw, 2rem);
  bottom: clamp(1.1rem, 3vw, 2rem);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.65rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(76, 69, 156, 0.12);
  backdrop-filter: blur(12px);
}

.home-top-slider__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border: 0;
  border-radius: 999px;
  background: rgba(76, 69, 156, 0.08);
  color: var(--wmx-primary);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.home-top-slider__arrow:hover {
  transform: translateY(-1px);
  background: rgba(76, 69, 156, 0.14);
}

.home-top-slider__dots {
  display: inline-flex;
  gap: 0.5rem;
}

.home-top-slider__dot {
  width: 0.8rem;
  height: 0.8rem;
  border: 0;
  border-radius: 999px;
  background: rgba(76, 69, 156, 0.2);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.home-top-slider__dot.is-active {
  transform: scale(1.15);
  background: linear-gradient(135deg, #7d7aff 0%, #ee4f7e 100%);
}

@media (max-width: 900px) {
  .home-top-slider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
  }

  .home-top-slider__track {
    min-height: 560px;
  }

  .home-top-slider__content {
    left: 1.2rem;
    right: 1.2rem;
    max-width: min(480px, 82vw);
  }

  .home-top-slider__content h2 {
    font-size: clamp(2rem, 8vw, 3.35rem);
  }

  .home-top-slider__nav {
    left: 1.2rem;
    right: 1.2rem;
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .home-top-slider__track {
    min-height: 520px;
  }

  .home-top-slider__overlay {
    background:
      linear-gradient(180deg, rgba(10, 14, 36, 0.56) 0%, rgba(10, 14, 36, 0.2) 36%, rgba(10, 14, 36, 0) 62%),
      linear-gradient(90deg, rgba(10, 14, 36, 0.46) 0%, rgba(10, 14, 36, 0.16) 30%, rgba(10, 14, 36, 0) 58%);
  }

  .home-top-slider__content {
    gap: 0.85rem;
    bottom: 1.15rem;
    max-width: none;
  }

  .home-top-slider__content p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .home-top-slider__actions {
    flex-direction: column;
  }

  .home-top-slider__actions a {
    width: 100%;
  }
}


/* Main section with parallax */
.parallax-contact-section {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

/* Background layer */
.parallax-contact__media {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;

  background-image: var(--wmx-parallax-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  background-attachment: fixed;
  /* parallax effect */

  z-index: 1;
}

/* Content above background */
.parallax-contact__inner {
  position: relative;
  z-index: 2;
}


.parallax-contact-section {
  position: relative;
  overflow: hidden;
  width: 100vw;
  min-height: clamp(560px, 72vw, 820px);
  margin-top: clamp(1.25rem, 3vw, 2.4rem);
  margin-bottom: clamp(1.25rem, 3vw, 2.4rem);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: #12162f;
  background-image: var(--wmx-parallax-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  box-shadow: 0 28px 68px rgba(16, 17, 43, 0.18);
}

.parallax-contact__media {
  display: none;
}

.parallax-contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  min-height: clamp(560px, 72vw, 820px);
  padding: clamp(2rem, 5vw, 4.5rem);
}

.parallax-contact__copy {
  color: #fff;
}

.parallax-contact__copy-inner {
  max-width: 34rem;
}

.parallax-contact__copy .field--name-field-parallax-title {
  margin: 0 0 1.2rem;
}

.parallax-contact__copy .field--name-field-parallax-title .field__item {
  color: #fff;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.parallax-contact__copy .field--name-field-parallax-content {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.85;
}

.parallax-contact__copy .field--name-field-parallax-content p {
  margin: 0 0 0.6rem;
}

.parallax-contact__copy .field--name-field-parallax-content p:last-child {
  margin-bottom: 0;
}

.parallax-contact__form {
  display: flex;
  justify-content: flex-end;
}

.parallax-contact__form-shell {
  width: min(100%, 33rem);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 14, 26, 0.62);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 54px rgba(5, 7, 19, 0.3);
}

.parallax-contact__form .webform-submission-form {
  display: grid;
  gap: 1rem;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.parallax-contact__form .webform-submission-form #edit-markup,
.parallax-contact__form .webform-submission-form .form-actions {
  margin: 0;
}

.parallax-contact__form .webform-submission-form #edit-markup {
  display: none;
}

.parallax-contact__form .webform-submission-form .js-form-type-textfield,
.parallax-contact__form .webform-submission-form .js-form-type-email,
.parallax-contact__form .webform-submission-form .js-form-type-tel,
.parallax-contact__form .webform-submission-form .js-form-type-textarea {
  margin: 0;
}

.parallax-contact__form .webform-submission-form label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 600;
}

.parallax-contact__form .webform-submission-form input[type="text"],
.parallax-contact__form .webform-submission-form input[type="email"],
.parallax-contact__form .webform-submission-form input[type="tel"],
.parallax-contact__form .webform-submission-form textarea {
  min-height: 3.3rem;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.parallax-contact__form .webform-submission-form textarea {
  min-height: 8.8rem;
}

.parallax-contact__form .webform-submission-form input::placeholder,
.parallax-contact__form .webform-submission-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.parallax-contact__form .webform-submission-form input:focus,
.parallax-contact__form .webform-submission-form textarea:focus {
  border-color: rgba(238, 79, 126, 0.75);
  box-shadow: 0 0 0 3px rgba(238, 79, 126, 0.12);
}

.parallax-contact__form .webform-submission-form .webform-button--submit {
  width: auto;
  min-width: 12rem;
  border-radius: 0;
  background:
    linear-gradient(to bottom, transparent, #ee4f7e, transparent),
    linear-gradient(135deg, #3e4ed6 0%, #ee4f7e 100%);
  color: #fff;
}

.parallax-contact__form .webform-submission-form .webform-button--submit:hover {
  transform: translateY(-2px);
}

@media (max-width: 960px) {
  .parallax-contact-section {
    min-height: auto;
  }

  .parallax-contact__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 1.6rem;
  }

  .parallax-contact__copy-inner,
  .parallax-contact__form-shell {
    max-width: none;
  }

  .parallax-contact__form {
    justify-content: stretch;
  }

  .parallax-contact__media {
    display: none;
  }

  .parallax-contact-section {
    background-attachment: scroll;
  }
}
