:root {
  --ink: #111827;
  --muted: #5b6472;
  --line: #d9e0e8;
  --panel: #ffffff;
  --wash: #f4f7f9;
  --navy: #18324f;
  --blue: #2457d6;
  --blue-dark: #163fa8;
  --green: #0f8a5f;
  --amber: #b25e09;
  --shadow: 0 18px 42px rgba(20, 38, 61, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family:
    Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

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

.brand-emblem {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(24, 50, 79, 0.22);
}

.brand-emblem svg,
.brand-emblem img {
  display: block;
  width: 48px;
  height: auto;
}

.brand-copy {
  display: block;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
}

.brand-copy small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.nav {
  display: flex;
  gap: 14px;
  color: #243247;
  font-size: 14px;
}

.nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-actions .btn {
  white-space: nowrap;
}

.phone {
  font-weight: 700;
  white-space: nowrap;
}

.messenger-link {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: 160ms ease;
}

.messenger-link:hover {
  border-color: #b8c5d6;
  background: #f7fafc;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  transition: 160ms ease;
}

.btn-primary {
  color: #fff;
  background: var(--blue);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--navy);
  border-color: var(--line);
  background: #fff;
}

.btn-urgent {
  color: #fff;
  background: var(--amber);
}

.btn-secondary:hover {
  border-color: #b8c5d6;
  background: #f8fafc;
}

.btn-urgent:hover {
  background: #934d07;
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(28px, 3.4vw, 48px) clamp(18px, 4vw, 56px) 28px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef4f8 100%);
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(38px, 4.7vw, 60px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
}

.hero p,
.section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 20px;
}

.proof-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.proof-grid span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #344054;
  font-size: 13px;
  font-weight: 700;
}

.hero-scope {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.hero-scope div {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.hero-scope strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 13px;
}

.hero-scope span {
  display: inline-flex;
  margin: 0 5px 6px 0;
  padding: 6px 8px;
  border-radius: 8px;
  color: #344054;
  background: #eef4f8;
  font-size: 12px;
  font-weight: 800;
}

.hero-media {
  align-self: stretch;
  min-height: 450px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #dfe7ef;
}

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

.band {
  padding: 26px clamp(18px, 4vw, 56px);
  background: var(--navy);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
}

.metrics div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.metrics strong {
  display: block;
  color: #fff;
  font-size: 26px;
}

.metrics span {
  display: block;
  margin-top: 8px;
  color: #cbd5e1;
}

.section {
  padding: 70px clamp(18px, 4vw, 56px);
}

main section[id] {
  scroll-margin-top: 96px;
}

.section:nth-of-type(odd) {
  background: var(--wash);
}

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

.section-note {
  max-width: 920px;
  margin: -12px 0 26px;
  font-size: 15px !important;
}

.section-head .section-note {
  margin: 0;
  max-width: 780px;
}

.catalog-tools {
  display: flex;
  flex: 0 0 min(100%, 560px);
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.catalog-tools input,
.catalog-tools select,
.quick-form input,
.quick-form select,
.quick-form textarea,
.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
}

.catalog-tools input {
  flex: 1 1 100%;
  min-width: 280px;
}

.catalog-tools select {
  flex: 1 1 180px;
}

.product-grid,
.kit-grid,
.venue-grid,
.solution-grid,
.direction-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card,
.kit-card,
.venue-grid article,
.solution-card,
.direction-card,
.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
}

.product-card:hover,
.kit-card:hover,
.venue-grid article:hover,
.trust-grid article:hover,
.solution-card:hover,
.direction-card:hover,
.faq-grid article:hover {
  border-color: #b8c5d6;
  box-shadow: 0 14px 32px rgba(20, 38, 61, 0.1);
  transform: translateY(-2px);
}

.product-visual {
  position: relative;
  display: flex;
  height: 74px;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: #eaf1f7;
  overflow: hidden;
}

.product-visual span {
  position: relative;
  z-index: 1;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.product-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-weight: 800;
}

.visual-shape {
  position: absolute;
  inset: 10px auto 10px 18px;
  width: 78px;
  opacity: 0.18;
}

.visual-shape::before,
.visual-shape::after {
  content: "";
  position: absolute;
  border-radius: 6px;
  background: var(--navy);
}

.visual-shape.chair::before {
  width: 30px;
  height: 26px;
  left: 20px;
  top: 4px;
}

.visual-shape.chair::after {
  width: 44px;
  height: 8px;
  left: 13px;
  top: 34px;
  box-shadow: 8px 10px 0 -3px var(--navy), 30px 10px 0 -3px var(--navy);
}

.visual-shape.table::before,
.visual-shape.bar::before {
  width: 58px;
  height: 10px;
  left: 8px;
  top: 16px;
}

.visual-shape.table::after,
.visual-shape.bar::after {
  width: 10px;
  height: 34px;
  left: 32px;
  top: 25px;
  box-shadow: -20px 20px 0 -4px var(--navy), 20px 20px 0 -4px var(--navy);
}

.visual-shape.screen::before,
.visual-shape.tech::before,
.visual-shape.led::before {
  width: 58px;
  height: 34px;
  left: 8px;
  top: 4px;
}

.visual-shape.screen::after,
.visual-shape.tech::after,
.visual-shape.led::after {
  width: 10px;
  height: 22px;
  left: 32px;
  top: 38px;
  box-shadow: -12px 20px 0 0 var(--navy), 12px 20px 0 0 var(--navy);
}

.visual-shape.carpet::before {
  width: 62px;
  height: 38px;
  left: 5px;
  top: 10px;
  border-radius: 50%;
}

.visual-shape.carpet::after {
  width: 42px;
  height: 28px;
  left: 25px;
  top: 18px;
  border-radius: 50%;
  background: #fff;
}

.visual-shape.expo::before,
.visual-shape.service::before {
  width: 54px;
  height: 38px;
  left: 10px;
  top: 10px;
}

.visual-shape.expo::after,
.visual-shape.service::after {
  width: 20px;
  height: 20px;
  left: 27px;
  top: 19px;
  background: #fff;
}

.visual-shape.lounge::before,
.visual-shape.utility::before,
.visual-shape.sound::before {
  width: 58px;
  height: 28px;
  left: 8px;
  top: 22px;
}

.visual-shape.lounge::after,
.visual-shape.utility::after,
.visual-shape.sound::after {
  width: 16px;
  height: 42px;
  left: 5px;
  top: 10px;
  box-shadow: 50px 0 0 0 var(--navy);
}

.product-photo {
  position: relative;
  display: grid;
  height: 158px;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.product-photo::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.photo-floor {
  position: absolute;
  right: 18%;
  bottom: 26px;
  left: 18%;
  height: 12px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.12);
  filter: blur(6px);
}

.photo-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 5px 8px;
  border: 1px solid #e3eaf2;
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 800;
}

.product-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 158px;
  object-fit: contain;
}

.product-render {
  --body: #ffffff;
  --accent: #18324f;
  --accent-2: #27d19a;
  --metal: #8792a2;
  position: relative;
  z-index: 1;
  width: 122px;
  height: 100px;
}

.product-render::before,
.product-render::after {
  content: "";
  position: absolute;
}

.render-chair {
  --body: #ffffff;
}

.render-chair::before {
  left: 36px;
  top: 12px;
  width: 50px;
  height: 50px;
  border: 4px solid var(--accent);
  border-radius: 14px 14px 18px 18px;
  background: linear-gradient(180deg, var(--body) 0%, #edf2f7 100%);
  box-shadow: inset 0 -18px 0 rgba(24, 50, 79, 0.08);
}

.render-chair::after {
  left: 28px;
  top: 60px;
  width: 66px;
  height: 34px;
  border-bottom: 5px solid var(--metal);
  border-left: 4px solid var(--metal);
  border-right: 4px solid var(--metal);
  transform: perspective(80px) rotateX(18deg);
}

.render-dark {
  --body: #182235;
}

.render-wood {
  --metal: #b7793b;
}

.render-conf,
.render-soft {
  --body: #dfe7ef;
}

.render-bar-chair::before {
  left: 37px;
  top: 6px;
  width: 52px;
  height: 36px;
  border-radius: 18px 18px 10px 10px;
  background: var(--accent);
  box-shadow: 0 38px 0 -12px #ffffff, inset 0 -12px 0 rgba(255, 255, 255, 0.18);
}

.render-bar-chair::after {
  left: 57px;
  top: 42px;
  width: 7px;
  height: 50px;
  border-radius: 8px;
  background: var(--metal);
  box-shadow: -22px 44px 0 -1px var(--metal), 22px 44px 0 -1px var(--metal), -24px 26px 0 -2px var(--metal),
    24px 26px 0 -2px var(--metal);
}

.render-table::before,
.render-meeting-table::before,
.render-bar-table::before,
.render-cocktail-table::before,
.render-round-table::before {
  left: 20px;
  top: 26px;
  width: 82px;
  height: 14px;
  border-radius: 8px;
  background: var(--accent);
}

.render-table::after,
.render-meeting-table::after,
.render-bar-table::after,
.render-cocktail-table::after,
.render-round-table::after {
  left: 56px;
  top: 39px;
  width: 10px;
  height: 46px;
  border-radius: 8px;
  background: var(--metal);
  box-shadow: -34px 40px 0 -3px var(--metal), 34px 40px 0 -3px var(--metal);
}

.render-meeting-table::before {
  left: 10px;
  width: 102px;
}

.render-round-table::before {
  left: 27px;
  top: 18px;
  width: 68px;
  height: 34px;
  border-radius: 50%;
}

.render-cocktail-table::before,
.render-bar-table::before {
  left: 35px;
  top: 12px;
  width: 52px;
  height: 28px;
  border-radius: 50%;
}

.render-pouf::before {
  left: 28px;
  top: 30px;
  width: 66px;
  height: 46px;
  border-radius: 18px;
  background: linear-gradient(180deg, #dfe7ef, #b8c5d6);
  border: 3px solid var(--accent);
}

.render-armchair::before,
.render-sofa::before {
  left: 24px;
  top: 28px;
  width: 74px;
  height: 48px;
  border-radius: 18px 18px 12px 12px;
  background: #dfe7ef;
  border: 4px solid var(--accent);
}

.render-armchair::after,
.render-sofa::after {
  left: 16px;
  top: 48px;
  width: 90px;
  height: 34px;
  border-radius: 16px;
  background: var(--accent);
}

.render-sofa::before {
  left: 12px;
  width: 98px;
}

.render-sofa::after {
  left: 8px;
  width: 106px;
}

.render-counter::before,
.render-promo-counter::before {
  left: 18px;
  top: 30px;
  width: 86px;
  height: 54px;
  border-radius: 10px;
  background: #ffffff;
  border: 4px solid var(--accent);
  box-shadow: inset 0 16px 0 #eaf1f7;
}

.render-counter::after,
.render-promo-counter::after {
  left: 38px;
  top: 52px;
  width: 46px;
  height: 8px;
  border-radius: 8px;
  background: var(--accent-2);
}

.render-brochure::before {
  left: 40px;
  top: 14px;
  width: 42px;
  height: 72px;
  border-radius: 8px;
  border: 4px solid var(--accent);
  background: repeating-linear-gradient(180deg, #ffffff 0 12px, #eaf1f7 12px 18px);
  transform: skewX(-8deg);
}

.render-brochure::after {
  left: 26px;
  top: 84px;
  width: 72px;
  height: 8px;
  border-radius: 8px;
  background: var(--metal);
}

.render-shelf::before,
.render-showcase::before {
  left: 27px;
  top: 12px;
  width: 68px;
  height: 76px;
  border: 4px solid var(--accent);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #edf2f7);
  box-shadow: inset 0 22px 0 -18px var(--accent), inset 0 44px 0 -40px var(--accent);
}

.render-showcase::after {
  left: 38px;
  top: 22px;
  width: 46px;
  height: 56px;
  border-radius: 6px;
  background: rgba(39, 209, 154, 0.22);
}

.render-podium::before {
  left: 18px;
  top: 52px;
  width: 86px;
  height: 32px;
  border-radius: 10px 10px 6px 6px;
  background: var(--accent);
}

.render-podium::after {
  left: 30px;
  top: 36px;
  width: 62px;
  height: 18px;
  border-radius: 50%;
  background: #dfe7ef;
  border: 3px solid var(--accent);
}

.render-partition::before,
.render-rollup::before,
.render-presswall::before,
.render-panel::before,
.render-led::before,
.render-videowall::before {
  left: 22px;
  top: 10px;
  width: 78px;
  height: 70px;
  border-radius: 8px;
  background: #ffffff;
  border: 4px solid var(--accent);
}

.render-rollup::after,
.render-panel::after {
  left: 56px;
  top: 80px;
  width: 10px;
  height: 16px;
  background: var(--metal);
  box-shadow: -24px 14px 0 0 var(--metal), 24px 14px 0 0 var(--metal);
}

.render-presswall::before {
  background: repeating-linear-gradient(135deg, #ffffff 0 16px, #edf2f7 16px 32px);
}

.render-led::before,
.render-videowall::before {
  background:
    linear-gradient(90deg, transparent 32%, rgba(255, 255, 255, 0.8) 33%, transparent 34%),
    linear-gradient(180deg, transparent 48%, rgba(255, 255, 255, 0.8) 49%, transparent 50%),
    linear-gradient(135deg, #18324f, #2457d6);
}

.render-tv::before {
  left: 12px;
  top: 10px;
  width: 98px;
  height: 58px;
  border-radius: 8px;
  background: linear-gradient(135deg, #16243a, #2457d6);
  border: 5px solid #111827;
}

.render-tv::after {
  left: 56px;
  top: 68px;
  width: 10px;
  height: 18px;
  background: var(--metal);
  box-shadow: -24px 18px 0 0 var(--metal), 24px 18px 0 0 var(--metal);
}

.render-tv-xl::before,
.render-tv-xxl::before {
  left: 5px;
  width: 112px;
  height: 64px;
}

.render-tv-stand::before {
  left: 50px;
  top: 12px;
  width: 22px;
  height: 70px;
  border-radius: 10px;
  background: var(--metal);
}

.render-tv-stand::after {
  left: 22px;
  top: 78px;
  width: 78px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.render-carpet::before,
.render-film::before {
  left: 22px;
  top: 28px;
  width: 80px;
  height: 42px;
  border-radius: 50%;
  background: #b8c5d6;
  border: 4px solid var(--accent);
}

.render-carpet::after,
.render-film::after {
  left: 42px;
  top: 36px;
  width: 58px;
  height: 36px;
  border-radius: 50%;
  background: #edf2f7;
}

.render-carpet-blue::before {
  background: #2457d6;
}

.render-carpet-green::before {
  background: #27d19a;
}

.render-tape::before {
  left: 34px;
  top: 22px;
  width: 54px;
  height: 54px;
  border: 12px solid var(--accent);
  border-radius: 50%;
  background: #fff;
}

.render-tape::after {
  left: 60px;
  top: 46px;
  width: 46px;
  height: 12px;
  border-radius: 8px;
  background: var(--accent-2);
}

.render-projector::before,
.render-player::before {
  left: 24px;
  top: 36px;
  width: 76px;
  height: 42px;
  border-radius: 12px;
  background: #ffffff;
  border: 4px solid var(--accent);
}

.render-projector::after,
.render-player::after {
  left: 34px;
  top: 48px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 42px 2px 0 -5px var(--metal);
}

.render-cooler::before,
.render-fridge::before {
  left: 40px;
  top: 12px;
  width: 42px;
  height: 76px;
  border-radius: 12px;
  background: #ffffff;
  border: 4px solid var(--accent);
  box-shadow: inset 0 22px 0 #eaf1f7;
}

.render-cooler::after {
  left: 48px;
  top: 48px;
  width: 26px;
  height: 10px;
  border-radius: 8px;
  background: var(--accent-2);
}

.render-coffee::before {
  left: 28px;
  top: 24px;
  width: 66px;
  height: 58px;
  border-radius: 12px;
  background: #ffffff;
  border: 4px solid var(--accent);
}

.render-coffee::after {
  left: 44px;
  top: 40px;
  width: 34px;
  height: 10px;
  border-radius: 8px;
  background: var(--accent-2);
  box-shadow: 8px 18px 0 4px var(--metal);
}

.render-hanger::before {
  left: 58px;
  top: 14px;
  width: 6px;
  height: 70px;
  border-radius: 8px;
  background: var(--metal);
}

.render-hanger::after {
  left: 28px;
  top: 20px;
  width: 66px;
  height: 20px;
  border: 5px solid var(--accent);
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
}

.render-bin::before {
  left: 42px;
  top: 26px;
  width: 38px;
  height: 58px;
  border-radius: 8px 8px 14px 14px;
  background: #dfe7ef;
  border: 4px solid var(--accent);
}

.render-bin::after {
  left: 36px;
  top: 20px;
  width: 50px;
  height: 8px;
  border-radius: 8px;
  background: var(--accent);
}

.render-speaker::before {
  left: 36px;
  top: 16px;
  width: 50px;
  height: 72px;
  border-radius: 10px;
  background: var(--accent);
}

.render-speaker::after {
  left: 48px;
  top: 28px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 32px 0 -4px #ffffff;
}

.render-mic::before {
  left: 48px;
  top: 14px;
  width: 26px;
  height: 44px;
  border-radius: 16px;
  background: var(--accent);
}

.render-mic::after {
  left: 56px;
  top: 56px;
  width: 10px;
  height: 34px;
  border-radius: 8px;
  background: var(--metal);
  box-shadow: -18px 32px 0 -1px var(--metal), 18px 32px 0 -1px var(--metal);
}

.render-light::before {
  left: 36px;
  top: 24px;
  width: 50px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent);
  transform: rotate(-12deg);
}

.render-light::after {
  left: 68px;
  top: 28px;
  width: 44px;
  height: 24px;
  background: rgba(39, 209, 154, 0.32);
  clip-path: polygon(0 35%, 100% 0, 100% 100%, 0 65%);
}

.render-truck::before {
  left: 18px;
  top: 40px;
  width: 66px;
  height: 34px;
  border-radius: 8px;
  background: var(--accent);
  box-shadow: 48px 10px 0 -4px #dfe7ef;
}

.render-truck::after {
  left: 28px;
  top: 72px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 5px solid var(--metal);
  box-shadow: 66px 0 0 -5px #ffffff, 66px 0 0 0 var(--metal);
}

.render-service::before,
.render-night::before,
.render-plan::before,
.render-bracket::before {
  left: 32px;
  top: 20px;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--accent);
}

.render-service::after,
.render-night::after,
.render-plan::after,
.render-bracket::after {
  left: 48px;
  top: 36px;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--accent-2);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.18);
}

.product-body,
.kit-card,
.venue-grid article,
.solution-card,
.direction-card,
.faq-grid article {
  padding: 16px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.stock-badge {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 8px;
  color: #7c4a03;
  background: #fff4d6;
  font-size: 12px;
  font-weight: 800;
}

.stock-badge.in-stock {
  color: #0f6848;
  background: #ddf7ea;
}

.product-card p,
.kit-card p {
  min-height: 48px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

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

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

.direction-card {
  display: grid;
  min-height: 122px;
  align-content: space-between;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.direction-card strong,
.faq-grid strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.2;
}

.direction-card span,
.faq-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.direction-card::after {
  content: "Открыть страницу";
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  padding: 7px 9px;
  border-radius: 8px;
  color: #0f6848;
  background: #ddf7ea;
  font-size: 12px;
  font-weight: 800;
}

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

.faq-grid article {
  min-height: 172px;
  background: #fff;
}

.solution-card {
  min-height: 210px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.solution-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 20px;
}

.solution-card p {
  min-height: 98px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.solution-card span {
  display: inline-flex;
  padding: 7px 9px;
  border-radius: 8px;
  color: #0f6848;
  background: #ddf7ea;
  font-size: 12px;
  font-weight: 800;
}

.urgent-solution {
  border-color: #efd2aa;
  background: linear-gradient(180deg, #fffaf3 0%, #fff4e5 100%);
}

.urgent-solution span {
  color: #7c4a03;
  background: #ffe8bc;
}

.price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}

.price-line strong {
  color: var(--navy);
  font-size: 20px;
}

.product-card .btn {
  width: 100%;
  margin-top: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 36px;
  align-items: start;
}

.check-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  margin: 10px 0;
  padding-left: 22px;
  position: relative;
  color: #2d3748;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--green);
}

.price-table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.price-table th {
  color: #fff;
  background: var(--navy);
}

.kit-card strong,
.venue-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
}

.kit-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

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

.kit-meta strong {
  margin: 0;
}

.venue-grid article span {
  color: var(--muted);
  line-height: 1.45;
}

.trust-section {
  background: #fff !important;
}

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

.trust-grid article {
  min-height: 180px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.trust-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 18px;
}

.trust-grid span {
  color: var(--muted);
  line-height: 1.5;
}

.quick-form,
.request-form {
  display: grid;
  gap: 12px;
}

.form-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.form-note a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.quick-form {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.quick-form label {
  display: grid;
  gap: 6px;
  color: #344054;
  font-weight: 700;
}

textarea {
  min-height: 96px;
  resize: vertical;
}

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

.timeline div {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.timeline strong {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
}

.timeline span {
  color: #334155;
  line-height: 1.45;
}

.request-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  display: flex;
  width: min(420px, 100vw);
  height: 100vh;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-left: 1px solid var(--line);
  background: #fff;
  box-shadow: -18px 0 40px rgba(0, 0, 0, 0.14);
  transform: translateX(105%);
  transition: transform 180ms ease;
}

.request-panel.open {
  transform: translateX(0);
}

.request-head,
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.icon-btn {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 24px;
}

.cart-items {
  display: grid;
  max-height: 38vh;
  gap: 10px;
  overflow: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--wash);
}

.cart-item button {
  border: 0;
  background: transparent;
  color: var(--red);
  cursor: pointer;
}

.cart-total {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.floating-cart {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: none;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  background: var(--navy);
  cursor: pointer;
  box-shadow: var(--shadow);
  font-weight: 800;
}

.floating-cart.visible {
  display: inline-flex;
}

.floating-cart span {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: #dbe4ee;
  background: #101f33;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-links a {
  color: #fff;
  font-weight: 700;
}

.legal-page {
  min-height: 100vh;
  padding: 34px clamp(18px, 4vw, 56px) 70px;
  background: var(--wash);
}

.legal-back {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-weight: 800;
}

.legal-card {
  max-width: 980px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 42px);
  background: #fff;
  box-shadow: 0 14px 34px rgba(20, 38, 61, 0.08);
}

.legal-card h1 {
  margin-bottom: 24px;
  font-size: clamp(34px, 4vw, 52px);
}

.legal-card h2 {
  margin-top: 28px;
  font-size: 24px;
}

.legal-card p {
  color: #334155;
  line-height: 1.65;
}

.requisites-list {
  display: grid;
  grid-template-columns: minmax(160px, 0.32fr) minmax(0, 1fr);
  gap: 12px 18px;
  margin: 0;
}

.requisites-list dt {
  color: var(--muted);
  font-weight: 800;
}

.requisites-list dd {
  margin: 0;
  color: var(--ink);
}

.requisites-list a {
  color: var(--blue);
  font-weight: 800;
}

.landing-main {
  background: #fff;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  gap: clamp(22px, 4vw, 54px);
  padding: clamp(34px, 4.5vw, 68px) clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, #f8fafc 0%, #eef4f8 100%);
}

.landing-hero h1 {
  font-size: clamp(36px, 4.4vw, 58px);
}

.landing-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.landing-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 20px;
}

.landing-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-card li {
  position: relative;
  margin: 10px 0;
  padding-left: 22px;
  color: #334155;
  line-height: 1.45;
}

.landing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--green);
}

.landing-form {
  display: grid;
  gap: 12px;
}

.landing-form input,
.landing-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
}

.landing-form textarea {
  min-height: 110px;
}

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

.landing-columns article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.landing-columns strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
}

.landing-columns span {
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 1080px) {
  .nav {
    display: none;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

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

  .product-grid,
  .kit-grid,
  .venue-grid,
  .solution-grid,
  .direction-grid,
  .faq-grid,
  .trust-grid,
  .timeline,
  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-scope {
    grid-template-columns: 1fr;
  }

  .landing-hero {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    min-width: 0;
  }

  .top-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .top-actions .btn {
    display: none;
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .hero p,
  .section p {
    font-size: 16px;
  }

  .section-head,
  .catalog-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-tools {
    flex: 0 0 auto;
  }

  .catalog-tools input,
  .catalog-tools select {
    flex: 0 0 auto;
  }

  .catalog-tools input {
    min-width: 0;
  }

  .product-grid,
  .kit-grid,
  .venue-grid,
  .solution-grid,
  .direction-grid,
  .faq-grid,
  .trust-grid,
  .timeline,
  .metrics {
    grid-template-columns: 1fr;
  }

  .hero-scope {
    grid-template-columns: 1fr;
  }

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

  .footer {
    padding-bottom: 82px;
  }

  .requisites-list {
    grid-template-columns: 1fr;
  }

  main section[id] {
    scroll-margin-top: 156px;
  }
}
