@font-face {
  font-display: swap;
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300 800;
  src: url("/share/fonts/RobotoCondensed-Regular.ttf") format("truetype");
}

:root {
  --color-ink: #0f172a;
  --color-text: #334155;
  --color-muted: #64748b;
  --color-blue: #0a78d1;
  --color-blue-dark: #075fc6;
  --color-cyan: #20c5e6;
  --color-teal: #45c4c0;
  --color-page: #f6fafd;
  --color-soft: #eef7fc;
  --color-surface: #ffffff;
  --color-border: #d8e5ee;
  --color-success: #087f5b;
  --shadow-sm: 0 10px 30px rgba(24, 74, 108, 0.08);
  --shadow-md: 0 22px 60px rgba(15, 74, 113, 0.14);
  --shadow-blue: 0 18px 40px rgba(10, 120, 209, 0.23);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shell: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-page);
  color: var(--color-text);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
}

body.nav-is-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

:focus-visible {
  outline: 3px solid #075fc6;
  outline-offset: 3px;
}

.shell {
  margin: 0 auto;
  max-width: var(--shell);
  padding-left: 28px;
  padding-right: 28px;
  width: 100%;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link {
  background: var(--color-ink);
  border-radius: 0 0 10px 10px;
  color: #ffffff;
  left: 20px;
  padding: 10px 16px;
  position: fixed;
  top: -80px;
  transition: top 180ms ease;
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}

.preview-badge {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  bottom: 18px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.25);
  color: #ffffff;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.1em;
  padding: 9px 14px;
  position: fixed;
  right: 18px;
  z-index: 900;
}

.preview-badge span {
  background: #40d99a;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(64, 217, 154, 0.15);
  height: 7px;
  width: 7px;
}

.preview-switcher {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(12, 24, 41, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  bottom: 18px;
  box-shadow: 0 18px 46px rgba(4, 18, 34, 0.24);
  color: #ffffff;
  display: flex;
  font-size: 12px;
  gap: 3px;
  left: 50%;
  max-width: calc(100vw - 28px);
  padding: 6px;
  position: fixed;
  transform: translateX(-50%);
  z-index: 899;
}

.preview-switcher strong,
.preview-switcher a {
  align-items: center;
  border-radius: 9px;
  display: flex;
  min-height: 36px;
  padding: 7px 10px;
  white-space: nowrap;
}

.preview-switcher strong {
  color: #8ce8c1;
  font-size: 10px;
  gap: 7px;
  letter-spacing: 0.12em;
}

.preview-switcher strong span {
  background: #40d99a;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(64, 217, 154, 0.14);
  height: 7px;
  width: 7px;
}

.preview-switcher a {
  color: #d7e3ee;
  transition: background 180ms ease, color 180ms ease;
}

.preview-switcher a:hover,
.preview-switcher a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(216, 229, 238, 0.8);
  position: sticky;
  top: 0;
  transition: box-shadow 220ms ease, background-color 220ms ease;
  z-index: 500;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 36px rgba(15, 74, 113, 0.1);
}

.utility-bar {
  background: var(--color-ink);
  color: #d9e8f2;
  font-size: 14px;
}

.utility-bar__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 44px;
}

.utility-bar p {
  letter-spacing: 0.02em;
  margin: 0;
}

.utility-bar__contacts {
  align-items: center;
  display: flex;
  gap: 14px;
}

.utility-bar__contacts a {
  align-items: center;
  color: #ffffff;
  display: flex;
  min-height: 44px;
  transition: color 180ms ease;
}

.utility-bar__contacts a:hover {
  color: var(--color-cyan);
}

.utility-bar__contacts span {
  background: rgba(255, 255, 255, 0.22);
  height: 14px;
  width: 1px;
}

.utility-bar__contacts img {
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
  width: auto;
}

.utility-bar__contacts br {
  display: none;
}

.header-main {
  align-items: center;
  display: flex;
  gap: 34px;
  min-height: 98px;
}

.brand {
  flex: 0 0 auto;
  min-height: 44px;
}

.brand img {
  height: auto;
  max-width: 250px;
  width: 100%;
}

.header-main__content {
  align-items: center;
  display: flex;
  flex: 1;
  gap: 24px;
  justify-content: flex-end;
}

.primary-nav {
  flex: 0 1 auto;
  min-width: 46px;
}

.primary-nav #mbmcpebul_wrapper {
  max-width: none !important;
}

.primary-nav #mbmcpebul_table {
  align-items: center;
  display: flex;
  gap: 4px;
  margin: 0 !important;
}

.primary-nav #mbmcpebul_table > li {
  margin: 0;
}

.primary-nav #mbmcpebul_table > li > .buttonbg {
  border: 0;
  height: auto;
  width: auto !important;
}

.primary-nav #mbmcpebul_table > li > .buttonbg > a {
  align-items: center;
  border-radius: 10px;
  color: var(--color-text);
  display: flex;
  font-size: 15px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.015em;
  min-height: 46px;
  padding: 10px 13px;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease;
  white-space: nowrap;
}

.primary-nav #mbmcpebul_table > li:hover > .buttonbg > a,
.primary-nav #mbmcpebul_table > li.active > .buttonbg > a,
.primary-nav #mbmcpebul_table > li > .buttonbg > a:focus-visible {
  background: var(--color-soft);
  color: var(--color-blue-dark);
}

.primary-nav #mbmcpebul_table_burger {
  margin: 0;
}

.primary-nav #mbmcpebul_table_burger > .hamburger_button {
  margin: 0;
}

.primary-nav #mbmcpebul_table_burger > .hamburger_button > .buttonbg {
  background: var(--color-soft);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  height: 46px;
  width: 46px;
}

.primary-nav #mbmcpebul_table_burger .hamburger_icon {
  background-position: center;
  height: 44px;
  width: 44px;
}

.primary-nav #mbmcpebul_hamburger_menu {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  min-width: min(330px, calc(100vw - 32px));
  overflow: hidden;
  right: 0 !important;
}

.primary-nav #mbmcpebul_hamburger_menu > li > a {
  color: var(--color-ink);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  min-height: 48px;
}

.primary-nav #mbmcpebul_hamburger_menu > li > a:hover,
.primary-nav #mbmcpebul_hamburger_menu > li > a:focus-visible {
  background: var(--color-soft);
  color: var(--color-blue-dark);
}

.site-search {
  align-items: center;
  background: var(--color-soft);
  border: 1px solid transparent;
  border-radius: 12px;
  display: flex;
  min-width: 220px;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-search:focus-within {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 4px rgba(10, 120, 209, 0.1);
}

.site-search input[type="search"] {
  background: transparent;
  border: 0;
  color: var(--color-ink);
  min-height: 46px;
  min-width: 0;
  outline: 0;
  padding: 0 0 0 14px;
  width: 100%;
}

.site-search input::placeholder {
  color: #7890a1;
}

.site-search button {
  background: var(--color-blue);
  border: 0;
  color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  min-height: 46px;
  padding: 0 14px;
  transition: background-color 180ms ease;
}

.site-search button:hover {
  background: var(--color-blue-dark);
}

/* Shared UI */
.section {
  padding: 104px 0;
  scroll-margin-top: 138px;
}

.eyebrow {
  align-items: center;
  color: var(--color-blue-dark);
  display: flex;
  font-size: 14px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.12em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.eyebrow span {
  background: linear-gradient(90deg, var(--color-blue), var(--color-cyan));
  border-radius: 3px;
  height: 3px;
  width: 32px;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
  margin-bottom: 46px;
}

.section-heading h2,
.story__content h2,
.final-cta h2 {
  color: var(--color-ink);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
}

.section-heading > p {
  color: var(--color-muted);
  font-size: 18px;
  margin: 0 0 5px;
}

.section-heading--aligned {
  align-items: end;
  grid-template-columns: 1fr auto;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 12px;
  display: inline-flex;
  font-size: 16px;
  font-weight: 800;
  gap: 12px;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--color-blue-dark), var(--color-blue), #0a91e8);
  box-shadow: var(--shadow-blue);
  color: #ffffff;
}

.button--primary:hover {
  box-shadow: 0 22px 44px rgba(10, 120, 209, 0.3);
}

.button--secondary {
  background: #ffffff;
  border-color: var(--color-border);
  color: var(--color-ink);
}

.button--secondary:hover {
  border-color: var(--color-blue);
  color: var(--color-blue-dark);
}

.button--light {
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(4, 72, 131, 0.24);
  color: var(--color-blue-dark);
}

.text-link {
  align-items: center;
  color: var(--color-blue-dark);
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  min-height: 44px;
  padding: 6px 0;
}

.text-link span,
.product-card__link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.product-card__link:hover span {
  transform: translateX(4px);
}

/* Hero */
.hero {
  background: linear-gradient(160deg, #ffffff 0%, #f5fbff 50%, #eaf7fc 100%);
  isolation: isolate;
  min-height: 680px;
  overflow: hidden;
  padding: 76px 0 86px;
  position: relative;
}

.hero::before {
  background-image: radial-gradient(rgba(10, 120, 209, 0.14) 1px, transparent 1px);
  background-size: 26px 26px;
  content: "";
  height: 310px;
  left: -70px;
  mask-image: linear-gradient(90deg, #000, transparent);
  opacity: 0.6;
  position: absolute;
  top: 56px;
  width: 430px;
  z-index: -1;
}

.hero__ambient {
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.hero__ambient--one {
  background: rgba(32, 197, 230, 0.18);
  height: 340px;
  right: -120px;
  top: -90px;
  width: 340px;
}

.hero__ambient--two {
  background: rgba(10, 120, 209, 0.08);
  bottom: -220px;
  height: 520px;
  left: 36%;
  width: 520px;
}

.hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(44px, 6vw, 86px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.hero__content {
  max-width: 625px;
}

.hero h1 {
  color: var(--color-ink);
  font-size: clamp(44px, 5.2vw, 70px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.99;
  margin: 0;
}

.hero__lead {
  color: var(--color-text);
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.55;
  margin: 26px 0 0;
  max-width: 590px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__benefits {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.hero__benefits li {
  align-items: center;
  color: #475569;
  display: flex;
  font-size: 15px;
  font-weight: 700;
  gap: 7px;
}

.hero__benefits span {
  align-items: center;
  background: #dff8f1;
  border-radius: 50%;
  color: var(--color-success);
  display: inline-flex;
  font-size: 11px;
  height: 22px;
  justify-content: center;
  width: 22px;
}

.hero__benefits span::after {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  height: 8px;
  transform: translateY(-1px) rotate(45deg);
  width: 4px;
}

.hero__visual {
  padding: 20px 0 54px 26px;
  position: relative;
}

.hero__image-wrap {
  border: 10px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: visible;
  position: relative;
}

.hero__image-wrap::before {
  background: linear-gradient(135deg, rgba(10, 120, 209, 0.14), rgba(32, 197, 230, 0.2));
  border-radius: 34px;
  content: "";
  inset: -32px 28px 24px -28px;
  position: absolute;
  transform: rotate(-2.5deg);
  z-index: -1;
}

.hero__image-wrap > img {
  aspect-ratio: 1.52 / 1;
  border-radius: 20px;
  object-fit: cover;
  width: 100%;
}

.hero__experience {
  align-items: center;
  background: linear-gradient(135deg, var(--color-blue-dark), #0a91e8, var(--color-cyan));
  border: 5px solid #ffffff;
  border-radius: 18px;
  bottom: -34px;
  box-shadow: var(--shadow-blue);
  color: #ffffff;
  display: flex;
  gap: 10px;
  left: -34px;
  min-height: 104px;
  padding: 16px 20px;
  position: absolute;
}

.hero__experience strong {
  font-size: 42px;
  line-height: 1;
}

.hero__experience span {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  padding-left: 10px;
  text-transform: uppercase;
}

.hero__note {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(216, 229, 238, 0.9);
  border-radius: 14px;
  bottom: 0;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 12px;
  padding: 13px 17px;
  position: absolute;
  right: -8px;
}

.hero__note-mark {
  background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(32, 197, 230, 0.11);
  height: 14px;
  margin: 0 5px;
  width: 14px;
}

.hero__note p {
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.35;
  margin: 0;
}

.hero__note strong {
  color: var(--color-ink);
  font-size: 15px;
}

/* Categories */
.categories {
  background: #ffffff;
}

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

.category-card {
  background: var(--color-ink);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  color: #ffffff;
  overflow: hidden;
  position: relative;
}

.category-card--featured {
  grid-column: span 2;
  grid-row: span 2;
}

.category-card:nth-child(4) {
  grid-column: span 2;
}

.category-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
  width: 100%;
}

.category-card:hover img {
  transform: scale(1.055);
}

.category-card__shade {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 20%, rgba(9, 28, 48, 0.88) 100%);
  inset: 0;
  position: absolute;
}

.category-card__index {
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  color: var(--color-blue-dark);
  display: flex;
  font-size: 12px;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  left: 18px;
  position: absolute;
  top: 18px;
  width: 42px;
}

.category-card__content {
  bottom: 0;
  display: grid;
  gap: 4px;
  grid-template-columns: 1fr auto;
  left: 0;
  padding: 24px;
  position: absolute;
  right: 0;
}

.category-card__content strong {
  font-size: 24px;
  line-height: 1.1;
}

.category-card__content small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  grid-column: 1;
}

.category-card__content i {
  align-items: center;
  align-self: end;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  display: flex;
  font-style: normal;
  grid-column: 2;
  grid-row: 1 / span 2;
  height: 44px;
  justify-content: center;
  transition: background-color 180ms ease, transform 180ms ease;
  width: 44px;
}

.category-card:hover .category-card__content i {
  background: var(--color-cyan);
  transform: translateX(3px);
}

/* Trust strip */
.trust-strip {
  background: linear-gradient(115deg, #075fc6 0%, #0a82d9 58%, #20c5e6 100%);
  color: #ffffff;
  overflow: hidden;
  padding: 34px 0;
  position: relative;
}

.trust-strip::after {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
  height: 310px;
  position: absolute;
  right: -80px;
  top: -150px;
  width: 310px;
}

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

.trust-item {
  align-items: center;
  display: flex;
  gap: 20px;
  min-height: 100px;
  padding: 6px 38px;
}

.trust-item + .trust-item {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.trust-item > strong {
  color: #ffffff;
  font-size: 37px;
  letter-spacing: -0.04em;
  line-height: 1;
  min-width: 68px;
}

.trust-item h3 {
  font-size: 18px;
  line-height: 1.2;
  margin: 0 0 5px;
}

.trust-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

/* Products */
.products {
  background: var(--color-page);
}

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

.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 28px rgba(15, 74, 113, 0.05);
  min-width: 0;
  overflow: hidden;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.product-card:hover {
  border-color: #b8d5e8;
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.product-card__image {
  align-items: center;
  aspect-ratio: 1.07 / 1;
  background: linear-gradient(160deg, #f9fcfe, #edf6fb);
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
  position: relative;
}

.product-card__image img {
  height: 100%;
  mix-blend-mode: multiply;
  object-fit: contain;
  transition: transform 320ms ease;
  width: 100%;
}

.product-card:hover .product-card__image img {
  transform: scale(1.035);
}

.stock-badge {
  background: #dcfce7;
  border-radius: 999px;
  color: #087f5b;
  font-size: 12px;
  font-weight: 800;
  left: 14px;
  letter-spacing: 0.03em;
  padding: 6px 10px;
  position: absolute;
  text-transform: uppercase;
  top: 14px;
  z-index: 1;
}

.product-badge {
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  position: absolute;
  right: 14px;
  text-transform: uppercase;
  top: 14px;
  z-index: 1;
}

.product-badge--promo {
  background: #d7334a;
}

.product-badge--new {
  background: var(--color-blue-dark);
}

.product-badge--promo + .product-badge--new {
  top: 48px;
}

.product-card__body {
  padding: 20px 20px 22px;
}

.product-card__body > p {
  color: var(--color-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.07em;
  margin: 0 0 7px;
  text-transform: uppercase;
}

.product-card h3 {
  color: var(--color-ink);
  font-size: 21px;
  line-height: 1.25;
  margin: 0;
  min-height: 53px;
}

.product-card h3 a {
  align-items: flex-start;
  display: flex;
  min-height: 44px;
  transition: color 180ms ease;
}

.product-card h3 a:hover {
  color: var(--color-blue-dark);
}

.product-card__price {
  align-items: baseline;
  display: flex;
  gap: 9px;
  margin-top: 14px;
}

.product-card__price del {
  color: var(--color-muted);
  font-size: 14px;
}

.product-card__price strong {
  color: var(--color-blue-dark);
  font-size: 20px;
}

.product-card__link {
  align-items: center;
  border-top: 1px solid var(--color-border);
  color: var(--color-blue-dark);
  display: flex;
  font-size: 15px;
  font-weight: 800;
  gap: 8px;
  justify-content: space-between;
  margin-top: 18px;
  min-height: 44px;
  padding-top: 14px;
}

/* Company story */
.story {
  background: #ffffff;
  overflow: hidden;
}

.story__grid {
  align-items: center;
  display: grid;
  gap: clamp(48px, 7vw, 104px);
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.story__visual {
  position: relative;
}

.story__visual::before {
  background-image: radial-gradient(rgba(10, 120, 209, 0.2) 1.4px, transparent 1.4px);
  background-size: 21px 21px;
  content: "";
  height: 230px;
  left: -52px;
  position: absolute;
  top: -40px;
  width: 230px;
}

.story__visual img {
  aspect-ratio: 1.18 / 1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  position: relative;
  width: 100%;
}

.story__year {
  background: #ffffff;
  border-left: 5px solid var(--color-cyan);
  border-radius: 14px;
  bottom: -28px;
  box-shadow: var(--shadow-md);
  display: grid;
  left: 42px;
  padding: 14px 24px;
  position: absolute;
}

.story__year span {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story__year strong {
  color: var(--color-blue-dark);
  font-size: 42px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.story__content h2 {
  font-size: clamp(38px, 4.5vw, 58px);
}

.story__content > p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: 18px;
  margin: 22px 0 0;
}

.story__db-content {
  color: var(--color-muted);
  font-size: 18px;
  margin-top: 22px;
}

.story__db-content p {
  margin: 0 0 18px;
}

.story__db-content p:last-child {
  margin-bottom: 0;
}

.story__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 32px;
}

.story__contact {
  display: grid;
  min-height: 44px;
}

.story__contact span {
  color: var(--color-muted);
  font-size: 13px;
}

.story__contact strong {
  color: var(--color-ink);
  font-size: 20px;
  transition: color 180ms ease;
}

.story__contact:hover strong {
  color: var(--color-blue-dark);
}

/* Final CTA */
.final-cta {
  background: #ffffff;
  padding: 0 0 104px;
  scroll-margin-top: 138px;
}

.final-cta__inner {
  align-items: center;
  background: linear-gradient(115deg, #063f7d 0%, #075fc6 48%, #0a93e6 78%, #20c5e6 100%);
  border-radius: 28px;
  box-shadow: var(--shadow-blue);
  color: #ffffff;
  display: flex;
  gap: 44px;
  justify-content: space-between;
  overflow: hidden;
  padding: 48px 56px;
  position: relative;
}

.final-cta__inner::after {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
  height: 300px;
  position: absolute;
  right: 120px;
  top: -170px;
  width: 300px;
}

.final-cta p {
  color: #aeeefe;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.final-cta h2 {
  color: #ffffff;
  font-size: clamp(31px, 3.8vw, 48px);
  max-width: 760px;
}

.final-cta .button {
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

/* Footer */
.site-footer {
  background: #0c1829;
  color: #cfdae6;
  padding: 74px 0 28px;
}

.footer-grid {
  display: grid;
  gap: 52px;
  grid-template-columns: 1.5fr 0.65fr 1fr 0.9fr;
}

.footer-brand img {
  height: auto;
  margin-bottom: 20px;
  max-width: 235px;
}

.footer-brand > a {
  align-items: center;
  display: inline-flex;
  min-height: 44px;
}

.footer-brand p {
  color: #a6b4c4;
  font-size: 16px;
  margin: 0 0 15px;
  max-width: 320px;
}

.footer-brand > span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h2 {
  color: #ffffff;
  font-size: 17px;
  letter-spacing: 0.08em;
  margin: 4px 0 12px;
  text-transform: uppercase;
}

.footer-column a {
  align-items: center;
  color: #aebdcd;
  display: flex;
  font-size: 15px;
  min-height: 44px;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column > a:hover {
  color: var(--color-cyan);
  transform: translateX(3px);
}

.footer-contact a,
.footer-contact p {
  color: #ffffff;
  font-size: 16px;
  margin: 0 0 7px;
}

.footer-contact span {
  color: #7f94a9;
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact__dynamic {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.8;
}

.footer-social {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 14px;
  margin-top: 48px;
  padding-top: 24px;
}

.footer-social > span {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-social > div {
  display: flex;
  gap: 8px;
}

.footer-social img {
  height: 30px;
  width: 30px;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 24px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.footer-bottom a {
  align-items: center;
  color: #aebdcd;
  display: flex;
  min-height: 44px;
  transition: color 180ms ease;
}

.footer-bottom a:hover {
  color: var(--color-cyan);
}

/* Reveal motion */
.reveal {
  opacity: 1;
  transform: none;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.category-card:nth-child(2),
.product-card:nth-child(2),
.trust-item:nth-child(2) {
  transition-delay: 70ms;
}

.category-card:nth-child(3),
.product-card:nth-child(3),
.trust-item:nth-child(3) {
  transition-delay: 130ms;
}

.category-card:nth-child(4),
.product-card:nth-child(4) {
  transition-delay: 190ms;
}

.category-card:nth-child(5) {
  transition-delay: 250ms;
}

/* Responsive */
@media (max-width: 1180px) {
  .header-main {
    gap: 22px;
  }

  .brand img {
    max-width: 210px;
  }

  .header-main__content {
    gap: 12px;
  }

  .primary-nav #mbmcpebul_table > li > .buttonbg > a {
    font-size: 14px;
    padding-left: 9px;
    padding-right: 9px;
  }

  .site-search {
    min-width: 185px;
  }

  .trust-item {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 1020px) {
  .utility-bar p {
    display: none;
  }

  .utility-bar__inner {
    justify-content: flex-end;
  }

  .header-main {
    justify-content: space-between;
    min-height: 82px;
  }

  .header-main__content {
    display: flex;
    gap: 12px;
  }

  .site-search {
    min-width: 210px;
  }

  .hero {
    padding-top: 64px;
  }

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

  .hero__content {
    max-width: 760px;
  }

  .hero__visual {
    margin-left: auto;
    margin-right: auto;
    max-width: 760px;
    width: 100%;
  }

  .section-heading {
    gap: 30px;
  }

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

  .category-card:nth-child(4) {
    grid-column: span 1;
  }

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

  .trust-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .story__grid {
    gap: 64px;
  }

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

  .footer-contact {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding: 78px 0;
  }

  .utility-bar__inner {
    justify-content: center;
  }

  .header-main {
    display: grid;
    gap: 12px 18px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding-bottom: 14px;
    padding-top: 14px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .header-main__content {
    display: contents;
  }

  .primary-nav {
    grid-column: 2;
    grid-row: 1;
  }

  .primary-nav #mbmcpebul_wrapper {
    max-width: 52px !important;
    min-width: 52px;
    width: 52px;
  }

  .primary-nav #mbmcpebul_table {
    flex-wrap: wrap;
  }

  .site-search {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }

  .hero {
    padding: 54px 0 72px;
  }

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

  .hero__visual {
    padding-left: 12px;
  }

  .hero__experience {
    left: -12px;
  }

  .hero__note {
    display: none;
  }

  .section-heading,
  .section-heading--aligned {
    align-items: start;
    grid-template-columns: 1fr;
    margin-bottom: 34px;
  }

  .section-heading > p {
    max-width: 560px;
  }

  .category-grid {
    grid-auto-rows: 230px;
  }

  .category-card--featured {
    grid-row: span 1;
  }

  .category-card__content strong {
    font-size: 21px;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    align-items: center;
    flex-direction: row;
    padding: 20px 10px;
  }

  .trust-item + .trust-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

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

  .story__visual {
    max-width: 620px;
  }

  .final-cta {
    padding-bottom: 78px;
  }

  .final-cta__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 38px 34px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 520px) {
  body.home-v3 {
    font-size: 16px;
  }

  .utility-bar {
    display: none;
  }

  .header-main {
    min-height: 76px;
  }

  .brand img {
    max-width: 180px;
  }

  .preview-badge {
    bottom: 10px;
    font-size: 10px;
    right: 10px;
  }

  .hero__lead {
    font-size: 18px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

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

  .hero__image-wrap {
    border-width: 6px;
    border-radius: 24px;
  }

  .hero__experience {
    bottom: -28px;
    min-height: 88px;
    padding: 12px 16px;
  }

  .hero__experience strong {
    font-size: 34px;
  }

  .section-heading h2,
  .story__content h2 {
    font-size: 36px;
  }

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

  .category-card,
  .category-card--featured,
  .category-card:nth-child(4) {
    grid-column: span 1;
  }

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

  .product-card h3 {
    min-height: 0;
  }

  .story__year {
    bottom: -22px;
    left: 20px;
  }

  .story__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .story__actions .button {
    width: 100%;
  }

  .final-cta__inner {
    border-radius: 22px;
    padding: 32px 24px;
  }

  .final-cta .button {
    width: 100%;
  }

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

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
