@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap");

:root {
  --red: #e30613;
  --blue: #073d8d;
  --blue-2: #0b66c3;
  --black: #101216;
  --ink: #1c2430;
  --muted: #657083;
  --line: #e6eaf0;
  --soft: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(7, 29, 65, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  text-rendering: geometricPrecision;
}

#siteHeader,
main,
#siteFooter,
#floatingActions {
  position: relative;
}

#siteHeader {
  z-index: 55;
}

main,
#siteFooter {
  z-index: 1;
}

.site-motion-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0.34;
  pointer-events: none;
}

.motion-grid,
.motion-scanline,
.motion-belt {
  position: absolute;
  pointer-events: none;
}

.motion-grid {
  inset: -20%;
  background:
    linear-gradient(90deg, rgba(7, 61, 141, 0.032) 1px, transparent 1px),
    linear-gradient(0deg, rgba(227, 6, 19, 0.018) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.42;
  transform: rotate(-5deg);
  animation: pageGridDrift 42s linear infinite;
}

.motion-scanline {
  top: -18%;
  bottom: -18%;
  width: 22vw;
  min-width: 210px;
  background: linear-gradient(90deg, transparent, rgba(227, 6, 19, 0.035), rgba(11, 102, 195, 0.035), transparent);
  filter: blur(2px);
  opacity: 0.26;
  transform: skewX(-18deg);
  animation: pageScan 18s ease-in-out infinite;
}

.motion-belt {
  left: -12%;
  width: 124%;
  height: 54px;
  border-top: 1px solid rgba(7, 61, 141, 0.035);
  border-bottom: 1px solid rgba(227, 6, 19, 0.025);
  background:
    repeating-linear-gradient(90deg, transparent 0 110px, rgba(7, 61, 141, 0.04) 110px 112px),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  opacity: 0.18;
}

.motion-belt-a {
  top: 24%;
  transform: rotate(-7deg);
  animation: beltSlide 32s linear infinite;
}

.motion-belt-b {
  bottom: 18%;
  transform: rotate(5deg);
  animation: beltSlide 38s linear infinite reverse;
}

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

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.top-strip {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(227, 6, 19, 0.18), transparent 28%),
    linear-gradient(270deg, rgba(11, 102, 195, 0.22), transparent 30%),
    var(--black);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.top-strip::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--blue-2), var(--red));
  content: "";
  opacity: 0.9;
}

.top-strip .container {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.top-links a,
.top-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 5px 10px 5px 6px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.top-links > a {
  min-width: max-content;
}

.top-highlight {
  border-color: rgba(227, 6, 19, 0.42);
  background: rgba(227, 6, 19, 0.14);
  color: #fff;
}

.whatsapp-chip {
  border-color: rgba(31, 168, 85, 0.42) !important;
  background: rgba(31, 168, 85, 0.12) !important;
}

.top-links a:hover,
.top-highlight:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.top-icon {
  display: inline-grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.top-icon svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.top-highlight .top-icon {
  background: var(--red);
}

.whatsapp-mini {
  background: #1fa855;
}

.social-icons {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 2px;
}

.social-icon {
  display: inline-grid !important;
  width: 30px;
  height: 30px;
  min-height: 30px !important;
  min-width: 30px !important;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 50% !important;
  padding: 0 !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff;
}

.social-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.social-icon:hover {
  background: var(--red) !important;
  border-color: rgba(227, 6, 19, 0.72) !important;
}

.social-icon.is-disabled {
  opacity: 0.62;
  cursor: default;
}

.social-icon.is-disabled:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(230, 234, 240, 0.9);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

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

.brand img {
  width: 292px;
  max-height: 76px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #253044;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 26px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(227, 6, 19, 0.22);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(7, 61, 141, 0.18);
}

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

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.btn-outline {
  border-color: var(--line);
  background: var(--white);
  color: var(--blue);
}

.section {
  padding: 88px 0;
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.hero .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.hero .eyebrow {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 3px solid var(--red);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px rgba(227, 6, 19, 0.12);
}

.section-title {
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--black);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
}

.section-dark .section-title,
.hero .section-title {
  color: var(--white);
}

.section-copy {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-dark .section-copy,
.hero .section-copy {
  color: rgba(255, 255, 255, 0.78);
}

.hero {
  position: relative;
  min-height: calc(100vh - 114px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(9, 13, 20, 0.92) 0%, rgba(9, 13, 20, 0.78) 42%, rgba(9, 13, 20, 0.26) 100%),
    url("assets/industrial-packaging-hero.jpg") center / cover no-repeat;
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(16, 18, 22, 0.78), rgba(16, 18, 22, 0));
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 660px) minmax(320px, 392px);
  gap: 30px;
  padding: 72px 0 54px;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(36px, 5.2vw, 62px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.65vw, 19px);
  font-weight: 500;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(7, 61, 141, 0.36);
  backdrop-filter: blur(12px);
}

.hero-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.76);
}

.hero-form {
  position: relative;
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 254, 0.96));
  color: var(--ink);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.hero-form::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--blue-2));
  content: "";
}

.hero-form-head {
  position: relative;
  margin-bottom: 12px;
  padding-right: 70px;
}

.hero-form-head span {
  display: inline-flex;
  margin-bottom: 7px;
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(227, 6, 19, 0.08);
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-form-head::after {
  position: absolute;
  top: 2px;
  right: 0;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 30%, rgba(255, 255, 255, 0.75), transparent 34%),
    linear-gradient(135deg, var(--blue), var(--black));
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  content: "SC";
  box-shadow: 0 12px 26px rgba(7, 61, 141, 0.22);
}

.hero-form-head strong {
  display: block;
  color: var(--black);
  font-size: 23px;
  line-height: 1.05;
}

.hero-form-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}

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

.hero-form .field {
  gap: 4px;
}

.hero-form .field label {
  color: #384559;
  font-size: 11px;
  line-height: 1.1;
}

.hero-form .field input,
.hero-form .field select,
.hero-form .field textarea {
  border-color: #dfe5ee;
  padding: 9px 10px;
  background: #fff;
  font-size: 13px;
}

.hero-form .field textarea {
  min-height: 58px;
}

.hero-form .btn {
  width: 100%;
  min-height: 42px;
  margin-top: 10px;
  box-shadow: 0 14px 28px rgba(227, 6, 19, 0.28);
}

.hero-form .form-note {
  margin-top: 6px;
}

.hero-form-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 9px;
}

.hero-form-trust span {
  flex: 1 1 auto;
  border: 1px solid #e3eaf4;
  border-radius: 999px;
  padding: 6px 8px;
  background: #fff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.stats-section {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  padding: 0 0 42px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  overflow: visible;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
}

.stat {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  border: 1px solid rgba(216, 222, 232, 0.86);
  border-radius: var(--radius);
  padding: 20px 18px 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 253, 0.96));
  box-shadow: 0 18px 44px rgba(7, 29, 65, 0.12);
}

.stat::after {
  position: absolute;
  right: -36px;
  bottom: -48px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(7, 61, 141, 0.08);
  content: "";
}

.stat-icon {
  display: inline-flex;
  min-width: 34px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.stat strong {
  display: block;
  margin-top: 12px;
  color: var(--blue);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 800;
  line-height: 1;
}

.stat em {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
  line-height: 1.25;
}

.stat:nth-child(2) .stat-icon,
.stat:nth-child(4) .stat-icon {
  background: var(--red);
}

.stat:nth-child(3) .stat-icon {
  background: var(--blue);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

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

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

.products-catalog-section {
  position: relative;
  overflow: hidden;
}

.products-catalog-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 61, 141, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 61, 141, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  opacity: 0.7;
}

.products-catalog-section .container {
  position: relative;
  z-index: 1;
}

.catalog-finder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
  border: 1px solid #dfe7f2;
  border-radius: var(--radius);
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 254, 0.96));
  box-shadow: 0 20px 52px rgba(7, 29, 65, 0.1);
}

.catalog-finder h2 {
  max-width: 680px;
  margin: 0;
  color: var(--black);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
}

.catalog-search {
  display: grid;
  gap: 7px;
}

.catalog-search span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-search input {
  min-height: 50px;
  width: 100%;
  border: 1px solid #d9e1ed;
  border-radius: var(--radius);
  padding: 0 15px;
  background: #fff;
  color: var(--black);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  box-shadow: inset 0 0 0 1px transparent;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.catalog-search input:focus {
  border-color: rgba(7, 61, 141, 0.58);
  box-shadow: 0 0 0 4px rgba(7, 61, 141, 0.1);
}

.catalog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 14px;
}

.catalog-filter-bar button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #dce3ee;
  border-radius: 999px;
  padding: 9px 13px;
  background: #fff;
  color: #253044;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(7, 29, 65, 0.05);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.catalog-filter-bar button b {
  display: inline-grid;
  min-width: 24px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: #edf3fb;
  color: var(--blue);
  font-size: 11px;
}

.catalog-filter-bar button:hover,
.catalog-filter-bar button.active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
  transform: translateY(-1px);
}

.catalog-filter-bar button:hover b,
.catalog-filter-bar button.active b {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.catalog-result-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.catalog-result-line strong {
  color: var(--black);
  font-size: 15px;
}

.catalog-product-grid {
  gap: 16px;
}

.catalog-empty {
  border: 1px dashed #cbd5e3;
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
  text-align: center;
}

.catalog-empty b,
.catalog-empty span {
  display: block;
}

.catalog-empty b {
  color: var(--black);
}

.catalog-empty span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.product-range-section {
  position: relative;
  overflow: hidden;
}

.product-range-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 61, 141, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 61, 141, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  opacity: 0.6;
  animation: rangeGridMove 18s linear infinite;
}

.product-range-section .container {
  position: relative;
  z-index: 1;
}

.product-range-layout {
  display: block;
}

.product-flow-rail {
  position: relative;
  overflow: hidden;
  margin: -8px 0 28px;
  border: 1px solid rgba(216, 222, 232, 0.92);
  border-radius: var(--radius);
  padding: 12px 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 253, 0.96)),
    #fff;
  box-shadow: 0 18px 44px rgba(7, 29, 65, 0.08);
}

.product-flow-rail::before,
.product-flow-rail::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 94px;
  content: "";
  pointer-events: none;
}

.product-flow-rail::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}

.product-flow-rail::after {
  right: 0;
  background: linear-gradient(270deg, #fff, transparent);
}

.product-flow-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 0 12px;
  animation: productRailMove 34s linear infinite;
}

.product-flow-rail:hover .product-flow-track {
  animation-play-state: paused;
}

.product-flow-item {
  display: grid;
  grid-template-columns: 74px minmax(140px, 178px);
  align-items: center;
  gap: 10px;
  min-height: 82px;
  border: 1px solid #dfe6f0;
  border-radius: var(--radius);
  padding: 8px 12px 8px 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 12px 26px rgba(7, 29, 65, 0.06);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.product-flow-item:hover,
.product-flow-item.active {
  border-color: rgba(227, 6, 19, 0.52);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(7, 29, 65, 0.12);
}

.flow-media {
  display: grid;
  width: 74px;
  height: 60px;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 70%, rgba(7, 61, 141, 0.12), transparent 56%),
    #f3f7fc;
}

.flow-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2px;
  filter: drop-shadow(0 8px 9px rgba(16, 24, 40, 0.12));
}

.flow-copy {
  display: grid;
  gap: 3px;
}

.flow-copy b {
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.18;
}

.flow-copy small {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-spotlight {
  position: sticky;
  top: 108px;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(216, 222, 232, 0.95);
  border-radius: var(--radius);
  padding: 24px;
  background:
    radial-gradient(circle at 74% 36%, rgba(227, 6, 19, 0.16), transparent 28%),
    radial-gradient(circle at 30% 76%, rgba(11, 102, 195, 0.18), transparent 30%),
    linear-gradient(160deg, #ffffff 0%, #eef4fb 100%);
  box-shadow: 0 24px 66px rgba(7, 29, 65, 0.14);
}

.spotlight-copy {
  position: relative;
  z-index: 2;
}

.spotlight-copy span {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 7px 11px;
  background: var(--black);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.spotlight-copy h3 {
  margin: 0 0 10px;
  color: var(--black);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.04;
}

.spotlight-copy p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.spotlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.spotlight-tags b {
  border: 1px solid #dfe6f0;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue);
  font-size: 12px;
}

.spotlight-machine {
  position: absolute;
  right: -40px;
  bottom: 48px;
  left: 12px;
  z-index: 1;
  animation: machineFloat 4.8s ease-in-out infinite;
}

.spotlight-machine img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 28px 24px rgba(16, 24, 40, 0.18));
}

.spotlight-orbit {
  position: absolute;
  right: -110px;
  bottom: 20px;
  width: 390px;
  height: 390px;
  border: 1px dashed rgba(7, 61, 141, 0.24);
  border-radius: 50%;
  animation: orbitSpin 16s linear infinite;
}

.spotlight-orbit::before,
.spotlight-orbit::after {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.spotlight-orbit::before {
  top: 38px;
  left: 58px;
}

.spotlight-orbit::after {
  right: 44px;
  bottom: 76px;
  background: var(--blue);
}

.spotlight-progress {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(7, 61, 141, 0.12);
}

.spotlight-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--blue-2));
  transform-origin: left;
  animation: spotlightProgress 3.6s linear infinite;
}

.product-range-panel {
  min-width: 0;
}

.product-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
}

.product-filter-bar button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #dce3ee;
  border-radius: 999px;
  padding: 9px 13px;
  background: #fff;
  color: #253044;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.product-filter-bar button b {
  display: inline-grid;
  min-width: 24px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: #edf3fb;
  color: var(--blue);
  font-size: 11px;
}

.product-filter-bar button:hover,
.product-filter-bar button.active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
  transform: translateY(-1px);
}

.product-filter-bar button:hover b,
.product-filter-bar button.active b {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

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

.product-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(216, 222, 232, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 14px 38px rgba(20, 33, 54, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: cardRise 0.36s ease both;
}

.product-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--blue-2));
  content: "";
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(7, 29, 65, 0.15);
}

.product-card.is-active {
  border-color: rgba(227, 6, 19, 0.42);
  box-shadow: 0 24px 58px rgba(7, 29, 65, 0.15);
}

.product-card.is-active::before {
  height: 5px;
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 58%, rgba(7, 61, 141, 0.12), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #eef3f8 100%);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px 12px 8px;
  filter: drop-shadow(0 18px 18px rgba(16, 24, 40, 0.13));
  transition: transform 0.22s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.025);
}

@keyframes rangeGridMove {
  from { background-position: 0 0, 0 0; }
  to { background-position: 42px 42px, 42px 42px; }
}

@keyframes pageGridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 144px 144px, 144px 144px; }
}

@keyframes pageScan {
  0% { left: -34vw; }
  48%, 100% { left: 116vw; }
}

@keyframes beltSlide {
  from { background-position: 0 0, 0 0; }
  to { background-position: 168px 0, 0 0; }
}

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

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

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

@keyframes spotlightProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(16, 18, 22, 0.82);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.product-badge-right {
  right: 12px;
  left: auto;
  background: var(--red);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 18px 16px;
}

.product-body h3 {
  min-height: 52px;
  margin: 0 0 8px;
  color: var(--black);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.22;
}

.product-body p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: auto 0 14px;
}

.product-meta span {
  border: 1px solid #e5eaf1;
  border-radius: 6px;
  padding: 7px 8px;
  background: #f7faff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 76px;
  gap: 10px;
}

.quote-card-btn {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 11px 14px;
  background: linear-gradient(135deg, var(--red), #b90410);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(227, 6, 19, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.quote-card-btn::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.22) 45%, transparent 58%);
  content: "";
  transform: translateX(-120%);
  transition: transform 0.42s ease;
}

.quote-card-btn span,
.quote-card-btn svg {
  position: relative;
  z-index: 1;
}

.quote-card-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.18s ease;
}

.quote-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(227, 6, 19, 0.32);
}

.quote-card-btn:hover::before {
  transform: translateX(120%);
}

.quote-card-btn:hover svg {
  transform: translateX(3px);
}

.details-card-btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dce3ee;
  border-radius: var(--radius);
  background: #fff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.details-card-btn:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

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

.feature {
  border-top: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 29, 65, 0.08);
}

.feature b {
  display: block;
  margin-bottom: 8px;
  color: var(--black);
  font-size: 18px;
  font-weight: 800;
}

.feature p {
  margin: 0;
  color: var(--muted);
}

.why-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.why-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 30px 74px rgba(7, 29, 65, 0.16);
}

.why-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 18, 22, 0.62), rgba(16, 18, 22, 0.04) 58%);
  content: "";
}

.why-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.why-visual-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.why-visual-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--black);
  font-size: 18px;
  line-height: 1.2;
}

.why-visual-card span {
  color: var(--muted);
  font-size: 14px;
}

.why-content .cta-row {
  margin-top: 22px;
}

.why-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.why-feature {
  position: relative;
  overflow: hidden;
  border: 1px solid #e1e7f0;
  border-radius: var(--radius);
  padding: 20px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(7, 29, 65, 0.07);
}

.why-feature::before {
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--blue-2));
  content: "";
}

.why-feature b {
  display: block;
  margin-bottom: 8px;
  color: var(--black);
  font-size: 16px;
}

.why-feature span {
  color: var(--muted);
  font-size: 14px;
}

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

.video-placeholder {
  position: relative;
  min-height: 210px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(227, 6, 19, 0.22), rgba(7, 61, 141, 0.28)),
    #171b22;
}

.video-placeholder iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.play {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.26);
}

.video-placeholder span:last-child {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(15, 18, 24, 0.72);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.industries-showcase {
  overflow: hidden;
}

.industries-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 1.02fr);
  gap: 34px;
  align-items: center;
}

.industries-content .section-title {
  max-width: 620px;
}

.industries-content .btn {
  margin-top: 22px;
}

.industry-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.industry {
  display: flex;
  min-height: 122px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background:
    linear-gradient(180deg, #ffffff, #f8fbff);
  color: var(--black);
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(7, 29, 65, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.industry:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(7, 29, 65, 0.11);
}

.industry small {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(227, 6, 19, 0.1);
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.industry span {
  color: var(--black);
  font-size: 17px;
}

.industry em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.35;
}

.industries-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 500px;
  box-shadow: 0 28px 70px rgba(7, 29, 65, 0.15);
}

.industries-visual img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.industries-visual-strip {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.industries-visual-strip span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 9px;
  background: rgba(16, 18, 22, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  backdrop-filter: blur(8px);
}

.dealer-band {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 34px;
  align-items: center;
}

.dealer-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: #171b22;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
}

.dealer-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(16, 18, 22, 0.02) 0%, rgba(16, 18, 22, 0.78) 100%),
    linear-gradient(90deg, rgba(7, 61, 141, 0.18), rgba(227, 6, 19, 0.12));
  content: "";
}

.dealer-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.dealer-visual:hover img {
  transform: scale(1.035);
}

.dealer-visual-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(16, 18, 22, 0.76);
  color: #fff;
  backdrop-filter: blur(12px);
}

.dealer-visual-card strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 22px;
  line-height: 1.12;
}

.dealer-visual-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.benefit-list,
.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.benefit-list li,
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.86);
}

.check-list li {
  color: var(--ink);
}

.tick {
  flex: 0 0 auto;
  color: var(--red);
  font-weight: 900;
}

.lead-panel,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #263347;
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d8dee8;
  border-radius: var(--radius);
  padding: 13px 14px;
  background: #fbfcfe;
  color: var(--black);
  outline: none;
  transition: border 0.16s ease, box-shadow 0.16s ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 4px rgba(11, 102, 195, 0.12);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.modal-open {
  overflow: hidden;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.quote-modal.open {
  display: flex;
}

.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 19, 0.74);
  backdrop-filter: blur(8px);
}

.quote-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--white);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
}

.quote-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--black);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.quote-dialog-head {
  margin: 0 42px 18px 0;
}

.quote-dialog-head span {
  display: inline-flex;
  margin-bottom: 8px;
  border-radius: 999px;
  padding: 6px 11px;
  background: rgba(227, 6, 19, 0.09);
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.quote-dialog-head h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(28px, 5vw, 38px);
  line-height: 1.05;
}

.quote-dialog-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.quote-form .btn {
  width: 100%;
  margin-top: 14px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 20px 0;
}

.contact-item {
  border-left: 3px solid var(--red);
  padding: 8px 0 8px 14px;
}

.contact-item b {
  display: block;
  color: var(--black);
}

.map-frame {
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 390px;
  border: 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 58px;
  background:
    linear-gradient(90deg, rgba(16, 18, 22, 0.93), rgba(7, 61, 141, 0.82)),
    url("assets/industrial-packaging-hero.jpg") center / cover no-repeat;
  color: var(--white);
}

.page-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  opacity: 0.16;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

body[data-product] .page-hero {
  padding: 76px 0 54px;
  background:
    linear-gradient(100deg, rgba(16, 18, 22, 0.96) 0%, rgba(7, 61, 141, 0.9) 58%, rgba(227, 6, 19, 0.52) 100%),
    url("assets/industrial-packaging-hero.jpg") center / cover no-repeat;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0 0 12px;
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 44px;
  align-items: start;
}

.detail-visual-stack {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 14px;
}

.detail-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 58%, rgba(7, 61, 141, 0.14), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
  box-shadow: 0 24px 70px rgba(7, 29, 65, 0.14);
}

.detail-media::before {
  position: absolute;
  right: 10%;
  bottom: 13%;
  left: 10%;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 24, 40, 0.13);
  filter: blur(12px);
  content: "";
}

.detail-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  border-radius: 999px;
  padding: 7px 12px;
  background: var(--black);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(310px, 34vw, 470px);
  object-fit: contain;
  padding: 26px 18px 12px;
  filter: drop-shadow(0 26px 24px rgba(16, 24, 40, 0.16));
  transition: opacity 0.18s ease, transform 0.24s ease;
}

.detail-media img.is-changing {
  opacity: 0.25;
  transform: scale(0.985);
}

.gallery-controls {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

.gallery-controls > button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(15, 18, 24, 0.72);
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  pointer-events: auto;
  transition: background 0.18s ease, transform 0.18s ease;
}

.gallery-controls > button:hover {
  background: var(--red);
  transform: translateY(-1px);
}

.gallery-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(15, 18, 24, 0.58);
  pointer-events: auto;
}

.gallery-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  transition: width 0.18s ease, background 0.18s ease;
}

.gallery-dots button.active {
  width: 24px;
  background: #fff;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.detail-gallery button {
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  border: 1px solid #dfe6f0;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 62%, rgba(7, 61, 141, 0.1), transparent 48%),
    #fff;
  box-shadow: 0 10px 24px rgba(7, 29, 65, 0.06);
  cursor: pointer;
  padding: 0;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.detail-gallery button:hover,
.detail-gallery button.active {
  border-color: rgba(227, 6, 19, 0.48);
  transform: translateY(-2px);
}

.detail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

.detail-assurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.detail-assurance div {
  border: 1px solid #dfe6f0;
  border-radius: var(--radius);
  padding: 13px 10px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(7, 29, 65, 0.07);
}

.detail-assurance b,
.detail-assurance span {
  display: block;
}

.detail-assurance b {
  color: var(--blue);
  font-size: 14px;
  line-height: 1.1;
}

.detail-assurance span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.detail-content h2 {
  margin: 0 0 12px;
  color: var(--black);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.05;
}

.product-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 24px 0;
  border: 1px solid rgba(227, 6, 19, 0.16);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 18px;
  background:
    linear-gradient(90deg, rgba(227, 6, 19, 0.075), rgba(7, 61, 141, 0.045)),
    #fff;
  box-shadow: 0 16px 42px rgba(7, 29, 65, 0.08);
}

.product-cta-panel b,
.product-cta-panel span {
  display: block;
}

.product-cta-panel b {
  color: var(--black);
  font-size: 17px;
  line-height: 1.2;
}

.product-cta-panel span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.product-cta-panel .btn {
  flex: 0 0 auto;
}

.product-demo-panel {
  margin: 26px 0;
  border: 1px solid #dfe7f2;
  border-radius: var(--radius);
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(7, 61, 141, 0.06), rgba(227, 6, 19, 0.045)),
    #fff;
  box-shadow: 0 20px 52px rgba(7, 29, 65, 0.1);
}

.product-video-frame {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid #dfe7f2;
  border-radius: calc(var(--radius) - 2px);
  background:
    radial-gradient(circle at 50% 42%, rgba(227, 6, 19, 0.18), transparent 36%),
    linear-gradient(135deg, #0f1218, #073d8d);
}

.product-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  display: grid;
  min-height: 280px;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
  color: #fff;
}

.play-mark {
  position: relative;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(227, 6, 19, 0.92);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.play-mark::before {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
  content: "";
}

.video-placeholder b {
  color: #fff;
  font-size: 18px;
}

.video-placeholder small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.product-spec-panel {
  overflow: hidden;
  margin: 26px 0;
  border: 1px solid #dfe7f2;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 46px rgba(7, 29, 65, 0.09);
}

.product-spec-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  background:
    linear-gradient(135deg, rgba(7, 61, 141, 0.98), rgba(11, 102, 195, 0.92)),
    var(--blue);
  color: #fff;
}

.product-spec-head span,
.product-spec-head small {
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-spec-head h3 {
  margin: 5px 0 0;
  color: #fff;
  font-size: 21px;
  line-height: 1.2;
}

.product-spec-head small {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.spec-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #dfe7f2;
}

.spec-summary-item {
  min-width: 0;
  padding: 15px 16px;
  background:
    linear-gradient(180deg, #ffffff, #f7fbff);
}

.spec-summary-item small,
.spec-summary-item b {
  display: block;
}

.spec-summary-item small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.spec-summary-item b {
  margin-top: 7px;
  color: var(--black);
  font-size: 16px;
  line-height: 1.22;
}

.product-spec-table {
  display: grid;
  padding: 8px 0;
}

.product-spec-row {
  display: grid;
  grid-template-columns: minmax(170px, 0.48fr) minmax(0, 1fr);
  gap: 18px;
  padding: 13px 20px;
  border-top: 1px solid #eef2f7;
}

.product-spec-row:first-child {
  border-top: 0;
}

.product-spec-row:nth-child(even) {
  background: #f8fbff;
}

.product-spec-row b {
  color: var(--blue);
  font-size: 14px;
  line-height: 1.35;
}

.product-spec-row span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.detail-section {
  margin-top: 26px;
}

.detail-section h3,
.related-product-strip h3 {
  margin: 0 0 14px;
  color: var(--black);
  font-size: 22px;
  line-height: 1.2;
}

.application-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.application-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid #e4eaf2;
  border-radius: var(--radius);
  padding: 12px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.tick {
  display: inline-grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(7, 61, 141, 0.1);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.detail-support-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.detail-support-strip span {
  border-radius: 999px;
  padding: 8px 11px;
  background: #edf4fd;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.related-product-strip {
  margin-top: 32px;
}

.related-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.related-product {
  display: grid;
  gap: 9px;
  border: 1px solid #e0e7f1;
  border-radius: var(--radius);
  padding: 10px;
  background: #fff;
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: 0 12px 28px rgba(7, 29, 65, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.related-product:hover {
  border-color: rgba(227, 6, 19, 0.36);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(7, 29, 65, 0.11);
}

.related-product img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 64%, rgba(7, 61, 141, 0.11), transparent 50%),
  #f3f7fc;
  padding: 4px;
}

body[data-product] #inquiry {
  background:
    linear-gradient(135deg, rgba(7, 61, 141, 0.055), rgba(227, 6, 19, 0.045)),
    var(--soft);
}

body[data-product] #inquiry .lead-panel {
  border-top: 4px solid var(--red);
  box-shadow: 0 24px 64px rgba(7, 29, 65, 0.13);
}

.site-footer {
  background: #0f1218;
  color: rgba(255, 255, 255, 0.78);
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 30px;
}

.footer-logo {
  width: 230px;
  margin-bottom: 16px;
  border-radius: 4px;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 16px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  gap: 10px;
}

.float-btn {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.float-whatsapp {
  background: #1fa855;
}

.float-call {
  background: var(--red);
}

.animate-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 1040px) {
  .product-grid,
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid,
  .video-grid,
  .why-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-actions .btn {
    display: none;
  }
}

@media (max-width: 820px) {
  .top-strip .container {
    min-height: 32px;
    align-items: center;
    flex-direction: row;
    padding: 5px 0;
    font-size: 12px;
  }

  .top-strip .container > span {
    display: none;
  }

  .top-links {
    width: 100%;
    justify-content: center;
  }

  .top-links a[href^="mailto"] {
    display: none;
  }

  .top-links a[href*="maps.app"] {
    display: none;
  }

  .brand img {
    width: 236px;
    max-height: 62px;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

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

  .nav-links a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    background-position: center right;
  }

  .hero::before {
    height: 58%;
    background: linear-gradient(0deg, rgba(16, 18, 22, 0.9), rgba(16, 18, 22, 0.08));
  }

  .hero-inner,
  .dealer-band,
  .split,
  .product-detail,
  .why-layout,
  .industries-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    align-self: auto;
  }

  .hero-form {
    align-self: auto;
    max-width: 480px;
  }

  .stats-grid,
  .product-grid,
  .feature-grid,
  .video-grid,
  .industry-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .product-flow-rail {
    margin-bottom: 22px;
  }

  .product-flow-item {
    grid-template-columns: 62px minmax(132px, 160px);
    min-height: 74px;
  }

  .flow-media {
    width: 62px;
    height: 54px;
  }

  .stats-section {
    margin-top: 0;
    padding-top: 28px;
  }

  .why-visual,
  .why-visual img,
  .industries-visual,
  .industries-visual img {
    min-height: 380px;
  }

  .dealer-visual,
  .dealer-visual img {
    min-height: 360px;
  }

  .section {
    padding: 64px 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-visual-stack {
    position: static;
  }

  .product-cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-cta-panel .btn {
    width: auto;
  }

}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .top-links {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .top-links > a {
    min-height: 30px;
    padding: 5px 9px 5px 5px;
    font-size: 11px;
    white-space: nowrap;
  }

  .top-links > a[href*="wa.me"] span:last-child {
    display: none;
  }

  .top-links > a[href="tel:+919810846136"] {
    display: none;
  }

  .top-highlight span:last-child {
    display: none;
  }

  .top-highlight {
    min-width: 30px;
    padding: 5px;
  }

  .social-icons {
    gap: 5px;
  }

  .social-icon {
    width: 28px;
    height: 28px;
    min-width: 28px !important;
    min-height: 28px !important;
  }

  .top-icon {
    width: 20px;
    height: 20px;
  }

  .nav {
    min-height: 58px;
    gap: 12px;
  }

  .brand img {
    width: 198px;
    max-height: 52px;
  }

  .footer-logo {
    width: 190px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(9, 13, 20, 0.88) 0%, rgba(9, 13, 20, 0.8) 42%, rgba(9, 13, 20, 0.64) 100%),
      url("assets/industrial-packaging-hero.jpg") 63% center / cover no-repeat;
  }

  .hero-inner {
    gap: 16px;
    padding: 32px 0 24px;
  }

  .hero .eyebrow {
    margin-bottom: 9px;
    padding: 6px 10px;
    font-size: 10px;
  }

  .hero h1 {
    max-width: 360px;
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 1.04;
  }

  .hero p {
    max-width: 330px;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 40px;
    padding: 10px 8px;
    font-size: 12px;
  }

  .hero-actions .btn-ghost {
    grid-column: 1 / -1;
  }

  .hero-form {
    border-color: rgba(255, 255, 255, 0.42);
    border-radius: 10px;
    padding: 13px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  }

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

  .hero-form .field.full {
    grid-column: 1 / -1;
  }

  .hero-form .field label {
    display: none;
    font-size: 10px;
  }

  .hero-form .field input,
  .hero-form .field select,
  .hero-form .field textarea {
    min-height: 36px;
    border-radius: 8px;
    padding: 8px 9px;
    font-size: 12px;
  }

  .hero-form .field textarea {
    min-height: 38px;
  }

  .hero-form-head strong {
    font-size: 19px;
  }

  .hero-form-head {
    margin-bottom: 9px;
    padding-right: 48px;
  }

  .hero-form-head span {
    margin-bottom: 5px;
    padding: 4px 8px;
    font-size: 10px;
  }

  .hero-form-head::after {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .hero-form-head p {
    display: none;
  }

  .hero-form .btn {
    min-height: 40px;
    margin-top: 8px;
    font-size: 13px;
  }

  .hero-form-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 8px;
  }

  .hero-form-trust span {
    padding: 5px 6px;
    font-size: 10px;
  }

  .quote-dialog {
    padding: 20px;
  }

  .quote-dialog-head {
    margin-right: 34px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions .btn,
  .cta-row .btn {
    flex: 1 1 100%;
  }

  .stats-grid,
  .product-grid,
  .feature-grid,
  .video-grid,
  .industry-grid,
  .benefit-list,
  .check-list,
  .application-list,
  .form-grid,
  .why-feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .spec-summary-grid,
  .product-spec-row {
    grid-template-columns: 1fr;
  }

  .product-spec-head {
    flex-direction: column;
  }

  .product-spec-head small {
    white-space: normal;
  }

  .product-spec-row {
    gap: 5px;
    padding: 12px 15px;
  }

  .dynamic-product-grid {
    grid-template-columns: 1fr;
  }

  .products-catalog-section {
    padding-top: 34px;
  }

  .catalog-finder {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 12px;
    padding: 14px;
  }

  .catalog-finder .eyebrow {
    margin-bottom: 7px;
    font-size: 10px;
  }

  .catalog-finder h2 {
    font-size: 22px;
  }

  .catalog-search span {
    display: none;
  }

  .catalog-search input {
    min-height: 42px;
    border-radius: 8px;
    font-size: 13px;
  }

  .catalog-filter-bar {
    position: sticky;
    top: 76px;
    z-index: 12;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-right: -12px;
    margin-left: -12px;
    padding: 8px 12px 10px;
    background: rgba(244, 247, 251, 0.94);
    backdrop-filter: blur(12px);
  }

  .catalog-filter-bar button {
    flex: 0 0 auto;
    padding: 8px 11px;
    font-size: 12px;
  }

  .catalog-result-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 12px;
    font-size: 12px;
  }

  .catalog-product-grid {
    gap: 10px;
  }

  .catalog-product-grid .product-card {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 0;
  }

  .catalog-product-grid .product-card::before {
    width: 4px;
    height: 100%;
  }

  .catalog-product-grid .product-media {
    aspect-ratio: auto;
    min-height: 128px;
    height: 100%;
    border-right: 1px solid #edf1f6;
  }

  .catalog-product-grid .product-media img {
    padding: 8px 6px;
  }

  .catalog-product-grid .product-badge {
    top: 7px;
    left: 7px;
    padding: 4px 6px;
    font-size: 8px;
  }

  .catalog-product-grid .product-badge-right {
    display: none;
  }

  .catalog-product-grid .product-body {
    min-width: 0;
    padding: 10px;
  }

  .catalog-product-grid .product-body h3 {
    min-height: 0;
    margin-bottom: 5px;
    font-size: 13px;
    line-height: 1.18;
  }

  .catalog-product-grid .product-body p {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 8px;
    color: #657083;
    font-size: 11px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .catalog-product-grid .product-meta {
    display: flex;
    gap: 5px;
    margin: 0 0 8px;
  }

  .catalog-product-grid .product-meta span {
    min-width: 0;
    padding: 4px 5px;
    font-size: 9px;
  }

  .catalog-product-grid .product-actions {
    grid-template-columns: 1fr 58px;
    gap: 6px;
  }

  .catalog-product-grid .quote-card-btn,
  .catalog-product-grid .details-card-btn {
    min-height: 34px;
    padding: 8px 7px;
    font-size: 11px;
  }

  .catalog-product-grid .quote-card-btn svg {
    display: none;
  }

  .product-hero-actions .btn,
  .product-cta-panel .btn {
    width: 100%;
  }

  .product-demo-panel {
    padding: 10px;
  }

  .video-placeholder {
    min-height: 0;
  }

  .product-video-frame {
    min-height: 220px;
  }

  .detail-media img {
    height: clamp(240px, 70vw, 340px);
    padding: 22px 12px 8px;
  }

  .gallery-controls {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .gallery-controls > button {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }

  .gallery-dots {
    gap: 5px;
    padding: 7px 9px;
  }

  .detail-assurance,
  .related-product-grid {
    grid-template-columns: 1fr;
  }

  .detail-gallery {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    padding: 2px 2px 10px;
    scroll-snap-type: x mandatory;
  }

  .detail-gallery button {
    flex: 0 0 76px;
    scroll-snap-align: start;
  }

  .product-filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .product-flow-rail::before,
  .product-flow-rail::after {
    width: 42px;
  }

  .product-filter-bar button {
    flex: 0 0 auto;
  }

  .stats-grid {
    gap: 10px;
  }

  .stat {
    min-height: 112px;
    padding: 16px;
  }

  .why-visual,
  .why-visual img,
  .industries-visual,
  .industries-visual img {
    min-height: 300px;
  }

  .dealer-visual,
  .dealer-visual img {
    min-height: 320px;
  }

  .dealer-visual-card {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 14px;
  }

  .dealer-visual-card strong {
    font-size: 18px;
  }

  .industries-visual-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-body h3 {
    min-height: auto;
  }

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

  .details-card-btn {
    min-width: 0;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .site-motion-layer {
    display: none;
  }
}
