:root {
  --red: #e30613;
  --purple: #4d079b;
  --plum: #241033;
  --violet-soft: #f3ecff;
  --rose-soft: #fff0f2;
  --ink: #241033;
  --soft-ink: #33243f;
  --muted: #6f7280;
  --line: #e6e7eb;
  --surface: #f7f7f8;
  --gold: #d99a13;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(17, 18, 23, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}
body.drawer-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  min-height: 78px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(17, 18, 23, 0.08);
  backdrop-filter: blur(16px);
}
.brand img { width: 178px; height: auto; }
.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-nav > a,
.nav-products > a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--soft-ink);
  font-weight: 700;
  font-size: 0.94rem;
}
.main-nav a:hover,
.main-nav a.active { color: var(--red); }
.nav-products { position: relative; }
.product-shutter {
  position: fixed;
  left: 50%;
  top: 92px;
  width: min(980px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 14px;
  background: var(--plum);
  box-shadow: var(--shadow);
  transform: translate(-50%, 10px) scaleY(0.92);
  transform-origin: top;
  opacity: 0;
  pointer-events: none;
  transition: 0.24s ease;
}
.nav-products:hover .product-shutter,
.nav-products:focus-within .product-shutter {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scaleY(1);
}
.product-shutter a {
  overflow: hidden;
  min-height: 170px;
  position: relative;
  background: #fff;
}
.product-shutter img { width: 100%; height: 170px; object-fit: cover; transition: 0.3s ease; }
.product-shutter span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(77, 7, 155, 0.82);
  font-weight: 800;
}
.product-shutter a:hover img { transform: scale(1.05); }
.header-actions { display: flex; gap: 10px; justify-content: flex-end; }
.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  isolation: isolate;
}
.brand::after {
  content: "";
  position: absolute;
  inset: 4px -8px;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(227, 6, 19, 0.18), rgba(77, 7, 155, 0.08) 46%, transparent 70%);
  opacity: 0;
  transform: scale(0.82);
  transition: 0.35s ease;
}
.brand img {
  transition: transform 0.35s ease, filter 0.35s ease;
  animation: logoBreath 4.8s ease-in-out infinite;
}
.brand:hover::after { opacity: 1; transform: scale(1); }
.brand:hover img { transform: translateY(-2px) scale(1.035); filter: drop-shadow(0 10px 18px rgba(227, 6, 19, 0.18)); }
@keyframes logoBreath {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(227, 6, 19, 0)); }
  50% { filter: drop-shadow(0 8px 14px rgba(77, 7, 155, 0.14)); }
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: -30% auto -30% -45%;
  width: 42%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.44), transparent);
  transition: left 0.48s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(77, 7, 155, 0.18); }
.btn:hover::after { left: 115%; }
.btn-red { background: var(--red); color: #fff; }
.btn-dark { background: linear-gradient(135deg, var(--purple), var(--plum)); color: #fff; }
.btn-outline { color: var(--ink); background: #fff; border-color: var(--line); }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--purple);
}

.hero {
  position: relative;
  min-height: calc(92svh - 78px);
  overflow: hidden;
  background: #f4f4f5;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.84fr);
  align-items: center;
  gap: clamp(18px, 4vw, 56px);
  padding: clamp(30px, 5vw, 62px) clamp(20px, 5vw, 76px) 74px;
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.hero-slide:nth-child(1) { background: linear-gradient(90deg, #fff 0%, #fff 52%, #f0f0f2 52%); }
.hero-slide:nth-child(2) { background: linear-gradient(90deg, var(--violet-soft) 0%, #fff 48%, var(--rose-soft) 48%); color: var(--ink); }
.hero-slide:nth-child(2) .btn-outline { color: var(--ink); }
.hero-slide:nth-child(3) { background: linear-gradient(90deg, #fff 0%, #fff 50%, var(--violet-soft) 50%); }
.hero-slide:nth-child(4) { background: linear-gradient(90deg, var(--rose-soft) 0%, #fff 54%, var(--violet-soft) 54%); color: var(--ink); }
.hero-copy { max-width: 720px; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
h1, h2, h3 { margin: 0; line-height: 1.06; letter-spacing: 0; }
h1 { font-size: clamp(2.55rem, 6vw, 6.7rem); max-width: 900px; }
h2 { font-size: clamp(2rem, 4vw, 4.1rem); max-width: 980px; }
h3 { font-size: 1.08rem; }
.hero p:not(.eyebrow),
.page-hero p,
.section > p,
.split-section p {
  max-width: 690px;
  color: #555966;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}
.hero-slide:nth-child(2) p:not(.eyebrow),
.hero-slide:nth-child(4) p:not(.eyebrow) { color: #e9e9ed; }
.hero-actions, .cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-media {
  justify-self: end;
  width: min(42vw, 560px);
  background: #fff;
  box-shadow: var(--shadow);
}
.hero-media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.hero-logo { padding: 30px; }
.hero-logo img { object-fit: contain; }
.slider-dots {
  position: absolute;
  left: clamp(20px, 5vw, 76px);
  bottom: 34px;
  display: flex;
  gap: 10px;
}
.slider-dots button {
  width: 36px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 18, 23, 0.22);
  cursor: pointer;
}
.slider-dots button.active { background: var(--red); }

.marquee-band {
  overflow: hidden;
  background: linear-gradient(90deg, var(--purple), var(--red));
  color: #fff;
  border-top: 1px solid #282a31;
  border-bottom: 1px solid #282a31;
}
.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 16px 0;
  animation: marquee 50s linear infinite;
}
.marquee-track span {
  white-space: nowrap;
  padding: 7px 14px;
  border: 1px solid #3b3d45;
  border-radius: 999px;
  color: #f6f6f7;
  font-weight: 700;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* Premium home refresh */
.site-header {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(77, 7, 155, 0.06);
}
.main-nav > a,
.nav-products > a { position: relative; }
.main-nav > a::after,
.nav-products > a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}
.main-nav > a:hover::after,
.nav-products > a:hover::after,
.main-nav > a.active::after,
.nav-products > a.active::after { transform: scaleX(1); }
.product-shutter {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(77, 7, 155, 0.14);
  border-radius: 8px;
}
.product-shutter a { border-radius: 8px; box-shadow: 0 12px 28px rgba(77, 7, 155, 0.12); }
.product-shutter span { background: linear-gradient(135deg, rgba(227, 6, 19, 0.9), rgba(77, 7, 155, 0.9)); }

.cinematic-hero {
  min-height: calc(100svh - 78px);
  background: #fff;
}
.cinematic-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(227, 6, 19, 0.08), transparent 34%),
    radial-gradient(circle at 83% 18%, rgba(77, 7, 155, 0.18), transparent 28%),
    radial-gradient(circle at 56% 86%, rgba(217, 154, 19, 0.13), transparent 26%);
  animation: ambientGlow 8s ease-in-out infinite alternate;
}
@keyframes ambientGlow {
  from { transform: scale(1); opacity: 0.78; }
  to { transform: scale(1.04); opacity: 1; }
}
.hero-slide {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  min-height: calc(100svh - 78px);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 45%, rgba(243, 236, 255, 0.9) 45%, rgba(255, 240, 242, 0.92) 100%) !important;
  color: var(--ink) !important;
}
.hero-slide::before {
  content: "";
  position: absolute;
  right: -8vw;
  top: 8%;
  width: min(58vw, 760px);
  height: min(58vw, 760px);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,0.7) 0 26%, transparent 27%),
    conic-gradient(from 150deg, rgba(227, 6, 19, 0.18), rgba(77, 7, 155, 0.22), rgba(217, 154, 19, 0.18), rgba(227, 6, 19, 0.18));
  filter: blur(0.2px);
  opacity: 0.74;
  animation: slowSpin 22s linear infinite;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0 64%, rgba(255,255,255,0.34));
}
.hero-slide.active .hero-copy {
  animation: copyReveal 0.85s ease both;
}
@keyframes copyReveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slowSpin { to { transform: rotate(360deg); } }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 {
  color: var(--ink);
  text-wrap: balance;
}
.hero-copy h1::first-letter { color: var(--red); }
.hero p:not(.eyebrow) { color: #5d5368 !important; }
.hero-stage {
  position: relative;
  z-index: 2;
  min-height: min(62vw, 620px);
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 8% 2% 2% 12%;
  border-radius: 42% 58% 46% 54%;
  background: linear-gradient(135deg, rgba(227, 6, 19, 0.12), rgba(77, 7, 155, 0.17) 58%, rgba(217, 154, 19, 0.12));
  filter: blur(18px);
  transform: rotate(-8deg);
}
.hero-product {
  position: absolute;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 34px 32px rgba(77, 7, 155, 0.18));
  -webkit-mask-image: radial-gradient(ellipse at center, #000 56%, rgba(0,0,0,0.72) 72%, transparent 88%);
  mask-image: radial-gradient(ellipse at center, #000 56%, rgba(0,0,0,0.72) 72%, transparent 88%);
  animation: productFloat 5.8s ease-in-out infinite;
}
.hero-product-main { width: min(42vw, 540px); right: 5%; top: 8%; }
.hero-product-side {
  width: min(25vw, 310px);
  left: 4%;
  bottom: 5%;
  opacity: 0.74;
  transform: rotate(-9deg);
}
.hero-float-delay { animation-delay: -2.2s; }
@keyframes productFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -16px; }
}
.hero-ring {
  position: absolute;
  width: min(46vw, 590px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(77, 7, 155, 0.22);
  box-shadow: inset 0 0 0 18px rgba(255,255,255,0.24);
  transform: rotate(-18deg) scaleY(0.72);
}
.hero-cluster .cluster-a { width: min(31vw, 390px); left: 0; top: 9%; }
.hero-cluster .cluster-b { width: min(22vw, 280px); right: 4%; top: 6%; opacity: 0.84; }
.hero-cluster .cluster-c { width: min(25vw, 330px); right: 16%; bottom: 2%; opacity: 0.86; }
.brand-stage { min-height: min(53vw, 560px); }
.hero-brand-mark {
  width: min(42vw, 520px);
  filter: drop-shadow(0 26px 42px rgba(77, 7, 155, 0.18));
  animation: logoFloat 5.5s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.025); }
}
.factory-card {
  position: absolute;
  right: 8%;
  bottom: 12%;
  max-width: 250px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(77, 7, 155, 0.16);
  box-shadow: 0 18px 38px rgba(77, 7, 155, 0.13);
  backdrop-filter: blur(14px);
}
.factory-card strong { display: block; color: var(--red); font-size: 2rem; line-height: 1; }
.factory-card span { color: var(--soft-ink); font-weight: 800; }
.slider-dots button {
  height: 6px;
  background: rgba(77, 7, 155, 0.18);
}
.slider-dots button.active { background: linear-gradient(90deg, var(--red), var(--purple)); }
.marquee-band {
  background: linear-gradient(90deg, var(--purple), var(--red));
  border: 0;
}
.marquee-track { animation-duration: 32s; }
.marquee-track span {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.reveal-section {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-section.is-visible { opacity: 1; transform: translateY(0); }
.about-mini {
  background:
    linear-gradient(135deg, #fff 0%, #fff 54%, var(--violet-soft) 54%, #fff7f8 100%);
}
.stat-panel {
  border-left: 0;
  border-radius: 8px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(77, 7, 155, 0.12);
  box-shadow: 0 24px 50px rgba(77, 7, 155, 0.1);
}
.trust-counter-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: center;
  padding: 74px 7vw;
  background:
    radial-gradient(circle at 86% 12%, rgba(245, 164, 27, 0.22), transparent 26%),
    linear-gradient(120deg, rgba(255,255,255,0.96), rgba(255,245,247,0.92) 47%, rgba(244,236,255,0.95));
  border-block: 1px solid rgba(77, 7, 155, 0.08);
}
.trust-counter-section::before {
  content: "";
  position: absolute;
  inset: 20% -12% auto auto;
  width: 460px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 44px solid rgba(227, 6, 19, 0.08);
  box-shadow: inset 0 0 0 18px rgba(77, 7, 155, 0.08);
  pointer-events: none;
}
.trust-counter-copy,
.trust-counter-grid {
  position: relative;
  z-index: 1;
}
.trust-counter-copy h2 {
  max-width: 560px;
  margin-bottom: 14px;
}
.trust-counter-copy p:last-child {
  max-width: 560px;
  color: var(--muted);
  font-weight: 650;
}
.trust-counter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.trust-counter-grid article {
  position: relative;
  overflow: hidden;
  min-height: 166px;
  padding: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(77, 7, 155, 0.12);
  box-shadow: 0 22px 54px rgba(77, 7, 155, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.trust-counter-grid article::after {
  content: "";
  position: absolute;
  inset: auto -28% -56% auto;
  width: 160px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(227,6,19,0.16), rgba(77,7,155,0.14));
  transition: transform 0.35s ease;
}
.trust-counter-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(227, 6, 19, 0.24);
  box-shadow: 0 30px 66px rgba(77, 7, 155, 0.16);
}
.trust-counter-grid article:hover::after { transform: scale(1.25); }
.trust-counter-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--purple);
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  line-height: 0.95;
}
.trust-counter-grid span:last-child {
  display: block;
  color: var(--ink);
  font-weight: 800;
}
.oem-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: stretch;
  padding: 78px 7vw;
  background:
    linear-gradient(135deg, rgba(77,7,155,0.94), rgba(112,20,166,0.86) 44%, rgba(227,6,19,0.9)),
    #4d079b;
  color: #fff;
}
.oem-section::before {
  content: "";
  position: absolute;
  inset: -30% auto auto 42%;
  width: 680px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 58px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 0 0 18px rgba(245,164,27,0.14);
  pointer-events: none;
}
.oem-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 44%;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--gold), #fff);
}
.oem-panel,
.oem-capabilities {
  position: relative;
  z-index: 1;
}
.oem-panel {
  padding: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 30px 70px rgba(42, 8, 62, 0.24);
  backdrop-filter: blur(12px);
}
.oem-panel .eyebrow { color: #ffd991; }
.oem-panel h2 {
  max-width: 760px;
  color: #fff;
}
.oem-panel p {
  max-width: 760px;
  color: rgba(255,255,255,0.84);
  font-weight: 650;
}
.oem-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.oem-section .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.48);
  background: rgba(255,255,255,0.08);
}
.oem-section .btn-ghost:hover {
  color: var(--purple);
  background: #fff;
  border-color: #fff;
}
.oem-capabilities {
  display: grid;
  gap: 14px;
}
.oem-capabilities article {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255,255,255,0.9);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.36);
  box-shadow: 0 22px 52px rgba(42, 8, 62, 0.18);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.oem-capabilities article:hover {
  transform: translateX(-8px);
  box-shadow: 0 30px 64px rgba(42, 8, 62, 0.26);
}
.oem-capabilities span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--red);
  font-weight: 900;
}
.oem-capabilities strong {
  display: block;
  margin-bottom: 8px;
  color: var(--purple);
  font-size: 1.18rem;
}
.oem-capabilities p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}
.manufacturing-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(227,6,19,0.08), transparent 26%),
    linear-gradient(180deg, #fff, #f8f5ff);
}
.section-head > p {
  max-width: 430px;
  margin: 0;
  color: #665c71;
  font-weight: 650;
}
.manufacturing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.manufacturing-grid article,
.process-flow article {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: 8px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(77, 7, 155, 0.12);
  box-shadow: 0 18px 42px rgba(77, 7, 155, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.manufacturing-grid article::before,
.process-flow article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(227,6,19,0.08), rgba(77,7,155,0.12));
  opacity: 0;
  transition: opacity 0.28s ease;
}
.manufacturing-grid article:hover,
.process-flow article:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(77, 7, 155, 0.14);
}
.manufacturing-grid article:hover::before,
.process-flow article:hover::before { opacity: 1; }
.manufacturing-grid span,
.process-flow span {
  position: relative;
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--red);
  font-weight: 900;
}
.manufacturing-grid strong,
.manufacturing-grid p,
.process-flow strong { position: relative; }
.manufacturing-grid strong { display: block; font-size: 1.24rem; }
.manufacturing-grid p { margin-bottom: 0; color: #665c71; }
.range-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: linear-gradient(120deg, var(--rose-soft), #fff 44%, var(--violet-soft));
}
.range-copy .btn { margin-top: 20px; }
.range-orbit {
  min-height: 430px;
  position: relative;
  display: grid;
  place-items: center;
}
.range-orbit::before,
.range-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(77, 7, 155, 0.2);
}
.range-orbit::before { width: min(84vw, 430px); aspect-ratio: 1; animation: slowSpin 26s linear infinite; }
.range-orbit::after { width: min(58vw, 290px); aspect-ratio: 1; animation: slowSpin 20s linear infinite reverse; }
.range-orbit span {
  position: absolute;
  min-width: 96px;
  padding: 12px 15px;
  text-align: center;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(77, 7, 155, 0.14);
  box-shadow: 0 16px 32px rgba(77, 7, 155, 0.1);
  font-weight: 900;
}
.range-orbit span:nth-child(1) { top: 3%; left: 42%; }
.range-orbit span:nth-child(2) { top: 20%; right: 4%; }
.range-orbit span:nth-child(3) { right: 10%; bottom: 21%; }
.range-orbit span:nth-child(4) { bottom: 4%; left: 42%; }
.range-orbit span:nth-child(5) { left: 7%; bottom: 21%; }
.range-orbit span:nth-child(6) { top: 22%; left: 2%; }
.range-orbit span:nth-child(7) { top: 43%; left: 39%; color: #fff; background: linear-gradient(135deg, var(--red), var(--purple)); }
.range-orbit span:nth-child(8) { top: 43%; right: 8%; }
.quality-section {
  background: #fff;
}
.feature-grid article {
  border-color: rgba(77, 7, 155, 0.12);
  background: linear-gradient(145deg, #fff, #fbf8ff);
  box-shadow: 0 14px 34px rgba(77, 7, 155, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.feature-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(227, 6, 19, 0.22);
  box-shadow: 0 24px 48px rgba(77, 7, 155, 0.13);
}
.feature-grid strong { color: var(--ink); }
.feature-grid span { color: #6d6276; }
.product-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(227,6,19,0.12), transparent 24%),
    radial-gradient(circle at 12% 86%, rgba(77,7,155,0.12), transparent 28%),
    linear-gradient(180deg, #fff7f8, #f6f0ff);
}
.product-showcase::before {
  content: "";
  position: absolute;
  inset: 10% -18% auto auto;
  width: 560px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 54px solid rgba(227,6,19,0.06);
  box-shadow: inset 0 0 0 18px rgba(77,7,155,0.06);
  pointer-events: none;
}
.slider-control-panel {
  display: grid;
  gap: 12px;
  justify-items: end;
}
.slider-arrows { display: flex; gap: 8px; }
.slider-arrows button {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(77, 7, 155, 0.16);
  border-radius: 999px;
  background: linear-gradient(135deg, #fff, #fff5f6);
  color: var(--red);
  font-size: 1.95rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(77, 7, 155, 0.16);
  transition: 0.24s ease;
}
.slider-arrows button:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--purple));
  transform: translateY(-3px);
}
.showcase-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  min-height: 470px;
  margin-bottom: 24px;
  padding: clamp(24px, 4vw, 46px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.62)),
    radial-gradient(circle at 78% 50%, rgba(227,6,19,0.12), transparent 34%);
  border: 1px solid rgba(77,7,155,0.14);
  box-shadow: 0 30px 78px rgba(77,7,155,0.13);
  overflow: hidden;
}
.showcase-floating-arrows {
  position: absolute;
  inset: 50% 18px auto;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}
.showcase-floating-arrows button {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--purple));
  color: #fff;
  font-size: 2.25rem;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 18px 38px rgba(77,7,155,0.24);
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}
.showcase-floating-arrows button:hover {
  transform: translateY(-4px) scale(1.04);
  filter: saturate(1.12);
  box-shadow: 0 24px 48px rgba(77,7,155,0.28);
}
.showcase-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 46%, rgba(255,255,255,0.62) 50%, transparent 54%),
    radial-gradient(circle at 84% 18%, rgba(245,164,27,0.18), transparent 22%);
  transform: translateX(-46%);
  animation: showcaseSheen 6.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes showcaseSheen {
  0%, 42% { transform: translateX(-54%); opacity: 0; }
  58% { opacity: 1; }
  100% { transform: translateX(54%); opacity: 0; }
}
.showcase-spotlight {
  position: relative;
  z-index: 2;
  max-width: 560px;
}
.showcase-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.showcase-spotlight h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(2.15rem, 5vw, 5.5rem);
  line-height: 0.96;
}
.showcase-spotlight p {
  max-width: 520px;
  margin-bottom: 28px;
  color: #62586b;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  font-weight: 700;
}
.showcase-visual {
  position: relative;
  z-index: 1;
  min-height: 390px;
  display: grid;
  place-items: center;
}
.showcase-visual img {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 34px 42px rgba(77,7,155,0.18));
  -webkit-mask-image: radial-gradient(ellipse at center, #000 68%, rgba(0,0,0,0.78) 82%, transparent 96%);
  mask-image: radial-gradient(ellipse at center, #000 68%, rgba(0,0,0,0.78) 82%, transparent 96%);
  transition: opacity 0.28s ease, transform 0.5s cubic-bezier(.2,.75,.2,1), filter 0.5s ease;
}
.showcase-visual img.is-changing {
  animation: productSpotlightIn 0.68s cubic-bezier(.2,.75,.2,1) both;
}
@keyframes productSpotlightIn {
  from { opacity: 0; transform: translateY(22px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.showcase-ring {
  position: absolute;
  width: min(430px, 78%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 30px solid rgba(227,6,19,0.12);
  box-shadow:
    inset 0 0 0 14px rgba(77,7,155,0.12),
    0 0 0 1px rgba(245,164,27,0.16);
  animation: showcaseRing 10s linear infinite;
}
@keyframes showcaseRing {
  to { transform: rotate(360deg); }
}
.premium-product-rail {
  position: relative;
  z-index: 2;
  padding: 6px 2px 10px;
}
.motion-viewport {
  overflow: hidden;
  scroll-behavior: smooth;
}
.motion-slider {
  display: flex;
  gap: 16px;
  width: max-content;
}
.mini-product {
  flex: 0 0 clamp(230px, 22vw, 306px);
  animation: none;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.mini-product:hover {
  transform: translateY(-10px) scale(1.018);
  border-color: rgba(227,6,19,0.22);
  box-shadow: 0 28px 58px rgba(77, 7, 155, 0.16);
}
.mini-product img {
  -webkit-mask-image: radial-gradient(ellipse at center, #000 62%, rgba(0,0,0,0.76) 78%, transparent 94%);
  mask-image: radial-gradient(ellipse at center, #000 62%, rgba(0,0,0,0.76) 78%, transparent 94%);
  mix-blend-mode: multiply;
}
.product-showcase .mini-product {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  border-color: rgba(77,7,155,0.13);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,248,250,0.96));
  box-shadow: 0 16px 36px rgba(77,7,155,0.1);
}
.product-showcase .mini-product::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--red), var(--purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.product-showcase .mini-product:hover::after,
.product-showcase .mini-product:focus-visible::after {
  transform: scaleX(1);
}
.product-showcase .mini-product small {
  display: block;
  min-height: 50px;
  padding: 0 16px 18px;
  color: #6d6276;
  font-weight: 650;
  line-height: 1.35;
}
.process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 70px);
  background: #fff;
}
.process-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.dealer-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background:
    radial-gradient(circle at 8% 30%, rgba(255,255,255,0.7), transparent 24%),
    linear-gradient(135deg, var(--purple), var(--red));
  color: #fff;
}
.dealer-section .eyebrow { color: #ffd37a; }
.dealer-section h2,
.dealer-section p { color: #fff; }
.dealer-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.dealer-actions .btn-outline { border-color: rgba(255,255,255,0.42); color: #fff; background: rgba(255,255,255,0.12); }

.page-hero {
  background: linear-gradient(135deg, #fff, var(--violet-soft) 50%, var(--rose-soft));
  color: var(--ink);
}
.page-hero p { color: #665c71; }
.page-hero img {
  background: transparent;
  box-shadow: none;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 28px 32px rgba(77, 7, 155, 0.16));
  -webkit-mask-image: radial-gradient(ellipse at center, #000 58%, rgba(0,0,0,0.72) 74%, transparent 91%);
  mask-image: radial-gradient(ellipse at center, #000 58%, rgba(0,0,0,0.72) 74%, transparent 91%);
}
.contact-details,
.site-footer {
  background: linear-gradient(135deg, #321447, var(--purple));
}
.footer-grid p,
.footer-grid a,
.footer-grid span { color: #f1eafa; }
.footer-social a,
.footer-bottom { border-color: rgba(255,255,255,0.22); }

.section,
.split-section {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 76px);
}
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}
.stat-panel {
  display: grid;
  gap: 10px;
  padding: 28px;
  background: var(--surface);
  border-left: 5px solid var(--red);
}
.stat-panel strong { font-size: 2.2rem; line-height: 1; color: var(--red); }
.stat-panel span { padding: 12px 0; border-top: 1px solid var(--line); color: var(--soft-ink); font-weight: 700; }
.dark-section { background: linear-gradient(135deg, var(--violet-soft), #fff); color: var(--ink); }
.dark-section h2 { color: var(--ink); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.feature-grid article {
  min-height: 138px;
  padding: 22px;
  border: 1px solid rgba(77, 7, 155, 0.12);
  background: linear-gradient(145deg, #fff, #fbf8ff);
  border-radius: 8px;
}
.feature-grid.light article {
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 10px 24px rgba(17, 18, 23, 0.06);
}
.feature-grid strong { display: block; margin-bottom: 8px; color: var(--ink); }
.feature-grid.light strong { color: var(--ink); }
.feature-grid span { color: #6d6276; }
.feature-grid.light span { color: var(--muted); }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.filter-tabs button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}
.filter-tabs button.active { background: var(--purple); color: #fff; border-color: var(--purple); }
.motion-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 280px);
  gap: 16px;
  overflow: hidden;
}
.mini-product,
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(17, 18, 23, 0.07);
}
.mini-product {
  animation: productRun 35s linear infinite;
}
@keyframes productRun { to { transform: translateX(calc(-100% - 16px)); } }
.mini-product img,
.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #fff;
}
.mini-product span {
  display: block;
  padding: 13px 14px 16px;
  min-height: 64px;
  font-weight: 900;
}

.page-hero {
  min-height: 58svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  padding: clamp(46px, 7vw, 90px) clamp(20px, 5vw, 76px);
  background: linear-gradient(135deg, #fff, var(--violet-soft) 50%, var(--rose-soft));
  color: var(--ink);
}
.page-hero p { color: #665c71; }
.page-hero img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #fff;
  box-shadow: var(--shadow);
}
.profile-hero { background: linear-gradient(135deg, #fff, var(--violet-soft)); }
.products-hero { background: linear-gradient(135deg, #fff, var(--rose-soft)); }
.contact-hero { background: linear-gradient(135deg, #fff, #f5edff); }
.profile-story p { font-size: 1.16rem; }
.profile-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}
.profile-points span {
  padding: 16px;
  background: var(--surface);
  border-left: 4px solid var(--red);
  font-weight: 800;
}
.soft-band { background: var(--surface); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-card { display: grid; }
.product-card-body { display: grid; gap: 10px; padding: 16px; }
.product-card p { margin: 0; min-height: 48px; color: var(--muted); font-size: 0.94rem; }
.product-card .btn { width: 100%; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 72px);
}
.contact-details {
  padding: 30px;
  background: linear-gradient(135deg, #321447, var(--purple));
  color: #fff;
}
.contact-details h2 { font-size: clamp(1.8rem, 3vw, 3.2rem); }
.contact-details p,
.contact-details address,
.contact-details a {
  display: block;
  margin-top: 14px;
  color: #e8e8ee;
  font-style: normal;
}
.contact-form,
.drawer-form {
  display: grid;
  gap: 14px;
}
label {
  display: grid;
  gap: 7px;
  color: var(--soft-ink);
  font-weight: 800;
}
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
}
textarea { resize: vertical; }
.form-status { margin: 0; color: var(--purple); font-weight: 800; }
.map-wrap iframe {
  width: 100%;
  height: 430px;
  border: 0;
  display: block;
}

.floating-social {
  position: fixed;
  right: 14px;
  top: 50%;
  z-index: 25;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}
.floating-social a,
.floating-social button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(17, 18, 23, 0.16);
  cursor: pointer;
}
.floating-social a:nth-child(4),
.floating-social a:nth-child(5) { background: var(--red); color: #fff; }

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(17, 18, 23, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 55;
  width: min(450px, 100vw);
  height: 100svh;
  padding: 26px;
  background: #fff;
  transform: translateX(100%);
  transition: 0.3s ease;
  overflow: auto;
  box-shadow: -18px 0 40px rgba(17, 18, 23, 0.2);
}
body.drawer-open .drawer-overlay { opacity: 1; pointer-events: auto; }
body.drawer-open .drawer { transform: translateX(0); }
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 20px;
}
.drawer-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  font-size: 1.3rem;
}

.site-footer {
  background: linear-gradient(135deg, #321447, var(--purple));
  color: #fff;
  padding: 52px clamp(20px, 5vw, 76px) 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 0.9fr 1.1fr;
  gap: 30px;
}
.footer-grid img { width: 150px; background: #fff; padding: 8px; border-radius: 6px; }
.footer-grid p,
.footer-grid a,
.footer-grid span { color: #c6c9d3; }
.footer-links,
.footer-products,
.footer-contact { display: grid; gap: 9px; align-content: start; }
.footer-grid strong { color: #fff; margin-bottom: 4px; }
.footer-social { display: flex; gap: 8px; margin-top: 14px; }
.footer-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid #343741;
  border-radius: 6px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid #30323a;
  color: #c6c9d3;
}

.about-mini .stat-panel {
  border-left: 0;
  border-radius: 8px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(77, 7, 155, 0.12);
  box-shadow: 0 24px 50px rgba(77, 7, 155, 0.1);
}
.site-footer .footer-bottom { border-color: rgba(255,255,255,0.22); color: #f1eafa; }
.site-footer .footer-grid p,
.site-footer .footer-grid a,
.site-footer .footer-grid span { color: #f1eafa; }
.site-footer .footer-social a { border-color: rgba(255,255,255,0.24); }

@media (max-width: 1080px) {
  .feature-grid,
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-counter-section { grid-template-columns: 1fr; }
  .oem-section { grid-template-columns: 1fr; }
  .showcase-stage { grid-template-columns: 1fr; }
  .showcase-visual { min-height: 330px; }
  .manufacturing-grid { grid-template-columns: 1fr; }
  .process-section,
  .range-story { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .site-header { grid-template-columns: auto auto; }
  .brand img { height: 48px; }
  .menu-toggle { display: block; justify-self: end; }
  .main-nav,
  .header-actions {
    grid-column: 1 / -1;
    display: none;
    justify-self: stretch;
  }
  body.nav-open .main-nav,
  body.nav-open .header-actions { display: flex; }
  .main-nav { flex-direction: column; align-items: stretch; }
  .header-actions { justify-content: stretch; }
  .header-actions .btn { flex: 1; }
  .trust-counter-section { padding: 54px 6vw; }
  .trust-counter-grid { grid-template-columns: 1fr; }
  .trust-counter-grid article {
    min-height: 136px;
    padding: 22px;
  }
  .oem-section { padding: 54px 6vw; }
  .oem-panel { padding: 24px; }
  .oem-actions { flex-direction: column; }
  .oem-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .nav-products:hover .product-shutter,
  .nav-products:focus-within .product-shutter { transform: none; }
  .product-shutter {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    display: none;
  }
  body.nav-open .product-shutter { display: grid; }
  .hero { min-height: auto; }
  .hero-slide {
    position: relative;
    display: none;
    min-height: calc(100svh - 78px);
    grid-template-columns: 1fr;
    padding-bottom: 82px;
  }
  .hero-slide.active { display: grid; }
  .hero-slide:nth-child(n) {
    background: linear-gradient(180deg, #fff, var(--violet-soft) 58%, var(--rose-soft)) !important;
    color: var(--ink);
  }
  .hero-slide:nth-child(n) p:not(.eyebrow) { color: #555966; }
  .hero-slide::before {
    width: 520px;
    height: 520px;
    right: -230px;
    top: 8%;
  }
  .hero-stage {
    order: -1;
    min-height: 370px;
    width: 100%;
  }
  .hero-product-main { width: min(82vw, 340px); right: 1%; top: 4%; }
  .hero-product-side { width: min(44vw, 180px); left: 0; bottom: 8%; }
  .hero-cluster .cluster-a { width: min(62vw, 260px); left: 0; top: 6%; }
  .hero-cluster .cluster-b { width: min(42vw, 180px); right: 0; top: 8%; }
  .hero-cluster .cluster-c { width: min(48vw, 210px); right: 18%; bottom: 0; }
  .hero-brand-mark { width: min(82vw, 330px); }
  .factory-card { right: 2%; bottom: 4%; max-width: 210px; }
  .range-orbit { min-height: 360px; }
  .page-hero,
  .split-section,
  .contact-layout { grid-template-columns: 1fr; }
  .profile-points { grid-template-columns: 1fr; }
  .section-head { display: grid; }
  .filter-tabs,
  .dealer-actions { justify-content: flex-start; }
  .slider-control-panel { justify-items: start; }
  .showcase-stage {
    min-height: 0;
    padding: 24px 18px 30px;
  }
  .showcase-floating-arrows {
    inset: auto 18px 18px;
    transform: none;
  }
  .showcase-floating-arrows button {
    width: 50px;
    height: 50px;
    font-size: 1.9rem;
  }
  .showcase-spotlight h3 {
    font-size: clamp(2rem, 12vw, 3.45rem);
  }
  .showcase-visual {
    order: -1;
    min-height: 280px;
  }
  .showcase-visual img {
    max-height: 280px;
  }
  .showcase-ring {
    width: min(280px, 82%);
    border-width: 20px;
  }
  .product-showcase .mini-product {
    flex-basis: min(78vw, 292px);
  }
  .dealer-section { grid-template-columns: 1fr; }
  .floating-social { right: 8px; }
}

@media (max-width: 620px) {
  h1 { font-size: 2.45rem; }
  h2 { font-size: 2rem; }
  .section,
  .split-section,
  .page-hero { padding-left: 16px; padding-right: 16px; }
  .product-grid,
  .feature-grid,
  .process-flow,
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stage { min-height: 330px; }
  .range-orbit span { min-width: 82px; padding: 10px 12px; font-size: 0.88rem; }
  .footer-bottom { display: grid; }
  .floating-social a,
  .floating-social button { width: 38px; height: 38px; font-size: 0.8rem; }
}

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

/* Final polish: cinematic inner-page banners, clearer logo, professional social icons */
.site-header {
  min-height: 86px;
  overflow: visible;
}
.main-nav,
.nav-products { overflow: visible; }
.product-shutter {
  top: 104px;
  z-index: 80;
  padding: 16px;
  border: 1px solid rgba(77, 7, 155, 0.12);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}
.product-shutter a {
  min-height: 210px;
  background:
    radial-gradient(circle at 72% 18%, rgba(227, 6, 19, 0.08), transparent 30%),
    linear-gradient(145deg, #fff, #fbf7ff);
}
.product-shutter img {
  height: 210px;
  object-fit: contain;
  padding: 16px 18px 54px;
}
.product-shutter span {
  left: 16px;
  right: 16px;
  bottom: 16px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 12px 24px rgba(77, 7, 155, 0.18);
}
.brand img {
  width: 190px;
  max-width: 26vw;
}
.cinematic-page-hero {
  position: relative;
  overflow: hidden;
  min-height: 72svh;
  background:
    radial-gradient(circle at 78% 32%, rgba(227, 6, 19, 0.12), transparent 24%),
    radial-gradient(circle at 88% 68%, rgba(77, 7, 155, 0.16), transparent 26%),
    linear-gradient(120deg, #fff 0%, #fff8f9 46%, #f2e9ff 100%) !important;
}
.cinematic-page-hero::before {
  content: "";
  position: absolute;
  right: -12vw;
  top: 8%;
  width: min(62vw, 760px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 130deg, rgba(227,6,19,0.16), rgba(77,7,155,0.2), rgba(217,154,19,0.12), rgba(227,6,19,0.16));
  opacity: 0.75;
  animation: slowSpin 24s linear infinite;
}
.cinematic-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0 55%, rgba(255,255,255,0.46));
  pointer-events: none;
}
.cinematic-page-hero > div:first-child {
  position: relative;
  z-index: 2;
  animation: copyReveal 0.8s ease both;
}
.page-hero-stage {
  position: relative;
  z-index: 2;
  min-height: min(48vw, 540px);
  display: grid;
  place-items: center;
  isolation: isolate;
  transition: transform 0.38s ease;
}
.cinematic-page-hero:hover .page-hero-stage { transform: translateY(-8px) scale(1.015); }
.page-hero-stage::before {
  content: "";
  position: absolute;
  inset: 12% 4% 4% 8%;
  border-radius: 42% 58% 48% 52%;
  background: linear-gradient(135deg, rgba(227,6,19,0.11), rgba(77,7,155,0.16), rgba(217,154,19,0.11));
  filter: blur(18px);
}
.stage-product {
  position: absolute;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 30px 32px rgba(77, 7, 155, 0.17));
  -webkit-mask-image: radial-gradient(ellipse at center, #000 48%, rgba(0,0,0,0.68) 66%, transparent 84%);
  mask-image: radial-gradient(ellipse at center, #000 48%, rgba(0,0,0,0.68) 66%, transparent 84%);
  animation: productFloat 5.8s ease-in-out infinite;
}
.page-hero .stage-main { width: min(36vw, 450px); right: 10%; top: 4%; }
.page-hero .stage-left { width: min(21vw, 260px); left: 3%; bottom: 8%; opacity: 0.82; animation-delay: -1.8s; }
.page-hero .stage-right { width: min(23vw, 290px); right: 0; bottom: 2%; opacity: 0.86; animation-delay: -3s; }
.stage-orbit {
  position: absolute;
  width: min(44vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(77, 7, 155, 0.22);
  border-radius: 50%;
  transform: rotate(-18deg) scaleY(0.72);
}
.page-hero .profile-page-stage .stage-main { width: min(34vw, 420px); right: 8%; }
.page-hero .contact-page-stage .stage-main { width: min(36vw, 460px); right: 5%; }
.page-hero > img {
  background: transparent;
  box-shadow: none;
}

.floating-social {
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.64);
  border: 1px solid rgba(77,7,155,0.12);
  box-shadow: 0 18px 36px rgba(77,7,155,0.13);
  backdrop-filter: blur(14px);
}
.floating-social a,
.floating-social button {
  color: var(--purple);
  background: #fff;
  border: 1px solid rgba(77,7,155,0.1);
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}
.floating-social svg,
.footer-social svg {
  width: 20px;
  height: 20px;
  display: block;
}
.floating-social svg { fill: currentColor; stroke: none; }
.floating-social .social-instagram svg,
.footer-social a[aria-label="Instagram"] svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}
.floating-social .social-whatsapp svg,
.footer-social a[aria-label="WhatsApp"] svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.floating-social a:hover,
.floating-social button:hover {
  transform: translateX(-4px) scale(1.08);
  color: #fff;
  box-shadow: 0 14px 28px rgba(77,7,155,0.2);
}
.floating-social .social-facebook:hover { background: #1877f2; }
.floating-social .social-instagram:hover { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.floating-social .social-whatsapp,
.floating-social .social-call { background: linear-gradient(135deg, var(--red), #ff3340); color: #fff; }
.floating-social .social-whatsapp:hover { background: #25d366; }
.floating-social .social-call:hover { background: var(--purple); }
.floating-social .social-top:hover { background: linear-gradient(135deg, var(--purple), var(--red)); }
.footer-social a {
  color: #fff;
  transition: transform 0.24s ease, background 0.24s ease;
}
.footer-social a:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.14);
}

@media (max-width: 860px) {
  .brand img {
    width: 158px;
    max-width: 52vw;
  }
  .product-shutter {
    top: auto;
    z-index: auto;
  }
  .product-shutter a { min-height: 180px; }
  .product-shutter img {
    height: 180px;
    object-fit: contain;
    padding: 14px 16px 52px;
  }
  .cinematic-page-hero {
    min-height: auto;
  }
  .page-hero-stage {
    min-height: 360px;
    order: -1;
  }
  .page-hero .stage-main { width: min(74vw, 320px); right: 8%; top: 4%; }
  .page-hero .stage-left { width: min(42vw, 170px); left: 0; bottom: 8%; }
  .page-hero .stage-right { width: min(45vw, 190px); right: 0; bottom: 2%; }
  .stage-orbit { width: min(82vw, 360px); }
}

/* Home page finish requested on 27 June */
.site-header {
  background:
    radial-gradient(circle at 6% 50%, rgba(227, 6, 19, 0.13), transparent 28%),
    radial-gradient(circle at 20% 0%, rgba(77, 7, 155, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(255,255,255,0.94), rgba(255,246,248,0.92) 45%, rgba(245,238,255,0.94));
  border-bottom: 1px solid rgba(77, 7, 155, 0.12);
  box-shadow: 0 16px 42px rgba(77, 7, 155, 0.08);
}
.brand {
  padding: 5px 14px 5px 0;
}
.brand::before {
  content: "";
  position: absolute;
  inset: -8px -16px -8px -12px;
  z-index: -1;
  border-radius: 999px;
  background:
    linear-gradient(110deg, rgba(255,255,255,0.22), rgba(255,255,255,0.72)),
    radial-gradient(circle at 22% 42%, rgba(227,6,19,0.2), transparent 42%),
    radial-gradient(circle at 70% 42%, rgba(77,7,155,0.18), transparent 48%);
  filter: blur(0.1px);
}
.brand img {
  mix-blend-mode: multiply;
  filter: drop-shadow(0 9px 18px rgba(77, 7, 155, 0.12));
}
.header-actions .btn {
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px 999px 999px 18px;
  border: 1px solid rgba(255,255,255,0.45);
  letter-spacing: 0;
  box-shadow: 0 14px 28px rgba(77, 7, 155, 0.16);
}
.header-actions .btn::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.34);
  pointer-events: none;
}
.header-actions .btn-dark {
  background: linear-gradient(135deg, var(--purple), #7d1294 48%, var(--red));
}
.header-actions .btn-red {
  background: linear-gradient(135deg, var(--red), #ff3a2f 50%, var(--gold));
}
.header-actions .btn:hover {
  transform: translateY(-4px) scale(1.035);
  box-shadow: 0 22px 42px rgba(227, 6, 19, 0.2), 0 10px 24px rgba(77, 7, 155, 0.18);
}

.hero-banner-slide {
  display: block;
  min-height: calc(100svh - 86px);
  padding: 0;
  background:
    radial-gradient(circle at 12% 26%, rgba(227,6,19,0.08), transparent 30%),
    radial-gradient(circle at 84% 28%, rgba(77,7,155,0.12), transparent 28%),
    #fff !important;
}
.hero-banner-slide::before {
  inset: auto -12vw -34vw auto;
  width: min(62vw, 820px);
  height: min(62vw, 820px);
  opacity: 0.28;
}
.hero-banner-slide::after {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), transparent 34%, rgba(255,255,255,0.22)),
    linear-gradient(90deg, rgba(255,255,255,0.3), transparent 24%, transparent 76%, rgba(255,255,255,0.28));
}
.hero-banner-art {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(14px, 2vw, 28px) clamp(10px, 2vw, 26px) 72px;
  isolation: isolate;
}
.hero-banner-art::before {
  content: "";
  position: absolute;
  inset: 7% 2% 13%;
  border-radius: 42% 58% 46% 54%;
  background:
    radial-gradient(circle at 30% 40%, rgba(227,6,19,0.15), transparent 32%),
    radial-gradient(circle at 75% 42%, rgba(77,7,155,0.18), transparent 34%);
  filter: blur(26px);
}
.hero-banner-art img {
  position: relative;
  z-index: 1;
  width: min(100%, 1920px);
  height: min(78svh, 760px);
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 30px 46px rgba(77, 7, 155, 0.16));
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 2.5%, #000 97.5%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 2.5%, #000 97.5%, transparent 100%);
  animation: bannerCinematicIn 1.2s ease both;
}
.hero-banner-slide .hero-copy {
  position: absolute;
  left: clamp(18px, 5vw, 76px);
  bottom: 22px;
  z-index: 4;
  max-width: none;
}
.hero-banner-slide .hero-copy > :not(.hero-actions) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.hero-banner-slide .hero-actions {
  margin: 0;
}
.hero-banner-slide .hero-stage {
  display: none;
}
@keyframes bannerCinematicIn {
  from { opacity: 0; transform: scale(1.035) translateY(14px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.marquee-band {
  contain: paint;
  background: linear-gradient(90deg, #fff, #fff6f8 42%, #f4ecff);
  color: var(--ink);
  border-top: 1px solid rgba(77,7,155,0.1);
  border-bottom: 1px solid rgba(77,7,155,0.1);
}
.marquee-track {
  animation-duration: 72s;
  will-change: transform;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
}
.marquee-track span {
  color: var(--soft-ink);
  background: rgba(255,255,255,0.74);
  border-color: rgba(77,7,155,0.14);
  box-shadow: 0 8px 18px rgba(77,7,155,0.06);
}
.motion-viewport {
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}
.motion-viewport::-webkit-scrollbar { display: none; }
.mini-product {
  animation: none !important;
  will-change: transform;
}

.floating-social {
  right: 16px;
  gap: 12px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.floating-social a,
.floating-social button {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 0;
  color: #fff;
  box-shadow: 0 14px 28px rgba(36,16,51,0.18);
}
.floating-social svg {
  width: 34px;
  height: 34px;
}
.floating-social .social-facebook { background: #1877f2; }
.floating-social .social-instagram {
  background: radial-gradient(circle at 30% 105%, #fdf497 0 18%, #fd5949 42%, #d6249f 62%, #285aeb 100%) !important;
}
.floating-social .social-whatsapp { background: #25d366 !important; }
.floating-social .social-top { background: linear-gradient(135deg, var(--purple), var(--red)) !important; }
.floating-social .social-instagram svg,
.floating-social .social-whatsapp svg {
  stroke: currentColor;
}
.floating-social a:hover,
.floating-social button:hover {
  transform: translateX(-5px) scale(1.08);
  box-shadow: 0 18px 34px rgba(77,7,155,0.24);
}

.site-footer {
  background:
    radial-gradient(circle at 8% 18%, rgba(227,6,19,0.1), transparent 28%),
    radial-gradient(circle at 85% 0%, rgba(77,7,155,0.11), transparent 32%),
    linear-gradient(120deg, #fff, #fff6f8 52%, #f4ecff) !important;
  color: var(--ink);
  border-top: 1px solid rgba(77,7,155,0.12);
}
.footer-grid img {
  width: 178px;
  padding: 0;
  background: transparent;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 10px 20px rgba(77,7,155,0.12));
}
.site-footer .footer-grid strong {
  color: var(--ink);
}
.site-footer .footer-grid p,
.site-footer .footer-grid a,
.site-footer .footer-grid span,
.site-footer .footer-bottom {
  color: #5f5769;
}
.site-footer .footer-social a {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
}
.site-footer .footer-social a[aria-label="Facebook"] { background: #1877f2; }
.site-footer .footer-social a[aria-label="Instagram"] { background: radial-gradient(circle at 30% 105%, #fdf497 0 18%, #fd5949 42%, #d6249f 62%, #285aeb 100%); }
.site-footer .footer-social a[aria-label="WhatsApp"] { background: #25d366; }
.site-footer .footer-bottom {
  border-top-color: rgba(77,7,155,0.14);
}

@media (max-width: 860px) {
  .site-header {
    background:
      radial-gradient(circle at 10% 20%, rgba(227,6,19,0.12), transparent 36%),
      linear-gradient(120deg, rgba(255,255,255,0.96), rgba(245,238,255,0.94));
  }
  .hero-banner-slide {
    min-height: calc(100svh - 86px);
  }
  .hero-banner-art {
    align-items: start;
    padding: 74px 10px 96px;
  }
  .hero-banner-art img {
    height: auto;
    max-height: 58svh;
    object-fit: contain;
  }
  .hero-banner-slide .hero-copy {
    left: 16px;
    right: 16px;
    bottom: 22px;
  }
  .hero-banner-slide .hero-actions {
    justify-content: center;
  }
  .floating-social {
    right: 10px;
    gap: 9px;
  }
  .floating-social a,
  .floating-social button {
    width: 66px;
    height: 66px;
  }
  .floating-social svg {
    width: 34px;
    height: 34px;
  }
}

/* Final blend, spacing, and interaction pass */
.brand::before {
  display: none;
}
.brand {
  padding-right: 8px;
}
.brand img,
.footer-grid img {
  background: transparent;
  mix-blend-mode: normal;
}

.hero-slide:not(.hero-banner-slide) {
  align-items: start;
  padding-top: clamp(34px, 4vw, 58px);
}
.hero-slide:not(.hero-banner-slide) .hero-copy {
  padding-top: clamp(14px, 3vh, 34px);
}
.hero-slide:not(.hero-banner-slide) .hero-stage {
  min-height: min(58vw, 570px);
}
.hero-product.product-cutout,
.stage-product.product-cutout {
  mix-blend-mode: normal;
  -webkit-mask-image: none;
  mask-image: none;
  background: transparent;
}
.hero-range .hero-stage::before {
  opacity: 0.42;
  filter: blur(32px);
}
.hero-range .hero-ring {
  opacity: 0.12;
}
.hero-range .cluster-a {
  width: min(28vw, 350px);
  left: 0;
  top: 5%;
}
.hero-range .cluster-b {
  width: min(29vw, 370px);
  right: -1%;
  top: 2%;
  opacity: 1;
}
.hero-range .cluster-c {
  width: min(23vw, 290px);
  right: 18%;
  bottom: 0;
  opacity: 1;
}
.hero-brand .cluster-a {
  width: min(19vw, 235px);
  left: 5%;
  top: 1%;
}
.hero-brand .cluster-b {
  width: min(21vw, 260px);
  right: 3%;
  top: 4%;
}
.hero-brand .cluster-c {
  width: min(20vw, 245px);
  right: 28%;
  bottom: 0;
  opacity: 1;
}

.marquee-band {
  background: var(--red);
  border-color: rgba(255,255,255,0.22);
}
.marquee-track span {
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.38);
  box-shadow: none;
}

.floating-social {
  gap: 9px;
}
.floating-social a,
.floating-social button {
  width: 52px;
  height: 52px;
  box-shadow: 0 10px 22px rgba(36,16,51,0.17);
}
.floating-social svg {
  width: 26px;
  height: 26px;
}

@media (hover: hover) and (pointer: fine) {
  .main-nav > a,
  .nav-products > a,
  .footer-grid a,
  .footer-social a,
  .profile-points span,
  .range-orbit span {
    transition: color 0.25s ease, transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  }
  .main-nav > a:hover,
  .nav-products > a:hover {
    transform: translateY(-2px);
  }
  .section article,
  .stat-panel,
  .product-card,
  .product-shutter a,
  .contact-details,
  .contact-form {
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  }
  .section article:hover,
  .stat-panel:hover,
  .product-card:hover,
  .contact-details:hover,
  .contact-form:hover {
    transform: translateY(-8px);
    border-color: rgba(227,6,19,0.28);
    box-shadow: 0 24px 48px rgba(77,7,155,0.14), 0 8px 20px rgba(227,6,19,0.08);
  }
  .product-card img,
  .mini-product img,
  .product-shutter img,
  .stage-product {
    transition: transform 0.5s cubic-bezier(.2,.75,.2,1), filter 0.5s ease;
  }
  .product-card:hover img,
  .mini-product:hover img,
  .product-shutter a:hover img {
    transform: scale(1.045);
    filter: drop-shadow(0 18px 24px rgba(77,7,155,0.14));
  }
  .cinematic-page-hero:hover .stage-product {
    filter: drop-shadow(0 26px 34px rgba(77,7,155,0.2));
  }
  .profile-points span:hover,
  .range-orbit span:hover {
    transform: translateY(-4px);
    color: var(--red);
    background: #fff;
    box-shadow: 0 14px 28px rgba(77,7,155,0.12);
  }
  .footer-grid a:hover {
    color: var(--red);
    transform: translateX(4px);
  }
  .footer-social a:hover {
    transform: translateY(-5px) rotate(-4deg) scale(1.08);
    box-shadow: 0 14px 26px rgba(77,7,155,0.2);
  }
}

@media (max-width: 860px) {
  .hero-banner-slide {
    min-height: clamp(500px, 72svh, 660px);
  }
  .hero-banner-art {
    padding: 18px 8px 88px;
  }
  .hero-banner-art img {
    width: 100%;
    max-height: 44svh;
  }
  .hero-slide:not(.hero-banner-slide) {
    min-height: 700px;
    padding-top: 24px;
    padding-bottom: 62px;
  }
  .hero-slide:not(.hero-banner-slide) .hero-copy {
    padding-top: 0;
  }
  .hero-slide:not(.hero-banner-slide) .hero-stage {
    min-height: 330px;
  }
  .hero-range .cluster-a {
    width: min(48vw, 230px);
    left: -2%;
    top: 5%;
  }
  .hero-range .cluster-b {
    width: min(49vw, 240px);
    right: -3%;
    top: 3%;
  }
  .hero-range .cluster-c {
    width: min(39vw, 190px);
    right: 30%;
    bottom: -2%;
  }
  .hero-brand .cluster-a {
    width: min(27vw, 135px);
    left: 7%;
    top: 2%;
  }
  .hero-brand .cluster-b {
    width: min(34vw, 170px);
    right: 7%;
    top: 5%;
  }
  .hero-brand .cluster-c {
    width: min(31vw, 155px);
    right: 34%;
    top: 4%;
    bottom: auto;
  }
  .floating-social {
    right: 8px;
    gap: 7px;
  }
  .floating-social a,
  .floating-social button {
    width: 44px;
    height: 44px;
  }
  .floating-social svg {
    width: 22px;
    height: 22px;
  }
}

/* Responsive architecture and professional interaction pass */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.hero,
.cinematic-hero {
  height: clamp(590px, calc(88svh - 86px), 760px);
  min-height: 590px;
}
.hero .hero-slide {
  height: 100%;
  min-height: 0;
}
.hero-slide:not(.hero-banner-slide) {
  padding-top: clamp(22px, 3vw, 44px);
}
.hero-slide:not(.hero-banner-slide) .hero-copy {
  padding-top: clamp(6px, 1.5vh, 18px);
}
.hero-slide:not(.hero-banner-slide) .hero-stage {
  min-height: min(50vw, 530px);
}
.hero-banner-art {
  padding-top: 8px;
}
.hero-banner-art img {
  height: calc(100% - 68px);
}
.hero-slide:not(.active),
.hero-slide:not(.active) * {
  animation-play-state: paused !important;
}

body[data-page="home"] .btn {
  min-height: 50px;
  padding: 0 26px;
  border: 0;
  border-radius: 0;
  clip-path: polygon(11px 0, 100% 0, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0 100%, 0 11px);
  box-shadow: 0 14px 28px rgba(36,16,51,0.17), inset 0 0 0 1px rgba(255,255,255,0.28);
  transition: transform 0.28s cubic-bezier(.2,.8,.2,1), box-shadow 0.28s ease, filter 0.28s ease;
}
body[data-page="home"] .btn::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 0;
  pointer-events: none;
}
body[data-page="home"] .btn-red {
  background: linear-gradient(115deg, #c9000c, var(--red) 58%, #ff3b2f);
}
body[data-page="home"] .btn-dark {
  background: linear-gradient(115deg, #321447, var(--purple) 58%, #8b168e);
}
body[data-page="home"] .btn-outline {
  color: var(--ink);
  background: rgba(255,255,255,0.94);
  box-shadow: 0 14px 28px rgba(77,7,155,0.12), inset 0 0 0 1px rgba(77,7,155,0.18);
}
body[data-page="home"] .btn-outline::before {
  border-color: rgba(77,7,155,0.18);
}
body[data-page="home"] .btn:hover,
body[data-page="home"] .btn:focus-visible {
  transform: translateY(-5px) scale(1.025);
  filter: saturate(1.12);
  box-shadow: 0 24px 42px rgba(77,7,155,0.2), 0 8px 18px rgba(227,6,19,0.13);
  outline: none;
}
body[data-page="home"] .btn:active {
  transform: translateY(-1px) scale(0.985);
}

.home-location {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  min-height: 520px;
  background: #fff;
  border-top: 1px solid rgba(77,7,155,0.12);
  border-bottom: 1px solid rgba(77,7,155,0.12);
}
.location-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(48px, 7vw, 92px) clamp(24px, 5vw, 76px);
  background:
    linear-gradient(135deg, rgba(227,6,19,0.07), transparent 44%),
    linear-gradient(315deg, rgba(77,7,155,0.09), transparent 46%),
    #fff;
}
.location-copy h2 {
  font-size: clamp(2rem, 3.5vw, 3.8rem);
}
.location-copy p {
  max-width: 620px;
  color: #62586b;
}
.location-copy address {
  display: grid;
  gap: 6px;
  max-width: 520px;
  margin: 10px 0 26px;
  padding-left: 18px;
  border-left: 3px solid var(--red);
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
}
.location-copy address span {
  color: #62586b;
  font-weight: 750;
}
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.location-map {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}
.location-map::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(180deg, var(--red), var(--purple));
  pointer-events: none;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  border: 0;
  filter: saturate(0.78) contrast(1.04);
  pointer-events: auto;
}
.unitouch-map-pin {
  position: absolute;
  left: 48%;
  top: 46%;
  z-index: 4;
  display: grid;
  gap: 2px;
  min-width: 230px;
  padding: 13px 16px 13px 42px;
  border-radius: 8px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(227,6,19,0.22);
  box-shadow: 0 18px 40px rgba(42, 8, 62, 0.2);
  color: var(--ink);
  transform: translate(-50%, -100%);
  pointer-events: none;
}
.unitouch-map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.96);
  border-right: 1px solid rgba(227,6,19,0.22);
  border-bottom: 1px solid rgba(227,6,19,0.22);
  transform: translateX(-50%) rotate(45deg);
}
.unitouch-map-pin i {
  position: absolute;
  left: 14px;
  top: 16px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--purple));
  box-shadow: 0 0 0 7px rgba(227,6,19,0.14);
}
.unitouch-map-pin strong {
  color: var(--purple);
  font-size: 0.98rem;
  line-height: 1.15;
}
.unitouch-map-pin small {
  color: #62586b;
  font-weight: 750;
}
.map-address-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  display: grid;
  gap: 6px;
  max-width: min(430px, calc(100% - 56px));
  padding: 18px 20px;
  border-radius: 8px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(77,7,155,0.14);
  box-shadow: 0 18px 42px rgba(42, 8, 62, 0.18);
  backdrop-filter: blur(10px);
}
.map-address-card strong {
  color: var(--purple);
  font-size: 1.05rem;
}
.map-address-card span {
  color: var(--ink);
  font-weight: 750;
}

.efforts-credit {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 2px;
  color: var(--ink) !important;
  font-weight: 700;
  isolation: isolate;
}
.efforts-credit strong {
  color: var(--purple);
  transition: color 0.28s ease, transform 0.28s ease;
}
.efforts-credit::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid var(--red);
  transform: rotate(45deg);
  transition: transform 0.35s ease, background 0.35s ease;
}
.efforts-credit::after {
  content: "";
  position: absolute;
  left: 17px;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.efforts-credit:hover::before,
.efforts-credit:focus-visible::before {
  background: var(--red);
  transform: rotate(225deg) scale(1.15);
}
.efforts-credit:hover::after,
.efforts-credit:focus-visible::after {
  transform: scaleX(1);
}
.efforts-credit:hover strong,
.efforts-credit:focus-visible strong {
  color: var(--red);
  transform: translateY(-2px);
}

.site-footer .footer-links a,
.site-footer .footer-products a,
.site-footer .footer-contact a {
  position: relative;
  width: fit-content;
}
.site-footer .footer-links a::after,
.site-footer .footer-products a::after,
.site-footer .footer-contact a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.site-footer .footer-links a:hover::after,
.site-footer .footer-products a:hover::after,
.site-footer .footer-contact a:hover::after {
  transform: scaleX(1);
}
.process-flow strong {
  display: block;
  line-height: 1.45;
}
.process-flow span {
  display: flex;
  width: fit-content;
}
.section article:active,
.stat-panel:active,
.profile-points span:active {
  transform: translateY(-3px);
}
.efforts-credit:active::after {
  transform: scaleX(1);
}
.efforts-credit:active strong {
  color: var(--red);
}

body.is-scrolling .hero-product,
body.is-scrolling .hero-slide::before,
body.is-scrolling .cinematic-hero::before,
body.is-scrolling .range-orbit::before,
body.is-scrolling .range-orbit::after,
body.is-scrolling .marquee-track {
  animation-play-state: paused !important;
}
body.is-scrolling .site-header {
  backdrop-filter: none;
}
.range-orbit:not(.motion-active)::before,
.range-orbit:not(.motion-active)::after {
  animation-play-state: paused;
}

@media (max-width: 860px) {
  .hero,
  .cinematic-hero {
    position: relative;
    height: clamp(620px, calc(100svh - 86px), 720px);
    min-height: 620px;
  }
  .hero .hero-slide {
    position: absolute !important;
    inset: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(270px, 0.95fr) auto;
    gap: 4px;
    width: 100%;
    height: 100%;
    min-height: 0 !important;
    padding: 14px 18px 64px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(22px);
    pointer-events: none;
    overflow: hidden;
  }
  .hero .hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
  }
  .hero .hero-banner-slide {
    display: block !important;
    padding: 0;
  }
  .hero-banner-art {
    inset: 0;
    padding: 0;
  }
  .hero-banner-art::before {
    display: none;
  }
  .hero-banner-art img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: normal;
    -webkit-mask-image: none;
    mask-image: none;
    filter: saturate(1.04) contrast(1.02);
  }
  .hero-banner-slide::after {
    background: linear-gradient(180deg, transparent 55%, rgba(255,255,255,0.86) 100%);
  }
  .hero-banner-slide .hero-copy {
    left: 14px;
    right: 14px;
    bottom: 20px;
  }
  .hero-slide:not(.hero-banner-slide) {
    padding-top: 14px;
  }
  .hero-slide:not(.hero-banner-slide) .hero-copy {
    padding-top: 0;
    align-self: end;
  }
  .hero-slide:not(.hero-banner-slide) .hero-copy h1 {
    font-size: clamp(2.1rem, 8vw, 3rem);
  }
  .hero-slide:not(.hero-banner-slide) .hero-copy p:not(.eyebrow) {
    margin: 12px 0 0;
    font-size: 0.98rem;
    line-height: 1.5;
  }
  .hero-slide:not(.hero-banner-slide) .hero-actions {
    margin-top: 17px;
  }
  .hero-slide:not(.hero-banner-slide) .hero-stage {
    order: -1;
    min-height: 0;
    height: 100%;
  }
  .slider-dots {
    z-index: 12;
    left: 18px;
    bottom: 22px;
  }
  .cinematic-hero::before,
  .hero-slide::before,
  .range-orbit::before,
  .range-orbit::after {
    animation: none !important;
  }
  .hero-stage::before {
    filter: none;
    opacity: 0.5;
  }
  .hero-slide.active .hero-product {
    animation: mobileProductIn 0.72s cubic-bezier(.2,.8,.2,1) both;
  }
  .motion-viewport {
    scroll-behavior: auto;
  }
  .home-location {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .location-copy {
    padding: 54px 18px;
  }
  .location-map,
  .location-map iframe {
    min-height: 360px;
  }
  .location-actions {
    width: 100%;
    flex-direction: column;
  }
  .location-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .location-map::after {
    inset: 0 0 auto;
    width: auto;
    height: 6px;
  }
  .unitouch-map-pin {
    left: 50%;
    top: 43%;
    min-width: min(250px, calc(100% - 42px));
    padding: 12px 14px 12px 40px;
  }
  .map-address-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
    padding: 14px 16px;
  }
  body[data-page="home"] .btn {
    min-height: 48px;
    padding: 0 20px;
  }
}

@keyframes mobileProductIn {
  from { opacity: 0; transform: translateY(18px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 480px) {
  .hero,
  .cinematic-hero {
    height: 640px;
    min-height: 640px;
  }
  .hero .hero-slide {
    grid-template-rows: 280px auto;
    padding-left: 14px;
    padding-right: 14px;
  }
  .hero-banner-slide .hero-actions {
    gap: 8px;
  }
  .hero-banner-slide .hero-actions .btn {
    min-height: 44px;
    padding: 0 15px;
    font-size: 0.9rem;
  }
  .location-copy h2 {
    font-size: 2rem;
  }
  .efforts-credit {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

/* Three-banner campaign system */
.hero-campaign-slide {
  display: block;
  padding: 0 !important;
  background: #fff !important;
  isolation: isolate;
}
.hero-campaign-slide::before {
  display: none;
}
.hero-campaign-slide::after {
  z-index: 1;
  background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.9) 31%, rgba(255,255,255,0.16) 49%, transparent 62%);
}
.campaign-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.campaign-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: campaignImageIn 1.1s cubic-bezier(.2,.75,.2,1) both;
}
.hero-campaign-slide .hero-copy {
  position: absolute;
  top: clamp(82px, 14%, 118px);
  left: clamp(24px, 5vw, 76px);
  z-index: 3;
  width: min(38vw, 610px);
  max-width: 610px;
  padding: 0;
}
.hero-campaign-slide .hero-copy h1 {
  max-width: 600px;
  font-size: clamp(3rem, 5vw, 5.35rem);
}
.hero-campaign-slide .hero-copy p:not(.eyebrow) {
  max-width: 570px;
}
.hero-campaign-slide .hero-actions {
  margin-top: 24px;
}
.hero-campaign-slide:not(.active) .campaign-art img {
  animation-play-state: paused;
}

@keyframes campaignImageIn {
  from { opacity: 0.45; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 860px) {
  .hero .hero-campaign-slide {
    display: block !important;
    padding: 0 !important;
  }
  .hero-campaign-slide::after,
  .hero-banner-slide::after {
    display: block;
    z-index: 1;
    background: linear-gradient(180deg, transparent 39%, rgba(255,255,255,0.72) 53%, rgba(255,247,248,0.98) 76%, #fff 100%);
  }
  .campaign-art {
    inset: 0;
  }
  .campaign-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .hero-campaign-slide .hero-copy,
  .hero-banner-slide .hero-copy {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    width: auto;
    max-width: none;
    padding: 20px 18px 62px;
  }
  .hero-campaign-slide .hero-copy h1,
  .hero-banner-slide .hero-copy h1 {
    max-width: 620px;
    font-size: clamp(2.15rem, 7.8vw, 3rem);
    line-height: 1.03;
  }
  .hero-campaign-slide .hero-copy p:not(.eyebrow),
  .hero-banner-slide .hero-copy p:not(.eyebrow) {
    display: block;
    max-width: 610px;
    margin: 11px 0 0;
    color: #554b60 !important;
    font-size: 0.95rem;
    line-height: 1.45;
  }
  .hero-banner-slide .hero-copy > :not(.hero-actions) {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
  }
  .hero-campaign-slide .hero-actions,
  .hero-banner-slide .hero-actions {
    justify-content: flex-start;
    margin-top: 16px;
  }
  .hero-campaign-slide .hero-actions .btn,
  .hero-banner-slide .hero-actions .btn {
    min-height: 45px;
    padding: 0 17px;
    font-size: 0.9rem;
  }
  .hero-banner-art img {
    object-position: center;
  }
  .slider-dots {
    bottom: 18px;
  }
}

@media (max-width: 480px) {
  .hero-campaign-slide .hero-copy,
  .hero-banner-slide .hero-copy {
    padding: 18px 14px 58px;
  }
  .hero-campaign-slide .hero-copy h1,
  .hero-banner-slide .hero-copy h1 {
    font-size: 2.08rem;
  }
  .hero-campaign-slide .hero-copy p:not(.eyebrow),
  .hero-banner-slide .hero-copy p:not(.eyebrow) {
    font-size: 0.9rem;
  }
}

/* Final hero spacing and native-scroll performance */
@media (min-width: 861px) {
  .hero-banner-art img {
    height: calc(100% - 112px);
  }
  .hero-banner-slide .hero-copy {
    left: clamp(24px, 5vw, 76px);
    bottom: 24px;
  }
  .hero-banner-slide .hero-actions {
    gap: 18px;
  }
}

@media (max-width: 860px) {
  .hero-banner-slide .hero-copy {
    padding-bottom: 66px;
  }
  .hero-banner-slide .hero-actions {
    justify-content: flex-start;
    gap: 14px;
    margin-top: 20px;
  }
}

@media (max-width: 390px) {
  .hero-banner-slide .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-banner-slide .hero-actions .btn {
    width: 100%;
    padding-inline: 10px;
  }
}

html {
  overscroll-behavior-y: none;
  scrollbar-gutter: stable;
}
body {
  -webkit-overflow-scrolling: touch;
}
.site-header {
  will-change: auto;
}
.reveal-section {
  transition-duration: 0.5s;
}

/* Smooth composited motion pass */
.hero .hero-slide {
  z-index: 0;
  transform: none !important;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.9s cubic-bezier(.22, .61, .36, 1),
    visibility 0s linear 0.9s;
  backface-visibility: hidden;
}
.hero .hero-slide.active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
  transform: none !important;
  transition:
    opacity 0.9s cubic-bezier(.22, .61, .36, 1),
    visibility 0s linear 0s;
}
.hero-banner-art img,
.campaign-art img {
  animation: none !important;
  transform: scale(1.012);
  transition: transform 5.2s cubic-bezier(.2, .7, .2, 1);
  backface-visibility: hidden;
}
.hero-slide.active .hero-banner-art img,
.hero-slide.active .campaign-art img {
  transform: scale(1);
}
.hero-slide.active .hero-copy {
  animation-duration: 0.72s;
  animation-timing-function: cubic-bezier(.2, .75, .2, 1);
}
.slider-dots button {
  transition: width 0.35s ease, background-color 0.35s ease, opacity 0.35s ease;
}
.mini-product {
  will-change: auto;
}
.reveal-section.is-visible {
  will-change: auto;
}

@media (max-width: 860px) {
  .hero .hero-slide,
  .hero .hero-slide.active {
    transition-duration: 0.7s, 0s;
  }
  .site-header {
    backdrop-filter: none;
  }
}

/* July catalogue expansion */
.product-category-nav {
  position: sticky;
  top: 86px;
  z-index: 18;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px clamp(16px, 5vw, 76px);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,246,248,0.96) 48%, rgba(245,238,255,0.96));
  border-top: 1px solid rgba(77,7,155,0.1);
  border-bottom: 1px solid rgba(77,7,155,0.12);
  box-shadow: 0 14px 34px rgba(77,7,155,0.08);
  scrollbar-width: none;
}
.product-category-nav::-webkit-scrollbar { display: none; }
.product-category-nav a {
  flex: 0 0 auto;
  padding: 10px 15px;
  border: 1px solid rgba(77,7,155,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  color: var(--ink);
  font-weight: 900;
  font-size: 0.92rem;
  transition: transform 0.24s ease, color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}
.product-category-nav a:hover,
.product-category-nav a:focus-visible {
  transform: translateY(-3px);
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--purple));
  box-shadow: 0 14px 26px rgba(77,7,155,0.16);
  outline: none;
}
.product-section {
  scroll-margin-top: 158px;
  position: relative;
}
.product-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--purple), var(--gold));
  opacity: 0.78;
}
.product-section .section-head {
  align-items: start;
}
.product-section .section-head h2 {
  max-width: 980px;
}
.product-card {
  position: relative;
  background:
    radial-gradient(circle at 78% 18%, rgba(227,6,19,0.06), transparent 30%),
    radial-gradient(circle at 14% 72%, rgba(77,7,155,0.06), transparent 34%),
    #fff;
}
.product-card img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.68), rgba(255,246,248,0.42)),
    radial-gradient(circle at 50% 88%, rgba(77,7,155,0.08), transparent 38%);
}
.product-card-body h3 {
  line-height: 1.18;
}
.product-card .btn {
  margin-top: auto;
}

@media (max-width: 860px) {
  .product-category-nav {
    top: 78px;
    padding-inline: 16px;
  }
  .product-section {
    scroll-margin-top: 146px;
  }
}

/* Product catalogue menu and scroll polish */
html {
  overscroll-behavior-y: auto;
}

body[data-page="products"] .product-category-nav {
  position: relative;
  top: auto;
  z-index: 4;
  scroll-snap-type: x proximity;
}

body[data-page="products"] .product-category-nav a {
  scroll-snap-align: start;
}

.site-header .product-shutter {
  left: 50%;
  top: 88px;
  width: min(1180px, calc(100vw - 32px));
  max-height: min(70vh, 620px);
  overflow-y: auto;
  grid-template-columns: repeat(7, minmax(118px, 1fr));
  gap: 10px;
  padding: 14px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 247, 0.98) 48%, rgba(247, 240, 255, 0.98));
  border: 1px solid rgba(77, 7, 155, 0.16);
  box-shadow: 0 24px 60px rgba(36, 16, 51, 0.16);
  backdrop-filter: none;
  transform: translate(-50%, 12px) scale(0.98);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-header .nav-products:hover .product-shutter,
.site-header .nav-products:focus-within .product-shutter {
  transform: translate(-50%, 0) scale(1);
}

.site-header .product-shutter a {
  min-height: 118px;
  display: grid;
  grid-template-rows: 76px auto;
  align-items: center;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(77, 7, 155, 0.1);
  background:
    radial-gradient(circle at 76% 10%, rgba(227, 6, 19, 0.12), transparent 38%),
    #fff;
  box-shadow: 0 10px 22px rgba(77, 7, 155, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.site-header .product-shutter a:hover,
.site-header .product-shutter a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(227, 6, 19, 0.32);
  box-shadow: 0 18px 34px rgba(77, 7, 155, 0.16);
  outline: none;
}

.site-header .product-shutter img {
  width: 100%;
  height: 76px;
  object-fit: contain;
  padding: 8px 10px 2px;
  background: transparent;
  transition: transform 0.24s ease;
}

.site-header .product-shutter a:hover img,
.site-header .product-shutter a:focus-visible img {
  transform: scale(1.08);
}

.site-header .product-shutter span {
  position: static;
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 7px 8px;
  border-radius: 0;
  background: linear-gradient(135deg, var(--red), var(--purple));
  color: #fff;
  box-shadow: none;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.15;
}

body[data-page="products"] .product-card,
body[data-page="products"] .product-card img {
  will-change: auto;
}

@media (max-width: 1180px) {
  .site-header .product-shutter {
    grid-template-columns: repeat(5, minmax(112px, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header .product-shutter {
    position: static;
    width: 100%;
    max-height: 56vh;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transform: none;
    padding: 10px;
    overflow-y: auto;
  }

  .site-header .product-shutter a {
    min-height: 104px;
    grid-template-rows: 68px auto;
  }

  .site-header .product-shutter img {
    height: 68px;
  }
}

/* Final mobile preview correction */
@media (max-width: 860px) {
  .floating-social {
    right: 8px !important;
    top: auto !important;
    bottom: 18px !important;
    transform: none !important;
    gap: 7px !important;
  }

  .floating-social a,
  .floating-social button {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
  }

  .floating-social svg {
    width: 21px !important;
    height: 21px !important;
  }
}

/* August action polish: linked ribbon, current socials, and mobile social dock */
.marquee-track a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-inline: 8px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,0.13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.24), 0 10px 24px rgba(77,7,155,0.14);
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.marquee-track a:hover,
.marquee-track a:focus-visible {
  transform: translateY(-3px) scale(1.035);
  border-color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.38), 0 16px 30px rgba(77,7,155,0.2);
  outline: none;
}

.floating-social {
  right: 18px !important;
  gap: 11px !important;
}

.floating-social a,
.floating-social button {
  position: relative;
  overflow: hidden;
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  border-radius: 50% !important;
  transition: transform 0.28s cubic-bezier(.2,.8,.2,1), box-shadow 0.28s ease, filter 0.28s ease !important;
}

.floating-social a::after,
.floating-social button::after,
.site-footer .footer-social a::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 55%;
  transform: rotate(20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  transition: left 0.5s ease;
}

.floating-social a:hover::after,
.floating-social button:hover::after,
.site-footer .footer-social a:hover::after { left: 130%; }

.floating-social a:hover,
.floating-social button:hover {
  transform: translateX(-7px) scale(1.1) !important;
  filter: saturate(1.12);
  box-shadow: 0 20px 38px rgba(36,16,51,0.26) !important;
}

.floating-social svg {
  width: 28px !important;
  height: 28px !important;
  position: relative;
  z-index: 1;
}

.floating-social .social-call { background: linear-gradient(135deg, var(--red), #b70028) !important; }
.floating-social .social-whatsapp { background: #25d366 !important; }
.floating-social .social-instagram { background: radial-gradient(circle at 30% 105%, #fdf497 0 18%, #fd5949 42%, #d6249f 62%, #285aeb 100%) !important; }
.floating-social .social-facebook { background: #1877f2 !important; }
.floating-social .social-top { background: linear-gradient(135deg, var(--purple), var(--red)) !important; }

.site-footer .footer-social a {
  position: relative;
  overflow: hidden;
}

.site-footer .footer-social a[aria-label="Call Unitouch"] { background: linear-gradient(135deg, var(--red), #b70028); }
.site-footer .footer-social a[aria-label="WhatsApp"] { background: #25d366; }
.site-footer .footer-social a[aria-label="Instagram"] { background: radial-gradient(circle at 30% 105%, #fdf497 0 18%, #fd5949 42%, #d6249f 62%, #285aeb 100%); }
.site-footer .footer-social a[aria-label="Facebook"] { background: #1877f2; }

@media (max-width: 860px) {
  .marquee-track a {
    min-height: 36px;
    margin-inline: 5px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .floating-social {
    left: 50% !important;
    right: auto !important;
    bottom: 12px !important;
    width: min(94vw, 330px);
    display: flex !important;
    justify-content: center;
    padding: 8px;
    border: 1px solid rgba(77,7,155,0.14);
    border-radius: 999px;
    background: rgba(255,255,255,0.84);
    box-shadow: 0 18px 40px rgba(36,16,51,0.18);
    backdrop-filter: blur(14px);
    transform: translateX(-50%) !important;
  }

  .floating-social a,
  .floating-social button {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
  }

  .floating-social a:hover,
  .floating-social button:hover {
    transform: translateY(-5px) scale(1.08) !important;
  }

  .floating-social svg {
    width: 21px !important;
    height: 21px !important;
  }
}
