@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=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(46px, 6.2vw, 92px);
  font-weight: 760;
  max-width: 820px;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(44px, 5.2vw, 76px);
  text-wrap: balance;
  max-width: 760px;
}

.page > .container:not(.hero) > h1 {
  font-size: clamp(34px, 4vw, 54px);
  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(44px, 5.8vw, 82px);
  line-height: 0.98;
}

.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: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.catalog-sticky {
  position: sticky;
  top: 86px;
  z-index: 20;
  padding: 10px;
  border: 1px solid rgba(216, 232, 242, 0.82);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(1.15);
  box-shadow: var(--shadow-soft);
}

.category-strip a {
  padding: 10px 13px;
  border: 1px solid rgba(184, 212, 230, 0.95);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.category-strip a:hover {
  transform: translateY(-1px);
  border-color: rgba(154, 184, 199, 0.58);
  background: rgba(247, 252, 255, 0.92);
}

.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: center;
  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: center;
  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;
}

#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(34px, 3.4vw, 48px);
  line-height: 1.08;
}

.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;
}

.landing-copy {
  display: grid;
  align-content: 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-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: "5k";
  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;
}

.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;
}

.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;
}

.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-hero h1 {
  max-width: 500px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.03;
}

.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;
}

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

.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);
}

.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;
}

.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);
}

.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,
  .landing-split,
  .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;
  }

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

  .landing-form {
    position: static;
  }

  .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;
  }

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

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

  .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;
  }

  .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;
  }
}
