:root {
  --ink: #ffffff;
  --muted: #b8bcc6;
  --night: #1a1a1d;
  --night-2: #111114;
  --panel: #242428;
  --panel-2: #303037;
  --line: rgba(255, 255, 255, 0.12);
  --soft: #f5f5f7;
  --dark-text: #171719;
  --yellow: #ffb300;
  --orange: #ff6a00;
  --green: #16c784;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--night);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: #111;
  background: var(--yellow);
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 179, 0, 0.16), transparent 32%),
    #0b0b0c;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

body.is-ready .preloader {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
}

.loader-wheel {
  width: 76px;
  height: 76px;
  border: 10px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--yellow);
  border-right-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.95s linear infinite;
  box-shadow: 0 0 45px rgba(255, 179, 0, 0.25);
}

.loader-text {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 12, 14, 0.78);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border: 2px solid rgba(255, 179, 0, 0.45);
  border-radius: 50%;
  background: #fff;
}

.brand-name {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.brand-title {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
}

.brand-caption {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.main-nav a {
  position: relative;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 4px;
  height: 2px;
  background: var(--yellow);
  border-radius: 999px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.icon {
  width: 18px;
  height: 18px;
  color: var(--yellow);
}

.btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #111;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: 0 18px 42px rgba(255, 106, 0, 0.24);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(255, 106, 0, 0.32);
}

.btn.dark {
  color: #fff;
  background: #171719;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.btn.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.btn.full {
  width: 100%;
}

.btn .icon,
.social-btn .icon,
.icon-btn .icon {
  color: currentColor;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 76px 0 60px;
  isolation: isolate;
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.88) 0%, rgba(17, 17, 20, 0.75) 50%, rgba(26, 26, 29, 0.35) 100%),
    url("https://images.pexels.com/photos/37393681/pexels-photo-37393681.jpeg?auto=compress&cs=tinysrgb&w=1800") center / cover;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -30% -12%;
  z-index: -1;
  height: 260px;
  background: radial-gradient(ellipse at center, rgba(255, 179, 0, 0.3), transparent 68%);
  filter: blur(12px);
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-copy {
  flex: 1 1 520px;
  max-width: 660px;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Oswald", Arial, sans-serif;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  font-size: clamp(46px, 8vw, 104px);
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
}

h3 {
  font-size: 27px;
}

p {
  margin: 0;
}

.lead {
  max-width: 620px;
  margin-top: 20px;
  color: #d8dce5;
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.section-actions,
.card-actions,
.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 32px;
}

.hero-stats {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.stat-tile {
  min-width: 148px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.stat-value {
  display: block;
  color: #fff;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
}

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

.hero-media {
  flex: 0 1 520px;
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 900px;
}

.machine-stage {
  position: relative;
  width: min(100%, 520px);
  min-height: 410px;
  transform-style: preserve-3d;
}

.machine-frame {
  position: absolute;
  inset: 38px 0 28px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #111;
  box-shadow: var(--shadow);
  transform: rotateY(-9deg) rotateX(2deg);
}

.machine-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: saturate(1.1) contrast(1.05);
}

.machine-badge {
  position: absolute;
  left: 0;
  bottom: 36px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 280px;
  padding: 16px;
  border-left: 4px solid var(--yellow);
  border-radius: 6px;
  color: #171719;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.2);
}

.badge-number {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 38px;
  line-height: 1;
}

.badge-text {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

.floating-part {
  position: absolute;
  z-index: 1;
  display: block;
  border-radius: 5px;
  background: linear-gradient(135deg, #3e3e44, #0d0d0f);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 18px 38px rgba(0, 0, 0, 0.35);
  animation: floaty 5s ease-in-out infinite;
}

.part-a {
  top: 18px;
  right: 50px;
  width: 74px;
  height: 28px;
  transform: rotate(24deg);
}

.part-b {
  left: -10px;
  top: 112px;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--yellow), #6a3b00);
  transform: rotate(-15deg);
  animation-delay: 0.8s;
}

.part-c {
  right: 8px;
  bottom: 92px;
  width: 42px;
  height: 42px;
  transform: rotate(12deg);
  animation-delay: 1.5s;
}

.section {
  position: relative;
  padding: 98px 0;
}

.section.dark {
  background:
    radial-gradient(circle at top left, rgba(255, 179, 0, 0.1), transparent 34%),
    var(--night-2);
}

.section.light {
  color: var(--dark-text);
  background: var(--soft);
}

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

.section-copy {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
}

.light .section-copy,
.light .muted,
.light .article-text {
  color: #5f6470;
}

.deal-panel {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 18px;
}

.deal-card,
.advantage-card,
.category-card,
.article-card,
.product-card,
.contact-card,
.process-card,
.value-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

.deal-card {
  position: relative;
  flex: 1 1 250px;
  min-height: 210px;
  overflow: hidden;
  padding: 28px;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.deal-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border: 18px solid rgba(255, 179, 0, 0.13);
  border-radius: 50%;
}

.deal-card:hover,
.advantage-card:hover,
.category-card:hover,
.article-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 179, 0, 0.7);
}

.deal-icon,
.advantage-icon,
.value-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: #111;
  background: var(--yellow);
}

.deal-icon .icon,
.advantage-icon .icon,
.value-icon .icon {
  width: 27px;
  height: 27px;
  color: currentColor;
}

.deal-card p,
.advantage-card p,
.value-card p {
  color: var(--muted);
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.category-card {
  position: relative;
  flex: 1 1 220px;
  min-height: 250px;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.category-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  opacity: 0.74;
  transform: scale(1.02);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.category-card:hover img {
  opacity: 0.95;
  transform: scale(1.08);
}

.category-info {
  position: absolute;
  inset: auto 18px 18px 18px;
  z-index: 2;
}

.category-info span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 8px;
  color: #111;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.advantage-row,
.value-row,
.process-row {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 18px;
}

.advantage-card {
  flex: 1 1 250px;
  padding: 28px;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.cta-band {
  overflow: hidden;
  color: #111;
  background:
    linear-gradient(135deg, rgba(255, 179, 0, 0.95), rgba(255, 106, 0, 0.95)),
    url("https://images.pexels.com/photos/33703998/pexels-photo-33703998.jpeg?auto=compress&cs=tinysrgb&w=1400") center / cover;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner p {
  max-width: 590px;
  font-weight: 800;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 62px;
  background:
    linear-gradient(120deg, rgba(9, 9, 10, 0.95), rgba(26, 26, 29, 0.75)),
    url("https://images.pexels.com/photos/33703998/pexels-photo-33703998.jpeg?auto=compress&cs=tinysrgb&w=1600") center / cover;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a {
  color: #fff;
  font-weight: 800;
}

.catalog-shell {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.catalog-toolbar {
  position: sticky;
  top: 102px;
  flex: 0 0 286px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.filter-block {
  margin-top: 20px;
}

.filter-title {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 850;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
  color: #111;
  background: var(--yellow);
  border-color: var(--yellow);
}

.filter-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

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

.filter-field select,
.filter-field input,
.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  padding: 12px 13px;
}

.light .form-field input,
.light .form-field textarea {
  color: #171719;
  border-color: #d9dce2;
  background: #fff;
}

.filter-field select option {
  color: #111;
}

.range-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}

input[type="range"] {
  accent-color: var(--yellow);
}

.product-area {
  flex: 1 1 auto;
  min-width: 0;
}

.catalog-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

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

.product-wall {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 18px;
}

.product-card {
  position: relative;
  flex: 1 1 300px;
  min-width: 280px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  color: var(--dark-text);
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--yellow);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}

.product-media {
  position: relative;
  overflow: hidden;
  height: 230px;
  background: #dcdfe6;
}

.product-card .swiper,
.product-card .swiper-wrapper,
.product-card .swiper-slide {
  width: 100%;
  height: 100%;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease;
}

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

.product-tag {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 3;
  padding: 5px 9px;
  color: #111;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.product-body {
  padding: 20px;
}

.product-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.product-title-row h3 {
  color: #151518;
  font-size: 27px;
}

.price-chip {
  padding: 5px 8px;
  color: #111;
  background: #f1f2f4;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.spec-table {
  width: 100%;
  margin: 16px 0 18px;
  border-collapse: collapse;
  font-size: 14px;
}

.spec-table tr {
  border-bottom: 1px solid #e6e7eb;
}

.spec-table td {
  padding: 9px 0;
}

.spec-table td:last-child {
  text-align: right;
  font-weight: 950;
}

.installment-hover {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.product-card:hover .installment-hover,
.product-card:focus-within .installment-hover {
  max-height: 82px;
  opacity: 1;
}

.catalog-hero {
  background:
    linear-gradient(115deg, rgba(12, 12, 13, 0.92), rgba(21, 24, 28, 0.62)),
    url("https://images.pexels.com/photos/33703998/pexels-photo-33703998.jpeg?auto=compress&cs=tinysrgb&w=1600") center 30% / cover;
}

.catalog-hero-layout {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 30px;
}

.catalog-hero-copy {
  flex: 1 1 620px;
  max-width: 760px;
}

.catalog-hero-copy h1 {
  max-width: 860px;
  font-size: clamp(44px, 7vw, 92px);
}

.catalog-hero-panel {
  flex: 0 1 420px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: flex-end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.catalog-hero-kicker,
.catalog-finance-pill,
.product-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalog-hero-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.catalog-hero-media {
  overflow: hidden;
  border-radius: 8px;
  min-height: 230px;
}

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

.catalog-hero-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.catalog-hero-info strong {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}

.catalog-hero-info span {
  color: #d4d8df;
}

.catalog-hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.catalog-metric {
  flex: 1 1 110px;
  min-width: 0;
  padding: 14px 14px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.catalog-metric-value {
  display: block;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
}

.catalog-metric-label {
  display: block;
  color: #c4cad3;
  font-size: 12px;
}

.catalog-scene {
  background:
    radial-gradient(circle at top right, rgba(255, 179, 0, 0.12), transparent 26%),
    linear-gradient(180deg, #f6f2e9 0%, #f3eee4 44%, #efebe3 100%);
}

.catalog-overview {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.catalog-overview-copy {
  max-width: 740px;
}

.catalog-overview-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.catalog-overview-badges span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(23, 23, 25, 0.1);
  border-radius: 999px;
  color: #171719;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
}

.catalog-shell {
  gap: 28px;
}

.catalog-toolbar {
  border-color: rgba(23, 23, 25, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 60px rgba(18, 18, 24, 0.08);
}

.catalog-toolbar-head {
  margin-bottom: 18px;
}

.catalog-toolbar-head h3 {
  color: #171719;
  font-size: 28px;
}

.catalog-toolbar .filter-title,
.catalog-toolbar .filter-field label,
.catalog-toolbar .range-row,
.catalog-finance-note p {
  color: #5f6570;
}

.catalog-toolbar .filter-btn {
  border-color: rgba(23, 23, 25, 0.1);
  color: #171719;
  background: rgba(244, 240, 231, 0.8);
}

.catalog-toolbar .filter-field select,
.catalog-toolbar .filter-field input {
  color: #171719;
  border-color: rgba(23, 23, 25, 0.12);
  background: #fffdfa;
}

.catalog-finance-note {
  margin-top: 20px;
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(160deg, #171719, #292626);
}

.catalog-finance-note p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.catalog-topline {
  margin-bottom: 24px;
}

.product-count {
  color: #716a61;
  font-size: 14px;
  font-weight: 900;
}

.product-wall {
  gap: 22px;
}

.product-card-luxe {
  flex: 1 1 360px;
  min-width: 300px;
  border: 1px solid rgba(23, 23, 25, 0.09);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 246, 240, 0.98));
  box-shadow: 0 28px 68px rgba(25, 20, 14, 0.08);
}

.product-card-luxe .product-media {
  height: 278px;
  background: #e9e4da;
}

.product-card-luxe .product-body {
  padding: 22px;
}

.product-card-luxe .product-title-row {
  margin-bottom: 12px;
}

.product-card-luxe .product-title-row h3 {
  font-size: 32px;
}

.product-card-luxe .product-title-row h3 a:hover {
  color: var(--orange);
}

.spec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 18px;
}

.spec-pills span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(23, 23, 25, 0.1);
  border-radius: 999px;
  color: #26262b;
  background: rgba(245, 240, 230, 0.8);
  font-size: 12px;
  font-weight: 900;
}

.product-page-hero {
  background:
    linear-gradient(120deg, rgba(10, 10, 11, 0.94), rgba(27, 27, 30, 0.76)),
    url("https://images.pexels.com/photos/37393681/pexels-photo-37393681.jpeg?auto=compress&cs=tinysrgb&w=1600") center / cover;
}

.product-page-layout,
.detail-columns {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.product-page-gallery,
.detail-main {
  flex: 1 1 620px;
  min-width: 0;
}

.product-page-summary,
.detail-side {
  flex: 0 1 360px;
}

.product-page-swiper {
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.product-page-swiper .swiper-wrapper,
.product-page-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.product-page-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.product-summary-card,
.detail-card {
  padding: 22px;
  border: 1px solid rgba(23, 23, 25, 0.08);
  border-radius: 8px;
  color: #171719;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 58px rgba(19, 16, 11, 0.06);
}

.product-summary-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

.detail-main,
.detail-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.spec-table-wide td:first-child {
  color: #666c75;
}

.quick-list,
.related-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-list span,
.related-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 6px;
  background: #f4efe7;
  color: #171719;
  font-weight: 850;
}

.related-links a:hover {
  color: #fff;
  background: #171719;
}

.empty-state {
  display: none;
  width: 100%;
  padding: 34px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.about-layout,
.contacts-layout,
.blog-layout,
.story-layout {
  display: flex;
  align-items: stretch;
  gap: 28px;
}

.about-text,
.story-text,
.contact-info,
.request-panel {
  flex: 1 1 420px;
}

.supply-map {
  position: relative;
  flex: 1 1 460px;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 179, 0, 0.08), transparent),
    #111114;
  box-shadow: var(--shadow);
}

.map-label {
  position: absolute;
  left: 24px;
  top: 22px;
  z-index: 3;
  color: #fff;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 31px;
  line-height: 1;
  text-transform: uppercase;
}

.route-line {
  position: absolute;
  left: 19%;
  right: 20%;
  top: 50%;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, rgba(255, 179, 0, 0.2) 0 18px, transparent 18px 32px);
  transform: rotate(-15deg);
}

.route-line::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 80px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  animation: routeMove 2.8s linear infinite;
}

.map-point {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 950;
}

.map-point::before {
  content: "";
  width: 24px;
  height: 24px;
  border: 6px solid rgba(255, 179, 0, 0.36);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 34px rgba(255, 179, 0, 0.85);
}

.point-cn {
  right: 16%;
  top: 29%;
}

.point-kg {
  left: 18%;
  bottom: 26%;
}

.map-plate {
  position: absolute;
  inset: 96px 38px 42px;
  opacity: 0.12;
  border: 1px solid #fff;
  border-radius: 50%;
  transform: rotate(-12deg);
}

.story-list,
.contact-list,
.quick-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.story-item,
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #d8dce5;
}

.light .story-item,
.light .contact-item {
  color: #4d515a;
}

.value-card,
.process-card {
  flex: 1 1 260px;
  padding: 26px;
}

.process-card {
  color: #151518;
  background: #fff;
  border-color: #e3e5eb;
}

.process-num {
  display: block;
  margin-bottom: 18px;
  color: var(--yellow);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 42px;
  line-height: 1;
}

.blog-layout {
  flex-wrap: wrap;
}

.article-card {
  position: relative;
  flex: 1 1 330px;
  overflow: hidden;
  color: #151518;
  background: #fff;
  border-color: #e3e5eb;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.article-card.offset {
  margin-top: 36px;
}

.article-image {
  height: 235px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.07);
}

.article-content {
  padding: 22px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: #777c86;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #151518;
  font-weight: 950;
}

.contacts-layout {
  align-items: flex-start;
}

.contact-card,
.request-panel {
  padding: 28px;
  border-color: #e3e5eb;
  color: #171719;
  background: #fff;
}

.contact-card {
  flex: 1 1 420px;
}

.contact-list {
  margin-bottom: 26px;
}

.contact-item .icon {
  flex: 0 0 auto;
  color: var(--orange);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 15px;
  border: 1px solid #dfe2e8;
  border-radius: 6px;
  color: #171719;
  background: #f7f8fa;
  font-weight: 950;
  animation: pulseSoft 2.4s ease-in-out infinite;
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field label {
  color: inherit;
  font-size: 13px;
  font-weight: 950;
}

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

.form-note,
.success-note {
  color: #707682;
  font-size: 13px;
}

.success-note {
  display: none;
  align-items: center;
  gap: 8px;
  color: #137a48;
  font-weight: 900;
}

.success-note.show {
  display: flex;
}

.map-frame {
  height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid #dfe2e8;
  background: #dfe2e8;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.95) contrast(1.04);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.68);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-panel {
  width: min(100%, 520px);
  max-height: calc(100vh - 44px);
  overflow: auto;
  border-radius: var(--radius);
  color: #151518;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.44);
  transform: translateY(18px);
  transition: transform 0.25s ease;
}

.modal.open .modal-panel {
  transform: translateY(0);
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 24px 0;
}

.modal-body {
  padding: 20px 24px 24px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfe2e8;
  border-radius: 6px;
  color: #151518;
  background: #fff;
}

.site-footer {
  padding: 54px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #0d0d0f;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--yellow);
}

.copyright {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #777d88;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.copyright-credit a {
  color: #777d88;
  text-decoration: none;
  white-space: nowrap;
}

.copyright-credit a:hover {
  color: var(--yellow);
}

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

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(8px);
}

.muted {
  color: var(--muted);
}

.accent {
  color: var(--yellow);
}

.hide-mobile {
  display: inline-flex;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0) rotate(var(--r, 12deg));
  }
  50% {
    transform: translateY(-18px) rotate(var(--r, 12deg));
  }
}

@keyframes routeMove {
  from {
    transform: translateX(-90px);
  }
  to {
    transform: translateX(520px);
  }
}

@keyframes pulseSoft {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 179, 0, 0);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 179, 0, 0.14);
  }
}

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

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

@media (max-width: 1120px) {
  .nav-shell {
    gap: 14px;
  }

  .main-nav a {
    padding: 10px 9px;
  }

  .phone-link {
    display: none;
  }
}

@media (max-width: 920px) {
  .burger {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 92px;
    z-index: 120;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(13, 13, 15, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  body.menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
    padding: 13px 14px;
  }

  .main-nav a.active::after {
    display: none;
  }

  .hero-inner,
  .section-head,
  .cta-inner,
  .catalog-shell,
  .about-layout,
  .contacts-layout,
  .story-layout,
  .footer-inner {
    flex-direction: column;
  }

  .catalog-hero-layout,
  .catalog-overview,
  .product-page-layout,
  .detail-columns {
    flex-direction: column;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    width: 100%;
    min-height: 430px;
  }

  .catalog-toolbar {
    position: static;
    width: 100%;
    flex-basis: auto;
  }

  .product-page-summary,
  .detail-side {
    width: 100%;
    flex-basis: auto;
  }

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

  .article-card.offset {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 22px, var(--max));
  }

  .nav-shell {
    min-height: 72px;
    gap: 8px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand-title {
    font-size: 16px;
    white-space: nowrap;
  }

  .header-actions {
    flex: 0 0 auto;
  }

  .burger {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .brand-caption,
  .hide-mobile,
  .header-actions .btn {
    display: none;
  }

  .hero,
  .section,
  .page-hero {
    padding: 62px 0;
  }

  .catalog-hero-copy h1,
  .product-page-summary h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(33px, 9.8vw, 43px);
    line-height: 1.03;
    overflow-wrap: normal;
  }

  .lead {
    max-width: 100%;
    font-size: 16px;
  }

  h2 {
    font-size: clamp(32px, 11vw, 48px);
  }

  .hero-stats,
  .deal-panel,
  .category-strip,
  .advantage-row,
  .value-row,
  .process-row,
  .product-wall,
  .blog-layout {
    flex-direction: column;
  }

  .stat-tile,
  .deal-card,
  .category-card,
  .advantage-card,
  .value-card,
  .process-card,
  .product-card,
  .article-card {
    flex-basis: auto;
    width: 100%;
  }

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

  .machine-stage {
    min-height: 315px;
  }

  .machine-badge {
    right: 8px;
    left: 8px;
    bottom: 0;
    max-width: none;
  }

  .product-card {
    min-width: 0;
  }

  .product-media,
  .article-image {
    height: 210px;
  }

  .product-card-luxe .product-media {
    height: 224px;
  }

  .product-card-luxe .product-title-row h3,
  .catalog-hero-info strong {
    font-size: 26px;
  }

  .product-page-swiper {
    height: 300px;
  }

  .supply-map {
    min-height: 330px;
  }

  .map-label {
    font-size: 24px;
  }

  .map-frame {
    height: 330px;
  }
}
