:root {
  --navy: #102a56;
  --navy-2: #0b1d3b;
  --red: #c40d1a;
  --red-2: #a90814;
  --yellow: #f4b000;
  --brown: #765036;
  --ink: #0b1630;
  --muted: #5f6978;
  --line: #e7e1d8;
  --paper: #fffaf1;
  --surface: #ffffff;
  --shadow: 0 22px 50px rgba(16, 42, 86, 0.12);
  --radius: 8px;
  --section: min(100% - clamp(36px, 7vw, 140px), 1760px);
  --header-h: 114px;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

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

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 100;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 14px;
  clip: auto;
  background: var(--navy);
  color: white;
  border-radius: 4px;
}

.section-shell {
  width: var(--section);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: var(--header-h);
  width: var(--section);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 2vw, 36px);
}

.brand {
  width: clamp(320px, 29vw, 560px);
  height: clamp(72px, 5vw, 90px);
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: auto;
  transform: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.45vw, 38px);
  color: var(--ink);
  font-weight: 700;
  font-size: clamp(14px, 0.82vw, 15px);
}

.site-nav > a:not(.nav-cta),
.nav-group > .nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-block: 12px;
}

.site-nav > a.nav-dropdown::before,
.nav-group > .nav-dropdown::before {
  order: 2;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  content: "";
}

.site-nav > a:not(.nav-cta)::after,
.nav-group > .nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after,
.site-nav > a[aria-current="page"]:not(.nav-cta)::after,
.nav-group:hover > .nav-dropdown::after,
.nav-group:focus-within > .nav-dropdown::after,
.nav-group-active > .nav-dropdown::after {
  transform: scaleX(1);
}

.nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: -18px;
  z-index: 60;
  min-width: 234px;
  display: grid;
  padding: 10px 0;
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius) var(--radius);
  background: white;
  box-shadow: 0 22px 48px rgba(16, 42, 86, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-menu a {
  padding: 10px 18px;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a[aria-current="page"] {
  background: #fff4f4;
  color: var(--red);
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1;
  font-family: inherit;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-cta {
  min-width: clamp(178px, 12vw, 248px);
  padding: 0 clamp(16px, 1.3vw, 22px);
  background: var(--red);
  color: white;
  box-shadow: 0 14px 28px rgba(196, 13, 26, 0.18);
}

.nav-cta svg,
.button svg {
  width: 22px;
  height: 22px;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: 496px;
  display: grid;
  grid-template-columns: minmax(0, 0.43fr) minmax(0, 0.57fr);
  grid-template-areas:
    "copy media"
    "actions media";
  align-items: start;
  gap: 22px;
  padding: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  grid-area: copy;
  min-width: 0;
  max-width: 650px;
  padding-top: 62px;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(50px, 3.65vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 900;
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero-rule,
.section-label::after {
  display: block;
  width: 74px;
  height: 5px;
  margin: 22px 0 18px;
  background: var(--yellow);
  content: "";
}

.hero-lede {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(22px, 1.55vw, 29px);
  font-weight: 800;
  line-height: 1.2;
}

.hero-text {
  max-width: 560px;
  margin: 0;
  color: #2e3b52;
  font-size: clamp(17px, 1.05vw, 20px);
  line-height: 1.5;
}

.hero-actions {
  grid-area: actions;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  margin-top: -2px;
}

.button {
  min-width: 206px;
  padding: 0 26px;
  border: 2px solid transparent;
  font-size: 16px;
}

.button-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 18px 34px rgba(196, 13, 26, 0.2);
}

.button-primary:hover {
  background: var(--red-2);
}

.button-secondary {
  border-color: var(--navy);
  background: white;
  color: var(--navy);
}

.button-secondary:hover {
  background: #f5f8ff;
}

.button-light {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.button-light:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-media {
  position: relative;
  grid-area: media;
  min-width: 0;
  min-height: 496px;
  align-self: stretch;
  margin-left: clamp(-70px, -4vw, -42px);
}

.hero-products-img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.product-card {
  position: relative;
  min-height: 192px;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) minmax(96px, 128px);
  align-items: center;
  gap: 18px;
  padding: 22px clamp(22px, 3.2vw, 70px);
  border-right: 1px solid var(--line);
  overflow: hidden;
}

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

.product-card:hover {
  background: #fffdf8;
}

.product-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: white;
}

.product-icon svg {
  width: 34px;
  height: 34px;
}

.product-icon.navy {
  background: var(--navy);
}

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

.product-icon.brown {
  background: var(--brown);
}

.product-copy {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.product-copy strong {
  color: var(--navy);
  font-size: 21px;
  line-height: 1.1;
  white-space: nowrap;
}

.product-copy strong::after {
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 10px;
  background: var(--yellow);
  content: "";
}

.product-copy span {
  color: #4f5a6e;
  font-size: 14px;
}

.product-copy em {
  margin-top: 5px;
  color: var(--red);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

.product-image {
  align-self: end;
  justify-self: end;
  width: 128px;
  max-height: 118px;
}

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

.product-image-photo {
  width: min(190px, 100%);
  height: 96px;
  border-radius: 5px;
  overflow: hidden;
}

.product-image-photo img {
  object-fit: cover;
}

.solutions,
.catalog {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(480px, 1.12fr);
  gap: 58px;
  align-items: center;
  padding: 92px 0;
}

.section-copy {
  max-width: 640px;
}

.section-label {
  margin: 0;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-label::after {
  width: 46px;
  height: 4px;
  margin: 14px 0 18px;
}

.section-copy h2,
.company h1,
.company h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-copy p,
.company p {
  margin: 22px 0 0;
  color: #485468;
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #25314a;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--red);
  content: "";
}

.application-frame,
.catalog-preview {
  overflow: hidden;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.application-frame {
  aspect-ratio: 1.35;
}

.application-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.catalog {
  grid-template-columns: minmax(480px, 1.12fr) minmax(360px, 0.88fr);
  border-top: 1px solid var(--line);
}

.catalog-preview {
  aspect-ratio: 1.45;
}

.catalog-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.company {
  position: relative;
  overflow: hidden;
  background: #170707;
  color: white;
  border-top: 0;
  border-bottom: 0;
}

.company::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 7, 8, 0.9) 0%, rgba(62, 8, 14, 0.78) 54%, rgba(120, 9, 19, 0.56) 100%),
    url("assets/hero-products-reference.png") center / cover;
  filter: blur(2px);
  opacity: 0.76;
  transform: scale(1.04);
  content: "";
}

.company::after {
  position: absolute;
  top: 0;
  right: -16%;
  bottom: 0;
  width: 62%;
  background: linear-gradient(135deg, rgba(196, 13, 26, 0.88), rgba(115, 8, 17, 0.95));
  clip-path: polygon(32% 0, 100% 0, 100% 100%, 0 100%);
  content: "";
}

.company-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(430px, 0.92fr) minmax(500px, 1.08fr);
  gap: clamp(44px, 6vw, 96px);
  min-height: 560px;
  padding: 86px 0;
  align-items: center;
}

.company-profile {
  max-width: 680px;
}

.company-logo {
  width: min(420px, 100%);
  height: auto;
  margin: 0 0 28px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.company-details {
  display: grid;
  margin: 30px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.company-details div {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.company-details div:last-child {
  border-bottom: 0;
}

.company-details dt {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.company-details dd {
  margin: 0;
  color: white;
  font-size: clamp(17px, 1.08vw, 20px);
  line-height: 1.35;
  font-weight: 800;
}

.company-details a {
  color: white;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.38);
  text-underline-offset: 4px;
}

.company .section-label,
.company h1,
.company h2,
.company p {
  color: white;
}

.company .section-label {
  opacity: 0.9;
}

.company .section-label::after {
  background: var(--yellow);
}

.company-profile > p:not(.section-label) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.86);
}

.contact-merged .company-inner {
  grid-template-columns: minmax(360px, 0.82fr) minmax(620px, 1.18fr);
  gap: clamp(34px, 4.8vw, 76px);
  min-height: calc(100vh - var(--header-h));
  padding-top: clamp(58px, 6.2vw, 92px);
  padding-bottom: clamp(58px, 6.2vw, 92px);
}

.contact-merged .company-logo {
  width: min(270px, 100%);
  margin-bottom: 24px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.22));
}

.contact-merged .company-details {
  max-width: 650px;
}

.contact-assist {
  max-width: 610px;
  margin-top: 26px;
  background: rgba(255, 248, 230, 0.96);
  color: #26344d;
}

.contact-assist strong {
  color: var(--navy);
}

.contact-assist a {
  color: var(--red);
}

.contact-quote-panel {
  position: relative;
  z-index: 1;
  width: 100%;
}

.company-quote {
  position: relative;
  min-height: 390px;
  display: grid;
  align-content: start;
  justify-items: start;
  padding: clamp(28px, 4vw, 48px);
  padding-right: clamp(250px, 30vw, 390px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(18, 5, 8, 0.72) 0%, rgba(18, 5, 8, 0.58) 48%, rgba(196, 13, 26, 0.2) 100%),
    rgba(12, 13, 22, 0.22);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

.company-quote::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, rgba(23, 7, 7, 0.74) 0 44%, rgba(23, 7, 7, 0.18) 44% 100%);
  content: "";
}

.quote-tag,
.company-quote h2,
.company-quote h3,
.company-quote p,
.company-quote .button {
  position: relative;
  z-index: 2;
}

.quote-tag {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-left: 4px solid var(--yellow);
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.company-quote h2,
.company-quote h3 {
  max-width: 430px;
  margin: 22px 0 0;
  color: white;
  font-size: clamp(30px, 2.75vw, 44px);
  line-height: 1.05;
}

.company-quote p {
  max-width: 430px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
}

.company-quote .button {
  margin-top: 28px;
}

.company-quote img {
  position: absolute;
  z-index: 0;
  right: -32px;
  bottom: -40px;
  width: min(560px, 58%);
  max-width: none;
  opacity: 0.96;
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

.products-hero {
  position: relative;
  overflow: hidden;
  background: #170707;
  color: white;
  isolation: isolate;
}

.products-hero::before {
  position: absolute;
  inset: 0;
  background: url("assets/products-red-backdrop-clean.jpg") center / cover no-repeat;
  content: "";
}

.products-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 4, 6, 0.9) 0%, rgba(40, 5, 9, 0.76) 42%, rgba(157, 12, 22, 0.24) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.2));
  content: "";
}

.products-hero-inner {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  grid-template-columns: minmax(0, 850px);
  align-items: center;
  padding: clamp(76px, 8vw, 138px) 0;
}

.products-hero-copy {
  max-width: 820px;
  text-shadow: 0 16px 36px rgba(0, 0, 0, 0.42);
}

.breadcrumb {
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.products-hero h1 {
  max-width: 880px;
  margin: 0;
  color: white;
  font-size: clamp(46px, 5vw, 78px);
  line-height: 1.02;
}

.products-hero p:not(.breadcrumb) {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.products-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.product-line {
  padding: 86px 0 78px;
  background: #f2f2f3;
  box-shadow: 0 0 0 100vmax #f2f2f3;
  clip-path: inset(0 -100vmax);
}

.product-line-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

#product-line,
#product-line-title,
.product-line-card {
  scroll-margin-top: calc(var(--header-h) + 36px);
}

.product-line-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: 1.05;
}

.product-line-heading p {
  margin: 18px 0 0;
  color: #485468;
  font-size: 18px;
}

.product-line-heading .section-label::after {
  margin-inline: auto;
}

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

.product-line-card {
  display: grid;
  grid-template-rows: 172px auto 1fr auto;
  gap: 14px;
  min-height: 366px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 30px rgba(16, 42, 86, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-line-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(16, 42, 86, 0.12);
}

.product-line-thumb {
  display: block;
  height: 172px;
  overflow: hidden;
  border-radius: 6px;
  background: #f7f8fb;
}

.product-line-card img,
.product-line-thumb img {
  width: 100%;
  height: 172px;
  object-fit: cover;
  border-radius: 6px;
  background: #f7f8fb;
}

.product-line-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.1;
}

.product-line-card h3 a {
  color: inherit;
}

.product-line-card h3::after {
  display: block;
  width: 38px;
  height: 3px;
  margin-top: 10px;
  background: var(--yellow);
  content: "";
}

.product-line-card p {
  margin: 0;
  color: #4f5a6e;
  font-size: 15px;
}

.product-line-link {
  align-self: end;
  color: var(--red);
  font-weight: 900;
  font-size: 14px;
}

.best-sellers {
  padding: 70px 0 86px;
}

.best-sellers-heading {
  max-width: 680px;
  margin: 0 auto 36px;
  text-align: center;
}

.best-sellers-heading h2 {
  margin: 0;
  color: #3c3e44;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.2;
  text-transform: uppercase;
}

.best-sellers-heading h2::after {
  display: block;
  width: 56px;
  height: 3px;
  margin: 16px auto 0;
  background: var(--red);
  content: "";
}

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

.best-seller-card {
  display: grid;
  gap: 12px;
  text-align: center;
}

.best-seller-card img {
  width: 100%;
  height: 168px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f7f8fb;
}

.best-seller-card h3 {
  max-width: 220px;
  margin: 0 auto;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
}

.padlock-hero {
  overflow: hidden;
  background: linear-gradient(110deg, #ffffff 0 52%, #f4f5f7 52% 100%);
  border-bottom: 1px solid var(--line);
}

.padlock-hero-inner {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
  padding: 72px 0;
}

.padlock-hero-copy {
  max-width: 720px;
}

.padlock-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(46px, 5vw, 78px);
  line-height: 0.98;
}

.padlock-hero-copy > p:not(.breadcrumb) {
  max-width: 650px;
  margin: 22px 0 0;
  color: #34415a;
  font-size: clamp(18px, 1.2vw, 22px);
}

.padlock-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.padlock-hero-card {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 260px;
  align-items: center;
  gap: 26px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.padlock-hero-card img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
}

.padlock-hero-card div {
  display: grid;
  gap: 10px;
  padding-left: 24px;
  border-left: 4px solid var(--yellow);
}

.padlock-hero-card strong {
  color: var(--navy);
  font-size: 26px;
  line-height: 1.05;
}

.padlock-hero-card span {
  color: #4f5a6e;
  font-weight: 700;
}

.padlock-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 34px 0 10px;
}

.padlock-categories a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.padlock-categories a.active,
.padlock-categories a:hover {
  background: var(--red);
}

.padlock-product-section {
  padding: 42px 0 84px;
  background: #f3f3f3;
}

.padlock-heading {
  max-width: 780px;
  margin-bottom: 32px;
}

.padlock-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: 1.05;
}

.padlock-heading p:not(.section-label) {
  margin: 18px 0 0;
  color: #485468;
  font-size: 18px;
}

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

.hasp-grid,
.valve-grid,
.electrical-grid,
.pneumatic-grid,
.cable-grid,
.station-grid,
.kit-grid,
.tagout-grid,
.glove-grid,
.signs-grid,
.safety-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  scroll-margin-top: calc(var(--header-h) + 36px);
}

.padlock-card {
  min-height: 388px;
  display: grid;
  grid-template-rows: 190px auto auto 1fr auto;
  gap: 10px;
  padding: 16px;
  border: 1px solid #e2e2e2;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 10px 26px rgba(16, 42, 86, 0.06);
}

.padlock-card img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  background: white;
}

.hasp-grid .padlock-card,
.valve-grid .padlock-card,
.electrical-grid .padlock-card,
.pneumatic-grid .padlock-card,
.cable-grid .padlock-card,
.station-grid .padlock-card,
.kit-grid .padlock-card,
.tagout-grid .padlock-card,
.glove-grid .padlock-card,
.signs-grid .padlock-card,
.safety-grid .padlock-card {
  min-height: 420px;
  grid-template-rows: 220px auto auto 1fr auto;
}

.hasp-grid .padlock-card img,
.valve-grid .padlock-card img,
.electrical-grid .padlock-card img,
.pneumatic-grid .padlock-card img,
.cable-grid .padlock-card img,
.station-grid .padlock-card img,
.kit-grid .padlock-card img,
.tagout-grid .padlock-card img,
.glove-grid .padlock-card img,
.signs-grid .padlock-card img,
.safety-grid .padlock-card img {
  height: 220px;
}

.padlock-card span {
  width: fit-content;
  padding: 4px 8px;
  background: var(--ink);
  color: white;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.padlock-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.12;
}

.padlock-card p {
  margin: 0;
  color: #4f5a6e;
  font-size: 14px;
}

.padlock-card a {
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.loto-info,
.loto-required {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
  padding: 76px 0;
}

.loto-required {
  grid-template-columns: minmax(460px, 1.1fr) minmax(420px, 0.9fr);
  border-top: 1px solid var(--line);
}

.loto-info img,
.loto-required img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.loto-info h2,
.loto-required h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.08;
}

.loto-info p:not(.section-label),
.loto-required p:not(.section-label) {
  margin: 18px 0 0;
  color: #485468;
  font-size: 18px;
}

.loto-required .button {
  margin-top: 28px;
}

.products-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 82px;
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: white;
}

.products-cta h2 {
  margin: 0;
  color: white;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
}

.products-cta .section-label {
  color: white;
}

.products-cta .section-label::after {
  background: var(--yellow);
}

.contact-band {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1.65fr;
  background: var(--navy);
  color: white;
  padding-bottom: 31px;
}

.contact-band::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 31px;
  background: linear-gradient(90deg, var(--navy) 0 25%, var(--red) 25% 55%, var(--yellow) 55% 76%, var(--brown) 76% 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  content: "";
}

.contact-main {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 108px;
  padding: 20px clamp(24px, 5vw, 80px);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.contact-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
}

.contact-icon svg {
  width: 30px;
  height: 30px;
}

.contact-main h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
  color: white;
}

.contact-main p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: white;
  color: var(--ink);
}

.contact-actions a {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  min-height: 108px;
  padding: 22px clamp(18px, 2vw, 34px);
  border-left: 1px solid var(--line);
}

.contact-actions a:last-child {
  background: var(--brown);
  color: white;
}

.contact-actions a:hover strong {
  color: var(--red);
}

.contact-actions a:last-child:hover strong {
  color: white;
}

.contact-action-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.contact-action-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: white;
}

.contact-action-icon svg {
  width: 28px;
  height: 28px;
}

.contact-action-icon.navy {
  background: var(--navy);
}

.contact-action-icon.green {
  background: #109b42;
}

.contact-action-icon.brown {
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.contact-action-copy span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.contact-actions a:last-child .contact-action-copy span {
  color: rgba(255, 255, 255, 0.75);
}

.contact-action-copy strong {
  color: var(--navy);
  font-size: clamp(17px, 1.15vw, 20px);
  line-height: 1.25;
}

.contact-actions a:last-child .contact-action-copy strong {
  color: white;
  font-size: 18px;
  white-space: normal;
}

.quote {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(560px, 1.18fr);
  gap: 58px;
  align-items: start;
  padding: 88px 0 96px;
  border-bottom: 1px solid var(--line);
}

.quote-copy {
  padding-top: 8px;
}

.quote-assist {
  display: grid;
  gap: 4px;
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 5px solid var(--yellow);
  border-radius: var(--radius);
  background: #fff8e6;
  color: #33405a;
}

.quote-assist strong {
  color: var(--navy);
}

.quote-assist a {
  color: var(--red);
  font-weight: 900;
}

.quote-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.hidden-field {
  display: none;
}

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

.quote-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--navy);
  font-weight: 800;
}

.quote-form label span {
  color: var(--brown);
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d8dde8;
  border-radius: 6px;
  padding: 0 14px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.quote-form textarea {
  min-height: 138px;
  padding: 14px;
  line-height: 1.45;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--navy);
  outline: 3px solid rgba(16, 42, 86, 0.14);
}

.full-field {
  margin-top: 18px;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.form-footer .button {
  border: 0;
}

.form-status {
  flex: 1 1 260px;
  margin: 0;
  color: #40506a;
  font-size: 14px;
  font-weight: 700;
}

.form-status a {
  color: var(--red);
  font-weight: 900;
}

.contact-quote-panel .quote-form {
  border-color: rgba(255, 255, 255, 0.44);
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.3);
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.form-intro {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-quote-panel .form-intro .section-label {
  margin-bottom: 14px;
  color: #3d4a5d;
  opacity: 1;
}

.contact-quote-panel .form-intro .section-label::after {
  background: var(--yellow);
}

.contact-quote-panel .form-intro h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 2.2vw, 38px);
  line-height: 1.06;
}

.contact-quote-panel .form-intro p:not(.section-label) {
  margin: 10px 0 0;
  color: #41516a;
  font-size: 16px;
  line-height: 1.55;
}

.contact-quote-panel .form-status {
  color: #40506a;
}

.thanks-page {
  min-height: 100vh;
  background: var(--paper);
}

.thanks-shell {
  display: grid;
  align-content: center;
  gap: 36px;
  min-height: 100vh;
  padding: 48px 0;
}

.thanks-brand {
  background: white;
}

.thanks-card {
  max-width: 760px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.thanks-card h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
}

.thanks-card p {
  margin: 22px 0 0;
  color: #485468;
  font-size: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(24px, 5vw, 80px);
  background: var(--navy-2);
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: white;
  font-weight: 800;
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 1500px) {
  .hero-media {
    margin-left: 0;
  }
}

@media (max-width: 1280px) {
  :root {
    --section: min(100% - 36px, 980px);
  }

  .header-inner {
    width: min(100% - 36px, 980px);
  }

  .brand {
    width: 320px;
    height: 78px;
  }

  .brand img {
    width: 320px;
  }

  .site-nav {
    gap: 18px;
    font-size: 14px;
  }

  .nav-cta {
    min-width: 178px;
    padding-inline: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media"
      "actions";
    min-height: auto;
    padding-top: 54px;
  }

  .hero-copy {
    max-width: 760px;
    padding-top: 0;
  }

  .hero-media {
    min-height: 560px;
    margin-left: 0;
  }

  .hero-products-img {
    width: 100%;
    max-width: 100%;
    object-fit: contain;
  }

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

  .product-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .solutions,
  .catalog,
  .quote,
  .company-inner,
  .products-hero-inner,
  .padlock-hero-inner,
  .loto-info,
  .loto-required,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .contact-merged .company-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact-quote-panel {
    max-width: 880px;
  }

  .catalog-preview {
    order: 2;
  }

  .products-hero-inner {
    min-height: calc(100svh - var(--header-h));
  }

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

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

  .padlock-hero {
    background: white;
  }

  .padlock-hero-inner {
    min-height: auto;
  }

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

  .padlock-hero-card div {
    padding-left: 0;
    padding-top: 20px;
    border-left: 0;
    border-top: 4px solid var(--yellow);
  }

  .padlock-grid,
  .hasp-grid,
  .valve-grid,
  .electrical-grid,
  .pneumatic-grid,
  .cable-grid,
  .station-grid,
  .kit-grid,
  .tagout-grid,
  .glove-grid,
  .signs-grid,
  .safety-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  :root {
    --header-h: 92px;
  }

  body {
    padding-bottom: 82px;
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: var(--header-h);
    width: min(100% - 28px, 760px);
  }

  .brand img {
    width: 262px;
  }

  .brand {
    width: 262px;
    height: 76px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    display: grid;
    place-content: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--navy);
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    width: 31px;
    height: 4px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    justify-items: stretch;
    gap: 0;
    padding: 12px 18px 20px;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 44px rgba(16, 42, 86, 0.12);
    transform: none;
    visibility: visible;
  }

  .site-nav.is-open {
    display: grid;
    transform: none;
    visibility: visible;
  }

  .site-nav > a:not(.nav-cta) {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav-group {
    display: grid;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
  }

  .nav-group > .nav-dropdown {
    padding: 14px 4px;
  }

  .nav-menu {
    position: static;
    min-width: 0;
    padding: 0 0 10px 14px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu a {
    padding: 9px 4px;
    font-size: 14px;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 18px;
    width: 100%;
  }

  .hero {
    gap: 16px;
    padding: 28px 0 28px;
  }

  .hero h1 {
    font-size: clamp(58px, 15vw, 82px);
  }

  .hero-rule {
    margin-top: 20px;
  }

  .hero-lede {
    font-size: 23px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .button {
    width: 100%;
    min-height: 58px;
    font-size: 18px;
  }

  .hero-media {
    min-height: 360px;
    margin-top: -22px;
  }

  .hero-media::before {
    inset: 0 -18px 0 30%;
    background: linear-gradient(105deg, transparent 0 20%, #f5f5f6 20% 100%);
  }

  .media-catalog {
    right: 1%;
    top: 3%;
    width: 46%;
  }

  .media-padlock {
    left: 0;
    bottom: 4%;
    width: 50%;
  }

  .media-tag {
    right: 21%;
    bottom: 7%;
    width: 30%;
  }

  .floating-lock {
    left: 40%;
    top: 30%;
    width: 34%;
  }

  .product-strip {
    width: min(100% - 34px, 720px);
    margin: 0 auto 22px;
    border: 0;
    gap: 18px;
    background: transparent;
  }

  .product-card {
    min-height: 158px;
    grid-template-columns: 58px minmax(0, 1fr) 90px;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
  }

  .product-icon {
    width: 58px;
    height: 58px;
  }

  .product-icon svg {
    width: 28px;
    height: 28px;
  }

  .product-copy strong {
    font-size: 21px;
  }

  .product-copy span {
    font-size: 15px;
  }

  .product-copy em {
    display: none;
  }

  .product-image {
    width: 90px;
    max-height: 120px;
  }

  .solutions,
  .catalog {
    padding: 58px 0;
    gap: 30px;
  }

  .quote {
    padding: 58px 0;
    gap: 30px;
  }

  .section-copy h2,
  .company h1,
  .company h2 {
    font-size: 35px;
  }

  .section-copy p,
  .company p {
    font-size: 16px;
  }

  .company-inner {
    padding: 58px 0;
    gap: 32px;
  }

  .contact-merged .company-inner {
    padding: 46px 0 52px;
  }

  .contact-merged .company-logo {
    width: min(220px, 100%);
    margin-bottom: 20px;
  }

  .company::after {
    right: -46%;
    width: 120%;
    clip-path: polygon(68% 0, 100% 0, 100% 100%, 52% 100%);
  }

  .company-quote {
    min-height: auto;
    padding: 28px;
  }

  .company-quote h2,
  .company-quote h3,
  .company-quote p {
    max-width: 100%;
  }

  .company-quote h2,
  .company-quote h3 {
    margin-top: 18px;
    font-size: 30px;
  }

  .company-quote p {
    margin-top: 14px;
    font-size: 16px;
  }

  .company-quote .button {
    margin-top: 22px;
  }

  .company-quote img {
    display: none;
  }

  .company-details,
  .contact-actions,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .company-details div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }

  .contact-band {
    margin-bottom: 0;
  }

  .contact-main {
    min-height: auto;
    padding: 28px 22px;
  }

  .contact-icon {
    width: 56px;
    height: 56px;
  }

  .contact-main h2 {
    font-size: 21px;
  }

  .contact-actions a {
    min-height: 94px;
    padding: 20px 22px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .site-footer {
    display: block;
    padding: 24px 22px;
    text-align: center;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 8px;
  }

  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--navy);
    box-shadow: 0 -18px 34px rgba(16, 42, 86, 0.22);
    color: white;
  }

  .mobile-action-bar a {
    display: grid;
    place-items: center;
    gap: 4px;
    min-height: 72px;
    padding: 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 12px;
    font-weight: 800;
  }

  .mobile-action-bar a:first-child {
    border-left: 0;
  }

  .mobile-action-bar svg {
    width: 24px;
    height: 24px;
  }

  .quote-form,
  .thanks-card {
    padding: 24px;
  }

  .contact-quote-panel .quote-form {
    padding: 22px;
  }

  .contact-quote-panel .form-intro h2 {
    font-size: 28px;
  }

  .products-hero-inner {
    padding: 54px 0;
    gap: 28px;
  }

  .breadcrumb {
    margin-bottom: 22px;
  }

  .products-hero h1 {
    font-size: 38px;
  }

  .products-hero-actions {
    display: grid;
  }

  .product-line {
    padding: 58px 0;
  }

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

  .product-line-card {
    min-height: auto;
  }

  .best-sellers {
    padding: 52px 0 58px;
  }

  .best-seller-grid {
    gap: 18px;
  }

  .products-cta {
    display: grid;
    margin-bottom: 58px;
    padding: 26px;
  }

  .padlock-hero-inner {
    padding: 28px 0 30px;
    gap: 24px;
  }

  .padlock-hero h1 {
    font-size: 44px;
  }

  .padlock-hero-actions {
    display: grid;
  }

  .padlock-categories {
    padding-top: 24px;
  }

  .padlock-categories a {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .padlock-product-section {
    padding: 36px 0 58px;
  }

  .padlock-grid,
  .hasp-grid,
  .valve-grid,
  .electrical-grid,
  .pneumatic-grid,
  .cable-grid,
  .station-grid,
  .kit-grid,
  .tagout-grid,
  .glove-grid,
  .signs-grid,
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .padlock-card,
  .hasp-grid .padlock-card,
  .valve-grid .padlock-card,
  .electrical-grid .padlock-card,
  .pneumatic-grid .padlock-card,
  .cable-grid .padlock-card,
  .station-grid .padlock-card,
  .kit-grid .padlock-card,
  .tagout-grid .padlock-card,
  .glove-grid .padlock-card,
  .signs-grid .padlock-card,
  .safety-grid .padlock-card {
    min-height: auto;
    grid-template-rows: 220px auto auto 1fr auto;
  }

  .padlock-card img,
  .hasp-grid .padlock-card img,
  .valve-grid .padlock-card img,
  .electrical-grid .padlock-card img,
  .pneumatic-grid .padlock-card img,
  .cable-grid .padlock-card img,
  .station-grid .padlock-card img,
  .kit-grid .padlock-card img,
  .tagout-grid .padlock-card img,
  .glove-grid .padlock-card img,
  .signs-grid .padlock-card img,
  .safety-grid .padlock-card img {
    height: 220px;
  }

  .loto-info,
  .loto-required {
    padding: 58px 0;
    gap: 28px;
  }
}

@media (max-width: 520px) {
  :root {
    --section: min(100% - 32px, 480px);
  }

  .brand img {
    width: 220px;
  }

  .brand {
    width: 220px;
    height: 70px;
  }

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

  .hero-media {
    min-height: 292px;
  }

  .media-catalog {
    width: 50%;
  }

  .media-padlock {
    width: 52%;
  }

  .media-tag {
    right: 14%;
    width: 32%;
  }

  .floating-lock {
    left: 38%;
    top: 32%;
    width: 35%;
  }

  .product-card {
    grid-template-columns: 54px minmax(0, 1fr) 76px;
    padding: 18px;
  }

  .product-copy strong {
    font-size: 19px;
  }

  .product-copy span {
    font-size: 14px;
  }

  .application-frame,
  .catalog-preview {
    aspect-ratio: 0.95;
  }
}

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