/* HypeFloat B2B homepage preview — isolated from the consumer storefront */
.b2b-home {
  --b2b-navy: #0b1f3a;
  --b2b-navy-soft: #132f52;
  --b2b-orange: #f47a2a;
  --b2b-orange-dark: #d95f12;
  --b2b-surface: #f4f7fa;
  --b2b-surface-warm: #fff7f1;
  --b2b-text: #42526a;
  --b2b-muted: #6a7889;
  --b2b-line: #dde5ec;
  --b2b-white: #ffffff;
  --b2b-max: 1240px;
  --b2b-shadow: 0 20px 60px rgba(11, 31, 58, 0.1);
  --b2b-shadow-soft: 0 12px 36px rgba(11, 31, 58, 0.07);
  margin: 0;
  background: var(--b2b-white);
  color: var(--b2b-navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.b2b-home,
.b2b-home * {
  box-sizing: border-box;
}

.b2b-home main {
  overflow: clip;
}

.b2b-home img,
.b2b-home svg {
  display: block;
  max-width: 100%;
}

.b2b-home a {
  color: inherit;
  text-decoration: none;
}

.b2b-home button,
.b2b-home input,
.b2b-home select,
.b2b-home textarea {
  font: inherit;
}

.b2b-home button,
.b2b-home a {
  -webkit-tap-highlight-color: transparent;
}

.b2b-home :focus-visible {
  outline: 3px solid rgba(244, 122, 42, 0.42);
  outline-offset: 3px;
}

.b2b-container {
  width: min(calc(100% - 48px), var(--b2b-max));
  margin-inline: auto;
}

.b2b-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 300;
  padding: 10px 16px;
  background: var(--b2b-navy);
  color: var(--b2b-white);
  border-radius: 8px;
  font-weight: 750;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.b2b-skip-link:focus {
  transform: translateY(0);
}

/* Header */
.b2b-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(221, 229, 236, 0.9);
  box-shadow: 0 4px 22px rgba(11, 31, 58, 0.035);
  backdrop-filter: blur(18px);
}

.b2b-header__inner {
  position: relative;
  width: min(calc(100% - 48px), var(--b2b-max));
  min-height: 82px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(205px, auto) 1fr auto;
  align-items: center;
  gap: 28px;
}

.b2b-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.b2b-brand__mark {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  overflow: hidden;
  border: 1px solid #e4e8ed;
  border-radius: 10px;
  background: var(--b2b-white);
  box-shadow: 0 6px 18px rgba(11, 31, 58, 0.1);
}

.b2b-brand__avatar {
  position: absolute;
  width: 224%;
  max-width: none !important;
  height: auto;
  top: -28.5%;
  left: 50%;
  display: block;
  transform: translateX(-50%);
}

.b2b-brand__copy {
  display: grid;
  line-height: 1.05;
}

.b2b-brand__copy strong {
  color: var(--b2b-navy);
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.b2b-brand__copy small {
  margin-top: 5px;
  color: var(--b2b-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.b2b-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 26px);
}

.b2b-nav a {
  position: relative;
  padding: 28px 0;
  color: var(--b2b-text);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.b2b-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 2px;
  background: var(--b2b-orange);
  transition: right 180ms ease;
}

.b2b-nav a:hover {
  color: var(--b2b-navy);
}

.b2b-nav a:hover::after {
  right: 0;
}

.b2b-menu {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--b2b-line);
  border-radius: 10px;
  background: var(--b2b-white);
  cursor: pointer;
}

.b2b-menu span {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 99px;
  background: var(--b2b-navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

/* Shared B2B controls */
.b2b-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.b2b-button:hover {
  transform: translateY(-2px);
}

.b2b-button--primary {
  background: var(--b2b-orange);
  color: var(--b2b-white);
  box-shadow: 0 10px 24px rgba(244, 122, 42, 0.24);
}

.b2b-button--primary:hover {
  background: var(--b2b-orange-dark);
  box-shadow: 0 14px 28px rgba(217, 95, 18, 0.26);
}

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

.b2b-button--secondary:hover {
  border-color: rgba(11, 31, 58, 0.28);
  background: var(--b2b-surface);
}

.b2b-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--b2b-orange);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.b2b-eyebrow > span {
  width: 24px;
  height: 2px;
  background: currentColor;
}

.b2b-section {
  position: relative;
  padding: 112px 0;
}

.b2b-anchor-alias {
  position: absolute;
  top: -82px;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  visibility: hidden;
}

.b2b-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 44px;
}

.b2b-section-heading h2,
.b2b-quote h2,
.b2b-factory__intro h2 {
  max-width: 760px;
  margin: 0;
  color: var(--b2b-navy);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.b2b-section-heading > p,
.b2b-factory__intro > p {
  max-width: 530px;
  margin: 0;
  color: var(--b2b-text);
  font-size: 16px;
  line-height: 1.75;
}

.b2b-section-heading--centered {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.b2b-section-heading--centered .b2b-eyebrow {
  justify-content: center;
}

.b2b-section-heading--centered > p {
  max-width: 680px;
}

/* Hero */
.b2b-hero {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: center;
  padding: 80px 0 88px;
  background:
    radial-gradient(circle at 8% 16%, rgba(244, 122, 42, 0.08), transparent 25%),
    linear-gradient(118deg, #ffffff 0%, #ffffff 55%, #f5f8fb 55%, #eef3f7 100%);
}

.b2b-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--b2b-line), transparent);
}

.b2b-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(56px, 7vw, 104px);
}

.b2b-hero__copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--b2b-navy);
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 820;
  letter-spacing: -0.058em;
  line-height: 0.99;
}

.b2b-hero__lead {
  max-width: 665px;
  margin: 27px 0 0;
  color: var(--b2b-text);
  font-size: 18px;
  line-height: 1.75;
}

.b2b-capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 24px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.b2b-capabilities li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--b2b-navy);
  font-size: 14px;
  font-weight: 750;
}

.b2b-capabilities li span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--b2b-surface-warm);
  color: var(--b2b-orange);
  font-size: 9px;
  font-weight: 900;
}

.b2b-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.b2b-hero__note {
  margin: 22px 0 0;
  color: var(--b2b-muted);
  font-size: 12px;
}

.b2b-hero__visual {
  position: relative;
  min-width: 0;
}

.solution-card__media,
.product-range-card__media,
.collection-card__media {
  position: relative;
  overflow: hidden;
  background: #edf1f4;
}

.solution-card__media img,
.product-range-card__media img,
.collection-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-placeholder {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #e9eff4;
  color: var(--b2b-navy);
}

.media-placeholder::before,
.media-placeholder::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.72;
  z-index: -1;
}

.media-placeholder::before {
  width: 180px;
  height: 180px;
  top: -52px;
  right: -32px;
  background: rgba(255, 255, 255, 0.5);
}

.media-placeholder::after {
  width: 120px;
  height: 120px;
  left: -34px;
  bottom: -32px;
  border: 28px solid rgba(255, 255, 255, 0.28);
}

.b2b-hero__collage {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
  aspect-ratio: 4 / 4.15;
  min-height: 520px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  overflow: hidden;
  background: var(--b2b-white);
  box-shadow: 24px 26px 0 #e8eef3, var(--b2b-shadow);
}

.b2b-hero__panel {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 7px;
  background: #edf1f4;
}

.b2b-hero__panel--main {
  grid-row: span 2;
}

.b2b-hero__panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 48% 50%;
  transition: transform 220ms ease;
}

.b2b-hero__panel--seasonal img {
  object-position: 50% 48%;
}

.b2b-hero__panel--buyers img {
  object-position: 52% 50%;
}

@media (hover: hover) and (pointer: fine) {
  .b2b-hero__panel:hover img {
    transform: scale(1.025);
  }
}

.b2b-hero__floating-card {
  position: absolute;
  right: 20px;
  bottom: 28px;
  width: 250px;
  display: grid;
  padding: 18px 20px;
  border-left: 4px solid var(--b2b-orange);
  background: var(--b2b-navy);
  color: var(--b2b-white);
  box-shadow: var(--b2b-shadow);
}

.b2b-hero__floating-card span {
  color: #aebed0;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.b2b-hero__floating-card strong {
  margin-top: 4px;
  font-size: 13px;
}

.b2b-hero__floating-card small {
  margin-top: 7px;
  color: #c4d0db;
  font-size: 10px;
  line-height: 1.5;
}

/* Party solution cards */
.b2b-solutions {
  background: var(--b2b-white);
}

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

.solution-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--b2b-line);
  background: var(--b2b-white);
  box-shadow: 0 1px 0 rgba(11, 31, 58, 0.02);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.solution-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.solution-card:hover {
  transform: translateY(-7px);
  border-color: rgba(11, 31, 58, 0.16);
  box-shadow: var(--b2b-shadow-soft);
}

.media-placeholder--card {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 22px;
  transition: transform 350ms ease;
}

.solution-card:hover .media-placeholder--card {
  transform: scale(1.015);
}

.solution-card__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.solution-card__media img {
  transition: transform 350ms ease;
}

.solution-card[data-solution="halloween"] .solution-card__media img {
  object-position: center 42%;
}

.solution-card[data-solution="wedding"] .solution-card__media img {
  object-position: center 15%;
}

.solution-card[data-solution="christmas"] .solution-card__media img {
  object-position: 50% 45%;
}

.solution-card[data-solution="team-building"] .solution-card__media img {
  object-position: 50% 50%;
}

.solution-card[data-solution="singles-game-night"] .solution-card__media img {
  object-position: 50% 50%;
}

.solution-card:hover .solution-card__media img {
  transform: scale(1.025);
}

.media-placeholder__index {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.media-placeholder__name {
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--b2b-navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.media-placeholder--halloween {
  background: linear-gradient(135deg, #3d2746, #8b4a35);
}

.media-placeholder--birthday {
  background: linear-gradient(135deg, #df8c83, #f3c8a7 56%, #8ba6bd);
}

.media-placeholder--wedding {
  background: linear-gradient(135deg, #d9cec4, #f4eee9 52%, #b7a18c);
}

.media-placeholder--baby {
  background: linear-gradient(135deg, #b9cfdf, #ecd7dd 56%, #f4e9d9);
}

.media-placeholder--christmas {
  background: linear-gradient(135deg, #234b46, #9c3d3b 60%, #d3a458);
}

.media-placeholder--corporate {
  background: linear-gradient(135deg, #183b62, #647f9b 58%, #dbe3ea);
}

.solution-card__body {
  padding: 25px 26px 27px;
}

.solution-card h3,
.collection-card h3,
.advantage-card h3,
.oem-process h3 {
  margin: 0;
  color: var(--b2b-navy);
  font-size: 20px;
  font-weight: 790;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.solution-card p {
  min-height: 76px;
  margin: 12px 0 18px;
  color: var(--b2b-text);
  font-size: 14px;
  line-height: 1.7;
}

.solution-card__cta,
.b2b-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--b2b-orange);
  font-size: 13px;
  font-weight: 820;
}

.solution-card__cta span,
.b2b-text-link span {
  transition: transform 180ms ease;
}

.solution-card:hover .solution-card__cta span,
.b2b-text-link:hover span {
  transform: translateX(4px);
}

.solutions-grid__empty {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--b2b-text);
  font-size: 14px;
  line-height: 1.7;
}

/* Product range */
.b2b-categories {
  background: var(--b2b-surface);
}

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

.product-range-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--b2b-line);
  background: var(--b2b-white);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.product-range-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 122, 42, 0.42);
  box-shadow: var(--b2b-shadow-soft);
}

.product-range-card__media {
  aspect-ratio: 4 / 3;
  background: #fbfaf7;
}

.product-range-card__media--cover img {
  object-fit: cover;
  transition: transform 300ms ease;
}

.product-range-card:hover .product-range-card__media--cover img {
  transform: scale(1.025);
}

.product-range-card__media--contain img {
  object-fit: contain;
  padding: 18px;
  background: #f7f8fa;
}

.product-range-card__body {
  display: grid;
  align-content: start;
  min-height: 245px;
  padding: 24px 25px 26px;
}

.product-range-card__eyebrow {
  margin: 0 0 8px;
  color: var(--b2b-orange);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.product-range-card__body > p:not(.product-range-card__eyebrow) {
  margin: 12px 0 20px;
  color: var(--b2b-text);
  font-size: 14px;
}

.product-range-card__link {
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  margin-top: auto;
  color: var(--b2b-orange);
  font-size: 13px;
  font-weight: 820;
}

.floating-contact {
  position: fixed;
  right: 24px;
  bottom: calc(24px + var(--floating-contact-obstruction, 0px) + var(--floating-contact-focus-clearance, 0px) + env(safe-area-inset-bottom));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: #f47a2a;
  color: #fff;
  box-shadow: 0 14px 32px rgba(7, 31, 85, 0.22);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, bottom 180ms ease;
}

.floating-contact svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-contact[data-contact-mode="compact"] {
  width: 52px;
  padding-inline: 0;
}

.floating-contact[data-contact-mode="compact"] span,
.floating-contact[data-contact-mode="icon"] span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.floating-contact[data-contact-mode="icon"] {
  width: 48px;
  height: 48px;
  min-height: 48px;
  padding: 0;
}

.floating-contact:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(7, 31, 85, 0.28);
}

.floating-contact:focus-visible {
  outline: 3px solid #08234a;
  outline-offset: 3px;
}

/* Collections */
.b2b-collections {
  background: var(--b2b-white);
}

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

.collection-card {
  position: relative;
  display: block;
  min-height: 340px;
  overflow: hidden;
  background: var(--b2b-surface);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--b2b-shadow);
}

.collection-card__media {
  position: absolute;
  inset: 0;
  transition: transform 500ms ease;
}

.collection-card__media img {
  object-position: center;
}

.collection-card:hover .collection-card__media {
  transform: scale(1.025);
}

.collection-card__content {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 64px 24px 26px;
  background: linear-gradient(transparent, rgba(11, 31, 58, 0.92));
  color: var(--b2b-white);
}

.collection-card__content p {
  margin: 0 0 6px;
  color: #ffc39d;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collection-card__content h3 {
  color: var(--b2b-white);
  font-size: 22px;
}

.collection-card__content > span {
  display: block;
  margin-top: 7px;
  color: #d6e0ea;
  font-size: 12px;
}

/* Advantages */
.b2b-advantages {
  background: var(--b2b-navy);
  color: var(--b2b-white);
}

.b2b-advantages .b2b-section-heading h2 {
  color: var(--b2b-white);
}

.b2b-advantages .b2b-section-heading > p {
  color: #b8c6d6;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.advantage-card {
  position: relative;
  min-width: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

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

.advantage-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #132c4d;
}

.advantage-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease;
}

.advantage-card__number {
  position: absolute;
  top: 14px;
  right: 14px;
  min-width: 38px;
  padding: 8px 9px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(11, 31, 58, 0.88);
  color: var(--b2b-white);
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.12em;
  text-align: center;
}

.advantage-card__content {
  flex: 1;
  padding: 27px 25px 31px;
}

.advantage-card h3 {
  color: var(--b2b-white);
  font-size: 19px;
}

.advantage-card p {
  margin: 12px 0 0;
  color: #aebed0;
  font-size: 13px;
  line-height: 1.7;
}

@media (hover: hover) and (pointer: fine) {
  .advantage-card:hover .advantage-card__media img {
    transform: scale(1.035);
  }
}

/* OEM process */
.b2b-oem {
  background:
    linear-gradient(rgba(244, 247, 250, 0.96), rgba(244, 247, 250, 0.96)),
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(11, 31, 58, 0.05) 80px);
}

.oem-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.oem-process::before {
  display: none;
}

.oem-process article {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 218px;
  padding: 25px 25px 27px;
  border: 1px solid #d7e0e8;
  border-radius: 5px;
  background: var(--b2b-white);
  box-shadow: 0 12px 30px rgba(11, 31, 58, 0.07);
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.oem-process article:first-child,
.oem-process article:last-child {
  border-top: 3px solid var(--b2b-orange);
}

.oem-process article::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -15px;
  z-index: 3;
  width: 12px;
  color: var(--b2b-orange);
  font-size: 17px;
  font-weight: 850;
  line-height: 1;
  transform: translateY(-50%);
}

.oem-process article:nth-child(3n)::after,
.oem-process article:last-child::after {
  display: none;
}

.oem-process__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.oem-process__step {
  color: var(--b2b-orange);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.13em;
}

.oem-process__icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border: 1px solid #ffd7bd;
  border-radius: 4px;
  background: #fff4ec;
  color: var(--b2b-navy);
}

.oem-process__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.oem-process h3 {
  font-size: 18px;
}

.oem-process p {
  margin: 10px 0 0;
  color: var(--b2b-muted);
  font-size: 12px;
  line-height: 1.7;
}

@media (hover: hover) and (pointer: fine) {
  .oem-process article:hover {
    border-color: #f3b58d;
    box-shadow: 0 16px 36px rgba(11, 31, 58, 0.11);
    transform: translateY(-3px);
  }
}

/* Factory */
.b2b-factory {
  background: var(--b2b-white);
}

.b2b-factory .b2b-container {
  display: grid;
  grid-template-columns: minmax(250px, 0.36fr) minmax(0, 0.64fr);
  gap: 70px;
  align-items: start;
}

.b2b-factory__intro {
  position: sticky;
  top: 120px;
}

.b2b-factory__intro h2 {
  font-size: clamp(34px, 4vw, 50px);
}

.b2b-factory__intro > p {
  margin: 23px 0;
}

.factory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(230px, auto);
  gap: 18px;
}

.factory-card {
  min-width: 0;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid var(--b2b-line);
  border-radius: 5px;
  background: #eef3f7;
  box-shadow: 0 14px 32px rgba(11, 31, 58, 0.08);
}

.factory-card--large {
  grid-column: 1;
  grid-row: 1 / span 3;
}

.factory-card[data-factory-capability="packaging"] {
  grid-column: 2;
}

.factory-card__media {
  position: relative;
  height: 100%;
  min-height: 230px;
  overflow: hidden;
  isolation: isolate;
}

.factory-card--large .factory-card__media {
  min-height: 478px;
}

.factory-card__media::after {
  content: "";
  position: absolute;
  inset: 36% 0 0;
  z-index: 1;
  background: linear-gradient(transparent, rgba(11, 31, 58, 0.86));
  pointer-events: none;
}

.factory-card__media img,
.factory-card__media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.factory-card__media img {
  transition: transform 280ms ease;
}

.factory-card__poster,
.factory-card__video {
  position: absolute;
  inset: 0;
}

.factory-card__label,
.factory-card__content {
  position: absolute;
  z-index: 2;
}

.factory-card__label {
  top: 24px;
  left: 24px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: rgba(11, 31, 58, 0.72);
  box-shadow: 0 2px 8px rgba(11, 31, 58, 0.24);
  color: var(--b2b-white);
  font-size: 9px;
  font-weight: 900;
}

.factory-card__content {
  right: 24px;
  bottom: 23px;
  left: 24px;
  display: grid;
}

.factory-card__content strong {
  color: var(--b2b-white);
  font-size: 20px;
  letter-spacing: -0.02em;
}

.factory-card__content small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
}

.factory-card[data-factory-capability="factory"] img { object-position: 50% 50%; }
.factory-card[data-factory-capability="production"] img,
.factory-card[data-factory-capability="production"] video { object-position: 50% 50%; }
.factory-card[data-factory-capability="factory-tour"] img,
.factory-card[data-factory-capability="factory-tour"] video { object-position: 50% 50%; }
.factory-card[data-factory-capability="packaging"] img { object-position: 52% 50%; }

@media (hover: hover) and (pointer: fine) {
  .factory-card:hover .factory-card__media img { transform: scale(1.03); }
}

/* Quote */
.b2b-quote {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(244, 122, 42, 0.2), transparent 24%),
    radial-gradient(circle at 86% 88%, rgba(78, 113, 149, 0.25), transparent 28%),
    var(--b2b-navy);
}

.b2b-quote::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  left: -190px;
  bottom: -240px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(255, 255, 255, 0.018), 0 0 0 96px rgba(255, 255, 255, 0.018);
}

.b2b-quote__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(520px, 1.24fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.b2b-eyebrow--light {
  color: #ffb481;
}

.b2b-quote h2 {
  color: var(--b2b-white);
}

.b2b-quote__copy > p:not(.b2b-eyebrow, .b2b-quote__privacy) {
  max-width: 500px;
  margin: 24px 0;
  color: #bcc9d7;
  font-size: 16px;
  line-height: 1.75;
}

.b2b-quote__copy ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.b2b-quote__copy li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--b2b-white);
  font-size: 13px;
  font-weight: 650;
}

.b2b-quote__copy li span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(244, 122, 42, 0.18);
  color: #ffb481;
  font-size: 11px;
}

.b2b-quote__privacy {
  margin: 32px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8fa3b7;
  font-size: 11px;
}

.b2b-direct-contact {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.b2b-direct-contact__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--b2b-orange);
  color: var(--b2b-white);
  font-size: 20px;
  font-weight: 800;
}

.b2b-direct-contact > div {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.b2b-direct-contact > div > span {
  color: #c4d0db;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.b2b-direct-contact a {
  width: fit-content;
  max-width: 100%;
  color: var(--b2b-white);
  font-size: 15px;
  font-weight: 750;
  overflow-wrap: anywhere;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 3px;
}

.b2b-direct-contact small {
  color: #bcc9d7;
  font-size: 11px;
  line-height: 1.55;
}

.b2b-direct-contact a:hover,
.b2b-direct-contact a:focus-visible {
  color: #ffb481;
  text-decoration-color: currentColor;
}

.b2b-direct-contact a:focus-visible,
.b2b-footer__contact a:focus-visible {
  outline: 2px solid var(--b2b-orange);
  outline-offset: 3px;
}

.quote-form {
  padding: 38px;
  background: var(--b2b-white);
  color: var(--b2b-navy);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.quote-form__heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

.quote-form__heading span {
  color: var(--b2b-orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.quote-form__heading h3 {
  margin: 3px 0 0;
  color: var(--b2b-navy);
  font-size: 28px;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.quote-form__heading .quote-form__badge {
  padding: 7px 10px;
  border: 1px solid #f2c6aa;
  background: var(--b2b-surface-warm);
  color: var(--b2b-orange-dark);
  font-size: 8px;
}

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

.quote-form label {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.quote-form label > span {
  color: var(--b2b-navy);
  font-size: 11px;
  font-weight: 780;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #cfd9e2;
  border-radius: 5px;
  background: var(--b2b-white);
  color: var(--b2b-navy);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.quote-form textarea {
  min-height: 118px;
  resize: vertical;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #94a1af;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--b2b-orange);
  box-shadow: 0 0 0 3px rgba(244, 122, 42, 0.12);
  background: #fffdfa;
}

.quote-form__full {
  grid-column: 1 / -1;
}

.quote-form__submit {
  width: 100%;
  margin-top: 22px;
}

.quote-form__notice {
  margin: 11px 0 0;
  color: var(--b2b-muted);
  font-size: 10px;
  text-align: center;
}

.quote-form__status {
  display: none;
  margin: 15px 0 0;
  padding: 12px 14px;
  border-left: 3px solid #3b9372;
  background: #edf8f3;
  color: #1e634e;
  font-size: 12px;
  font-weight: 700;
}

.quote-form__status:not(:empty) {
  display: block;
}

.quote-form__status[data-state="error"] {
  border-left-color: #b42318;
  background: #fff1f0;
  color: #8f1d16;
}

.quote-form__status a {
  color: inherit;
  font-weight: 850;
}

.quote-form__error {
  min-height: 1em;
  color: #b42318;
  font-size: 10px;
  line-height: 1.35;
}

.quote-form [aria-invalid="true"] {
  border-color: #b42318;
}

.quote-form__honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.quote-form__submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

/* Footer */
.b2b-footer {
  padding: 70px 0 0;
  background: #071627;
  color: var(--b2b-white);
}

.b2b-footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.45fr) repeat(2, minmax(110px, 0.63fr)) minmax(200px, 1.1fr) minmax(110px, 0.63fr);
  gap: 48px;
  padding-bottom: 60px;
}

.b2b-brand--footer .b2b-brand__copy strong {
  color: var(--b2b-white);
}

.b2b-brand--footer .b2b-brand__copy small {
  color: #8195aa;
}

.b2b-footer__brand > p {
  max-width: 360px;
  margin: 22px 0 0;
  color: #92a5b8;
  font-size: 13px;
  line-height: 1.7;
}

.b2b-footer nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.b2b-footer nav h2 {
  margin: 0 0 7px;
  color: var(--b2b-white);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.b2b-footer nav a,
.b2b-footer nav button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #92a5b8;
  font-size: 12px;
  cursor: pointer;
}

.b2b-footer nav a:hover,
.b2b-footer nav button:hover {
  color: var(--b2b-white);
}

.b2b-footer__contact {
  min-width: 0;
}

.b2b-footer__contact h2 {
  margin: 0 0 14px;
  color: var(--b2b-white);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.b2b-footer__contact a {
  display: inline-block;
  max-width: 100%;
  color: var(--b2b-white);
  font-size: 12px;
  font-weight: 750;
  overflow-wrap: anywhere;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 3px;
}

.b2b-footer__contact a:hover,
.b2b-footer__contact a:focus-visible {
  color: #ffb481;
  text-decoration-color: currentColor;
}

.b2b-footer__contact p,
.b2b-footer__contact address {
  margin: 10px 0 0;
  color: #92a5b8;
  font-size: 12px;
  font-style: normal;
  line-height: 1.65;
}

.b2b-footer__bottom {
  min-height: 66px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #71869b;
  font-size: 10px;
}

/* Tablet navigation and grid reductions */
@media (max-width: 1120px) {
  .b2b-header__inner {
    grid-template-columns: 1fr auto auto;
  }

  .b2b-menu {
    display: block;
    order: 2;
  }

  .b2b-header__cta {
    order: 3;
  }

  .b2b-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
    padding: 18px;
    border: 1px solid var(--b2b-line);
    background: var(--b2b-white);
    box-shadow: var(--b2b-shadow);
  }

  .b2b-nav.is-open {
    display: grid;
  }

  .b2b-nav a {
    padding: 12px 14px;
    border-radius: 6px;
    background: var(--b2b-surface);
  }

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

  .b2b-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
    gap: 52px;
  }

  .b2b-quote__inner {
    grid-template-columns: minmax(0, 0.65fr) minmax(500px, 1.35fr);
    gap: 48px;
  }
}

@media (max-width: 1100px) {
  .product-range-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .oem-process article::after,
  .oem-process article:nth-child(3n)::after {
    display: block;
  }

  .oem-process article:nth-child(even)::after,
  .oem-process article:last-child::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .b2b-section {
    padding: 88px 0;
  }

  .b2b-hero {
    padding-top: 65px;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 57%, #f1f5f8 57%);
  }

  .b2b-hero__inner {
    grid-template-columns: 1fr;
  }

  .b2b-hero__copy {
    max-width: 720px;
  }

  .b2b-hero__visual {
    max-width: 620px;
    margin-inline: auto;
  }

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

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

  .advantage-card:nth-child(2) {
    border-right: 0;
  }

  .advantage-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .b2b-factory .b2b-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .b2b-factory__intro {
    position: static;
    max-width: 690px;
  }

  .b2b-quote__inner {
    grid-template-columns: 1fr;
  }

  .b2b-quote__copy {
    max-width: 680px;
  }

  .b2b-footer__grid {
    grid-template-columns: 1.6fr repeat(2, 1fr);
  }

  .b2b-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .floating-contact {
    right: 14px;
    bottom: calc(14px + var(--floating-contact-obstruction, 0px) + var(--floating-contact-focus-clearance, 0px) + env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
    min-height: 48px;
    padding: 0;
    font-size: 13px;
  }

  .b2b-container,
  .b2b-header__inner {
    width: min(calc(100% - 32px), var(--b2b-max));
  }

  .b2b-header__inner {
    min-height: 72px;
    grid-template-columns: 1fr auto auto;
    gap: 9px;
  }

  .b2b-brand {
    gap: 9px;
  }

  .b2b-brand__mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .b2b-brand__copy strong {
    font-size: 17px;
  }

  .b2b-brand__copy small {
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  .b2b-menu {
    width: 42px;
    height: 42px;
  }

  .b2b-header__cta {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 11px;
  }

  .b2b-nav {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .b2b-section {
    padding: 72px 0;
  }

  .b2b-section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }

  .b2b-section-heading h2,
  .b2b-quote h2,
  .b2b-factory__intro h2 {
    font-size: clamp(31px, 10vw, 42px);
  }

  .b2b-section-heading--centered {
    justify-items: start;
    text-align: left;
  }

  .b2b-section-heading--centered .b2b-eyebrow {
    justify-content: flex-start;
  }

  .b2b-advantages .b2b-section-heading {
    display: block;
    margin-bottom: 40px;
  }

  .b2b-advantages .b2b-section-heading > div {
    display: block;
    margin-bottom: 16px;
  }

  .b2b-advantages .b2b-section-heading > p {
    position: static;
    clear: both;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .b2b-hero {
    min-height: 0;
    padding: 56px 0 72px;
  }

  .b2b-hero__inner,
  .b2b-quote__inner {
    grid-template-columns: 1fr;
  }

  .b2b-hero__copy h1 {
    font-size: clamp(43px, 12.5vw, 59px);
  }

  .b2b-hero__lead {
    margin-top: 21px;
    font-size: 16px;
  }

  .b2b-capabilities {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .b2b-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .b2b-hero__actions .b2b-button {
    width: 100%;
  }

  .b2b-hero__collage {
    max-width: 760px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(280px, 1.3fr) minmax(150px, 0.7fr);
    aspect-ratio: auto;
    min-height: 450px;
    box-shadow: 12px 14px 0 #e8eef3, var(--b2b-shadow-soft);
  }

  .b2b-hero__panel--main {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .b2b-hero__panel--seasonal {
    grid-column: 1;
    grid-row: 2;
  }

  .b2b-hero__panel--buyers {
    grid-column: 2;
    grid-row: 2;
  }

  .b2b-hero__floating-card {
    right: 18px;
    bottom: 18px;
    width: 215px;
  }

  .solutions-grid,
  .collections-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .solution-card p {
    min-height: 0;
  }

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

  .product-range-card__body {
    min-height: 0;
  }

  .collection-card {
    min-height: 350px;
  }

  .advantages-grid {
    border: 0;
  }

  .advantage-card,
  .advantage-card:nth-child(2),
  .advantage-card:last-child {
    min-height: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 0;
  }

  .advantage-card:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .oem-process {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-left: 18px;
  }

  .oem-process::before {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 4px;
    display: block;
    width: 2px;
    background: linear-gradient(var(--b2b-orange), #f8c3a1);
  }

  .oem-process article {
    min-height: 0;
    padding: 22px 20px 24px;
  }

  .oem-process article::after,
  .oem-process article:nth-child(3n)::after,
  .oem-process article:nth-child(even)::after {
    display: none;
  }

  .oem-process__top {
    margin-bottom: 18px;
  }

  .factory-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .factory-card {
    min-height: 0;
  }

  .factory-card--large {
    grid-column: auto;
    grid-row: auto;
  }

  .factory-card[data-factory-capability="packaging"] {
    grid-column: auto;
  }

  .factory-card--large .factory-card__media,
  .factory-card__media {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .b2b-quote {
    padding: 78px 0;
  }

  .quote-form {
    padding: 26px 20px;
  }

  .quote-form__grid {
    grid-template-columns: 1fr;
  }

  .quote-form__full {
    grid-column: auto;
  }

  .b2b-footer {
    padding-top: 55px;
  }

  .b2b-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 24px;
    padding-bottom: 45px;
  }

  .b2b-footer__brand {
    grid-column: 1 / -1;
  }

  .b2b-footer__bottom {
    min-height: 86px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .b2b-hero__collage {
    max-width: 480px;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(220px, auto));
    min-height: 0;
  }

  .b2b-hero__panel--main,
  .b2b-hero__panel--seasonal,
  .b2b-hero__panel--buyers {
    grid-column: 1;
    grid-row: auto;
  }

  .b2b-hero__floating-card {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    padding: 10px 12px;
  }

  .b2b-hero__floating-card strong {
    font-size: 12px;
  }

  .b2b-hero__floating-card small {
    margin-top: 4px;
    font-size: 9px;
  }

  .b2b-footer__grid {
    grid-template-columns: 1fr;
  }

  .b2b-footer__brand {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .b2b-brand__copy small {
    display: none;
  }

  .b2b-header__cta {
    padding-inline: 10px;
    font-size: 10px;
  }

  .b2b-hero__floating-card {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 9px 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .b2b-hero__panel img {
    transition: none;
  }

  .b2b-hero__panel:hover img {
    transform: none;
  }

  .oem-process article {
    transition: none;
  }

  .oem-process article:hover {
    transform: none;
  }

  .advantage-card__media img {
    transition: none;
  }

  .advantage-card:hover .advantage-card__media img {
    transform: none;
  }

  .factory-card__media img {
    transition: none;
  }

  .factory-card:hover .factory-card__media img {
    transform: none;
  }

  .factory-card__video {
    display: none;
  }

  .floating-contact {
    transition: none;
  }

  .floating-contact:hover {
    transform: none;
  }

  .b2b-home *,
  .b2b-home *::before,
  .b2b-home *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
