@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0&display=swap");

:root {
  --bg: #f3f6fb;
  --surface: #ffffff;
  --surface-soft: #f6fbff;
  --surface-pink: #fff6fa;
  --line: #dfe8f2;
  --line-strong: #c3d4e2;
  --text: #283743;
  --muted: #71808b;
  --blue: #D7EFFF;
  --blue-soft: #edf8ff;
  --pink: #EECEDC;
  --pink-soft: #fff1f6;
  --lavender: #e8e7f7;
  --mist: #f5f6fb;
  --accent: #9ab8c7;
  --accent-dark: #526a76;
  --accent-pink: #b98f9f;
  --accent-blue: #8bb8cf;
  --radius-xs: 2px;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --surface-glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 28px 70px rgba(64, 86, 112, 0.10);
  --shadow-soft: 0 16px 42px rgba(64, 86, 112, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  overflow-x: clip;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 22% 18%, rgba(215, 239, 255, 0.62), transparent 36%),
    radial-gradient(ellipse at 82% 4%, rgba(238, 206, 220, 0.42), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.62), rgba(243, 246, 251, 0.98));
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(1180px, calc(100% - 40px));
  margin: 14px auto 0;
  border: 1px solid rgba(210, 221, 233, 0.76);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 52px rgba(64, 86, 112, 0.08);
  backdrop-filter: blur(26px) saturate(1.18);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-header::before {
  content: none;
}

.site-header:hover {
  border-color: rgba(195, 212, 226, 0.96);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 58px rgba(64, 86, 112, 0.09);
}

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

.header-inner {
  width: 100%;
  min-height: 72px;
  padding: 0 12px 0 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 136px;
  text-decoration: none;
  transition: transform 180ms ease, opacity 180ms ease;
}

.brand:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.brand img,
.brand .logo-svg {
  width: 136px;
  height: auto;
  display: block;
  transform: scale(1.14);
  transform-origin: left center;
}

.prototype-label {
  padding: 5px 9px;
  border: 1px solid rgba(184, 212, 230, 0.72);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.nav a {
  position: relative;
  padding: 10px 11px;
  border-radius: 0;
  color: rgba(40, 55, 67, 0.68);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, rgba(139, 184, 207, 0.72), rgba(185, 143, 159, 0.62));
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a.active {
  background: transparent;
  color: var(--text);
  transform: translateY(-1px);
}

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

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid rgba(195, 212, 226, 0.9);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(58, 111, 139, 0.055);
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-action:hover {
  transform: translateY(-1px);
  border-color: rgba(154, 184, 199, 0.72);
  background: rgba(247, 252, 255, 0.94);
  box-shadow: 0 16px 34px rgba(58, 111, 139, 0.09);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  padding: 8px 10px;
  font: inherit;
  font-weight: 650;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(53, 111, 139, 0.32);
  box-shadow: 0 10px 24px rgba(53, 111, 139, 0.10);
}

.page {
  padding: 28px 0 80px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.78fr);
  min-height: min(720px, calc(100vh - 138px));
  max-height: none;
  gap: 42px;
  align-items: center;
  padding: 56px 44px 54px;
  border: 1px solid rgba(210, 221, 233, 0.74);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(110deg, rgba(255,255,255,0.82), rgba(247,249,255,0.56)),
    rgba(255,255,255,0.66);
  box-shadow: 0 32px 90px rgba(64, 86, 112, 0.10);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(195, 212, 226, 0.34) 1px, transparent 1px) 0 0 / 100% 100% no-repeat,
    linear-gradient(0deg, rgba(195, 212, 226, 0.34) 1px, transparent 1px) 0 100% / 100% 1px no-repeat;
  opacity: 0.7;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  animation: heroFadeUp 760ms ease both;
}

.hero-kicker {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
}

.hero-kicker span {
  padding: 8px 11px;
  border: 1px solid rgba(184, 212, 230, 0.75);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 10px 26px rgba(53, 111, 139, 0.06);
}

.hero-kicker span:nth-child(2) {
  animation: softPulse 4.8s ease-in-out infinite;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--text);
}

h1 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 760;
  max-width: 820px;
  line-height: 1.03;
}

.hero h1 {
  font-size: clamp(36px, 4vw, 56px);
  text-wrap: balance;
  max-width: 760px;
  line-height: 1.03;
}

.page > .container:not(.hero) > h1 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.03;
  max-width: 760px;
}

h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 750;
}

h3 {
  font-size: 18px;
  font-weight: 700;
}

.lead {
  margin: 20px 0 0;
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero .lead {
  max-width: 620px;
  margin-top: 18px;
  animation: heroFadeUp 760ms 90ms ease both;
}

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

.hero .actions {
  margin-top: 26px;
  animation: heroFadeUp 760ms 160ms ease both;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid rgba(82, 106, 118, 0.64);
  border-radius: var(--radius-pill);
  background: #526a76;
  color: #fff;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(58, 111, 139, 0.14);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--accent-dark);
  border-color: rgba(184, 212, 230, 0.92);
  box-shadow: none;
}

.button:hover {
  transform: translateY(-1px);
  background: #465e6a;
  box-shadow: 0 14px 28px rgba(58, 111, 139, 0.18);
}

.button.secondary:hover {
  background: rgba(255, 246, 250, 0.9);
  color: var(--text);
  box-shadow: 0 10px 20px rgba(58, 111, 139, 0.07);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-points {
  animation: heroFadeUp 760ms 230ms ease both;
}

.hero-points span {
  padding: 8px 10px;
  border: 1px solid rgba(216, 232, 242, 0.9);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.hero-points span:hover {
  color: var(--text);
  border-color: rgba(154, 184, 199, 0.48);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 520px;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroVisualIn 900ms 120ms ease both;
  transform-style: preserve-3d;
}

.hero-orbit {
  display: none;
  position: absolute;
  z-index: -1;
  border-radius: var(--radius-pill);
  filter: blur(4px);
  opacity: 0.8;
  animation: orbitBreathe 7.5s ease-in-out infinite;
}

.hero-orbit-blue {
  width: 360px;
  height: 360px;
  top: 12px;
  left: 8px;
  background: rgba(215, 239, 255, 0.82);
}

.hero-orbit-pink {
  width: 320px;
  height: 320px;
  right: 8px;
  bottom: 24px;
  background: rgba(238, 206, 220, 0.62);
  animation-delay: -2.2s;
}

.hero-media {
  position: relative;
  min-height: 520px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0);
  transition: transform 220ms ease-out;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 10% -10% 8% -10%;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 38%, rgba(238, 206, 220, 0.56), transparent 35%),
    radial-gradient(circle at 34% 58%, rgba(215, 239, 255, 0.72), transparent 42%),
    rgba(232, 231, 247, 0.44);
  filter: blur(24px);
  opacity: 0.85;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
  padding: 0;
  filter: drop-shadow(0 34px 42px rgba(64, 86, 112, 0.13));
  animation: birdFloat 6.2s ease-in-out infinite;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 3px;
  min-width: 148px;
  padding: 13px 15px;
  border: 1px solid rgba(216, 232, 242, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 38px rgba(53, 111, 139, 0.12);
  backdrop-filter: blur(14px);
  animation: badgeFloat 5.5s ease-in-out infinite;
}

.hero-badge strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.hero-badge span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.hero-badge-top {
  top: 26px;
  left: -28px;
}

.hero-badge-bottom {
  right: -22px;
  bottom: 34px;
  animation-delay: -2.4s;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: inline-flex;
  width: 34px;
  height: 50px;
  align-items: flex-start;
  justify-content: center;
  padding-top: 9px;
  border: 1px solid rgba(184, 212, 230, 0.72);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 28px rgba(53, 111, 139, 0.08);
  transform: translateX(-50%);
  backdrop-filter: blur(12px);
}

.hero-scroll span {
  width: 5px;
  height: 9px;
  border-radius: var(--radius-pill);
  background: var(--accent-dark);
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes heroFadeUp {
  from {
    opacity: 0.96;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroVisualIn {
  from {
    opacity: 0.96;
    transform: translateX(20px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes birdFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-0.4deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotate(0.6deg);
  }
}

@keyframes orbitBreathe {
  0%, 100% {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 0.74;
  }
  50% {
    transform: scale(1.08) translate3d(8px, -8px, 0);
    opacity: 0.92;
  }
}

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

@keyframes softPulse {
  0%, 100% {
    box-shadow: 0 10px 26px rgba(53, 111, 139, 0.06);
  }
  50% {
    box-shadow: 0 14px 32px rgba(58, 111, 139, 0.10);
  }
}

@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 0.35;
  }
  45% {
    transform: translateY(13px);
    opacity: 1;
  }
  100% {
    transform: translateY(22px);
    opacity: 0;
  }
}

.section {
  padding: 58px 0;
  border-bottom: 1px solid rgba(210, 221, 233, 0.66);
}

.value-section {
  padding-top: 44px;
}

.value-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.value-lead {
  position: relative;
  min-height: 320px;
  display: grid;
  align-content: end;
  padding: 34px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(247, 252, 255, 0.52)),
    radial-gradient(circle at 12% 12%, rgba(215, 239, 255, 0.72), transparent 36%),
    radial-gradient(circle at 88% 12%, rgba(238, 206, 220, 0.44), transparent 34%);
}

.value-lead::after {
  content: "";
  position: absolute;
  right: 32px;
  top: 32px;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(195, 212, 226, 0.72);
  border-radius: 50%;
}

.value-index {
  position: absolute;
  left: 34px;
  top: 30px;
  color: rgba(82, 106, 118, 0.34);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
}

.value-lead h3 {
  max-width: 520px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
}

.value-lead p {
  max-width: 650px;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.7;
}

.value-side {
  display: grid;
  gap: 18px;
}

.value-side .panel {
  min-height: 151px;
  padding: 28px;
}

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

.section-head p {
  max-width: 560px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

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

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

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

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

.panel,
.card,
.form-shell,
.table-shell {
  border: 1px solid rgba(210, 221, 233, 0.74);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.panel,
.card {
  padding: 20px;
}

a.card {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.card,
.panel {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card:hover,
.panel:hover {
  transform: translateY(-2px);
  border-color: rgba(154, 184, 199, 0.46);
  box-shadow: var(--shadow);
}

.card .placeholder,
.image-placeholder {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 0;
  border-radius: 0;
  background: #fff;
  overflow: hidden;
}

.card .placeholder img,
.image-placeholder img {
  display: block;
  width: auto;
  max-width: 108%;
  height: auto;
  max-height: 108%;
  transition: transform 360ms ease;
  will-change: transform;
}

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

.category-card {
  position: relative;
  padding: 16px;
}

.category-card .placeholder {
  height: clamp(178px, 17vw, 230px);
  margin: 0 0 12px;
  padding: 18px 8px 8px;
}

.category-count {
  display: inline-flex;
  margin: 0 0 8px;
  padding: 4px 8px;
  border: 1px solid rgba(216, 232, 242, 0.95);
  border-radius: var(--radius-pill);
  background: rgba(247, 252, 255, 0.82);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.category-card h3 {
  font-size: 16px;
  line-height: 1.25;
}

.category-card p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.45;
}

.card p,
.panel p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.product-card .tag-row {
  justify-content: center;
}

.tag {
  padding: 6px 9px;
  border: 1px solid rgba(216, 232, 242, 0.95);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

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

.sidebar {
  align-self: start;
  padding: 18px;
  border: 1px solid rgba(216, 232, 242, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.filter-group {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.filter-group:first-child {
  padding-top: 0;
}

.filter-group:last-child {
  border-bottom: 0;
}

.filter-group label,
.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.input,
.select,
.textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid rgba(184, 212, 230, 0.96);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(215, 239, 255, 0.58);
}

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

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid rgba(216, 232, 242, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.catalog-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 28px;
  align-items: end;
  padding: 46px 44px;
  border: 1px solid rgba(210, 221, 233, 0.74);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.84), rgba(247, 249, 255, 0.58)),
    rgba(255, 255, 255, 0.64);
  box-shadow: 0 24px 70px rgba(64, 86, 112, 0.08);
}

.catalog-intro h1 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.03;
}

.catalog-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.catalog-summary div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(210, 221, 233, 0.72);
  background: rgba(255, 255, 255, 0.62);
}

.catalog-summary strong {
  color: var(--text);
  font-size: 25px;
  font-weight: 780;
  line-height: 1;
}

.catalog-summary span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.category-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 18px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.catalog-sticky {
  position: sticky;
  top: 86px;
  z-index: 10;
  padding: 4px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.category-strip a {
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(216, 232, 242, 0.8);
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.category-strip a:hover {
  transform: translateX(3px);
  border-color: rgba(154, 184, 199, 0.68);
  color: var(--accent-dark);
}

.catalog-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  margin-bottom: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(216, 232, 242, 0.72);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  line-height: 1.55;
}

.catalog-note strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.product-card.card {
  padding: 0;
  border-color: rgba(216, 232, 242, 0.5);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: none;
  overflow: hidden;
}

.product-card.card:hover {
  border-color: rgba(154, 184, 199, 0.34);
  box-shadow: 0 12px 28px rgba(58, 111, 139, 0.055);
}

.product-card .placeholder {
  width: 100%;
  height: clamp(210px, 18vw, 270px);
  padding: 12px 8px 6px;
  aspect-ratio: auto;
  min-height: 0;
  margin: 0 0 18px;
  border: 0;
  border-radius: 0;
  background: #fff;
}

.product-card .placeholder img {
  width: auto;
  max-width: 112%;
  height: auto;
  max-height: 112%;
}

.product-card h3,
.product-card p,
.product-card .tag-row,
.product-card .product-meta {
  padding-inline: 16px;
}

.product-card h3 {
  text-align: left;
  font-size: 15px;
  line-height: 1.28;
}

.product-card h3::before {
  content: "Coubri";
  display: block;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.product-card p {
  min-height: 0;
  text-align: left;
  font-size: 14px;
  line-height: 1.45;
}

.product-card .product-specs {
  flex: 1;
}

.product-specs {
  display: grid;
  gap: 6px;
  margin: 12px 0 0;
  padding: 0 16px;
  list-style: none;
}

.product-specs li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 6px;
  border-top: 1px solid rgba(216, 232, 242, 0.58);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.product-specs strong {
  color: var(--text);
  font-weight: 650;
}

.product-card-actions {
  display: block;
  padding: 0 16px 16px;
}

.product-card-action {
  display: inline-flex;
  width: 100%;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 212, 230, 0.92);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.product-card-action:hover {
  transform: translateY(-1px);
  border-color: rgba(154, 184, 199, 0.52);
  background: rgba(247, 252, 255, 0.96);
}

.icon-panel {
  display: grid;
  align-content: start;
  gap: 10px;
}

.mini-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(184, 212, 230, 0.9);
  border-radius: var(--radius-sm);
  background: rgba(247, 252, 255, 0.86);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
}

.product-card h3 a {
  text-decoration: none;
}

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

.product-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  margin-top: 14px;
  padding-bottom: 12px;
  text-align: left;
}

.price {
  color: var(--text);
  font-weight: 800;
}

.wb-price,
.price-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.wb-logo {
  display: inline-block;
  width: 70px;
  height: auto;
  flex: 0 0 auto;
  vertical-align: middle;
}

.product-card .wb-logo {
  width: 58px;
}

.category-title-row {
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
}

.category-count {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  white-space: nowrap;
}

#products.grid.cols-3 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.status {
  justify-self: end;
  padding: 4px 7px;
  border-radius: var(--radius-pill);
  background: #eef8ef;
  color: #4e754e;
  font-size: 13px;
  font-weight: 650;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: start;
  padding: 34px;
  border: 1px solid rgba(210, 221, 233, 0.74);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.84), rgba(247, 249, 255, 0.5)),
    rgba(255, 255, 255, 0.66);
  box-shadow: 0 24px 70px rgba(64, 86, 112, 0.08);
}

.product-summary {
  display: grid;
  align-content: start;
  gap: 18px;
}

.product-summary-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-summary h1 {
  max-width: 640px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.03;
}

.summary-lead {
  max-width: 620px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.product-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-facts span {
  padding: 7px 10px;
  border: 1px solid rgba(216, 232, 242, 0.9);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.purchase-box {
  display: grid;
  gap: 0;
  border: 1px solid rgba(216, 232, 242, 0.72);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(216, 232, 242, 0.66);
}

.price-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.price-row .price {
  margin: 6px 0 0;
  font-size: 30px;
}

.price-note {
  padding: 5px 9px;
  border-radius: var(--radius-pill);
  background: rgba(247, 252, 255, 0.95);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.wholesale-request {
  margin: 6px 0 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
}

.summary-specs {
  display: grid;
  margin: 0;
  padding: 4px 20px 14px;
  list-style: none;
}

.summary-specs li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(216, 232, 242, 0.58);
  color: var(--muted);
  font-size: 14px;
}

.summary-specs li:last-child {
  border-bottom: 0;
}

.summary-specs strong {
  color: var(--text);
  font-weight: 700;
}

.purchase-box .actions {
  margin: 0;
  padding: 0 20px 20px;
}

.gallery-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 600px;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
  cursor: zoom-in;
  --zoom-x: 50%;
  --zoom-y: 50%;
  --map-x: 50%;
  --map-y: 50%;
}

.gallery-main img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 600px;
  transform-origin: var(--zoom-x) var(--zoom-y);
  transition: transform 80ms linear;
  will-change: transform;
}

.gallery-main:hover > img {
  transform: scale(1.62);
}

.gallery-map {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 94px;
  height: 118px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 232, 242, 0.86);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(58, 111, 139, 0.12);
  pointer-events: none;
}

.gallery-main:hover .gallery-map {
  display: flex;
}

.gallery-map img {
  max-width: 100%;
  max-height: 100%;
  transform: none !important;
}

.gallery-map span {
  position: absolute;
  left: clamp(14px, calc(var(--map-x) - 18px), 62px);
  top: clamp(16px, calc(var(--map-y) - 22px), 72px);
  width: 36px;
  height: 44px;
  border: 2px solid rgba(88, 113, 124, 0.72);
  background: rgba(215, 239, 255, 0.18);
}

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

.thumbs span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  border: 1px solid rgba(216, 232, 242, 0.78);
  border-radius: 0;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.thumbs span:hover,
.thumbs span.is-active {
  border-color: rgba(88, 113, 124, 0.42);
  box-shadow: 0 10px 22px rgba(58, 111, 139, 0.08);
  transform: translateY(-1px);
}

.thumbs img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  transition: transform 220ms ease;
}

.thumbs span:hover img {
  transform: scale(1.04);
}

.photo-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(36, 56, 68, 0.58);
  backdrop-filter: blur(14px);
}

.photo-modal.is-open {
  display: flex;
}

.photo-modal__inner {
  position: relative;
  max-width: min(920px, 100%);
  max-height: min(860px, 100%);
  padding: 20px;
  background: #fff;
  box-shadow: 0 28px 78px rgba(36, 56, 68, 0.22);
}

.photo-modal__inner img {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
}

.photo-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(216, 232, 242, 0.82);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.spec-list,
.step-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.spec-list li,
.step-list li {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list strong,
.step-list strong {
  color: var(--text);
}

.form-shell {
  padding: 22px;
}

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

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

.required {
  color: #d34f73;
}

.check-field {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.check-field input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--accent-dark);
}

.contact-check {
  align-self: end;
  min-height: 44px;
  padding: 12px;
  border: 1px solid rgba(184, 212, 230, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.consent-list {
  display: grid;
  gap: 9px;
  padding-top: 2px;
}

.form-success {
  display: none;
  grid-column: 1 / -1;
  padding: 14px 16px;
  border: 1px solid rgba(154, 184, 199, 0.36);
  border-radius: var(--radius);
  background: rgba(247, 252, 255, 0.86);
  color: var(--text);
  font-weight: 750;
  line-height: 1.5;
}

.form-shell.is-sent .form-success {
  display: block;
}

.table-shell {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: rgba(247, 252, 255, 0.88);
  color: var(--text);
  font-size: 14px;
}

.legal-text {
  max-width: 860px;
}

.legal-text p {
  color: var(--muted);
}

.narrow-text {
  max-width: 860px;
}

.landing-page {
  padding-top: 30px;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 42px;
  align-items: stretch;
  padding: 52px 44px;
  border: 1px solid rgba(210, 221, 233, 0.76);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(112deg, rgba(255,255,255,0.82), rgba(247,249,255,0.58)),
    rgba(255,255,255,0.66);
  box-shadow: 0 28px 78px rgba(64, 86, 112, 0.09);
  overflow: hidden;
}

.logistics-hero {
  grid-template-columns: minmax(0, 0.62fr) minmax(520px, 0.78fr);
  gap: 42px;
  align-items: center;
}

.landing-copy {
  display: grid;
  align-content: center;
}

.wholesale-hero {
  grid-template-columns: minmax(0, 0.72fr) minmax(460px, 0.68fr);
  align-items: center;
}

.landing-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  color: rgba(82, 106, 118, 0.9);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.landing-hero h1 {
  max-width: 720px;
}

.landing-hero .lead {
  max-width: 720px;
}

.landing-aside,
.contact-card-main {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 330px;
  padding: 26px;
  border: 1px solid rgba(210, 221, 233, 0.82);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.visual-scene {
  position: relative;
  min-height: 330px;
  display: grid;
  align-content: stretch;
  border: 1px solid rgba(210, 221, 233, 0.68);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(247, 252, 255, 0.86), rgba(255, 246, 250, 0.46)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(64, 86, 112, 0.055);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.visual-scene::before {
  content: none;
}

.scene-card,
.contact-bubble,
.route-step {
  position: absolute;
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(210, 221, 233, 0.68);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.wholesale-scene,
.contact-scene {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
  padding: 28px;
}

.wholesale-hero-illustration {
  position: relative;
  display: block;
  width: min(100%, 560px);
  min-height: 0;
  aspect-ratio: 1122 / 1402;
  justify-self: end;
  padding: 0;
  background: #fff url("wholesale-hero-price-v2.webp") center / cover no-repeat;
}

.wholesale-hero-illustration img {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.wholesale-scene::before,
.contact-scene::before {
  inset: 18px;
}

.scene-card span,
.contact-bubble small,
.route-step strong {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.scene-card strong,
.contact-bubble strong {
  color: var(--text);
  font-size: 22px;
  line-height: 1;
}

.scene-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.scene-price {
  position: relative;
  left: auto;
  top: auto;
  width: auto;
  z-index: 1;
}

.scene-request {
  position: relative;
  right: auto;
  top: auto;
  width: auto;
  z-index: 1;
}

.scene-box {
  position: relative;
  left: auto;
  bottom: auto;
  grid-column: 1 / -1;
  width: 100%;
  height: 168px;
  border: 1px solid rgba(210, 221, 233, 0.52);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(247, 249, 255, 0.58));
  box-shadow: none;
  overflow: hidden;
}

.scene-box span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44px;
  background: rgba(238, 206, 220, 0.22);
}

.scene-box img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 168px;
  height: 126px;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.scene-samples {
  position: absolute;
  right: 48px;
  bottom: 50px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.scene-samples img {
  width: 48px;
  height: 62px;
  object-fit: contain;
  border: 1px solid rgba(210, 221, 233, 0.82);
  background: rgba(255, 255, 255, 0.82);
}

.line-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid rgba(154, 184, 199, 0.5);
  border-radius: var(--radius-pill);
  background: rgba(247, 252, 255, 0.72);
  color: var(--accent-dark);
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.line-icon-request::before,
.line-icon-price::before,
.line-icon-mail::before {
  width: 20px;
  height: 24px;
  border: 2px solid currentColor;
}

.line-icon-request::after {
  width: 10px;
  height: 2px;
  background: currentColor;
  transform: translateY(6px);
  box-shadow: 0 -7px 0 currentColor;
}

.line-icon-price::after {
  content: "₽";
  position: static;
  border: 0;
  font-size: 17px;
  font-weight: 850;
}

.line-icon-crm::before,
.line-icon-category::before {
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  box-shadow: -7px -7px 0 -4px currentColor, 7px 7px 0 -4px currentColor;
}

.line-icon-wb::after {
  content: "WB";
  position: static;
  border: 0;
  font-size: 13px;
  font-weight: 850;
}

.line-icon-delivery::before,
.line-icon-courier::before {
  width: 24px;
  height: 14px;
  border: 2px solid currentColor;
}

.line-icon-delivery::after,
.line-icon-courier::after {
  width: 5px;
  height: 5px;
  bottom: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 15px 0 0 -2px var(--surface-soft), 15px 0 0 0 currentColor;
}

.line-icon-box::before,
.line-icon-sample::before {
  width: 24px;
  height: 20px;
  border: 2px solid currentColor;
  transform: skewY(-8deg);
}

.line-icon-min::after {
  content: "3k";
  position: static;
  border: 0;
  font-size: 15px;
  font-weight: 850;
}

.line-icon-pin::before {
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.line-icon-pin::after {
  width: 5px;
  height: 5px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.line-icon-route::before {
  width: 24px;
  height: 18px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 14px 0 0;
}

.line-icon-route::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: -18px 10px 0 currentColor;
}

.line-icon-brand::before {
  width: 22px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(-26deg) skewX(-12deg);
}

.line-icon-chat::before {
  width: 24px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 13px;
}

.line-icon-chat::after {
  left: 13px;
  bottom: 10px;
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-22deg);
}

.line-icon-mail::after {
  width: 18px;
  height: 18px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-4px) rotate(-45deg);
}

.feature-icon-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 210px;
  padding: 24px;
}

.feature-icon-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(238, 206, 220, 0.58);
  border-radius: 50%;
  opacity: 0.56;
}

.feature-icon-card h3 {
  max-width: 240px;
}

.delivery-scene {
  min-height: 360px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
  padding: 28px;
}

.delivery-illustration {
  position: relative;
  display: block;
  width: min(100%, 700px);
  min-height: 0;
  aspect-ratio: 1369 / 627;
  justify-self: end;
  padding: 0;
  background: #fff url("delivery-truck-cropped.webp") center / contain no-repeat;
}

.delivery-illustration img {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.route-line {
  display: none;
}

.route-step {
  position: relative;
  width: auto;
  align-items: center;
  justify-items: center;
  padding: 12px 10px;
  text-align: center;
  z-index: 2;
  background: rgba(255, 255, 255, 0.74);
}

.route-step-1,
.route-step-2,
.route-step-3,
.route-step-4 {
  left: auto;
  right: auto;
  top: auto;
  transform: none;
}

.route-step::after {
  content: "";
  position: absolute;
  left: calc(100% + 1px);
  top: 50%;
  width: 12px;
  height: 1px;
  background: rgba(154, 184, 199, 0.46);
}

.route-step-4::after {
  content: none;
}

.route-product {
  position: relative;
  grid-column: 1 / -1;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 156px;
  padding: 18px;
  border: 1px solid rgba(210, 221, 233, 0.52);
  background: rgba(255, 255, 255, 0.54);
  transform: none;
}

.icon-step-list {
  gap: 10px;
}

.icon-step-list li {
  grid-template-columns: 36px 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.icon-step-list .line-icon {
  width: 38px;
  height: 38px;
}

.route-product img,
.brand-product img,
.contact-device img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-scene {
  min-height: 500px;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 22px;
  padding: 42px;
}

.about-brand-hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.58fr);
  gap: 56px;
  align-items: center;
}

.about-brand-illustration {
  position: relative;
  display: block;
  width: min(100%, 500px);
  min-height: 0;
  aspect-ratio: 1122 / 1402;
  justify-self: end;
  padding: 0;
  background: #fff url("about-brand-hero-v2.webp") center / cover no-repeat;
}

.about-brand-illustration img {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.about-hero-illustration {
  display: grid;
  width: min(100%, 520px);
  min-height: 0;
  aspect-ratio: 1182 / 1330;
  justify-self: end;
  padding: 0;
  place-items: center;
  background: #fff;
}

.about-hero-illustration img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.about-hero h1 {
  max-width: 500px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.03;
}

.about-stack .container {
  display: grid;
  gap: 18px;
}

.about-section-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 28px;
}

.about-section-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.4vw, 34px);
}

.about-section-panel p {
  max-width: 960px;
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--text);
}

.clean-list li {
  padding-left: 4px;
  color: var(--text);
  line-height: 1.55;
}

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

.team-list div {
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border: 1px solid rgba(216, 232, 242, 0.72);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.62);
}

.team-list strong {
  color: var(--text);
}

.team-list span,
.team-list small {
  color: var(--muted);
  line-height: 1.45;
}

.brand-scene-logo {
  position: relative;
  left: auto;
  top: auto;
  z-index: 2;
  width: 210px;
  justify-self: center;
}

.brand-product {
  position: relative;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.brand-product-main {
  left: auto;
  right: auto;
  bottom: auto;
  height: 210px;
  padding: 0;
}

.brand-mark {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 2;
  color: rgba(82, 106, 118, 0.28);
  font-size: 64px;
  font-weight: 820;
  line-height: 1;
  justify-self: start;
}

.contact-scene {
  min-height: 340px;
  grid-template-rows: auto auto minmax(0, 1fr);
}

.contact-bubble-main {
  position: relative;
  left: auto;
  top: auto;
  width: auto;
  z-index: 1;
}

.contact-bubble-mail {
  position: relative;
  right: auto;
  top: auto;
  width: auto;
  z-index: 1;
}

.contact-bubble-map {
  position: relative;
  left: auto;
  bottom: auto;
  grid-column: 1 / -1;
  width: auto;
  min-height: 132px;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(215, 239, 255, 0.34) 1px, transparent 1px),
    linear-gradient(0deg, rgba(215, 239, 255, 0.34) 1px, transparent 1px),
    rgba(255, 255, 255, 0.52);
  background-size: 34px 34px;
}

.contact-bubble > span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  color: var(--accent-dark);
  font-weight: 850;
}

.contact-device {
  position: absolute;
  right: 46px;
  bottom: 48px;
  width: 118px;
  height: 118px;
  padding: 12px;
  border: 1px solid rgba(210, 221, 233, 0.82);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 34px rgba(64, 86, 112, 0.08);
}

.line-icon::before {
  content: "";
  position: static;
  width: auto;
  height: auto;
  border: 0;
  box-shadow: none;
  transform: none;
  font-family: "Material Symbols Outlined";
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.line-icon::after {
  content: none !important;
}

.line-icon-request::before { content: "description"; }
.line-icon-price::before { content: "request_quote"; }
.line-icon-crm::before { content: "hub"; }
.line-icon-category::before { content: "category"; }
.line-icon-wb::before { content: "shopping_bag"; }
.line-icon-delivery::before { content: "local_shipping"; }
.line-icon-courier::before { content: "local_shipping"; }
.line-icon-box::before { content: "inventory_2"; }
.line-icon-sample::before { content: "deployed_code"; }
.line-icon-min::before { content: "payments"; }
.line-icon-pin::before { content: "location_on"; }
.line-icon-route::before { content: "route"; }
.line-icon-brand::before { content: "workspace_premium"; }
.line-icon-chat::before { content: "forum"; }
.line-icon-mail::before { content: "mail"; }

.aside-metric {
  padding: 16px 0;
  border-bottom: 1px solid rgba(210, 221, 233, 0.72);
}

.aside-metric:last-child {
  border-bottom: 0;
}

.aside-metric strong {
  display: block;
  color: var(--text);
  font-size: 30px;
  line-height: 1.05;
}

.aside-metric span,
.contact-card-main p {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

.landing-split-section {
  background: rgba(247, 249, 255, 0.46);
}

.landing-split,
.contact-layout,
.landing-bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 28px;
  align-items: start;
}

.landing-process,
.contact-info-stack {
  display: grid;
  gap: 18px;
}

.landing-form {
  position: sticky;
  top: 102px;
}

.landing-support-grid .panel,
.landing-card-grid .panel,
.landing-delivery-grid .panel {
  box-shadow: none;
}

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

.compact-delivery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compact-delivery-grid .panel {
  min-height: 190px;
}

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

.vertical-timeline {
  grid-template-columns: minmax(0, 760px);
}

.landing-timeline article {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(210, 221, 233, 0.82);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.landing-timeline article::after {
  content: "";
  position: absolute;
  top: 39px;
  right: -19px;
  width: 20px;
  height: 1px;
  background: rgba(154, 184, 199, 0.5);
}

.vertical-timeline article {
  min-height: auto;
  padding-left: 30px;
}

.vertical-timeline article::after {
  top: calc(100% - 1px);
  right: auto;
  left: 45px;
  width: 1px;
  height: 20px;
}

.landing-timeline article:last-child::after {
  content: none;
}

.landing-timeline span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 850;
}

.landing-timeline p,
.landing-timeline small {
  color: var(--muted);
  line-height: 1.55;
}

.landing-timeline small {
  display: block;
  margin-top: 12px;
  font-size: 13px;
}

.landing-large-panel {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 260px;
}

.landing-large-panel .button {
  width: fit-content;
  margin-top: 10px;
}

.landing-large-panel:only-child {
  grid-column: 1 / -1;
}

.contact-hero .contact-card-main h2 {
  font-size: 30px;
}

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

.contact-method {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 190px;
}

.contact-method strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 18px;
}

.contact-requisites {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
}

.contact-requisites div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(216, 232, 242, 0.68);
}

.contact-requisites dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.contact-requisites dd {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.contact-map-card {
  min-height: 220px;
  background:
    radial-gradient(circle at 76% 18%, rgba(238, 206, 220, 0.24), transparent 34%),
    radial-gradient(circle at 12% 84%, rgba(215, 239, 255, 0.36), transparent 36%),
    rgba(247, 249, 255, 0.86);
}

.contact-map-wide {
  display: grid;
  gap: 14px;
  min-height: 320px;
}

.map-placeholder {
  display: grid;
  min-height: 240px;
  place-items: center;
  padding: 26px;
  border: 1px solid rgba(216, 232, 242, 0.78);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(90deg, rgba(154, 184, 199, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(154, 184, 199, 0.12) 1px, transparent 1px),
    rgba(255, 255, 255, 0.52);
  background-size: 42px 42px;
}

.map-pin {
  display: grid;
  justify-items: center;
  gap: 8px;
  max-width: 320px;
  text-align: center;
}

.map-pin strong {
  color: var(--text);
  font-size: 20px;
}

.map-pin span:last-child {
  color: var(--muted);
  line-height: 1.5;
}

.site-footer {
  position: relative;
  padding: 56px 0 34px;
  border-top: 1px solid rgba(216, 232, 242, 0.64);
  background: rgba(251, 253, 255, 0.9);
  overflow: clip;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.35fr);
  gap: 34px;
  padding: 28px;
  border: 1px solid rgba(216, 232, 242, 0.82);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 52px rgba(53, 111, 139, 0.08);
  backdrop-filter: blur(22px) saturate(1.2);
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer-brand img,
.footer-brand .logo-svg {
  width: 146px;
  height: auto;
  display: block;
  transform: scale(1.16);
  transform-origin: left center;
}

.footer-brand p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.footer-cta {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(184, 212, 230, 0.82);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(58, 111, 139, 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.footer-cta:hover {
  transform: translateY(-1px);
  background: rgba(247, 252, 255, 0.94);
  box-shadow: 0 16px 32px rgba(58, 111, 139, 0.09);
}

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

.footer-grid > div {
  padding: 12px;
  border-radius: var(--radius);
  transition: background 180ms ease, transform 180ms ease;
}

.footer-grid > div:hover {
  background: rgba(255, 255, 255, 0.58);
  transform: translateY(-1px);
}

.footer-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 14px;
}

.footer-grid a {
  position: relative;
  display: table;
  margin-top: 9px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-grid a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  border-radius: var(--radius-pill);
  background: rgba(185, 143, 159, 0.58);
  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: left;
  transition: opacity 160ms ease, transform 160ms ease;
}

.footer-grid a:hover {
  color: var(--text);
  transform: translateX(2px);
}

.footer-grid a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.jivo-placeholder {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-pill);
  background: #58717c;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 18px 34px rgba(58, 111, 139, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.jivo-placeholder:hover {
  transform: translateY(-2px);
  background: #506975;
  box-shadow: 0 22px 42px rgba(58, 111, 139, 0.22);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-header {
    top: 10px;
    width: min(100% - 24px, 1180px);
  }

  .nav {
    position: absolute;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(216, 232, 242, 0.9);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .nav.open {
    display: flex;
  }

  .hero,
  .layout,
  .product-detail,
  .value-editorial,
  .catalog-intro,
  .footer-shell,
  .landing-hero,
  .wholesale-hero,
  .about-brand-hero,
  .landing-split,
  .catalog-layout,
  .contact-layout,
  .landing-bottom-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    max-height: none;
    gap: 32px;
  }

  .visual-scene,
  .brand-scene {
    min-height: 360px;
  }

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

  .value-editorial {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-media,
  .hero-media img {
    min-height: 430px;
  }

  .header-action {
    display: none;
  }

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

  .grid.cols-3,
  .grid.cols-2 {
    grid-template-columns: 1fr;
  }

  #products.grid.cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-intro {
    align-items: start;
  }

  .catalog-sticky {
    position: static;
  }

  .category-strip {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .landing-card-grid,
  .landing-timeline,
  .contact-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vertical-timeline {
    grid-template-columns: 1fr;
  }

  .landing-form {
    position: static;
  }

  .delivery-illustration {
    justify-self: center;
  }

  .landing-timeline article::after {
    content: none;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .container {
    width: min(100% - 20px, 1180px);
  }

  .site-header {
    width: min(100% - 20px, 1180px);
    border-radius: var(--radius-lg);
  }

  .header-inner {
    min-height: 62px;
    padding: 0 10px 0 14px;
  }

  .brand img,
  .brand .logo-svg {
    width: 106px;
  }

  .prototype-label {
    display: none;
  }

  .page {
    padding-top: 18px;
  }

  .hero {
    min-height: auto;
    gap: 26px;
    padding: 30px 0 28px;
  }

  .catalog-intro,
  .product-detail {
    padding: 24px 18px;
    border-radius: var(--radius-lg);
  }

  .visual-scene,
  .brand-scene {
    min-height: 320px;
  }

  .about-hero-illustration {
    width: min(100%, 460px);
    min-height: 0;
    padding: 0;
    justify-self: center;
  }

  .about-brand-illustration {
    width: min(100%, 430px);
    min-height: 0;
    padding: 0;
    justify-self: center;
    background-size: cover;
  }

  .wholesale-hero-illustration {
    width: min(100%, 460px);
    min-height: 0;
    padding: 0;
    justify-self: center;
    background-size: cover;
  }

  .wholesale-scene,
  .contact-scene {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .delivery-scene {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 18px;
  }

  .delivery-illustration {
    grid-template-columns: 1fr;
    width: min(100%, 480px);
    min-height: 0;
    padding: 0;
    background-size: contain;
  }

  .visual-scene::before {
    inset: 12px;
  }

  .scene-price,
  .scene-request,
  .contact-bubble-main,
  .contact-bubble-mail,
  .contact-bubble-map {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
  }

  .scene-box {
    left: auto;
    bottom: auto;
    width: 100%;
    height: 138px;
  }

  .scene-samples {
    right: 28px;
    bottom: 34px;
  }

  .scene-samples img {
    width: 46px;
    height: 62px;
  }

  .route-line {
    display: none;
  }

  .route-step {
    width: auto;
    padding: 10px 8px;
  }

  .route-step-1,
  .route-step-2,
  .route-step-3,
  .route-step-4 {
    left: auto;
    right: auto;
    top: auto;
    transform: none;
  }

  .route-product {
    bottom: auto;
    width: 100%;
    height: 104px;
  }

  .brand-scene-logo {
    left: auto;
    top: auto;
    width: 118px;
  }

  .brand-product-main {
    left: 22px;
    right: 22px;
    bottom: 42px;
    height: 150px;
  }

  .brand-product-side {
    right: 22px;
    top: 92px;
    width: 120px;
    height: 120px;
  }

  .brand-mark {
    left: 22px;
    bottom: 34px;
    font-size: 56px;
  }

  .contact-device {
    right: 22px;
    bottom: 26px;
    width: 88px;
    height: 104px;
  }

  .catalog-summary div {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .value-lead,
  .value-side .panel {
    min-height: auto;
    padding: 24px 20px;
  }

  .value-lead::after {
    right: 20px;
    top: 20px;
    width: 72px;
    height: 72px;
  }

  .hero-kicker {
    margin-bottom: 16px;
  }

  .hero-kicker span:nth-child(2) {
    display: none;
  }

  h1,
  .page > .container:not(.hero) > h1 {
    font-size: 32px;
    line-height: 1.14;
    text-wrap: auto;
  }

  .lead {
    font-size: 16px;
    line-height: 1.58;
  }

  .actions {
    align-items: stretch;
  }

  .actions .button {
    width: 100%;
  }

  .hero-points {
    gap: 7px;
  }

  .hero-points span {
    font-size: 12px;
    padding: 7px 9px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-media,
  .hero-media img {
    min-height: 360px;
  }

  #products.grid.cols-3 {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    padding: 0;
  }

  .hero-orbit {
    opacity: 0.62;
  }

  .hero-orbit-blue {
    width: 250px;
    height: 250px;
    left: 8px;
  }

  .hero-orbit-pink {
    width: 230px;
    height: 230px;
    right: 8px;
  }

  .hero-badge {
    min-width: 124px;
    padding: 10px 12px;
    border-radius: var(--radius);
  }

  .hero-badge-top {
    top: 12px;
    left: 10px;
  }

  .hero-badge-bottom {
    right: 10px;
    bottom: 14px;
  }

  .hero-scroll {
    display: none;
  }

  .section-head {
    display: block;
  }

  .grid.cols-4 {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    padding: 20px;
    border-radius: var(--radius-lg);
  }

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

  .landing-card-grid,
  .landing-delivery-grid,
  .landing-timeline,
  .contact-method-grid {
    grid-template-columns: 1fr;
  }

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

  .about-section-panel,
  .icon-step-list li,
  .team-list {
    grid-template-columns: 1fr;
  }

  .about-section-panel {
    padding: 22px 18px;
  }

  .landing-hero {
    gap: 24px;
    padding: 28px 0;
  }

  .landing-aside,
  .contact-card-main {
    min-height: auto;
    padding: 20px;
  }

  .contact-requisites div,
  .contact-method {
    grid-template-columns: 1fr;
  }

  .footer-grid > div {
    padding: 10px 0;
  }

  .footer-brand img,
  .footer-brand .logo-svg {
    width: 120px;
  }

  .form-grid,
  .spec-list li,
  .step-list li {
    grid-template-columns: 1fr;
  }
}

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

  .hero-media {
    transform: none !important;
  }
}

/* ============================================================
   EDITORIAL ITERATION (v2)
   Типографика-антиква + воздух + тонкие разделители.
   Только визуал: текст и разметку не меняем.
   ============================================================ */
:root {
  --display: "Manrope", "Inter", Arial, sans-serif;
  --rule: rgba(120, 145, 165, 0.20);
  --rule-strong: rgba(120, 145, 165, 0.40);
  --accent-line: linear-gradient(90deg, var(--accent-blue), var(--accent-pink));
  --ink: #1f2c36;
}

/* — Дисплейная антиква для крупных заголовков — */
h1,
h2,
.hero h1,
.value-lead h3,
.page > .container:not(.hero) > h1 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.022em;
  color: var(--ink);
}

h1,
.hero h1,
.page > .container:not(.hero) > h1 {
  font-size: clamp(36px, 4.2vw, 54px);
  line-height: 1.02;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Главная: заголовок короткий и выверенный — перенос по слогам не нужен */
.hero:not(.about-hero) h1 { hyphens: manual; }

h2 {
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.018em;
}

/* Фичевый заголовок-панель («Прямые поставки») — уровень секции */
.value-lead h3 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* — Уровень 3: подзаголовки и заголовки карточек — единая гарнитура Manrope — */
h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.006em;
  color: var(--ink);
}
.category-card h3 { font-size: 18px; line-height: 1.28; }
.product-card h3  { font-size: 17px; line-height: 1.28; }

/* UI-текст (навигация, кнопки, подписи в футере, надзаголовки) — нейтральный Inter */
.nav a,
.button,
.footer-grid strong,
.product-card h3::before {
  font-family: "Inter", Arial, sans-serif;
}

/* — Воздух и ритм секций — */
.section {
  padding: 94px 0;
  border-bottom: 1px solid var(--rule);
}
.value-section { padding-top: 66px; }

/* — Editorial-заголовок секции: акцентная черта-«бровь» + крупный заголовок — */
.section-head {
  align-items: end;
  gap: 32px;
  margin-bottom: 44px;
}
.section-head > div {
  position: relative;
  padding-top: 26px;
}
.section-head > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 58px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent-line);
}
.section-head p {
  max-width: 600px;
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.65;
}

/* лид-абзацы: вводный текст, ниже уровня подзаголовков */
.lead { font-size: 18px; line-height: 1.62; }
.hero .lead { font-size: 18px; }
.section-head p { font-size: 16px; }

/* — Hero: больше воздуха, спокойнее фон (убираем «миллиметровку») — */
.hero {
  gap: 56px;
  padding: 68px 52px 64px;
}
.hero::before { opacity: 0.28; }

/* — Карточки/панели: площе, тоньше границы, крупнее картинки — */
.panel,
.card,
.form-shell,
.table-shell {
  border-color: var(--rule);
  border-radius: 6px;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(10px);
}
.card:hover,
.panel:hover {
  transform: translateY(-3px);
  border-color: var(--rule-strong);
  box-shadow: 0 22px 50px rgba(64, 86, 112, 0.09);
}

.grid { gap: 22px; }
.value-editorial { gap: 22px; }
.value-side { gap: 22px; }

/* категории: крупнее изображение, спокойная подпись */
.category-card { padding: 18px; }
.category-card .placeholder {
  height: clamp(200px, 19vw, 252px);
  margin-bottom: 16px;
}

/* — Кнопки: благороднее чернила, чуть собраннее — */
.button {
  font-weight: 600;
  letter-spacing: 0.01em;
  background: var(--ink);
  border-color: rgba(31, 44, 54, 0.9);
}
.button:hover { background: #14202a; }
.button.secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

/* — Футер: воздух сверху — */
.site-footer { margin-top: 0; }

/* ============================================================
   СТРАНИЦА ТОВАРА — компактная «магазинная» типографика
   (заголовки скромнее, плотнее отступы — как в интернет-магазине)
   ============================================================ */
.product-summary h1 {
  font-size: clamp(23px, 2.4vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.012em;
}
.product-page .summary-lead { font-size: 16px; line-height: 1.6; }

/* заголовки секций на странице товара — уровень магазина, не лендинга */
.product-page .section { padding: 52px 0; }
.product-page .section h2 {
  font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1.22;
  letter-spacing: -0.01em;
}
.product-page .section-head { margin-bottom: 26px; }
.product-page .section-head > div { padding-top: 18px; }
.product-page .section-head > div::before { width: 44px; height: 2px; }
.product-page .section-head p { font-size: 15px; }

/* ============================================================
   ГРАФИЧЕСКАЯ ГАРМОНИЗАЦИЯ под editorial (проход 1)
   Спокойные фоны, единые иконки/номера/чипы/статусы.
   ============================================================ */

/* — Фоны спокойнее и чище — */
body::before {
  background:
    radial-gradient(ellipse at 20% 10%, rgba(215, 239, 255, 0.40), transparent 38%),
    radial-gradient(ellipse at 88% 4%, rgba(238, 206, 220, 0.24), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.60), rgba(244, 247, 251, 0.98));
}
.hero::before { content: none; }                 /* убрали «миллиметровку» */
.hero-media::before { opacity: 0.68; filter: blur(28px); }

/* — Фичевая панель: спокойный фон + акцентная черта вместо случайного круга — */
.value-lead {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.90), rgba(247, 251, 255, 0.58)),
    rgba(255, 255, 255, 0.70);
}
.value-lead::after {
  right: auto;
  left: 34px;
  top: 34px;
  width: 60px;
  height: 4px;
  border: 0;
  border-radius: 3px;
  background: var(--accent-line);
}

/* — Единые «редакционные» номера 01 / 02 / 03 (ghost-цифры Manrope) — */
.value-index {
  left: auto;
  right: 32px;
  top: 26px;
  font-family: var(--display);
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  opacity: 0.14;
}
.mini-icon {
  width: auto;
  height: auto;
  place-items: start;
  margin-bottom: 2px;
  border: 0;
  border-radius: 0;
  background: none;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  opacity: 0.16;
}

/* — Иконки: единый чип-квадрат с тонкой рамкой и «чернильным» глифом — */
.line-icon {
  width: 46px;
  height: 46px;
  border: 1px solid var(--rule);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
}
.line-icon::before { font-size: 22px; }

/* — Статус «в наличии»: сохраняем смысл, оформляем тоньше — */
.status {
  border: 1px solid rgba(72, 122, 92, 0.22);
  background: rgba(72, 122, 92, 0.08);
  color: #3f6b4f;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* — Чипы (теги, факты, счётчики) на единой тонкой палитре — */
.tag,
.product-facts span {
  border-color: var(--rule);
  background: rgba(255, 255, 255, 0.6);
  color: var(--muted);
}
.category-count {
  border-color: var(--rule);
  background: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   ГРАФИЧЕСКАЯ ГАРМОНИЗАЦИЯ под editorial (проход 2)
   Единый фрейминг hero-изображений + фирменные детали.
   ============================================================ */

/* Единая рамка/радиус/тень для hero-изображений и сцен.
   overflow:hidden НЕ ставим на .visual-scene — там плавающие карточки. */
.visual-scene,
.about-brand-illustration,
.about-hero-illustration {
  border: 1px solid var(--rule);
  border-radius: 16px;
  box-shadow: 0 24px 54px rgba(64, 86, 112, 0.07);
}
.about-brand-illustration,
.about-hero-illustration {
  overflow: hidden;   /* внутри только фон/одно фото — безопасно */
}

/* Фирменные детали в общей палитре */
.footer-cta { border-color: var(--rule); }
.product-card-action { border-color: var(--rule); }

/* ============================================================
   СТРАНИЦА «О БРЕНДЕ» — арт-директорский редизайн
   Открытый hero, минимум рамок, бренд-цвет точечно
   (#D7EFFF голубой / #EECEDC розовый).
   ============================================================ */

/* — Reveal при скролле — */
@media (prefers-reduced-motion: no-preference) {
  .reveal-on [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 640ms cubic-bezier(.22,.61,.36,1),
                transform 640ms cubic-bezier(.22,.61,.36,1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }
  .reveal-on [data-reveal].is-revealed { opacity: 1; transform: none; }
}

/* ─────────────────────────  HERO (открытый)  ───────────────────────── */
.about-hero-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: 60px;
  align-items: center;
  padding: 40px 0 30px;
}
.about-hero-copy { max-width: 600px; }
.about-hero-copy h1 {
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.03;
  overflow-wrap: break-word;
  hyphens: auto;
}
.about-hero-copy .lead { margin-top: 20px; max-width: 540px; }
.about-hero-copy .actions { margin-top: 30px; }

.about-hero-media { position: relative; justify-self: end; isolation: isolate; }
.about-hero-media::before {
  content: "";
  position: absolute;
  inset: -12% -10%;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 62% 40%, rgba(215, 239, 255, 0.85), transparent 62%),
    radial-gradient(circle at 34% 72%, rgba(238, 206, 220, 0.66), transparent 60%);
  filter: blur(34px);
}
.about-hero-media img {
  width: min(100%, 500px);
  border-radius: 22px;
  box-shadow: 0 34px 70px rgba(150, 170, 200, 0.22);
}

/* ─────────────────────────  ФАКТЫ (чистый ряд)  ───────────────────────── */
.about-facts2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
  padding: 30px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.fact2 { display: grid; gap: 7px; padding: 2px 36px; border-left: 1px solid var(--rule); }
.fact2:first-child { border-left: 0; padding-left: 0; }
.fact2-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.fact2-label { color: var(--muted); font-size: 14px; line-height: 1.4; }

/* ─────────────────────────  ИСТОРИЯ  ───────────────────────── */
.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.5fr);
  gap: 56px;
  align-items: start;
}
.about-story-head { position: sticky; top: 104px; display: grid; justify-items: start; gap: 16px; }
.about-eyebrow-rule { width: 56px; height: 3px; border-radius: 3px; background: var(--accent-line); }
.about-story-head h2 { font-size: clamp(28px, 3vw, 40px); }
.about-story-body p { margin: 0; max-width: 60ch; font-size: 18px; line-height: 1.78; color: #38454f; }
.about-story-body p + p { margin-top: 22px; }
.about-story-body p:first-of-type::first-letter {
  float: left;
  margin: 8px 14px 0 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: 66px;
  line-height: 0.72;
  color: var(--ink);
}
.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.principles span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.principles i { width: 9px; height: 9px; border-radius: 50%; background: var(--accent-line); }

/* ─────────────────────────  ЭТАПЫ (чистый таймлайн, только номера)  ───────────────────────── */
.roadmap2 { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.roadmap2 li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
}
.roadmap2 li:last-child { border-bottom: 1px solid var(--rule); }
.rm-num {
  counter-increment: step;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(30px, 3.2vw, 46px);
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #8bb8cf, #b98f9f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rm-num::before { content: counter(step, decimal-leading-zero); }
.roadmap2 p {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(17px, 1.6vw, 20px);
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* ─────────────────────────  КЛИЕНТЫ (без коробки)  ───────────────────────── */
.client2 { display: inline-grid; gap: 16px; }
.client2 strong {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}
.client2::after { content: ""; width: 84px; height: 4px; border-radius: 3px; background: var(--accent-line); }

/* ─────────────────────────  КОМАНДА (открытая сетка)  ───────────────────────── */
.team-grid2 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 44px 40px; }
.team-grid2 article { display: grid; justify-items: start; gap: 5px; }
.team-avatar {
  width: 78px;
  height: 78px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.team-avatar::before {
  font-family: "Material Symbols Outlined";
  content: "person";
  font-size: 38px;
  color: #fff;
  opacity: 0.92;
}
.team-grid2 article:hover .team-avatar { transform: scale(1.05); box-shadow: 0 0 0 7px rgba(215, 239, 255, 0.55); }
.team-grid2 strong { font-family: var(--display); font-weight: 800; font-size: 17px; line-height: 1.25; color: var(--ink); }
.team-role { color: var(--accent-dark); font-weight: 600; font-size: 14px; }
.team-grid2 small { margin-top: 9px; color: var(--muted); font-size: 12.5px; line-height: 1.45; }

/* стаггер появления */
.about-facts2 .fact2:nth-child(2), .team-grid2 article:nth-child(2), .roadmap2 li:nth-child(2) { --reveal-delay: 80ms; }
.about-facts2 .fact2:nth-child(3), .team-grid2 article:nth-child(3), .roadmap2 li:nth-child(3) { --reveal-delay: 160ms; }
.roadmap2 li:nth-child(4) { --reveal-delay: 240ms; }
.roadmap2 li:nth-child(5) { --reveal-delay: 320ms; }

/* ─────────────────────────  Адаптив  ───────────────────────── */
@media (max-width: 900px) {
  .about-hero-v2 { grid-template-columns: 1fr; gap: 28px; }
  .about-hero-media { justify-self: start; }
  .about-story-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-story-head { position: static; }
  .team-grid2 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .about-facts2 { grid-template-columns: 1fr; gap: 18px; }
  .fact2 { border-left: 0; padding: 0; }
  .team-grid2 { grid-template-columns: 1fr; }
  .roadmap2 li { grid-template-columns: 64px minmax(0,1fr); gap: 18px; }
}

/* Ритм секций «О бренде» — чуть плотнее, чтобы убрать лишние пустоты */
.about-page .section { padding: 80px 0; }
.about-page .about-clients { padding-bottom: 64px; }

/* ============================================================
   «О БРЕНДЕ» — правки: убрать дашы, заголовки меньше,
   портретные фото команды, сетка клиентов с логотипами
   ============================================================ */

/* 1) Убираем разноцветные прочерки-акценты под/над заголовками (везде) */
.section-head > div::before { content: none; }
.section-head > div { padding-top: 0; }

/* 2) Заголовки на странице компактнее */
.about-page .about-hero-copy h1 {
  font-size: clamp(30px, 3.4vw, 42px);
  hyphens: manual;          /* без авто-переноса «профессио-нального» */
  text-wrap: balance;
}
.about-page h2,
.about-page .section-head h2,
.about-story-head h2 { font-size: clamp(22px, 2.1vw, 29px); }

/* 3) Команда — вертикальное портретное фото */
.team-grid2 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 36px 32px; }
.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(150deg, var(--blue), var(--pink));
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.team-photo::before {
  font-family: "Material Symbols Outlined";
  content: "person";
  font-size: 64px;
  color: #fff;
  opacity: 0.9;
}
.team-grid2 article:hover .team-photo {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(150, 170, 200, 0.28);
}
.team-grid2 strong { font-family: var(--display); font-weight: 800; font-size: 17px; line-height: 1.25; color: var(--ink); }
.team-role { color: var(--accent-dark); font-weight: 600; font-size: 14px; }
.team-grid2 small { margin-top: 9px; color: var(--muted); font-size: 12.5px; line-height: 1.45; }

/* 4) Клиенты — сетка из 4 логотипов (логотип / название / город / год) */
.clients-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.client-card { display: grid; justify-items: start; gap: 3px; }
.client-logo {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--muted);
}
.client-logo::before {
  font-family: "Material Symbols Outlined";
  content: "storefront";
  font-size: 34px;
  opacity: 0.7;
}
.client-card strong { font-family: var(--display); font-weight: 800; font-size: 16px; line-height: 1.25; color: var(--ink); }
.client-city { color: var(--muted); font-size: 14px; }
.client-since { margin-top: 4px; color: var(--accent-dark); font-weight: 600; font-size: 13px; }

@media (max-width: 900px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .team-grid2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .clients-grid, .team-grid2 { grid-template-columns: 1fr; }
}

/* ============================================================
   «О БРЕНДЕ» — full-bleed первый экран с иллюстрацией
   ============================================================ */
.about-hero-full {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: -116px;          /* под плавающую шапку, до самого верха */
  padding: 150px 0 64px;
  min-height: clamp(580px, 86vh, 880px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #e9f1fb;
  border-radius: 0 0 32px 32px;   /* скругление снизу, в стилистике хедера */
}
/* иллюстрация-кавер за текстом (десктоп) */
.about-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
/* мягкий скрим слева — гарантирует читаемость текста поверх иллюстрации */
.about-hero-full::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.34) 34%,
    rgba(255, 255, 255, 0) 56%);
}
.about-hero-inner { position: relative; z-index: 2; }
.about-hero-copy { max-width: 470px; }
.about-hero-copy .lead { max-width: 450px; }

/* Планшет/мобайл: текст НЕ накладывается на изображение — раскладка стопкой */
@media (max-width: 860px) {
  .about-hero-full {
    display: flex;
    flex-direction: column;
    width: auto;
    margin-left: 0;
    margin-top: 0;
    padding: 0;
    min-height: 0;
    background: none;
  }
  .about-hero-full::before { display: none; }
  /* сначала изображение, потом текст */
  .about-hero-img {
    order: -1;
    position: static;
    width: 100%;
    height: auto;
    margin-top: 0;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    border-radius: 0 0 24px 24px;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .about-hero-inner { z-index: 2; padding-top: 26px; }
  .about-hero-copy { max-width: none; }
  /* воздух после иллюстрации — мягче переход к контенту */
  .about-page .about-facts2 { margin-top: 36px; }
}

/* ============================================================
   «О БРЕНДЕ» — emoji в дизайне (эксперимент)
   ============================================================ */
.h-emoji { margin-right: 10px; font-size: 0.8em; vertical-align: -0.04em; }
.fact2-emoji { display: block; font-size: 22px; line-height: 1; margin-bottom: 8px; }
.principles span { font-size: 16px; gap: 6px; }
.rm-emoji { margin-right: 10px; font-size: 1.05em; }
.client-city, .client-since { display: inline-flex; align-items: center; gap: 6px; }

/* ============================================================
   «О БРЕНДЕ» — emoji как визуальная история + команда (нейтрально)
   ============================================================ */

/* Принципы — снова чистые точки (без emoji в тексте) */
.principles span { font-size: 15px; gap: 9px; }

/* Факты — emoji крупнее, как иконка факта */
.fact2-emoji { font-size: 30px; margin-bottom: 10px; }

/* Этапы развития — emoji крупной иконкой-вехой (визуальная история пути) */
.roadmap2-emoji li {
  grid-template-columns: 72px 64px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}
.rm-icon {
  font-size: 34px;
  line-height: 1;
  justify-self: center;
  filter: drop-shadow(0 6px 12px rgba(64, 86, 112, 0.12));
}

/* Команда — нейтральные заглушки (не цветные) */
.team-photo {
  background: #eef1f5;
  box-shadow: inset 0 0 0 1px rgba(120, 145, 165, 0.12);
}
.team-photo::before { color: #adb7c2; opacity: 1; }

/* Ховер — на всю карточку, а не только на фото */
.team-grid2 article { transition: transform 220ms ease; cursor: default; }
.team-grid2 article:hover { transform: translateY(-6px); }
.team-grid2 article:hover .team-photo {
  transform: none;
  box-shadow: inset 0 0 0 1px rgba(120, 145, 165, 0.12),
              0 24px 46px rgba(64, 86, 112, 0.16);
}

@media (max-width: 560px) {
  .roadmap2-emoji li { grid-template-columns: 54px 48px minmax(0, 1fr); gap: 14px; }
  .rm-icon { font-size: 28px; }
}

/* ============================================================
   ГЛАВНАЯ — редизайн по эталону
   Универсальный full-bleed hero (.hero-stage) + полировка блоков.
   ============================================================ */

/* — Full-bleed hero (переиспользуемый) — */
.hero-stage {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: -116px;
  padding: 120px 0 48px;
  aspect-ratio: 16 / 9;        /* высота по пропорции картинки — без подреза слева */
  min-height: 540px;           /* страховка: не короче, чем нужно тексту */
  max-height: 880px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 0 0 32px 32px;
  background: #eef3fb;
}
.hero-stage-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.34) 34%,
    rgba(255, 255, 255, 0) 56%);
}
.hero-stage-inner { position: relative; z-index: 2; }
.hero-stage-copy { max-width: 540px; }
.hero-stage-copy h1 {
  font-size: clamp(31px, 3.4vw, 46px);
  line-height: 1.05;
  hyphens: manual;
  text-wrap: balance;
}
.hero-stage-copy .lead { margin-top: 20px; max-width: 480px; }
.hero-stage-copy .actions { margin-top: 30px; }

@media (max-width: 1080px) {
  .hero-stage {
    width: auto;
    margin-left: 0;
    margin-top: 0;
    padding: 0;
    aspect-ratio: auto;
    min-height: 0;
    max-height: none;
    display: flex;
    flex-direction: column;
    border-radius: 0;
    background: none;
  }
  .hero-stage::before { display: none; }
  /* сначала изображение, потом текст */
  .hero-stage-img {
    order: -1;
    position: static;
    width: 100%;
    height: auto;
    margin-top: 0;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    border-radius: 0 0 24px 24px;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero-stage-inner { z-index: 2; padding-top: 26px; }
  .hero-stage-copy { max-width: none; }
}

/* — Полировка секций главной — */
.index-page .section-head { align-items: end; }
.index-page .grid { gap: 22px; }
/* стаггер появления карточек в сетках главной */
.index-page .grid > [data-reveal]:nth-child(2) { --reveal-delay: 70ms; }
.index-page .grid > [data-reveal]:nth-child(3) { --reveal-delay: 140ms; }
.index-page .grid > [data-reveal]:nth-child(4) { --reveal-delay: 210ms; }
.index-page .grid > [data-reveal]:nth-child(5) { --reveal-delay: 120ms; }
.index-page .grid > [data-reveal]:nth-child(6) { --reveal-delay: 190ms; }

/* ============================================================
   КАТАЛОГ — редизайн по эталону
   ============================================================ */
.catalog-page .catalog-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  margin-top: 8px;
  padding: 6px 0 28px;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}
.catalog-intro-head h1 { font-size: clamp(30px, 3.4vw, 44px); }
.catalog-intro-head .lead { margin-top: 16px; max-width: 640px; }

/* сводка → чистый ряд фактов */
.catalog-page .catalog-summary {
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}
.catalog-page .catalog-summary > div {
  display: grid;
  gap: 3px;
  padding: 2px 28px;
  border-left: 1px solid var(--rule);
  background: none;
  border-radius: 0;
}
.catalog-page .catalog-summary > div:first-child { border-left: 0; padding-left: 0; }
.csum-emoji { font-size: 22px; line-height: 1; margin-bottom: 4px; }
.catalog-page .catalog-summary strong {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.catalog-page .catalog-summary span:not(.csum-emoji) {
  color: var(--muted);
  font-size: 13px;
  max-width: 130px;
  line-height: 1.35;
}

/* стаггер появления карточек товара */
.catalog-page .grid > [data-reveal]:nth-child(3n+2) { --reveal-delay: 70ms; }
.catalog-page .grid > [data-reveal]:nth-child(3n) { --reveal-delay: 140ms; }

@media (max-width: 760px) {
  .catalog-page .catalog-intro { grid-template-columns: 1fr; gap: 22px; align-items: start; }
  .catalog-page .catalog-summary { flex-wrap: wrap; gap: 18px 30px; }
  .catalog-page .catalog-summary > div { border-left: 0; padding: 0; }
}

/* ============================================================
   ГЛАВНАЯ — концептуальный апгрейд блоков под эталон
   ============================================================ */
/* «Почему с нами удобно» → чистый 3-up с градиентными номерами (без плашек) */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  counter-reset: vnum;
}
.value-item {
  display: grid;
  align-content: start;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.value-num {
  counter-increment: vnum;
  justify-self: start;
  width: fit-content;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(34px, 3.4vw, 46px);
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #8bb8cf, #b98f9f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.value-num::before { content: counter(vnum, decimal-leading-zero); }
.value-item h3 { font-size: 20px; }
.value-item p { margin: 2px 0 0; color: var(--muted); font-size: 15px; line-height: 1.62; }
.value-item:nth-child(2) { --reveal-delay: 90ms; }
.value-item:nth-child(3) { --reveal-delay: 180ms; }

/* Типографика и ритм главной под эталон */
.index-page .section { padding: 80px 0; }
.index-page .value-section { padding-top: 76px; }
.index-page h2 { font-size: clamp(23px, 2.3vw, 31px); }
.index-page .section-head p { font-size: 16px; }

@media (max-width: 760px) {
  .value-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   ГЛАВНАЯ — категории как выразительные ecom-плитки
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.cat-tile {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  border: 1px solid var(--rule);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.cat-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 52px rgba(64, 86, 112, 0.13);
  border-color: var(--rule-strong);
}
.cat-media {
  aspect-ratio: 5 / 4;
  background: #fff;
  overflow: hidden;
}
.cat-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 14px;
  transition: transform .5s ease;
}
.cat-tile:hover .cat-media img { transform: scale(1.07); }
.cat-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  border-top: 1px solid var(--rule);
}
.cat-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.cat-count {
  flex: 0 0 auto;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--accent-dark);
}
.cat-go {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(-6px) scale(.85);
  transition: opacity .22s ease, transform .22s ease;
}
.cat-tile:hover .cat-go { opacity: 1; transform: translateY(0) scale(1); }
/* стаггер */
.cat-tile:nth-child(3n+2) { --reveal-delay: 70ms; }
.cat-tile:nth-child(3n) { --reveal-delay: 140ms; }

@media (max-width: 860px) { .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 520px) { .cat-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Товарные карточки (хиты/каталог/похожие) — единый ecom-вид
   Фото заполняет карточку, согласованные скругления/ховер.
   ============================================================ */
.product-card { border-radius: 16px; overflow: hidden; }
.product-card .placeholder {
  aspect-ratio: 4 / 5;
  margin: 0 0 14px;
  padding: 0;
  background: radial-gradient(circle at 50% 38%, #ffffff 0%, #eef3fa 100%);
  border-radius: 0;
  overflow: hidden;
}
.product-card .placeholder img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;          /* фото целиком, без обрезки */
  object-position: center;
}
.product-card:hover .placeholder img { transform: scale(1.04); }

/* ============================================================
   Товарная карточка — элегантный ecom-вид (хиты/каталог/похожие)
   ============================================================ */
.product-card > p { display: none; }              /* убираем общее описание-филлер */
.product-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.product-card h3::before { font-family: "Inter", Arial, sans-serif; }
.product-specs li { border-top-color: var(--rule); }
.product-card .product-meta { padding-top: 4px; }

/* ============================================================
   ТОВАРНАЯ КАРТОЧКА — премиальный ecom-вид (арт-директорский)
   ============================================================ */
.product-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
}
.product-card .placeholder { aspect-ratio: 1 / 1; margin: 0; }   /* компактнее, как категории */

.product-card h3 {
  padding: 16px 18px 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.product-card h3::before { font-family: "Inter", Arial, sans-serif; }

/* характеристики — спокойнее */
.product-card .product-specs { padding: 10px 18px 0; gap: 0; }
.product-card .product-specs li {
  border-top: 0;
  padding-top: 6px;
  font-size: 12.5px;
}
.product-card .product-specs li + li { border-top: 1px solid var(--rule); margin-top: 6px; }

/* цена + статус — чистая строка с разделителем */
.product-card .product-meta {
  margin: 14px 0 0;
  padding: 14px 18px;
  border-top: 1px solid var(--rule);
}
.product-card .price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  color: var(--ink);
}

/* CTA — выразительный, заливается ink на ховере */
.product-card-actions { margin-top: auto; padding: 0 18px 18px; }
.product-card-action {
  min-height: 44px;
  gap: 8px;
  border-radius: 12px;
  border: 1px solid rgba(31, 44, 54, 0.55);
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}
.product-card-action::after { content: "→"; transition: transform .2s ease; }
.product-card:hover .product-card-action {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.product-card:hover .product-card-action::after { transform: translateX(4px); }

/* ============================================================
   Хиты на главной — компактнее (фото целиком, без спеков)
   ============================================================ */
.index-page .product-card .placeholder {
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at 50% 42%, #ffffff 0%, #f2f6fb 100%);
}
.index-page .product-card .product-specs { display: none; }
.index-page .product-card h3 { padding-top: 16px; }
.index-page .product-card .product-meta { margin-top: 12px; padding-block: 12px; }

/* ============================================================
   Товарные карточки: белый фон под фото + WB-бейдж рейтинга
   ============================================================ */
.product-card .placeholder { background: #fff; position: relative; }
.index-page .product-card .placeholder { background: #fff; }
.cat-media { background: #fff; }

.wb-badge {
  position: absolute;
  top: 11px;
  right: 11px;
  z-index: 2;
  display: grid;
  gap: 2px;
  justify-items: start;
  padding: 8px 11px 9px;
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.97) 0%, rgba(234, 226, 250, 0.92) 100%);
  backdrop-filter: blur(10px) saturate(1.1);
  border: 1px solid rgba(150, 120, 200, 0.24);
  box-shadow: 0 12px 30px rgba(96, 72, 140, 0.22);
  pointer-events: none;
}
.wb-badge-logo { width: 52px; height: auto; display: block; }
.wb-badge-rate {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.1;
  color: var(--ink);
}
.wb-badge-rate .star { color: #f6a609; font-size: 12px; }
.wb-badge-rev { font-size: 10px; line-height: 1.1; color: var(--muted); }

/* фикс размера лого в WB-бейдже (перебиваем fill-правило фото карточки) */
.product-card .placeholder .wb-badge img,
.product-card .placeholder .wb-badge-logo {
  width: 52px;
  height: auto;
  max-width: none;
  max-height: none;
  object-fit: contain;
}
/* WB-лого теперь в бейдже — убираем дубль из строки цены */
.product-card .product-meta .wb-logo { display: none; }
.product-card .product-meta .wb-price { gap: 0; }

/* ============================================================
   ГЛАВНАЯ — CTA-блок «Получите оптовый прайс» (премиальная панель)
   ============================================================ */
.lead-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 50px;
  align-items: center;
  padding: 50px;
  border-radius: 28px;
  border: 1px solid var(--rule);
  overflow: hidden;
  background: #eef3fb url("lead-bg.jpg?v=1") center / cover no-repeat;
}
.lead-info h2 { font-size: clamp(26px, 2.8vw, 38px); }
.lead-info .lead { margin-top: 16px; max-width: 460px; font-size: 16px; }
.lead-points { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 11px; }
.lead-points li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.lead-points li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.lead-form-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 28px 64px rgba(64, 86, 112, 0.14);
  backdrop-filter: none;
}

@media (max-width: 900px) {
  .lead-panel { grid-template-columns: 1fr; gap: 30px; padding: 32px; }
  .lead-form-card { padding: 24px; }
}
@media (max-width: 520px) {
  .lead-panel { padding: 20px; }
  .lead-form-card { padding: 20px; }
}

/* ============================================================
   КАТАЛОГ — приведение к дизайн-системе главной
   ============================================================ */
.catalog-page .catalog-intro {
  display: block;
  grid-template-columns: none;
  border: 0;
  background: none;
  box-shadow: none;
  padding: 6px 0 0;
  margin-top: 6px;
}
.catalog-page .catalog-intro h1 { font-size: clamp(30px, 3.4vw, 44px); }
.catalog-page .catalog-intro .lead { margin-top: 14px; max-width: 640px; }

/* фильтр-чипы категорий */
.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.cat-chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.cat-chip:hover { transform: translateY(-1px); border-color: var(--rule-strong); background: #fff; }
.cat-chip.is-active { border-color: transparent; background: var(--ink); color: #fff; }

.catalog-page .catalog-products { padding: 30px 0 84px; }

/* единая товарная карточка (как в хитах главной) — по всему сайту */
.product-card .product-specs { display: none; }
.product-card .placeholder { aspect-ratio: 1 / 1; background: #fff; }
/* каталог — 3 крупные карточки в ряд (перебиваем старое 4-колоночное правило) */
#products.grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 900px) { #products.grid.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { #products.grid.cols-3 { grid-template-columns: 1fr; } }

/* ============================================================
   КАТАЛОГ — липкий фильтр, SKU-счётчики, выдвижной список категорий
   ============================================================ */
.catalog-filterbar {
  position: static;
  margin: 22px 0 4px;
  padding: 0;
  background: none;
  backdrop-filter: none;
  border: 0;
}
.catalog-filters { display: flex; align-items: center; gap: 14px; }
.cat-chips {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 1px;
}
.cat-chips::-webkit-scrollbar { display: none; }
.cat-chip { white-space: nowrap; flex: 0 0 auto; }
/* счётчик SKU — маленькое надстрочное число в уголке, без плашки */
.chip-count {
  align-self: flex-start;
  margin-left: 3px;
  margin-top: -1px;
  padding: 0;
  background: none;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  color: var(--muted);
}
.cat-chip.is-active .chip-count { background: none; color: rgba(255, 255, 255, 0.7); }

/* кнопка-иконка «Категории» */
.cat-drawer-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  padding: 9px 16px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-pill);
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .16s ease, transform .16s ease;
}
.cat-drawer-toggle:hover { border-color: var(--rule-strong); transform: translateY(-1px); }
.cat-drawer-toggle .burger { position: relative; width: 16px; height: 2px; background: currentColor; border-radius: 2px; }
.cat-drawer-toggle .burger::before,
.cat-drawer-toggle .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.cat-drawer-toggle .burger::before { top: -5px; }
.cat-drawer-toggle .burger::after { top: 5px; }

/* выдвижной список категорий (слева) */
.cat-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(300px, 84vw);
  z-index: 60;
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(64, 86, 112, 0.28);
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
}
body.cat-drawer-open .cat-drawer { transform: none; }
.cat-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
}
.cat-drawer-close { border: 0; background: none; font-size: 26px; line-height: 1; color: var(--muted); cursor: pointer; }
.cat-drawer-list { display: grid; gap: 2px; }
.cat-drawer-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background .15s ease;
}
.cat-drawer-list a:hover { background: rgba(120, 145, 165, 0.09); }
.cat-drawer-list a.is-active { background: var(--ink); color: #fff; }
.cat-drawer-list .d-count { flex: 0 0 auto; font-size: 12px; font-weight: 700; color: var(--muted); }
.cat-drawer-list a.is-active .d-count { color: rgba(255, 255, 255, 0.72); }
.cat-drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(31, 44, 54, 0.34);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
body.cat-drawer-open .cat-drawer-scrim { opacity: 1; visibility: visible; }
body.cat-drawer-open { overflow: hidden; }

/* каталог — чипы-кнопки фильтра + скрытие отфильтрованных */
button.cat-chip { font: inherit; cursor: pointer; }
.product-card[hidden] { display: none !important; }
.catalog-empty { padding: 36px 0 8px; color: var(--muted); font-size: 15px; }

/* ============================================================
   КАРТОЧКА ТОВАРА — WB-рейтинг + полировка под дизайн-систему
   ============================================================ */
.product-rating { display: inline-flex; align-items: center; gap: 10px; margin-top: 12px; }
.product-rating .wb-logo { width: 66px; height: auto; }
.pr-stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
}
.pr-stars .star { color: #f6a609; }
.pr-reviews { color: var(--muted); font-size: 13px; }

/* ============================================================
   КАРТОЧКА ТОВАРА — доработка дизайна (галерея + buy-box)
   ============================================================ */
/* фото в естественных пропорциях, белая подложка — без видимого канта */
.gallery-main {
  aspect-ratio: auto;
  max-height: none;
  padding: 0;
  border: 1px solid var(--rule);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 26px 56px rgba(64, 86, 112, 0.09);
}
.gallery-main img {
  width: 100%;
  height: auto;
  max-height: none;
}

.purchase-box {
  border-color: var(--rule);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(64, 86, 112, 0.08);
}
.price-row { padding: 20px 22px; border-bottom-color: var(--rule); }
.price-label { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.price-row .price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.summary-specs { padding: 6px 22px 16px; }
.summary-specs li { border-bottom-color: var(--rule); font-size: 13.5px; }
.purchase-box .actions { padding: 6px 22px 22px; gap: 10px; }
.purchase-box .actions .button { flex: 1; }

/* ============================================================
   КОНТАКТЫ — в системе главной/каталога (чистый интро, белые карточки)
   ============================================================ */
.contacts-page .contacts-intro { margin-top: 6px; padding: 6px 0 2px; }
.contacts-intro h1 { font-size: clamp(30px, 3.4vw, 44px); line-height: 1.03; letter-spacing: -0.02em; }
.contacts-intro .lead { margin-top: 14px; max-width: 640px; }
.contacts-intro .actions { margin-top: 26px; }

/* карточки каналов связи */
.contacts-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 26px 26px 28px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 16px 40px rgba(64, 86, 112, 0.06);
  text-decoration: none;
  color: var(--ink);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
a.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 56px rgba(64, 86, 112, 0.13);
  border-color: var(--rule-strong);
}
.contact-ic {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 1;
}
.contact-k {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-v {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.contact-sub { margin-top: 3px; font-size: 14px; line-height: 1.5; color: var(--muted); }

/* реквизиты + карта в пару */
.contacts-bottom {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: stretch;
}
.req-card {
  padding: 28px 28px 30px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 16px 40px rgba(64, 86, 112, 0.06);
}
.req-card h3 { margin: 0 0 16px; font-size: 22px; letter-spacing: -0.01em; }
.requisites { display: grid; margin: 0; }
.requisites > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--rule);
}
.requisites > div:last-child { border-bottom: 0; }
.requisites dt { color: var(--muted); font-size: 14px; }
.requisites dd { margin: 0; font-weight: 700; font-size: 14px; text-align: right; }
.req-note { margin: 18px 0 0; font-size: 13.5px; line-height: 1.55; color: var(--muted); }

/* карта */
.map-card {
  border: 1px solid var(--rule);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)),
    repeating-linear-gradient(0deg, transparent 0 30px, rgba(120, 145, 165, 0.09) 30px 31px),
    repeating-linear-gradient(90deg, transparent 0 30px, rgba(120, 145, 165, 0.09) 30px 31px);
}
.map-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 340px;
  padding: 48px 24px;
  text-align: center;
}
.map-pin {
  display: inline-flex;
  align-items: center;
  margin-bottom: 4px;
  font-size: 36px;
  line-height: 1;
}
.map-ph strong { font-family: var(--display); font-size: 19px; }
.map-ph small { max-width: 380px; color: var(--muted); }

@media (max-width: 900px) {
  .contacts-channels { grid-template-columns: 1fr; }
  .contacts-bottom { grid-template-columns: 1fr; }
}

/* ============================================================
   ПОП-АП «Запросить прайс» (форма как на главной)
   ============================================================ */
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  overflow-y: auto;
}
.quote-modal.is-open { display: block; }
.quote-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 38, 48, 0.5);
  backdrop-filter: blur(5px);
}
.quote-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 32px));
  margin: 52px auto;
  padding: 38px 38px 32px;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: 0 44px 110px rgba(40, 56, 74, 0.32);
  animation: quotePop .26s cubic-bezier(.2, .7, .3, 1) both;
}
@keyframes quotePop { from { opacity: 0; transform: translateY(14px) scale(.985); } to { opacity: 1; transform: none; } }
.quote-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(120, 145, 165, 0.14);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background .15s ease;
}
.quote-modal__close:hover { background: rgba(120, 145, 165, 0.26); }
.quote-modal__dialog h2 { margin: 8px 0 8px; font-size: clamp(22px, 2.4vw, 28px); letter-spacing: -0.01em; }
.quote-modal__dialog .lead { margin: 0 0 20px; font-size: 15px; line-height: 1.55; }
.quote-form.form-shell { padding: 0; border: 0; background: none; box-shadow: none; }

/* ============================================================
   КАТАЛОГ — вариант 2: слева список категорий, справа 3 столбца
   ============================================================ */
.catalog2-layout {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.cat-aside { position: sticky; top: 100px; }
.cat-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cat-list-title {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.cat-list .cat-chip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 12px 2px;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  background: none;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color .15s ease;
}
.cat-list .cat-chip:hover { transform: none; background: none; color: var(--ink); }
.cat-list .cat-chip.is-active {
  background: none;
  color: var(--ink);
  font-weight: 700;
}
.cat-list .cat-chip.is-active::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -1px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent-line);
}
.cat-list .chip-count {
  align-self: center;
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}
.cat-list .cat-chip.is-active .chip-count { color: var(--ink); }
.catalog2-products .catalog-empty { margin-top: 18px; }

@media (max-width: 900px) {
  .catalog2-layout { grid-template-columns: 1fr; gap: 18px; }
  .cat-aside { position: static; }
}

/* ============================================================
   ДОСТАВКА И ОПЛАТА — единая дизайн-система
   ============================================================ */
.delivery-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr); gap: 48px; align-items: center; padding-top: 4px; }
.delivery-hero-copy { max-width: 560px; }
.delivery-hero-copy h1 { margin: 6px 0 0; font-size: clamp(34px, 4.4vw, 56px); line-height: 1.03; letter-spacing: -0.02em; }
.delivery-hero-copy .lead { margin-top: 18px; max-width: 520px; }
.delivery-hero-copy .actions { margin-top: 28px; }
.delivery-hero-media {
  padding: 22px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: 0 30px 64px rgba(64, 86, 112, 0.10);
  overflow: hidden;
}
.delivery-hero-media img { display: block; width: 100%; height: auto; }

.delivery-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.delivery-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 26px 26px 28px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 16px 40px rgba(64, 86, 112, 0.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.delivery-card:hover { transform: translateY(-3px); box-shadow: 0 26px 56px rgba(64, 86, 112, 0.12); border-color: var(--rule-strong); }
.dc-ic { font-size: 30px; line-height: 1; margin-bottom: 8px; }
.delivery-card h3 { margin: 0; font-size: 18px; letter-spacing: -0.01em; }
.delivery-card p { margin: 4px 0 0; color: var(--muted); font-size: 14.5px; line-height: 1.55; }

.pay-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 28px 34px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: 0 18px 44px rgba(64, 86, 112, 0.07);
}
.pay-ic { font-size: 40px; line-height: 1; }
.pay-copy h2 { margin: 6px 0 6px; font-size: clamp(22px, 2.4vw, 27px); letter-spacing: -0.01em; }
.pay-copy p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; max-width: 640px; }
.pay-panel .button { white-space: nowrap; }

.delivery-steps .value-item small { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; line-height: 1.5; }

@media (max-width: 980px) {
  .delivery-hero { grid-template-columns: 1fr; gap: 26px; }
  .delivery-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .delivery-cards { grid-template-columns: 1fr; }
  .pay-panel { grid-template-columns: 1fr; gap: 14px; }
}

/* ============================================================
   ОПТОВЫМ КЛИЕНТАМ — единая дизайн-система
   ============================================================ */
.wholesale-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr); gap: 48px; align-items: center; padding-top: 4px; }
.wholesale-hero-copy { max-width: 560px; }
.wholesale-hero-copy h1 { margin: 6px 0 0; font-size: clamp(34px, 4.4vw, 56px); line-height: 1.03; letter-spacing: -0.02em; }
.wholesale-hero-copy .lead { margin-top: 18px; max-width: 520px; }
.wholesale-hero-copy .actions { margin-top: 28px; }
.wholesale-hero-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 34px 76px rgba(64, 86, 112, 0.16);
}
.wholesale-hero-media img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center; }

/* универсальная инфо-карточка (преимущества, гарантия) */
.info-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 26px 26px 28px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 16px 40px rgba(64, 86, 112, 0.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.info-card:hover { transform: translateY(-3px); box-shadow: 0 26px 56px rgba(64, 86, 112, 0.12); border-color: var(--rule-strong); }
.ic-emoji { font-size: 30px; line-height: 1; margin-bottom: 8px; }
.info-card h3 { margin: 0; font-size: 18px; letter-spacing: -0.01em; }
.info-card p { margin: 4px 0 0; color: var(--muted); font-size: 14.5px; line-height: 1.55; }

.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* шаги «как оформить заказ» внутри lead-panel */
.wh-steps { list-style: none; margin: 20px 0 0; padding: 0; counter-reset: ws; display: grid; gap: 14px; }
.wh-steps li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  counter-increment: ws;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}
.wh-steps li::before {
  content: counter(ws);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
}

@media (max-width: 980px) {
  .wholesale-hero { grid-template-columns: 1fr; gap: 26px; }
  .wholesale-hero-media img { aspect-ratio: 16 / 11; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ЮРИДИЧЕСКИЕ СТРАНИЦЫ (Политика / Условия) — в системе
   ============================================================ */
.legal-page .legal-intro { margin-top: 6px; padding: 6px 0 2px; max-width: 760px; }
.page > .container.legal-intro > h1 { margin: 4px 0 0; font-size: clamp(27px, 3.6vw, 46px); line-height: 1.07; letter-spacing: -0.02em; hyphens: manual; overflow-wrap: break-word; }
.legal-intro .lead { margin-top: 14px; max-width: 640px; }
.legal-body { max-width: 820px; }
.legal-toc { list-style: none; margin: 0; padding: 0; counter-reset: lt; border-top: 1px solid var(--rule); }
.legal-toc li {
  counter-increment: lt;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(16px, 1.5vw, 19px);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.legal-toc li::before {
  content: counter(lt, decimal-leading-zero);
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #8bb8cf, #b98f9f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.legal-note {
  margin: 28px 0 0;
  padding: 18px 22px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  background: var(--bg);
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ============================================================
   ОПТ — герой: преимущества вынесены в HTML для адаптива
   (на десктопе их показывает баннер-картинка, на мобильном — текстом)
   ============================================================ */
.hero-benefits { display: none; }
@media (max-width: 1080px) {
  .hero-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 22px;
    margin: 24px 0 4px;
    padding: 0;
    list-style: none;
  }
  .hero-benefit { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; }
  .hero-benefit .hb-ic { font-size: 24px; line-height: 1; }
  .hero-benefit strong { display: block; margin-bottom: 2px; font-family: var(--display); font-weight: 800; font-size: 15px; letter-spacing: -0.01em; color: var(--ink); }
  .hero-benefit p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
  /* на мобильном показываем баннер целиком (без квадратного подреза) — читаемую инфу дают HTML-преимущества */
  .wholesale-page .hero-stage-img { aspect-ratio: 16 / 9; object-position: center; }
}
@media (max-width: 600px) {
  .hero-benefits { grid-template-columns: 1fr; gap: 14px; }
}

/* ============================================================
   ЗАЯВКА-«КОРЗИНА» (форма обратной связи, не магазин)
   ============================================================ */
.cart-btn {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid var(--rule);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.cart-btn:hover { border-color: var(--rule-strong); background: #fff; transform: translateY(-1px); }
.cart-count {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  transform: scale(0);
  transition: transform .2s cubic-bezier(.2, .7, .3, 1);
}
.cart-btn.has-items .cart-count { transform: scale(1); }

.add-control { width: 100%; }
.add-btn {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform .15s ease, opacity .15s ease;
}
.add-btn:hover { transform: translateY(-1px); opacity: .92; }
.qty { display: inline-flex; align-items: center; }
.qty--card { width: 100%; justify-content: space-between; border: 1px solid var(--rule-strong); border-radius: var(--radius-pill); }
.qty__btn {
  width: 40px;
  height: 40px;
  border: 0;
  background: none;
  color: var(--ink);
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background .15s ease;
}
.qty__btn:hover { background: var(--bg); }
.qty__n { min-width: 26px; text-align: center; font-family: var(--display); font-weight: 800; font-size: 15px; }
.add-control--pb { padding: 0 22px; margin-bottom: 4px; }

.cart-drawer { position: fixed; inset: 0; z-index: 70; display: none; }
.cart-drawer.is-open { display: block; }
.cart-drawer__overlay { position: absolute; inset: 0; background: rgba(26, 38, 48, 0.5); backdrop-filter: blur(4px); }
.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(440px, 100%);
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: -30px 0 80px rgba(40, 56, 74, 0.3);
  overflow-y: auto;
  animation: cartIn .3s cubic-bezier(.2, .7, .3, 1) both;
}
@keyframes cartIn { from { transform: translateX(34px); opacity: .5; } to { transform: none; opacity: 1; } }
.cart-drawer__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding: 26px 26px 14px; }
.cart-drawer__head h2 { margin: 6px 0 0; font-size: 23px; letter-spacing: -0.01em; }
.cart-drawer__close {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(120, 145, 165, 0.14);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background .15s ease;
}
.cart-drawer__close:hover { background: rgba(120, 145, 165, 0.26); }
.cart-items { padding: 0 26px; }
.cart-item { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 10px; padding: 14px 0; border-bottom: 1px solid var(--rule); }
.cart-item__title { font-weight: 600; font-size: 14.5px; line-height: 1.35; }
.cart-item .qty { border: 1px solid var(--rule); border-radius: var(--radius-pill); }
.cart-item .qty__btn { width: 32px; height: 32px; font-size: 17px; }
.cart-item .qty__n { min-width: 22px; font-size: 14px; }
.cart-item__rm { width: 30px; height: 30px; border: 0; background: none; color: var(--muted); font-size: 20px; line-height: 1; cursor: pointer; border-radius: 50%; }
.cart-item__rm:hover { background: var(--bg); color: var(--ink); }
.cart-empty { padding: 14px 0 2px; color: var(--muted); line-height: 1.6; font-size: 14.5px; }
.cart-form { padding: 16px 26px 30px; }
.cart-form .form-grid { grid-template-columns: 1fr; gap: 14px; }
.cart-hint { margin: 6px 0 16px; padding: 12px 14px; border: 1px solid var(--rule); border-radius: var(--radius); background: var(--bg); color: var(--muted); font-size: 13px; line-height: 1.5; }
.cart-form.is-sent .form-success { display: block; }

/* карточка товара — тихая ссылка «назад» (без кнопки-на-кнопке) */
.purchase-box .pb-actions { padding: 10px 22px 20px; }
.pb-back { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-weight: 700; font-size: 14px; text-decoration: none; transition: color .15s ease; }
.pb-back:hover { color: var(--ink); }

/* карточка товара — компактный степпер + кнопка «заявка» в ряд */
.add-control--pb .pb-row { display: flex; align-items: stretch; gap: 12px; }
.add-control--pb .qty--card { width: auto; flex: 0 0 auto; }
.add-control--pb .qty--card .qty__btn { width: 40px; height: 46px; }
.add-control--pb .qty--card .qty__n { min-width: 30px; }
.add-control--pb .pb-go { flex: 1 1 auto; white-space: nowrap; }

/* карточка товара — строка «Честный знак» */
.summary-specs .spec-cz strong { display: inline-flex; align-items: center; gap: 8px; }
.summary-specs .cz-logo { height: 22px; width: auto; flex: 0 0 auto; }

/* ============================================================
   ПРИМЕР новой фирменной палитры — ТОЛЬКО на главной (.index-page)
   #59C3FF (синий) / #FF5FA7 (розовый) / #203A66 (тёмно-синий) / #F7FCFF (фон)
   ============================================================ */
.index-page {
  --accent-blue: #59C3FF;
  --accent-pink: #FF5FA7;
  --blue: #59C3FF;
  --pink: #FF5FA7;
  --ink: #203A66;
  --rule: rgba(32, 58, 102, 0.14);
  --rule-strong: rgba(32, 58, 102, 0.30);
  background: #F7FCFF;
}
/* крупные цифры — новый градиент синий→розовый */
.index-page .value-num {
  background: linear-gradient(135deg, #2FA8EE, #DB2777);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* первичные кнопки — тёмно-синий бренд */
.index-page .button {
  background: #203A66;
  border-color: #203A66;
  box-shadow: 0 12px 26px rgba(32, 58, 102, 0.22);
}
.index-page .button:hover { background: #182f54; border-color: #182f54; }
.index-page .button.secondary {
  background: #fff;
  color: #203A66;
  border-color: var(--rule-strong);
  box-shadow: none;
}
.index-page .button.secondary:hover { border-color: #59C3FF; color: #203A66; background: #fff; }

/* ============================================================
   ЯРКИЕ АКЦЕНТЫ новой палитры — только на главной (.index-page)
   ============================================================ */
/* первичная кнопка — сплошной яркий цвет из палитры (без градиента) */
.index-page .button {
  background: #DB2777;
  border-color: #DB2777;
  color: #fff;
  box-shadow: 0 12px 26px rgba(219, 39, 119, 0.28);
  text-shadow: none;
}
.index-page .button:hover {
  background: #BE185D;
  border-color: #BE185D;
  transform: translateY(-1px);
}
/* вторичная — белая с ярко-синим контуром */
.index-page .button.secondary {
  background: #fff;
  color: #203A66;
  border-color: rgba(89, 195, 255, 0.6);
  box-shadow: none;
  text-shadow: none;
}
.index-page .button.secondary:hover { border-color: #59C3FF; color: #1C8FD0; background: #fff; filter: none; }

/* цены в плитках — ярко-розовый акцент */
.index-page .product-card .price { color: #DB2777; }

/* стрелка категории — сплошной синий круг, тёмно-синяя стрелка (без градиента) */
.index-page .cat-go { background: #59C3FF; color: #14375F; }

/* ховер карточки товара — ярко-синяя рамка и тень */
.index-page .product-card:hover {
  border-color: #59C3FF;
  box-shadow: 0 22px 50px rgba(89, 195, 255, 0.24);
}

/* акцент-линии у заголовков — заметнее */
.index-page .section-head > div::before { height: 4px; width: 66px; }

/* ============================================================
   Чек-лист на главной — сплошная иконка (без градиента)
   ============================================================ */
.index-page .lead-points li::before { background: #59C3FF; color: #14375F; }

/* ============================================================
   ХЕДЕР и ФУТЕР — фирменные цвета (на всём сайте)
   ============================================================ */
/* кнопка-действие в шапке — сплошной ярко-розовый */
.header-action {
  background: #DB2777;
  border-color: #DB2777;
  color: #fff;
  box-shadow: 0 10px 22px rgba(219, 39, 119, 0.22);
}
.header-action:hover {
  background: #BE185D;
  border-color: #BE185D;
  color: #fff;
}
/* навигация — синий акцент-подчёркивание, тёмно-синий активный */
.nav a::after { background: #59C3FF; }
.nav a:hover, .nav a.active { color: #203A66; }

/* футер — тёмно-синие заголовки, синие подчёркивания ссылок, розовая CTA */
.footer-grid strong { color: #203A66; }
.footer-grid a:hover { color: #203A66; }
.footer-grid a::after { background: #59C3FF; }
.footer-cta {
  background: #DB2777;
  border-color: #DB2777;
  color: #fff;
  box-shadow: 0 12px 24px rgba(219, 39, 119, 0.20);
}
.footer-cta:hover { background: #BE185D; border-color: #BE185D; color: #fff; }

/* каталог — «цена по запросу» и бейдж «скоро в продаже» */
.price-req { font-family: var(--display); font-weight: 700; font-size: 13.5px; color: var(--muted); }
.status.status-soon { background: rgba(89, 195, 255, 0.16); color: #1C6FA5; }

/* категории на главной — «цветовая история» как у товарной карточки */
.cat-media { background: radial-gradient(circle at 50% 40%, #ffffff 0%, #eef3fb 100%); }

/* === правки: белый фон плиток, скругление карточек, синий ховер категорий === */
.cat-media { background: #fff; }
.product-card.card { border-radius: 18px; }
.cat-tile:hover { border-color: #59C3FF; box-shadow: 0 22px 50px rgba(89, 195, 255, 0.24); }

/* ============================================================
   ФИРМЕННАЯ ПАЛИТРА — НА ВЕСЬ САЙТ (дизайн согласован на главной)
   #59C3FF / #FF5FA7→#DB2777 / #203A66 / #F7FCFF
   ============================================================ */
:root {
  --blue: #59C3FF;
  --pink: #FF5FA7;
  --accent-blue: #59C3FF;
  --accent-pink: #FF5FA7;
  --ink: #203A66;
  --rule: rgba(32, 58, 102, 0.14);
  --rule-strong: rgba(32, 58, 102, 0.30);
  --bg: #F7FCFF;
}
/* первичные кнопки — сплошной ярко-розовый (контрастный с белым) */
.button { background: #DB2777; border-color: #DB2777; color: #fff; box-shadow: 0 12px 26px rgba(219, 39, 119, 0.26); }
.button:hover { background: #BE185D; border-color: #BE185D; }
.button.secondary { background: #fff; color: #203A66; border-color: rgba(89, 195, 255, 0.6); box-shadow: none; }
.button.secondary:hover { background: #fff; color: #1C8FD0; border-color: #59C3FF; }
/* градиентные цифры — единый фирменный градиент */
.value-num, .rm-num, .legal-toc li::before {
  background: linear-gradient(135deg, #2FA8EE, #DB2777);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* чек-лист — синяя галочка без градиента */
.lead-points li::before { background: #59C3FF; color: #14375F; }
/* товарная карточка — цена и синий ховер на всех страницах */
.product-card .price { color: #DB2777; }
.product-card:hover { border-color: #59C3FF; box-shadow: 0 22px 50px rgba(89, 195, 255, 0.22); }
/* линии-акценты у заголовков — заметнее */
.section-head > div::before { height: 4px; }

/* ховер товарной карточки — фирменный синий на всех страницах (перебиваем старое серое .product-card.card:hover) */
.product-card.card:hover { border-color: #59C3FF; box-shadow: 0 22px 50px rgba(89, 195, 255, 0.22); }

/* ============================================================
   WILDBERRIES — реальная ссылка (плашка на плитках + ссылка в карточке)
   ============================================================ */
.product-card { position: relative; }
.wb-badge { pointer-events: auto; cursor: pointer; gap: 3px; padding: 7px 11px 8px; transition: transform .16s ease, box-shadow .16s ease; }
.wb-badge:hover { transform: translateY(-1px); box-shadow: 0 16px 34px rgba(96, 72, 140, 0.28); }
.wb-badge-logo { width: 46px; }
.wb-badge-txt { font-size: 10px; font-weight: 800; letter-spacing: .02em; color: #5b3f8a; }

/* ссылка WB на странице товара */
.wb-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 14px 22px 0;
  padding: 10px 16px;
  border: 1px solid rgba(150, 120, 200, 0.3);
  border-radius: var(--radius-pill);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.97), rgba(234, 226, 250, 0.92));
  color: #5b3f8a;
  font-weight: 800;
  font-size: 13.5px;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease;
}
.wb-link img { width: 84px; height: auto; }
.wb-link:hover { transform: translateY(-1px); box-shadow: 0 16px 34px rgba(96, 72, 140, 0.2); }

/* бренд-«бровь» на карточке — реальный бренд из данных (вместо жёсткой «Coubri») */
.product-card h3::before { content: none !important; }
.card-brand {
  display: block;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

/* WB-плашка в карточке товара — статично, справа от цены */
.wb-badge--pd { position: static; }
.product-detail .price-row { gap: 14px; align-items: flex-start; }

/* выравнивание товарных карточек: цена и кнопка всегда внизу при разной длине названия */
.product-card .product-meta { margin-top: auto; }

/* хлебные крошки — аккуратно, без отдельной полосы */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin: 0 0 16px; font-size: 13px; line-height: 1.3; color: var(--muted); }
.crumbs a { color: var(--muted); text-decoration: none; transition: color .15s ease; }
.crumbs a:hover { color: #1C8FD0; }
.crumbs .sep { opacity: .45; }
.crumbs .cur { color: var(--ink); font-weight: 600; }
.hero-stage-copy .crumbs, .about-hero-copy .crumbs { color: rgba(32,58,102,0.7); }
.hero-stage-copy .crumbs a, .about-hero-copy .crumbs a { color: rgba(32,58,102,0.7); }

/* WB-плашка: без подчёркивания (актуально для варианта-ссылки на странице товара) */
.wb-badge, .wb-badge:hover, .wb-badge * { text-decoration: none; }

/* страница товара: липкое фото — стоит на месте, пока справа прокручивается текст */
.product-detail > div:first-child { position: sticky; top: 100px; align-self: start; }
@media (max-width: 900px) { .product-detail > div:first-child { position: static; } }

/* крошки единым местом сверху — для страниц с полноэкранным баннером */
.crumbs-row { margin-top: 2px; margin-bottom: 12px; }
.crumbs-row + .hero-stage, .crumbs-row + .about-hero-full { margin-top: 2px; }
@media (min-width: 1081px) {
  .crumbs-row + .hero-stage { padding-top: 56px; }
  .crumbs-row + .about-hero-full { padding-top: 66px; }
}

/* крошки поверх баннера (страницы с полноэкранным героем) — без отдельной полосы */
.hero-crumbs {
  position: absolute;
  top: 124px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 40px));
  z-index: 4;
  margin: 0;
}
.hero-crumbs a, .hero-crumbs .sep { color: rgba(32, 58, 102, 0.72); }
.hero-crumbs a:hover { color: #1C8FD0; }
.hero-crumbs .cur { color: #203A66; }
@media (max-width: 1080px) { .hero-crumbs { top: 14px; } }

/* выравнивание карточек: единственный авто-отступ — у строки цены; кнопка идёт сразу за ней,
   поэтому цена+кнопка всегда у низа карточки независимо от длины названия */
.product-card-actions { margin-top: 0; }
.product-card .product-meta { margin-top: auto; }

/* карточки товара: название показывается целиком, но сетка не плывёт —
   карточки равной высоты, цена и кнопка прижаты к низу */
.grid { align-items: stretch; }
.product-card { height: 100%; }
.product-card h3 a,
.product-card h3 .pc-name {
  display: block;
  min-height: 2.5em;        /* нижний предел в 2 строки для коротких названий */
  overflow-wrap: break-word;
}

/* ============================================================
   Плашки Хит/Новинка/Акция, цены акции, фото клиентов/команды
   ============================================================ */
.pc-badges {
  position: absolute;
  top: 11px;
  left: 11px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  pointer-events: none;
}
.pc-badge {
  display: inline-block;
  padding: 4px 9px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
  color: #fff;
  box-shadow: 0 6px 16px rgba(32, 58, 102, 0.18);
}
.pc-badge--hit  { background: #203A66; }
.pc-badge--new  { background: #0E7C66; }
.pc-badge--sale { background: #DB2777; }

/* Цена со скидкой в карточках каталога */
.price-sale { display: inline-flex; align-items: baseline; gap: 7px; }
.price-old { text-decoration: line-through; color: var(--muted); font-weight: 600; font-size: 12.5px; }
.price-new { font-family: var(--display); font-weight: 800; color: #DB2777; font-size: 15px; }

/* Цена со скидкой в карточке товара */
.price--sale { display: flex; gap: 10px; align-items: baseline; }
.price--sale .price-old { font-size: 17px; }
.price--sale .price-new { font-size: 24px; }

/* Логотип клиента (загруженный) */
.client-logo.has-img { background: #fff; }
.client-logo.has-img::before { content: none; }
.client-logo img { width: 100%; height: 100%; object-fit: contain; padding: 10px; border-radius: 12px; display: block; }

/* Фото участника команды (загруженное) */
.team-photo.has-img { background: none; }
.team-photo.has-img::before { content: none; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; display: block; }

/* Подзаголовок «Подборки» в фильтре каталога */
.cat-list-title--sub { margin-top: 16px; }
