:root {
  --black: #000000;
  --ink: #050505;
  --panel: #0a0a0a;
  --panel-2: #111111;
  --white: #ffffff;
  --soft: #f4f4f4;
  --mist: #e7e7e7;
  --line: #d0d0d0;
  --muted: #6f6f6f;
  --muted-dark: #b8b8b8;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  --hairline: rgba(255, 255, 255, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--black);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid var(--hairline);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.business-ribbon {
  position: sticky;
  top: 78px;
  z-index: 45;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  padding: 9px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  color: var(--black);
  backdrop-filter: blur(16px);
}

.ribbon-title {
  font-size: 19px;
  font-weight: 950;
}

.ribbon-nav,
.ribbon-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 28px);
}

.ribbon-nav {
  justify-content: center;
  color: #333333;
  font-size: 13px;
  font-weight: 850;
}

.ribbon-actions {
  justify-content: flex-end;
  font-size: 13px;
  font-weight: 950;
}

.ribbon-actions a:first-child {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.ribbon-nav a.active,
.ribbon-actions a.active {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 254px;
}

.brand-logo {
  display: block;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  object-fit: contain;
  background: transparent;
}

.brand-text {
  display: block;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--white);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  font-weight: 950;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted-dark);
  font-size: 11px;
}

.site-nav {
  justify-self: center;
  padding: 0 14px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  gap: clamp(8px, 1.1vw, 18px);
  color: #ededed;
  font-size: 12px;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--white);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.header-actions,
.button-row,
.card-actions,
.form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.account-chip,
.cart-chip,
.whatsapp-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.account-chip,
.cart-chip {
  border: 1px solid var(--hairline);
  background: transparent;
  color: var(--white);
}

.cart-chip span {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 7px;
  border-radius: 99px;
  background: var(--white);
  color: var(--black);
  font-size: 12px;
}

.whatsapp-chip,
.floating-whatsapp,
.btn-whatsapp,
.mini-whatsapp {
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--black);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  place-items: center;
  min-width: 114px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 950;
}

.section,
.page-hero,
.offer-band,
.split-band {
  padding: clamp(48px, 6vw, 86px) clamp(18px, 5vw, 72px);
}

.section {
  background: var(--white);
}

.hero {
  padding: clamp(38px, 4.2vw, 58px) clamp(18px, 5vw, 72px);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(700px, calc(100vh - 78px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.12;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.hero::after {
  content: "";
  position: absolute;
  right: clamp(-110px, -6vw, -20px);
  bottom: 34px;
  z-index: -1;
  width: min(760px, 50vw);
  height: 76%;
  background: url("assets/hero-showroom-desktop.png") center bottom / contain no-repeat;
  filter: grayscale(1) contrast(1.14) brightness(0.92);
  opacity: 0.84;
}

.hero > div:first-child {
  max-width: 900px;
}

.hero-visual {
  min-height: 560px;
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 28px;
}

.hero-kpis span {
  position: relative;
  display: grid;
  min-height: 118px;
  align-content: end;
  gap: 8px;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(0, 0, 0, 0.52);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.hero-kpis strong {
  display: block;
  color: var(--white);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.hero-kpis small {
  display: block;
  max-width: 145px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.35;
  text-transform: uppercase;
}

.brand-strip {
  display: flex;
  gap: 1px;
  overflow-x: auto;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  scrollbar-width: none;
}

.brand-strip::-webkit-scrollbar {
  display: none;
}

.brand-strip span {
  flex: 1 0 auto;
  min-width: 220px;
  padding: 22px 24px;
  background: var(--white);
  color: var(--black);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.centered-head {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.family-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  background: var(--black);
}

.family-nav a {
  min-height: 108px;
  padding: 20px;
  background: var(--white);
  color: var(--black);
}

.family-nav strong,
.family-nav span {
  display: block;
}

.family-nav strong {
  font-size: 15px;
  font-weight: 950;
}

.family-nav span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.product-finder {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 30px;
  align-items: center;
  background: var(--soft);
}

.finder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.finder-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.finder-card:hover {
  transform: translateY(-4px);
  border-color: var(--black);
  box-shadow: var(--shadow);
}

.finder-card strong {
  font-size: 21px;
  line-height: 1.1;
}

.finder-card span {
  margin-top: 10px;
  color: var(--muted);
}

.business-support {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(42px, 5vw, 72px) clamp(18px, 5vw, 72px);
  border-top: 1px solid #252525;
  border-bottom: 1px solid #252525;
  background: var(--black);
  color: var(--white);
}

.business-support h2 {
  max-width: 820px;
  font-size: clamp(28px, 3.6vw, 52px);
}

.business-support p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted-dark);
}

.business-support .btn-secondary {
  border-color: var(--white);
}

.product-anchor-bar {
  position: sticky;
  top: 136px;
  z-index: 35;
  display: flex;
  gap: 1px;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
  scrollbar-width: none;
}

.product-anchor-bar::-webkit-scrollbar {
  display: none;
}

.product-anchor-bar button {
  flex: 1 0 auto;
  min-width: 150px;
  padding: 15px 18px;
  border: 0;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font-size: 13px;
  font-weight: 950;
  font-family: inherit;
  text-align: center;
}

#features,
#usage,
#software-offer,
#product-benefits,
#support,
#enquiry {
  scroll-margin-top: 168px;
}

.software-story,
.brand-manifesto {
  background: var(--white);
}

.brand-manifesto {
  text-align: center;
}

.brand-manifesto h2,
.brand-manifesto .lead {
  margin-right: auto;
  margin-left: auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: currentColor;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  opacity: 0.72;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(40px, 4.7vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.6vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.lead {
  max-width: 760px;
  color: inherit;
  font-size: clamp(17px, 1.7vw, 21px);
  opacity: 0.76;
}

.btn,
.mini-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 950;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.btn:hover,
.mini-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.btn {
  padding: 0 20px;
}

.mini-btn {
  min-height: 38px;
  padding: 0 12px;
  font-size: 12px;
}

.btn-primary,
.mini-primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-secondary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-ghost,
.mini-btn {
  border-color: var(--line);
  background: var(--white);
  color: var(--black);
}

.hero .btn-secondary,
.hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: var(--white);
}

.section-head {
  max-width: 1040px;
  margin-bottom: 44px;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.category-card,
.product-card,
.feature-card,
.info-card,
.cart-row,
.form-panel,
.gallery-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.08);
}

.category-card,
.feature-card,
.info-card,
.faq-item {
  padding: 26px;
}

.category-card,
.feature-card,
.info-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-card:hover,
.feature-card:hover,
.info-card:hover,
.product-card:hover,
.gallery-card:hover {
  transform: translateY(-4px);
  border-color: var(--black);
  box-shadow: var(--shadow);
}

.category-media,
.product-media,
.gallery-media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 250px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.22), transparent 26%),
    linear-gradient(135deg, #000000, #171717);
  background-size: 44px 44px, 44px 44px, auto, auto;
}

.category-media::before,
.product-media::before,
.gallery-media::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.category-media::after,
.product-media::after,
.gallery-media::after {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12));
}

.standee-figure {
  position: relative;
  z-index: 1;
  width: 96px;
  height: 170px;
  border: 2px solid var(--white);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.18) 42%, rgba(255, 255, 255, 0.74)),
    #1b1b1b;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.44);
}

.product-media.has-image,
.gallery-media.has-image,
.innovation-media.has-image {
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 253, 248, 0.95), transparent 30%),
    linear-gradient(135deg, var(--pastel-a), #fffdf8 52%, var(--pastel-b));
}

.product-media.has-image::before,
.gallery-media.has-image::before,
.innovation-media.has-image::before {
  z-index: 1;
  border-color: rgba(32, 43, 53, 0.1);
}

.product-media.has-image::after,
.gallery-media.has-image::after,
.innovation-media.has-image::after {
  z-index: 1;
  height: 32%;
  background: linear-gradient(180deg, transparent, rgba(255, 253, 248, 0.62));
}

.product-photo {
  position: relative;
  z-index: 2;
  display: block;
  width: auto;
  max-width: 88%;
  height: auto;
  max-height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(32, 43, 53, 0.18));
}

.detail-main-image.has-image {
  min-height: 560px;
}

.product-photo-detail {
  max-width: 94%;
  max-height: 500px;
}

.gallery-thumb .product-photo {
  max-width: 84%;
  max-height: 104px;
}

.innovation-media.has-image .product-photo {
  max-width: 86%;
  max-height: 84%;
}

.cart-row .product-photo {
  max-height: 110px;
}

.standee-figure::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(0, 0, 0, 0.42);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2) 1px, transparent 1px),
    linear-gradient(rgba(0, 0, 0, 0.2) 1px, transparent 1px);
  background-size: 18px 18px;
}

.standee-figure::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -23px;
  width: 120px;
  height: 13px;
  transform: translateX(-50%);
  border: 1px solid var(--white);
  border-radius: 99px;
  background: var(--black);
}

.shape-a {
  clip-path: polygon(18% 0, 82% 0, 100% 100%, 0 100%);
}

.shape-wall {
  width: 176px;
  height: 108px;
}

.shape-video {
  width: 184px;
  height: 116px;
}

.shape-software {
  width: 176px;
  height: 112px;
  border-radius: 8px;
}

.product-card,
.gallery-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-body {
  padding: 24px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-meta span {
  padding-right: 10px;
  border-right: 1px solid var(--line);
}

.product-meta span:last-child {
  border-right: 0;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 9px;
  border: 1px solid var(--black);
  border-radius: 99px;
  background: var(--white);
  color: var(--black);
  font-size: 11px;
  font-weight: 950;
}

.badge.dark {
  background: var(--black);
  color: var(--white);
}

.product-card p,
.category-card p,
.feature-card p,
.info-card p,
.faq-item p,
.site-footer p {
  color: var(--muted);
}

.price {
  margin: 10px 0 15px;
  color: var(--black);
  font-size: 17px;
  font-weight: 950;
}

.card-actions {
  align-items: stretch;
}

.card-actions .mini-btn {
  flex: 1 1 120px;
}

.display-showcase {
  background: var(--white);
}

.innovation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.92fr));
  gap: 22px;
}

.innovation-card {
  display: grid;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.innovation-card.hero-card {
  grid-row: span 2;
}

.innovation-media {
  display: grid;
  place-items: center;
  min-height: 280px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px),
    var(--white);
  background-size: 42px 42px;
}

.innovation-media .standee-figure {
  border-color: var(--black);
  transform: scale(1.28);
}

.innovation-media .standee-figure::after {
  border-color: var(--black);
}

.innovation-copy {
  padding: 28px;
  align-self: end;
}

.innovation-copy h3 {
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.04;
}

.innovation-copy p:not(.eyebrow) {
  color: var(--muted);
}

.industry-solutions {
  background: var(--soft);
}

.trust-section {
  background: var(--white);
}

.industries-section {
  background: var(--soft);
}

.gallery-preview-section {
  background: var(--white);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.solution-card {
  min-height: 360px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  border-color: var(--black);
  box-shadow: var(--shadow);
}

.solution-card span {
  margin-bottom: auto;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solution-card h3 {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.02;
}

.solution-card p {
  color: var(--muted);
}

.solution-card a {
  margin-top: 12px;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.platform-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  border-top: 1px solid rgba(32, 43, 53, 0.12);
  border-bottom: 1px solid rgba(32, 43, 53, 0.12);
  background:
    radial-gradient(circle at 12% 18%, rgba(223, 244, 237, 0.88), transparent 28%),
    linear-gradient(135deg, #f7fbf8 0%, #fffdf8 52%, #ffe8e1 100%);
}

.platform-copy {
  max-width: 760px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.platform-card {
  min-height: 178px;
  padding: 20px;
  border: 1px solid rgba(32, 43, 53, 0.14);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 18px 44px rgba(48, 65, 78, 0.1);
}

.platform-logo {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border: 1px solid rgba(32, 43, 53, 0.12);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 12px 26px rgba(48, 65, 78, 0.08);
}

.platform-logo svg {
  width: 38px;
  height: 38px;
  color: var(--ink);
}

.platform-logo svg path,
.platform-logo svg circle {
  fill: currentColor;
  stroke: currentColor;
}

.platform-logo svg [fill="none"] {
  fill: none;
}

.platform-logo text {
  fill: #ffffff;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.06em;
}

.platform-android {
  color: #3ddc84;
}

.platform-tizen {
  color: #1d65d8;
}

.platform-windows {
  color: #0078d4;
}

.platform-card h3 {
  margin-bottom: 8px;
}

.platform-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.private-showroom {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1.16fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--white);
}

.showroom-copy {
  max-width: 760px;
}

.showroom-image {
  min-height: 560px;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.42)),
    url("assets/hero-showroom-desktop.png") center / cover no-repeat;
  filter: grayscale(1) contrast(1.08);
  box-shadow: var(--shadow);
}

.collection-section {
  background: var(--soft);
}

.collection-section .grid-4 {
  grid-template-columns: 1.1fr 0.9fr 0.9fr 1.1fr;
}

.featured-section {
  background: var(--white);
}

.premium-products {
  grid-template-columns: 1.15fr 0.92fr 0.92fr;
  align-items: stretch;
}

.premium-products .product-card:first-child {
  grid-row: span 2;
}

.premium-products .product-card:first-child .product-media {
  min-height: 520px;
}

.offer-band {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.offer-band::before {
  content: "FREE SOFTWARE INCLUDED";
  position: absolute;
  left: -4vw;
  right: -4vw;
  top: 18px;
  color: rgba(255, 255, 255, 0.04);
  font-size: clamp(48px, 9vw, 132px);
  font-weight: 950;
  white-space: nowrap;
}

.offer-band p {
  color: var(--muted-dark);
}

.software-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.software-options .info-card {
  background: var(--panel-2);
  border-color: #333333;
}

.software-options h3,
.software-options li {
  color: var(--white);
}

.software-options p {
  color: var(--muted-dark);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 36px;
  align-items: center;
  background: var(--soft);
}

.showroom-band {
  background: var(--black);
  color: var(--white);
}

.showroom-band .section-head {
  max-width: 980px;
}

.process-card {
  min-height: 260px;
  padding: 22px;
  border: 1px solid #333333;
  border-radius: var(--radius);
  background: var(--panel);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: var(--white);
  background: var(--panel-2);
}

.process-card strong {
  display: block;
  margin-bottom: 62px;
  color: rgba(255, 255, 255, 0.36);
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.8;
}

.process-card h3 {
  color: var(--white);
}

.process-card p {
  color: var(--muted-dark);
}

.industries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-pill {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  font-weight: 900;
}

.industry-pill:hover {
  background: var(--black);
  color: var(--white);
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    var(--black);
  background-size: 64px 64px;
  border-bottom: 1px solid var(--black);
  color: var(--white);
}

.page-hero h1 {
  font-size: clamp(44px, 7vw, 96px);
}

.shop-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.filters {
  align-self: start;
  position: sticky;
  top: 98px;
  padding: 24px;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.field label {
  color: inherit;
  font-size: 13px;
  font-weight: 950;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.schedule-call-panel .field input,
.schedule-call-panel .field select,
.schedule-call-panel .field textarea {
  min-height: 50px;
  border-color: rgba(32, 43, 53, 0.16);
  background:
    linear-gradient(135deg, rgba(223, 244, 237, 0.42), rgba(255, 253, 248, 0.96) 46%, rgba(255, 229, 222, 0.36));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.schedule-call-panel .field select {
  appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%),
    linear-gradient(135deg, rgba(223, 244, 237, 0.42), rgba(255, 253, 248, 0.96) 46%, rgba(255, 229, 222, 0.36));
  background-position:
    calc(100% - 21px) 22px,
    calc(100% - 15px) 22px,
    0 0;
  background-size: 6px 6px, 6px 6px, auto;
  background-repeat: no-repeat;
}

.schedule-call-panel .field input:focus,
.schedule-call-panel .field select:focus,
.schedule-call-panel .field textarea:focus {
  outline: 0;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(223, 244, 237, 0.8);
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-notice {
  margin: 0 0 18px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(226, 246, 240, 0.72);
  color: var(--ink);
  font-weight: 800;
}

.form-notice[data-tone="error"] {
  background: rgba(255, 226, 218, 0.74);
}

.btn.is-loading {
  opacity: 0.72;
  cursor: wait;
}

.btn:disabled {
  pointer-events: none;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(28px, 5vw, 70px);
  background: var(--white);
}

.detail-media {
  overflow: hidden;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: var(--shadow);
}

.product-gallery {
  position: sticky;
  top: 156px;
  align-self: start;
}

.gallery-stage {
  position: relative;
  background: var(--black);
}

.gallery-slide {
  display: none;
  margin: 0;
}

.gallery-slide.active {
  display: block;
}

.gallery-slide figcaption {
  padding: 14px 18px;
  border-top: 1px solid #2a2a2a;
  color: var(--muted-dark);
  font-size: 13px;
  font-weight: 850;
}

.detail-main-image {
  min-height: 560px;
}

.gallery-label {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 3;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--white);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 54px;
  height: 54px;
  transform: translateY(-50%);
  border: 1px solid var(--white);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font-size: 11px;
  font-weight: 950;
}

.gallery-prev {
  left: 18px;
}

.gallery-next {
  right: 18px;
}

.gallery-counter {
  padding: 12px 18px;
  border-top: 1px solid #2a2a2a;
  color: var(--white);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-align: right;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  background: var(--black);
}

.gallery-thumb {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 0;
  border: 1px solid #2b2b2b;
  border-radius: 8px;
  background: #0b0b0b;
  color: var(--white);
  cursor: pointer;
  overflow: hidden;
}

.gallery-thumb.active {
  border-color: var(--white);
}

.gallery-thumb .product-media {
  min-height: 92px;
  border: 1px solid #2b2b2b;
  border-radius: 8px;
}

.gallery-thumb .standee-figure {
  transform: scale(0.58);
}

.gallery-thumb strong {
  padding: 0 8px 10px;
  color: var(--muted-dark);
  font-size: 11px;
  line-height: 1.1;
}

.gallery-view-side .standee-figure {
  width: 54px;
  transform: skewY(-4deg);
}

.gallery-view-space {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.25), transparent 18%),
    linear-gradient(145deg, #050505, #262626);
  background-size: 54px 54px, 54px 54px, auto, auto;
}

.gallery-view-software .standee-figure::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.36) 1px, transparent 1px),
    linear-gradient(rgba(0, 0, 0, 0.36) 1px, transparent 1px);
  background-size: 12px 12px;
}

.gallery-view-detail .standee-figure {
  transform: scale(1.18);
}

.quick-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  border: 1px solid var(--line);
  background: var(--line);
}

.quick-trust span {
  padding: 14px;
  background: var(--white);
  font-size: 12px;
  font-weight: 950;
  text-align: center;
}

.sticky-buy-bar {
  position: sticky;
  top: 136px;
  z-index: 36;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.sticky-buy-bar strong,
.sticky-buy-bar span {
  display: block;
}

.sticky-buy-bar strong {
  font-size: 15px;
}

.sticky-buy-bar span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.comparison-section {
  background: var(--soft);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.comparison-card {
  min-height: 180px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.comparison-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comparison-card strong {
  font-size: 20px;
  line-height: 1.12;
}

.option-panel,
.quote-form {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  background: var(--soft);
}

.spec-list,
.check-list {
  display: grid;
  gap: 9px;
  padding-left: 18px;
}

.spec-list li::marker,
.check-list li::marker {
  color: var(--black);
}

.offer-band .spec-list li::marker,
.offer-band .check-list li::marker {
  color: var(--white);
}

.cart-row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 18px;
  margin-bottom: 16px;
  border-color: var(--black);
}

.cart-row .product-media {
  min-height: 130px;
  border-radius: 8px;
}

.qty-box {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--black);
  border-radius: 8px;
}

.qty-box button,
.qty-box input {
  width: 42px;
  min-height: 38px;
  border: 0;
  background: var(--white);
  text-align: center;
}

.cart-summary {
  position: sticky;
  top: 100px;
  padding: 30px;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
}

.cart-page {
  background: var(--white);
}

.cart-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 30px;
  align-items: start;
}

.cart-items {
  padding: 28px;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  background: var(--soft);
}

.cart-summary p {
  color: var(--muted-dark);
}

.cart-summary .field input {
  border-color: var(--white);
}

.form-panel {
  padding: 30px;
  border-color: var(--black);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gallery-card {
  overflow: hidden;
}

.gallery-card .product-body {
  min-height: 118px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.tab {
  border: 1px solid var(--black);
  border-radius: 8px;
  background: var(--white);
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 950;
}

.tab:hover,
.tab.active {
  background: var(--black);
  color: var(--white);
}

.notice {
  padding: 14px 16px;
  border-left: 4px solid var(--black);
  background: var(--soft);
  color: var(--black);
  font-weight: 900;
}

.site-footer {
  background: var(--black);
  color: var(--white);
}

.footer-cta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 42px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid #2a2a2a;
}

.footer-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(28px, 3.4vw, 48px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 28px;
  padding: 46px clamp(18px, 5vw, 72px);
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: #ededed;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-brand .brand-logo {
  width: 56px;
  height: 56px;
}

.site-footer .brand-mark {
  background: var(--white);
  color: var(--black);
}

.reveal,
.section-head,
.product-detail,
.innovation-card,
.solution-card,
.info-card,
.form-panel,
.business-support {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible,
.section-head.is-visible,
.product-detail.is-visible,
.innovation-card.is-visible,
.solution-card.is-visible,
.info-card.is-visible,
.form-panel.is-visible,
.business-support.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero h1,
.hero .lead,
.hero .button-row,
.hero-kpis {
  animation: heroRise 820ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero .lead {
  animation-delay: 110ms;
}

.hero .button-row {
  animation-delay: 210ms;
}

.hero-kpis {
  animation-delay: 310ms;
}

.standee-figure {
  animation: productFloat 4.8s ease-in-out infinite;
}

.product-card:hover .standee-figure,
.category-card:hover .standee-figure,
.gallery-card:hover .standee-figure {
  animation-duration: 2.8s;
}

.brand-strip span {
  transition: background 220ms ease, color 220ms ease;
}

.brand-strip span:hover {
  background: var(--black);
  color: var(--white);
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal,
  .section-head,
  .product-detail,
  .innovation-card,
  .solution-card,
  .info-card,
  .form-panel,
  .business-support {
    opacity: 1;
    transform: none;
  }
}

/* Pastel brand theme */
:root {
  --black: #24313f;
  --ink: #253142;
  --panel: #eef5f4;
  --panel-2: #f4eef8;
  --white: #fffaf2;
  --soft: #f7f1ea;
  --mist: #e6f2ef;
  --line: #d9d4cc;
  --muted: #6d7480;
  --muted-dark: #5f6b72;
  --shadow: 0 26px 80px rgba(84, 99, 116, 0.18);
  --hairline: rgba(255, 250, 242, 0.44);
  --mint: #d9f0e6;
  --sky: #dcecff;
  --blush: #f8dedc;
  --lavender: #eadff7;
  --butter: #fff0bf;
}

body {
  background:
    linear-gradient(135deg, rgba(217, 240, 230, 0.45), rgba(248, 222, 220, 0.28) 42%, rgba(220, 236, 255, 0.34)),
    var(--white);
}

.site-header {
  background: rgba(255, 250, 242, 0.88);
  color: var(--ink);
  border-bottom-color: rgba(36, 49, 63, 0.12);
}

.site-nav {
  color: var(--ink);
  border-color: rgba(36, 49, 63, 0.14);
  background: rgba(255, 255, 255, 0.38);
}

.site-nav a::after {
  background: var(--ink);
}

.account-chip,
.cart-chip {
  border-color: rgba(36, 49, 63, 0.18);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.42);
}

.cart-chip span,
.whatsapp-chip,
.floating-whatsapp,
.btn-whatsapp,
.mini-whatsapp {
  background: var(--mint);
  color: var(--ink);
  border-color: rgba(36, 49, 63, 0.16);
}

.nav-toggle {
  border-color: rgba(36, 49, 63, 0.18);
}

.nav-toggle span {
  background: var(--ink);
}

.business-ribbon {
  background: rgba(247, 241, 234, 0.92);
  border-bottom-color: rgba(36, 49, 63, 0.12);
}

.hero,
.page-hero,
.showroom-band,
.business-support,
.offer-band,
.site-footer {
  background:
    radial-gradient(circle at 15% 15%, rgba(220, 236, 255, 0.42), transparent 26%),
    radial-gradient(circle at 80% 20%, rgba(248, 222, 220, 0.5), transparent 24%),
    linear-gradient(135deg, #edf7f4, #fffaf2 46%, #f3ebfb);
  color: var(--ink);
}

.hero::before,
.page-hero {
  opacity: 1;
}

.hero::after {
  opacity: 0.46;
  filter: grayscale(0.2) contrast(0.95) brightness(1.04);
}

.hero .btn-secondary,
.hero .btn-ghost {
  border-color: rgba(36, 49, 63, 0.2);
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
}

.hero-kpis {
  max-width: 720px;
}

.hero-kpis span {
  border-color: rgba(32, 43, 53, 0.12);
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.88), transparent 20%),
    linear-gradient(145deg, rgba(223, 244, 237, 0.94), rgba(255, 229, 222, 0.78));
  box-shadow: 0 18px 38px rgba(48, 65, 78, 0.12);
}

.hero-kpis span:nth-child(2) {
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.88), transparent 20%),
    linear-gradient(145deg, rgba(255, 229, 222, 0.9), rgba(255, 253, 248, 0.82));
}

.hero-kpis span:nth-child(3) {
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.88), transparent 20%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.9), rgba(223, 244, 237, 0.86));
}

.hero-kpis strong,
.software-options h3,
.software-options li,
.process-card h3 {
  color: var(--ink);
}

.hero-kpis small,
.offer-band p,
.software-options p,
.process-card p,
.business-support p:not(.eyebrow),
.site-footer p,
.site-footer a {
  color: var(--muted);
}

.hero-kpis small {
  color: var(--muted-dark);
}

.btn-primary,
.mini-primary {
  background: var(--ink);
  color: #fffaf2;
  border-color: var(--ink);
}

.btn-secondary {
  background: var(--sky);
  color: var(--ink);
  border-color: rgba(36, 49, 63, 0.16);
}

.btn-ghost,
.mini-btn {
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  border-color: rgba(36, 49, 63, 0.16);
}

.brand-strip {
  background: rgba(36, 49, 63, 0.14);
  border-color: rgba(36, 49, 63, 0.14);
}

.brand-strip span:nth-child(5n + 1),
.family-nav a:nth-child(5n + 1),
.solution-card:nth-child(5n + 1),
.finder-card:nth-child(5n + 1) {
  background: var(--mint);
}

.brand-strip span:nth-child(5n + 2),
.family-nav a:nth-child(5n + 2),
.solution-card:nth-child(5n + 2),
.finder-card:nth-child(5n + 2) {
  background: var(--sky);
}

.brand-strip span:nth-child(5n + 3),
.family-nav a:nth-child(5n + 3),
.solution-card:nth-child(5n + 3),
.finder-card:nth-child(5n + 3) {
  background: var(--blush);
}

.brand-strip span:nth-child(5n + 4),
.family-nav a:nth-child(5n + 4),
.solution-card:nth-child(5n + 4),
.finder-card:nth-child(5n + 4) {
  background: var(--lavender);
}

.brand-strip span:nth-child(5n + 5),
.family-nav a:nth-child(5n + 5),
.solution-card:nth-child(5n + 5),
.finder-card:nth-child(5n + 5) {
  background: var(--butter);
}

.brand-strip span:hover {
  background: var(--ink);
  color: var(--white);
}

.display-showcase,
.private-showroom,
.featured-section,
.software-story,
.brand-manifesto,
.gallery-preview-section,
.cart-page,
.product-detail,
.section {
  background: rgba(255, 250, 242, 0.92);
}

.collection-section,
.industry-solutions,
.product-finder,
.comparison-section,
.industries-section,
.split-band {
  background:
    linear-gradient(135deg, rgba(220, 236, 255, 0.55), rgba(255, 250, 242, 0.9) 45%, rgba(234, 223, 247, 0.52));
}

.category-card,
.product-card,
.feature-card,
.info-card,
.cart-row,
.form-panel,
.gallery-card,
.faq-item,
.innovation-card,
.comparison-card,
.cart-items {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(36, 49, 63, 0.14);
  backdrop-filter: blur(10px);
}

.category-media,
.product-media,
.gallery-media,
.innovation-media {
  background:
    linear-gradient(90deg, rgba(36, 49, 63, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(36, 49, 63, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 42% 22%, rgba(255, 250, 242, 0.95), transparent 28%),
    linear-gradient(135deg, #d9f0e6, #dcecff 48%, #eadff7);
}

.standee-figure {
  border-color: rgba(36, 49, 63, 0.62);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(220, 236, 255, 0.45) 42%, rgba(248, 222, 220, 0.62)),
    #eef5f4;
  box-shadow: 0 22px 42px rgba(84, 99, 116, 0.22);
}

.standee-figure::after {
  background: var(--ink);
  border-color: var(--ink);
}

.badge {
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  border-color: rgba(36, 49, 63, 0.16);
}

.badge.dark {
  background: var(--ink);
  color: var(--white);
}

.software-options .info-card,
.process-card,
.cart-summary {
  background: rgba(255, 250, 242, 0.76);
  border-color: rgba(36, 49, 63, 0.18);
  color: var(--ink);
}

.cart-summary .field input {
  border-color: rgba(36, 49, 63, 0.18);
}

.site-footer {
  border-top: 1px solid rgba(36, 49, 63, 0.12);
}

.footer-cta,
.footer-bottom,
.footer-grid {
  border-color: rgba(36, 49, 63, 0.12);
}

.socials a {
  border-color: rgba(36, 49, 63, 0.18);
}

.gallery-label,
.gallery-counter {
  background: rgba(255, 250, 242, 0.78);
  color: var(--ink);
  border-color: rgba(36, 49, 63, 0.16);
}

.gallery-arrow {
  background: var(--butter);
  color: var(--ink);
  border-color: rgba(36, 49, 63, 0.16);
}

.sticky-buy-bar,
.product-anchor-bar button {
  background: rgba(255, 250, 242, 0.9);
  color: var(--ink);
}

.product-anchor-bar,
.family-nav {
  background: rgba(36, 49, 63, 0.12);
  border-color: rgba(36, 49, 63, 0.12);
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #777777;
  border-radius: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px clamp(18px, 5vw, 72px);
  border-top: 1px solid #2a2a2a;
  color: #c7c7c7;
  font-size: 13px;
}

.empty-state {
  padding: 34px;
  border: 1px dashed var(--black);
  border-radius: 8px;
  background: var(--soft);
  text-align: center;
}

.account-section {
  background:
    radial-gradient(circle at 16% 20%, rgba(223, 244, 237, 0.78), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(255, 229, 222, 0.72), transparent 25%),
    var(--white);
}

.account-auth,
.account-dashboard {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.auth-copy,
.account-profile,
.order-card {
  border: 1px solid rgba(32, 43, 53, 0.14);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow);
}

.auth-copy,
.account-profile {
  position: sticky;
  top: 150px;
  padding: 28px;
}

.auth-copy h2,
.account-profile h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1;
}

.account-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.account-benefits span,
.account-stats article {
  padding: 14px;
  border: 1px solid rgba(32, 43, 53, 0.12);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pastel-a), var(--pastel-b));
  font-weight: 950;
}

.auth-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.account-form {
  min-height: 100%;
  background: rgba(255, 253, 248, 0.9);
}

.profile-avatar {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 18px;
  border-radius: 22px;
  background: var(--ink);
  color: var(--white);
  font-size: 24px;
  font-weight: 950;
}

.account-main {
  display: grid;
  gap: 20px;
}

.account-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.account-stats article span,
.account-stats article strong {
  display: block;
}

.account-stats article span {
  margin-bottom: 8px;
  font-size: clamp(22px, 2.3vw, 34px);
}

.account-stats article strong {
  color: var(--muted-dark);
  font-size: 12px;
  text-transform: uppercase;
}

.compact-head {
  margin-bottom: 0;
}

.order-card {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.order-top,
.order-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--pastel-a);
  color: var(--ink);
  font-weight: 950;
}

.tracking-line {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
}

.tracking-line span {
  min-height: 44px;
  padding: 10px 8px;
  border-radius: 8px;
  background: rgba(32, 43, 53, 0.08);
  color: var(--muted-dark);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
}

.tracking-line span.active {
  background: var(--ink);
  color: var(--white);
}

.order-items {
  display: grid;
  gap: 10px;
}

.order-items div {
  padding: 14px;
  border: 1px solid rgba(32, 43, 53, 0.12);
  border-radius: 10px;
  background: rgba(223, 244, 237, 0.36);
}

.order-items strong,
.order-items span {
  display: block;
}

.order-items span,
.order-meta {
  color: var(--muted-dark);
  font-size: 13px;
  font-weight: 850;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--black);
    border-bottom: 1px solid #2a2a2a;
    box-shadow: var(--shadow);
  }

  .business-ribbon {
    top: 78px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .product-finder,
  .business-support {
    grid-template-columns: 1fr;
  }

  .finder-grid {
    grid-template-columns: 1fr;
  }

  .product-anchor-bar {
    top: 78px;
  }

  .product-gallery {
    position: static;
  }

  .sticky-buy-bar {
    top: 78px;
    grid-template-columns: 1fr;
  }

  .comparison-grid,
  .quick-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ribbon-nav,
  .ribbon-actions {
    justify-content: flex-start;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .header-actions {
    justify-content: end;
  }

  .hero,
  .split-band,
  .platform-section,
  .account-auth,
  .account-dashboard,
  .product-detail,
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 380px;
  }

  .hero::after {
    left: 0;
    right: 0;
    bottom: -18px;
    width: 100%;
    height: 360px;
    background-position: center bottom;
  }

  .hero-visual {
    display: none;
  }

  .private-showroom,
  .cart-shell,
  .innovation-grid,
  .solution-grid,
  .grid-4,
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .private-showroom,
  .cart-shell,
  .premium-products,
  .innovation-grid,
  .collection-section .grid-4 {
    grid-template-columns: 1fr;
  }

  .innovation-card.hero-card {
    grid-row: auto;
  }

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

  .premium-products .product-card:first-child .product-media,
  .detail-main-image {
    min-height: 420px;
  }

  .filters {
    position: static;
  }

  .auth-copy,
  .account-profile {
    position: static;
  }

  .auth-panels,
  .account-stats {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-text strong {
    font-size: 13px;
  }

  .brand-text small {
    font-size: 10px;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .header-actions > * {
    flex: 1;
  }

  .hero {
    padding-bottom: 300px;
  }

  .hero-kpis,
  .platform-grid,
  .solution-grid,
  .tracking-line,
  .family-nav,
  .grid-4,
  .grid-3,
  .grid-2,
  .software-options,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cart-row {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .cart-row > :last-child {
    grid-column: 1 / -1;
  }

  .thumb-row,
  .comparison-grid,
  .quick-trust {
    grid-template-columns: 1fr;
  }

  .gallery-arrow {
    width: 46px;
    height: 46px;
  }

  .footer-cta,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-top,
  .order-meta {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Two-color pastel refinement */
:root {
  --black: #202b35;
  --ink: #202b35;
  --white: #fffdf8;
  --soft: #f8f4ee;
  --panel: #e8f5ef;
  --panel-2: #ffe7df;
  --mist: #eef8f4;
  --line: #ddd6cc;
  --muted: #66727c;
  --muted-dark: #5b6871;
  --shadow: 0 22px 56px rgba(48, 65, 78, 0.13);
  --hairline: rgba(32, 43, 53, 0.12);
  --pastel-a: #dff4ed;
  --pastel-b: #ffe5de;
  --mint: var(--pastel-a);
  --sky: var(--pastel-a);
  --blush: var(--pastel-b);
  --lavender: var(--pastel-b);
  --butter: var(--pastel-b);
}

body {
  background:
    linear-gradient(135deg, rgba(223, 244, 237, 0.72), rgba(255, 229, 222, 0.58)),
    var(--white);
}

.site-header {
  padding: 10px clamp(22px, 4vw, 56px);
  background: rgba(255, 253, 248, 0.92);
}

.brand-logo {
  width: 54px;
  height: 54px;
}

.site-nav {
  gap: 5px;
  padding: 0 12px;
  justify-content: center;
}

.site-nav a {
  padding: 11px 10px;
  line-height: 1.15;
}

.header-actions {
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 8px;
}

.account-chip,
.cart-chip,
.whatsapp-chip,
.floating-whatsapp {
  white-space: nowrap;
}

.business-ribbon {
  top: 75px;
  min-height: 54px;
  padding: 7px clamp(22px, 4vw, 56px);
  background: rgba(248, 244, 238, 0.94);
}

.section,
.page-hero,
.offer-band,
.split-band {
  padding: clamp(34px, 4.2vw, 58px) clamp(22px, 4vw, 56px);
}

.hero {
  min-height: min(590px, calc(100vh - 120px));
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.72fr);
  gap: clamp(20px, 3vw, 42px);
  padding: clamp(38px, 4.6vw, 62px) clamp(22px, 4vw, 56px) clamp(30px, 3.8vw, 48px);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 229, 222, 0.72), transparent 27%),
    linear-gradient(135deg, #f2fbf7 0%, #fffdf8 47%, #ffe8e1 100%);
}

.hero::before {
  opacity: 0.55;
  background:
    linear-gradient(90deg, rgba(32, 43, 53, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(32, 43, 53, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
}

.hero::after {
  right: clamp(10px, 4vw, 72px);
  bottom: 22px;
  width: min(520px, 42vw);
  height: 68%;
  opacity: 0.58;
}

.hero > div:first-child {
  max-width: 760px;
}

.hero-visual {
  min-height: 430px;
}

h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.02;
}

h2 {
  max-width: 820px;
  margin-bottom: 12px;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 8px;
}

.lead {
  max-width: 700px;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.56;
}

.eyebrow {
  margin-bottom: 10px;
}

.button-row {
  gap: 10px;
  margin-top: 20px;
}

.hero-kpis {
  max-width: 500px;
  margin-top: 22px;
}

.hero-kpis span {
  padding: 14px 16px;
}

.section-head {
  max-width: 820px;
  margin-bottom: 26px;
}

.centered-head {
  max-width: 760px;
}

.centered-head h2,
.centered-head .lead {
  margin-right: auto;
  margin-left: auto;
}

.grid {
  gap: 16px;
}

.category-card,
.feature-card,
.info-card,
.faq-item {
  padding: 20px;
}

.product-card,
.gallery-card,
.innovation-card,
.comparison-card,
.cart-row,
.form-panel {
  border-radius: 10px;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-body .price {
  margin-top: auto;
}

.card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.card-actions .mini-btn,
.product-body > .mini-btn {
  width: 100%;
}

.product-count {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.filter-reset {
  width: 100%;
}

.category-media,
.product-media,
.gallery-media,
.innovation-media {
  min-height: 210px;
  background:
    linear-gradient(90deg, rgba(32, 43, 53, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(32, 43, 53, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, var(--pastel-a), #fffdf8 50%, var(--pastel-b));
}

.display-showcase,
.private-showroom,
.featured-section,
.software-story,
.brand-manifesto,
.gallery-preview-section,
.cart-page,
.product-detail,
.section {
  background: rgba(255, 253, 248, 0.95);
}

.collection-section,
.industry-solutions,
.product-finder,
.comparison-section,
.industries-section,
.split-band {
  background: linear-gradient(135deg, rgba(223, 244, 237, 0.82), rgba(255, 253, 248, 0.94) 48%, rgba(255, 229, 222, 0.75));
}

.hero,
.page-hero,
.showroom-band,
.business-support,
.offer-band,
.site-footer {
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 229, 222, 0.68), transparent 28%),
    linear-gradient(135deg, var(--pastel-a), var(--white) 52%, var(--pastel-b));
}

.brand-strip {
  background: rgba(32, 43, 53, 0.14);
  border-color: rgba(32, 43, 53, 0.14);
}

.brand-strip span {
  padding: 18px 22px;
}

.brand-strip span:nth-child(odd),
.family-nav a:nth-child(odd),
.solution-card:nth-child(odd),
.finder-card:nth-child(odd) {
  background: var(--pastel-a);
}

.brand-strip span:nth-child(even),
.family-nav a:nth-child(even),
.solution-card:nth-child(even),
.finder-card:nth-child(even) {
  background: var(--pastel-b);
}

.product-detail {
  gap: clamp(20px, 3vw, 38px);
}

.detail-media,
.gallery-stage,
.thumb-row {
  background: rgba(255, 253, 248, 0.72);
}

.detail-main-image {
  min-height: 430px;
}

.detail-main-image .standee-figure {
  width: 142px;
  height: 252px;
}

.detail-main-image .standee-figure::after {
  width: 168px;
}

.detail-main-image.gallery-view-side .standee-figure {
  width: 82px;
}

.gallery-slide figcaption,
.gallery-counter {
  border-top-color: rgba(32, 43, 53, 0.12);
  color: var(--muted);
}

.gallery-counter {
  background: rgba(255, 253, 248, 0.88);
}

.gallery-thumb {
  border-color: rgba(32, 43, 53, 0.14);
  background: rgba(255, 253, 248, 0.78);
  color: var(--ink);
}

.gallery-thumb.active {
  border-color: var(--ink);
}

.gallery-thumb .product-media {
  min-height: 82px;
  border-color: rgba(32, 43, 53, 0.1);
}

.gallery-thumb strong {
  color: var(--muted);
}

.page-hero {
  min-height: auto;
  padding-top: clamp(26px, 3vw, 42px);
  padding-bottom: clamp(24px, 3vw, 40px);
}

.page-hero h1,
.page-hero .lead {
  max-width: 760px;
}

.page-hero h1 {
  margin-bottom: 10px;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.02;
}

.page-hero .lead {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(15px, 1.2vw, 18px);
}

.page-hero .button-row {
  margin-top: 18px;
}

.page-hero .btn {
  min-height: 44px;
  padding: 0 18px;
}

.sticky-buy-bar {
  padding: 12px clamp(22px, 4vw, 56px);
}

.footer-grid {
  padding: 34px clamp(22px, 4vw, 56px);
}

.footer-bottom {
  padding: 14px clamp(22px, 4vw, 56px);
}

.footer-bottom {
  display: grid;
  justify-content: start;
  gap: 8px;
  color: var(--muted);
  text-align: left;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.site-footer .footer-legal a {
  display: inline-flex;
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.cart-row-actions {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.cart-row-actions .qty-box,
.cart-row-actions .remove-btn {
  width: 136px;
}

.cart-row-actions .remove-btn {
  min-height: 40px;
}

.site-footer .btn,
.business-support .btn,
.offer-band .btn,
.footer-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  line-height: 1;
  opacity: 1;
}

.footer-cta > div:first-child,
.business-support > div:first-child,
.offer-band > div:first-child {
  min-width: 0;
}

.footer-cta .button-row,
.business-support .button-row,
.offer-band .button-row {
  flex: 0 0 auto;
  flex-wrap: nowrap;
  align-items: center;
}

.footer-cta .button-row .btn,
.business-support .button-row .btn,
.offer-band .button-row .btn {
  min-width: 126px;
}

.site-footer .btn-primary,
.business-support .btn-primary,
.offer-band .btn-primary,
.footer-cta .btn-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.site-footer .btn-secondary,
.business-support .btn-secondary,
.offer-band .btn-secondary,
.footer-cta .btn-secondary,
.site-footer .btn-ghost,
.business-support .btn-ghost,
.offer-band .btn-ghost,
.footer-cta .btn-ghost {
  background: rgba(255, 253, 248, 0.68);
  border-color: rgba(32, 43, 53, 0.18);
  color: var(--ink);
}

.site-footer .btn-whatsapp,
.business-support .btn-whatsapp,
.offer-band .btn-whatsapp,
.footer-cta .btn-whatsapp {
  background: var(--pastel-a);
  border-color: rgba(32, 43, 53, 0.16);
  color: var(--ink);
}

@media (max-width: 820px) {
  .footer-cta .button-row,
  .business-support .button-row,
  .offer-band .button-row {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (pointer: fine) {
  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button,
  body.has-custom-cursor input,
  body.has-custom-cursor select,
  body.has-custom-cursor textarea {
    cursor: none;
  }

  .cursor-dot,
  .cursor-ring {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(-50%, -50%, 0);
    transition: opacity 160ms ease, width 180ms ease, height 180ms ease, border-color 180ms ease, background 180ms ease;
    will-change: transform;
  }

  .cursor-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--ink);
    box-shadow: 0 0 0 5px rgba(223, 244, 237, 0.52);
  }

  .cursor-ring {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(32, 43, 53, 0.34);
    border-radius: 999px;
    background: rgba(255, 229, 222, 0.16);
  }

  body.cursor-ready .cursor-dot,
  body.cursor-ready .cursor-ring {
    opacity: 1;
  }

  body.cursor-hover .cursor-dot {
    background: var(--pastel-b);
    box-shadow: 0 0 0 6px rgba(32, 43, 53, 0.12);
  }

  body.cursor-hover .cursor-ring {
    width: 48px;
    height: 48px;
    border-color: rgba(32, 43, 53, 0.5);
    background: rgba(223, 244, 237, 0.18);
  }
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

.shape-table {
  width: 132px;
  height: 82px;
  border-radius: 10px;
}

.shape-table::after {
  bottom: -20px;
  width: 110px;
}

.shape-kiosk {
  width: 116px;
  height: 176px;
  border-radius: 38px 38px 12px 12px;
}

.shape-kiosk::after {
  width: 142px;
}

.shape-accessory {
  width: 138px;
  height: 92px;
  border-radius: 16px;
}

.shape-accessory::before {
  inset: 18px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 20% 50%, rgba(32, 43, 53, 0.28) 0 5px, transparent 6px),
    linear-gradient(90deg, rgba(32, 43, 53, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(32, 43, 53, 0.14) 1px, transparent 1px);
  background-size: auto, 14px 14px, 14px 14px;
}

.shape-accessory::after {
  bottom: -18px;
  width: 120px;
  height: 8px;
}

/* Premium card refinements */
.product-card {
  min-height: auto;
}

.product-card .product-media {
  min-height: 168px;
}

.premium-products .product-card:first-child .product-media {
  min-height: 220px;
}

.innovation-card {
  min-height: 420px;
}

.innovation-card.hero-card {
  min-height: 520px;
}

.innovation-card.hero-card .innovation-media {
  min-height: 290px;
  place-items: center;
  padding: 24px;
}

.innovation-badge-band {
  display: flex;
  align-items: center;
  min-height: 86px;
  padding: 18px 22px;
  background: rgba(255, 253, 248, 0.86);
}

.innovation-badge-band span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(32, 43, 53, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.86);
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 16px 32px rgba(48, 65, 78, 0.12);
}

.innovation-card.hero-card .innovation-media .standee-figure {
  transform: scale(1.12);
}

.innovation-copy {
  padding: 24px 28px 28px;
}

.product-body {
  gap: 10px;
  padding: 20px;
}

.product-body h3 {
  margin-bottom: 0;
  font-size: clamp(18px, 1.3vw, 21px);
  line-height: 1.18;
}

.product-card p {
  margin-bottom: 0;
}

.product-body .price {
  margin: 8px 0 4px;
  font-size: 18px;
}

.card-actions {
  grid-template-columns: repeat(2, minmax(138px, 1fr));
  gap: 10px;
  margin-top: 2px;
}

.card-actions .mini-btn,
.product-body > .mini-btn {
  min-height: 42px;
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.82);
}

.card-actions .mini-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.product-body > .mini-btn {
  margin-top: 0;
}

.process-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.82), rgba(223, 244, 237, 0.58));
}

.process-card:nth-child(even) {
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.86), rgba(255, 229, 222, 0.58));
}

.process-card strong {
  display: none;
}

.process-card h3 {
  color: var(--ink);
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.08;
}

.process-card p {
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.55;
}

.solution-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.solution-card span {
  margin-bottom: auto;
}

.solution-card h3 {
  font-size: clamp(28px, 2.6vw, 40px);
}

.solution-card p {
  max-width: 360px;
}

.solution-card a {
  margin-top: 16px;
}

@media (max-width: 720px) {
  .product-card .product-media,
  .premium-products .product-card:first-child .product-media {
    min-height: 150px;
  }

  .card-actions {
    grid-template-columns: 1fr;
  }

  .process-card,
  .solution-card {
    min-height: auto;
  }

  .innovation-card,
  .innovation-card.hero-card {
    min-height: auto;
  }

  .innovation-card.hero-card .innovation-media {
    min-height: 220px;
  }

  .innovation-card.hero-card .innovation-media .standee-figure {
    transform: scale(0.9);
  }

  .innovation-badge-band {
    min-height: 70px;
    padding: 14px 16px;
  }
}

@media (max-width: 1120px) {
  .business-ribbon,
  .product-anchor-bar,
  .sticky-buy-bar {
    top: 74px;
  }

  .site-nav {
    top: 74px;
    background: rgba(255, 253, 248, 0.98);
  }

  .hero {
    padding-bottom: 320px;
  }

  .hero::after {
    height: 300px;
  }
}

@media (max-width: 720px) {
  .section,
  .page-hero,
  .offer-band,
  .split-band {
    padding: 30px 18px;
  }

  .page-hero {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .page-hero h1 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .hero {
    padding: 34px 18px 270px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  h2 {
    font-size: clamp(26px, 8vw, 38px);
  }

  .hero-kpis {
    margin-top: 18px;
  }
}

/* Final showroom hero image treatment */
.hero {
  min-height: min(720px, calc(100vh - 118px));
  grid-template-columns: minmax(0, 720px) 1fr;
  align-items: end;
  gap: 0;
  padding: clamp(62px, 7vw, 98px) clamp(22px, 4vw, 64px) clamp(44px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.96) 0%, rgba(255, 253, 248, 0.9) 31%, rgba(255, 253, 248, 0.42) 55%, rgba(255, 253, 248, 0.08) 100%),
    url("assets/hero-showroom-desktop.png") center center / cover no-repeat;
  border-bottom: 1px solid rgba(32, 43, 53, 0.14);
  color: var(--ink);
}

.hero::before {
  z-index: -1;
  opacity: 1;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.44), rgba(255, 253, 248, 0.04) 40%, rgba(255, 253, 248, 0.5)),
    linear-gradient(90deg, rgba(32, 43, 53, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(32, 43, 53, 0.05) 1px, transparent 1px);
  background-size: auto, 58px 58px, 58px 58px;
  mask-image: none;
}

.hero::after,
.hero-visual {
  display: none;
}

.hero > div:first-child {
  position: relative;
  z-index: 1;
  max-width: 690px;
}

.hero h1 {
  max-width: 670px;
  text-wrap: balance;
}

.hero .lead {
  max-width: 610px;
  color: rgba(32, 43, 53, 0.76);
}

.hero-kpis {
  max-width: 650px;
}

.hero-kpis span {
  min-height: 96px;
  border-color: rgba(32, 43, 53, 0.14);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 18px 44px rgba(48, 65, 78, 0.12);
  backdrop-filter: blur(14px);
}

.hero-kpis span:nth-child(2),
.hero-kpis span:nth-child(3) {
  background: rgba(255, 253, 248, 0.72);
}

.hero-kpis strong {
  color: var(--ink);
}

.hero-kpis small {
  color: var(--muted-dark);
}

@media (max-width: 1120px) {
  .hero {
    min-height: 660px;
    grid-template-columns: 1fr;
    padding: 50px clamp(18px, 4vw, 42px) 40px;
    background-position: 58% center;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 760px;
    align-items: start;
    padding: 34px 18px;
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.96) 0%, rgba(255, 253, 248, 0.9) 37%, rgba(255, 253, 248, 0.45) 62%, rgba(255, 253, 248, 0.08) 100%),
      url("assets/hero-showroom-mobile.png") center top / cover no-repeat;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .hero .button-row {
    gap: 8px;
  }

  .hero-kpis {
    grid-template-columns: 1fr;
    max-width: 330px;
  }

  .hero-kpis span {
    min-height: 74px;
    padding: 14px 16px;
  }
}

/* Ecommerce layout refresh */
:root {
  --ink: #111318;
  --muted: #5f6872;
  --white: #ffffff;
  --soft: #f6f7f9;
  --mist: #eef4fb;
  --line: #e2e5e9;
  --blue: #0c4fd8;
  --black: #111318;
  --shadow: 0 22px 70px rgba(17, 19, 24, 0.12);
}

body {
  background: #ffffff;
  color: var(--ink);
}

.announcement-bar {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 0 18px;
  background: #171717;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.site-header {
  top: 0;
  min-height: 104px;
  padding: 18px clamp(18px, 7vw, 220px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  box-shadow: none;
}

.brand-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: contain;
  background: transparent;
}

.brand-text strong {
  font-size: 17px;
}

.brand-text small {
  color: var(--muted);
}

.site-nav {
  gap: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.site-nav a {
  padding: 8px 0;
  font-size: 15px;
  font-weight: 850;
}

.site-nav a::after {
  height: 2px;
  background: var(--blue);
}

.account-chip,
.cart-chip,
.whatsapp-chip {
  min-height: 42px;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
}

.cart-chip span,
.whatsapp-chip {
  background: var(--soft);
  border: 1px solid var(--line);
}

.business-ribbon {
  top: 104px;
  grid-template-columns: 1fr auto;
  min-height: 54px;
  padding: 0 clamp(18px, 7vw, 220px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(17, 19, 24, 0.04);
}

.ribbon-nav {
  justify-content: center;
  gap: clamp(12px, 2.5vw, 36px);
}

.business-ribbon::-webkit-scrollbar,
.ribbon-nav::-webkit-scrollbar {
  display: none;
}

.business-ribbon,
.ribbon-nav {
  scrollbar-width: none;
}

.ribbon-nav a,
.ribbon-actions a {
  padding: 17px 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.ribbon-title {
  display: none;
}

.mwe-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: clamp(560px, 72vh, 760px);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(64px, 8vw, 112px) clamp(18px, 7vw, 220px);
  background: url("assets/hero-showroom-desktop.png") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.mwe-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 33%, rgba(255, 255, 255, 0.46) 61%, rgba(255, 255, 255, 0.12) 100%),
    linear-gradient(180deg, rgba(223, 244, 237, 0.28), rgba(255, 229, 222, 0.18));
}

.mwe-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.74));
}

.mwe-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0;
  text-align: left;
}

.mwe-hero h1 {
  max-width: 620px;
  margin: 0 0 14px;
  color: #111820;
  font-size: clamp(46px, 5vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
}

.mwe-hero .lead {
  max-width: 560px;
  margin-left: 0;
  margin-right: 0;
  color: #45525f;
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.56;
}

.mwe-hero .button-row {
  justify-content: flex-start;
  margin-top: 24px;
}

.mwe-hero .eyebrow {
  color: #202b35;
}

.mwe-hero-stage {
  display: none;
}

.mwe-hero-product {
  position: absolute;
  bottom: 0;
  display: grid;
  justify-items: center;
  filter: drop-shadow(0 24px 30px rgba(17, 19, 24, 0.22));
  transition: transform 220ms ease, filter 220ms ease;
}

.mwe-hero-product:hover {
  transform: translateY(-10px);
  filter: drop-shadow(0 32px 36px rgba(17, 19, 24, 0.28));
}

.mwe-hero-product .product-photo,
.mwe-hero-product .standee-figure {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
}

.mwe-hero-product span {
  margin-top: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 11px;
  font-weight: 950;
}

.hero-product-1 {
  left: 34%;
  width: min(36vw, 460px);
  transform: translateX(-50%);
}

.hero-product-2 {
  left: 9%;
  width: min(22vw, 300px);
  opacity: 0.86;
}

.hero-product-3 {
  right: 2%;
  width: min(23vw, 320px);
  opacity: 0.9;
}

.mwe-category-section {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: clamp(60px, 7vw, 112px) clamp(18px, 7vw, 220px) clamp(42px, 5vw, 72px);
  background: #fff;
}

.mwe-category-card {
  display: grid;
  align-content: start;
  min-height: 390px;
  padding: 18px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  text-align: center;
}

.mwe-category-card:first-child {
  border-left: 1px solid var(--line);
}

.mwe-category-image {
  display: grid;
  place-items: end center;
  height: 270px;
  margin-bottom: 18px;
}

.mwe-category-image .product-photo,
.mwe-category-image .standee-figure {
  width: 100%;
  max-width: 230px;
  max-height: 255px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(17, 19, 24, 0.13));
}

.mwe-category-card strong {
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 950;
}

.mwe-category-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.mwe-video-section {
  padding: 0 clamp(18px, 7vw, 220px) 88px;
  background: #fff;
}

.mwe-video-frame {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 0;
  background: var(--soft);
}

.mwe-video-frame img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.mwe-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  min-width: 132px;
  min-height: 52px;
  padding: 0 20px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 950;
  box-shadow: 0 20px 58px rgba(17, 19, 24, 0.2);
}

.mwe-marquee {
  overflow: hidden;
  padding: 38px 0;
  background: #fff;
  color: var(--blue);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mwe-marquee div {
  display: flex;
  width: max-content;
  animation: uaMarquee 26s linear infinite;
}

.mwe-marquee span {
  margin-right: 56px;
  font-size: clamp(44px, 7vw, 110px);
  font-weight: 950;
  line-height: 0.92;
  white-space: nowrap;
}

@keyframes uaMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.mwe-collection-section,
.mwe-impact-section,
.mwe-feature-blocks,
.mwe-stat-band,
.mwe-business-section,
.mwe-quote-section,
.mwe-comparison-section,
.mwe-faq-section,
.mwe-services-strip,
.mwe-newsletter-section {
  padding-left: clamp(18px, 7vw, 220px);
  padding-right: clamp(18px, 7vw, 220px);
}

.mwe-collection-section {
  padding-top: 74px;
  padding-bottom: 90px;
  background: #fff;
}

.mwe-section-head {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 28px;
}

.mwe-section-head a {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--soft);
  font-weight: 850;
}

.mwe-collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.mwe-collection-card {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 520px;
  align-content: end;
  overflow: hidden;
  padding: 28px;
  background: var(--soft);
  color: #fff;
}

.mwe-collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 24%, rgba(0, 0, 0, 0.1) 48%, rgba(0, 0, 0, 0.82));
}

.mwe-collection-card div {
  position: absolute;
  inset: 0 0 98px;
  z-index: 0;
  display: grid;
  place-items: center;
}

.mwe-collection-card .product-photo,
.mwe-collection-card .standee-figure {
  width: 86%;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 24px 24px rgba(17, 19, 24, 0.2));
}

.mwe-collection-card strong,
.mwe-collection-card span {
  position: relative;
  z-index: 2;
}

.mwe-collection-card strong {
  margin-bottom: 8px;
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 950;
  line-height: 1;
}

.mwe-collection-card span {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.5;
}

.mwe-impact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(30px, 6vw, 100px);
  align-items: center;
  padding-top: 88px;
  padding-bottom: 88px;
  background: #f4f7fb;
}

.mwe-impact-section h2,
.mwe-business-section h2,
.mwe-comparison-head h2,
.mwe-faq-section h2,
.mwe-newsletter-section h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(34px, 4.4vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

.mwe-impact-section p,
.mwe-business-section p,
.mwe-comparison-head p,
.mwe-faq-section p,
.mwe-newsletter-section p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(16px, 1.18vw, 20px);
  line-height: 1.62;
}

.mwe-impact-image {
  display: grid;
  place-items: center;
  min-height: 620px;
  background: #fff;
  box-shadow: var(--shadow);
}

.mwe-impact-image .product-photo,
.mwe-impact-image .standee-figure {
  max-height: 560px;
  object-fit: contain;
}

.mwe-feature-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.mwe-feature-blocks article {
  min-height: 250px;
  padding: clamp(28px, 4vw, 54px);
  background: #fff;
}

.mwe-feature-blocks h3,
.mwe-stat-band h3,
.mwe-faq-list h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.08;
}

.mwe-feature-blocks p,
.mwe-stat-band p,
.mwe-faq-list p {
  color: var(--muted);
  line-height: 1.55;
}

.mwe-feature-blocks a {
  display: inline-block;
  margin-top: 22px;
  border-bottom: 1px solid currentColor;
  font-weight: 900;
}

.mwe-stat-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(90deg, #fff, #eef4fb);
}

.mwe-stat-band article {
  padding: 0 clamp(26px, 5vw, 76px);
  text-align: center;
}

.mwe-stat-band article + article {
  border-left: 1px solid var(--line);
}

.mwe-stat-band strong {
  display: block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: clamp(54px, 6vw, 96px);
  line-height: 0.9;
}

.mwe-business-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: center;
  padding-top: 98px;
  padding-bottom: 98px;
  background: #fff;
}

.mwe-business-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mwe-business-images a {
  display: grid;
  place-items: center;
  min-height: 460px;
  background: var(--soft);
}

.mwe-business-images .product-photo,
.mwe-business-images .standee-figure {
  max-height: 420px;
  object-fit: contain;
}

.mwe-quote-section {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding-top: 72px;
  padding-bottom: 72px;
  background: #f7f7f7;
  text-align: center;
}

.mwe-quote-section blockquote {
  max-width: 980px;
  margin: 0 0 20px;
  font-size: clamp(26px, 3vw, 48px);
  font-weight: 850;
  line-height: 1.16;
}

.mwe-quote-section span {
  color: var(--muted);
  font-weight: 950;
}

.mwe-comparison-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.56fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 84px);
  padding-top: 96px;
  padding-bottom: 96px;
  background: #fff;
}

.mwe-comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.mwe-table-products,
.mwe-table-row {
  display: grid;
  grid-template-columns: 170px repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.mwe-table-products > span,
.mwe-table-products a,
.mwe-table-row strong,
.mwe-table-row span {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.mwe-table-products a:last-child,
.mwe-table-row span:last-child {
  border-right: 0;
}

.mwe-table-products a {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 260px;
}

.mwe-table-products .product-photo,
.mwe-table-products .standee-figure {
  height: 135px;
  object-fit: contain;
}

.mwe-table-products strong {
  font-size: 14px;
  line-height: 1.25;
}

.mwe-table-products small,
.mwe-table-row span {
  color: var(--muted);
}

.mwe-table-row strong {
  background: var(--soft);
}

.mwe-faq-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 96px);
  padding-top: 92px;
  padding-bottom: 92px;
  background: #f7f7f7;
}

.mwe-faq-list {
  border-top: 1px solid var(--line);
}

.mwe-faq-list article {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.mwe-services-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.mwe-services-strip article {
  display: grid;
  gap: 8px;
  min-height: 160px;
  align-content: center;
  padding: 28px;
  background: #fff;
}

.mwe-services-strip strong {
  font-size: 18px;
}

.mwe-services-strip span {
  color: var(--muted);
  font-size: 14px;
}

.mwe-newsletter-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.62fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding-top: 76px;
  padding-bottom: 76px;
  background: var(--soft);
}

.mwe-newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.mwe-newsletter-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.site-footer {
  padding: 0 clamp(18px, 7vw, 220px) 26px;
  background: #fff;
  color: var(--ink);
}

.footer-cta {
  display: none;
}

.footer-grid {
  padding-top: 56px;
  border-top: 1px solid var(--line);
}

.site-footer a,
.site-footer p {
  color: var(--muted);
}

.footer-bottom {
  border-top: 1px solid var(--line);
}

.floating-whatsapp {
  right: 26px;
  bottom: 98px;
  border-color: #b7d7ff;
  background: #0c4fd8;
  color: #fff;
}

.advisor-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  font-family: inherit;
}

.advisor-launcher {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 8px 18px 8px 9px;
  border: 1px solid rgba(32, 43, 53, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(223, 244, 237, 0.92) 48%, rgba(255, 229, 222, 0.9)),
    #fff;
  color: var(--ink);
  box-shadow: 0 22px 54px rgba(32, 43, 53, 0.18);
  cursor: pointer;
}

.advisor-launcher strong,
.advisor-launcher small {
  display: block;
  text-align: left;
}

.advisor-launcher strong {
  font-size: 13px;
  line-height: 1;
}

.advisor-launcher small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.advisor-pet {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, #ffffff 0 9%, transparent 10%),
    linear-gradient(135deg, #172430, #0c4fd8 56%, #dff4ed);
  box-shadow:
    0 16px 30px rgba(12, 79, 216, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  animation: advisorPetFloat 3.4s ease-in-out infinite;
}

.advisor-pet::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(12, 79, 216, 0.22);
  border-radius: 50%;
  animation: advisorPulse 2.4s ease-in-out infinite;
}

.advisor-pet::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(223, 244, 237, 0.98));
  box-shadow: inset 0 -8px 16px rgba(12, 79, 216, 0.08);
}

.advisor-orbit {
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-right-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: advisorOrbitSpin 4.6s linear infinite;
}

.advisor-orbit::before,
.advisor-orbit::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.95);
}

.advisor-orbit::before {
  top: 2px;
  left: 8px;
}

.advisor-orbit::after {
  right: 4px;
  bottom: 8px;
  opacity: 0.7;
}

.advisor-face {
  position: relative;
  z-index: 1;
  display: block;
  width: 28px;
  height: 24px;
  border-radius: 12px;
}

.advisor-eye {
  position: absolute;
  top: 7px;
  width: 5px;
  height: 7px;
  border-radius: 999px;
  background: var(--ink);
  animation: advisorEyeBlink 4s ease-in-out infinite;
}

.advisor-eye-left {
  left: 6px;
}

.advisor-eye-right {
  right: 6px;
}

.advisor-mouth {
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 13px;
  height: 6px;
  border-bottom: 2px solid var(--ink);
  border-radius: 0 0 999px 999px;
  transform: translateX(-50%);
  animation: advisorMouthTalk 3.4s ease-in-out infinite;
}

.advisor-panel {
  position: absolute;
  right: 0;
  bottom: 78px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(420px, calc(100vw - 32px));
  max-height: min(720px, calc(100vh - 130px));
  overflow: hidden;
  border: 1px solid rgba(32, 43, 53, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(223, 244, 237, 0.78), rgba(255, 253, 248, 0.98) 44%, rgba(255, 229, 222, 0.72)),
    #fff;
  box-shadow: 0 28px 80px rgba(32, 43, 53, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.97);
  transform-origin: right bottom;
  transition: opacity 180ms ease, transform 180ms ease;
}

.advisor-widget.open .advisor-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.advisor-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid rgba(32, 43, 53, 0.12);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}

.advisor-header strong,
.advisor-header small {
  display: block;
}

.advisor-header strong {
  color: var(--ink);
  font-size: 16px;
}

.advisor-header small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.advisor-header button {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-weight: 950;
  cursor: pointer;
}

.advisor-messages {
  display: none;
  gap: 9px;
  padding: 16px 16px 0;
  min-height: 0;
  max-height: 188px;
  overflow: auto;
  overscroll-behavior: contain;
}

.advisor-message {
  display: flex;
  margin: 0;
}

.advisor-message span {
  max-width: min(86%, 300px);
  padding: 11px 13px;
  border: 1px solid rgba(32, 43, 53, 0.12);
  border-radius: 16px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.advisor-message.bot span {
  border-top-left-radius: 4px;
}

.advisor-message.user {
  justify-content: flex-end;
}

.advisor-message.user span {
  border-color: rgba(32, 43, 53, 0.88);
  border-top-right-radius: 4px;
  background: var(--ink);
  color: #fff;
}

.advisor-thinking {
  display: inline-flex;
  gap: 3px;
  margin-left: 5px;
  vertical-align: middle;
}

.advisor-thinking i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0c4fd8;
  animation: advisorThinkingDot 1.1s ease-in-out infinite;
}

.advisor-thinking i:nth-child(2) {
  animation-delay: 120ms;
}

.advisor-thinking i:nth-child(3) {
  animation-delay: 240ms;
}

.advisor-body {
  min-height: 0;
  overflow: auto;
  padding: 16px;
}

.advisor-chat-thread {
  display: grid;
  gap: 11px;
}

.advisor-question {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
}

.advisor-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: -2px;
}

.advisor-chip {
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(32, 43, 53, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.advisor-chip:hover {
  border-color: var(--ink);
  background: #fff;
  transform: translateY(-2px);
}

.advisor-product-list,
.advisor-gate-card,
.advisor-lead-form,
.advisor-success,
.advisor-actions {
  display: grid;
  gap: 10px;
}

.advisor-gate-card {
  padding: 15px;
  border: 1px solid rgba(32, 43, 53, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
}

.advisor-gate-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.08;
}

.advisor-gate-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.advisor-summary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.advisor-summary-grid span {
  display: grid;
  gap: 2px;
  padding: 9px 11px;
  border: 1px solid rgba(32, 43, 53, 0.1);
  border-radius: 12px;
  background: rgba(223, 244, 237, 0.36);
  color: var(--muted);
  font-size: 12px;
}

.advisor-summary-grid strong {
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.advisor-product {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  padding: 9px;
  border: 1px solid rgba(32, 43, 53, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
}

.advisor-product-media {
  display: grid;
  place-items: center;
  width: 74px;
  height: 82px;
  overflow: hidden;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(223, 244, 237, 0.62), rgba(255, 229, 222, 0.62));
}

.advisor-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.advisor-product .standee-figure {
  transform: scale(0.44);
}

.advisor-product strong,
.advisor-product span,
.advisor-product a {
  display: block;
}

.advisor-product strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
}

.advisor-product span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.advisor-product a {
  margin-top: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
}

.advisor-lead-form {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(32, 43, 53, 0.12);
}

.advisor-lead-form .field {
  margin-bottom: 0;
}

.advisor-lead-form input,
.advisor-lead-form textarea {
  min-height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
}

.advisor-lead-form textarea {
  min-height: 72px;
}

.advisor-lead-form .btn,
.advisor-actions .btn {
  width: 100%;
  min-height: 44px;
}

.advisor-success {
  padding: 16px;
  border: 1px solid rgba(32, 43, 53, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
}

.advisor-success h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.08;
}

.advisor-success p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

@keyframes advisorPulse {
  0%,
  100% {
    opacity: 0.32;
    transform: scale(0.94);
  }
  50% {
    opacity: 0.72;
    transform: scale(1.08);
  }
}

@keyframes advisorPetFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-5px) rotate(1deg);
  }
}

@keyframes advisorOrbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes advisorEyeBlink {
  0%,
  88%,
  100% {
    transform: scaleY(1);
  }
  92%,
  96% {
    transform: scaleY(0.15);
  }
}

@keyframes advisorMouthTalk {
  0%,
  100% {
    width: 13px;
  }
  50% {
    width: 9px;
  }
}

@keyframes advisorThinkingDot {
  0%,
  100% {
    opacity: 0.25;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .advisor-pet,
  .advisor-pet::after,
  .advisor-orbit,
  .advisor-eye,
  .advisor-mouth,
  .advisor-thinking i {
    animation: none;
  }
}

.legal-policy {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 150px;
  display: grid;
  gap: 18px;
}

.legal-sidebar h2,
.legal-section h2 {
  margin: 0;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.05;
}

.legal-sidebar .check-list {
  margin: 0;
}

.legal-contact {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.legal-contact h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.legal-contact p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.legal-content {
  display: grid;
  gap: 16px;
}

.legal-section {
  padding: clamp(20px, 3vw, 34px);
}

.legal-section p {
  margin: 14px 0 0;
  line-height: 1.75;
}

.legal-section .check-list {
  margin: 16px 0 0;
}

.policy-link-band {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 0;
}

.policy-link-band a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.policy-link-band a:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

@media (max-width: 1180px) {
  .site-header {
    padding-inline: clamp(18px, 4vw, 54px);
  }

  .business-ribbon,
  .mwe-hero,
  .mwe-category-section,
  .mwe-video-section,
  .mwe-collection-section,
  .mwe-impact-section,
  .mwe-feature-blocks,
  .mwe-stat-band,
  .mwe-business-section,
  .mwe-quote-section,
  .mwe-comparison-section,
  .mwe-faq-section,
  .mwe-services-strip,
  .mwe-newsletter-section,
  .legal-policy,
  .policy-link-band,
  .site-footer {
    padding-left: clamp(18px, 4vw, 54px);
    padding-right: clamp(18px, 4vw, 54px);
  }

  .mwe-hero {
    grid-template-columns: 1fr;
  }

  .mwe-hero-stage {
    min-height: 520px;
  }

  .mwe-category-section {
    grid-template-columns: repeat(3, 1fr);
  }

  .mwe-collection-grid,
  .mwe-feature-blocks,
  .mwe-services-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .mwe-impact-section,
  .mwe-business-section,
  .mwe-comparison-section,
  .mwe-faq-section,
  .mwe-newsletter-section,
  .legal-policy {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .announcement-bar {
    min-height: 40px;
    font-size: 11px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 76px;
    padding: 10px 16px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .site-nav {
    top: 76px;
    background: #fff;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: start;
    width: 100%;
    overflow-x: auto;
  }

  .business-ribbon {
    position: relative;
    top: auto;
    display: block;
    padding: 0 16px;
    overflow-x: auto;
  }

  .ribbon-nav {
    justify-content: start;
    width: max-content;
  }

  .ribbon-actions {
    display: none;
  }

  .mwe-hero {
    align-items: start;
    min-height: 620px;
    padding: 42px 16px 320px;
    background: url("assets/hero-showroom-mobile.png") center bottom / cover no-repeat;
  }

  .mwe-hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 44%, rgba(255, 255, 255, 0.3) 72%, rgba(255, 255, 255, 0.08) 100%),
      linear-gradient(135deg, rgba(223, 244, 237, 0.28), rgba(255, 229, 222, 0.18));
  }

  .mwe-hero-copy {
    max-width: 100%;
  }

  .mwe-hero h1 {
    font-size: clamp(34px, 9vw, 46px);
    line-height: 0.98;
  }

  .mwe-hero-stage {
    min-height: 410px;
  }

  .hero-product-1 {
    left: 50%;
    width: min(76vw, 330px);
  }

  .hero-product-2 {
    left: 0;
    width: min(40vw, 180px);
    opacity: 0.72;
  }

  .hero-product-3 {
    right: 0;
    width: min(40vw, 180px);
    opacity: 0.72;
  }

  .mwe-category-section,
  .mwe-collection-section,
  .mwe-impact-section,
  .mwe-feature-blocks,
  .mwe-stat-band,
  .mwe-business-section,
  .mwe-quote-section,
  .mwe-comparison-section,
  .mwe-faq-section,
  .mwe-services-strip,
  .mwe-newsletter-section,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mwe-category-section,
  .mwe-collection-grid,
  .mwe-feature-blocks,
  .mwe-stat-band,
  .mwe-services-strip,
  .mwe-newsletter-form {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 92px;
  }

  .advisor-widget {
    right: 16px;
    bottom: 18px;
  }

  .advisor-launcher {
    min-height: 56px;
    max-width: calc(100vw - 32px);
    padding-right: 14px;
  }

  .advisor-panel {
    right: -2px;
    bottom: 72px;
    width: calc(100vw - 28px);
    max-height: calc(100vh - 118px);
    border-radius: 18px;
  }

  .advisor-options {
    grid-template-columns: 1fr;
  }

  .mwe-category-card {
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .mwe-video-section {
    padding: 0 16px 54px;
  }

  .mwe-video-frame,
  .mwe-video-frame img {
    min-height: 360px;
  }

  .mwe-marquee span {
    margin-right: 32px;
    font-size: 44px;
  }

  .mwe-collection-card {
    min-height: 420px;
  }

  .mwe-impact-image {
    min-height: 430px;
  }

  .mwe-business-images {
    grid-template-columns: 1fr;
  }

  .mwe-business-images a {
    min-height: 360px;
  }

  .mwe-stat-band article {
    padding: 28px 0;
  }

  .mwe-stat-band article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .mwe-table-products,
  .mwe-table-row {
    grid-template-columns: 120px repeat(3, minmax(150px, 1fr));
    min-width: 680px;
  }

  .mwe-comparison-table {
    overflow-x: auto;
  }
}
