/* ================================================================
   FORSAGE — STYLE V2
   Полностью совместим с текущим index.html
================================================================ */

:root {
  --bg: #050505;
  --bg-soft: #0a0a0a;
  --panel: rgba(17, 17, 17, 0.88);
  --panel-solid: #111111;
  --panel-2: #171717;
  --text: #f5f5f5;
  --muted: #9d9d9d;
  --red: #e31b23;
  --red-dark: #a90f15;
  --line: rgba(255, 255, 255, 0.10);
  --max: 1480px;
  --header-height: 88px;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 5%, rgba(227, 27, 35, 0.08), transparent 24%),
    var(--bg);
  color: var(--text);
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

img {
  max-width: 100%;
}

/* ================================================================
   ШАПКА
================================================================ */

.site-header {
  min-height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr) 286px;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 58px);
  background: rgba(4, 4, 4, 0.76);
  backdrop-filter: blur(20px) saturate(115%);
  -webkit-backdrop-filter: blur(20px) saturate(115%);
  border-bottom: 1px solid var(--line);
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(3, 3, 3, 0.92);
  backdrop-filter: blur(26px) saturate(125%);
  -webkit-backdrop-filter: blur(26px) saturate(125%);
  border-bottom-color: rgba(255,255,255,0.13);
  box-shadow: 0 16px 44px rgba(0,0,0,0.30);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-width: 0;
  padding: 4px 0;
  overflow: visible;
}

.brand-mark {
  display: block;
  width: 108px;
  height: 78px;
  flex: 0 0 108px;
  overflow: visible;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  transform: none;
  filter: brightness(0) invert(1);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2vw, 30px);
  font-size: 13px;
  font-weight: 700;
}

.main-nav a {
  color: #d9d9d9;
  position: relative;
  transition: color 0.25s ease;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: var(--red);
  transition: right 0.25s ease;
}

.main-nav a:hover::after {
  right: 0;
}

.mobile-contact-links {
  display: none;
}

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.header-contact-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.header-channel {
  width: 28px;
  height: 28px;
  display: grid;
  flex: 0 0 28px;
  place-items: center;
  color: #dcdcdc;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.header-channel:hover {
  color: #fff;
  background: rgba(227, 27, 35, 0.12);
  border-color: rgba(227, 27, 35, 0.55);
  transform: translateY(-2px);
}

.header-channel-vk {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.header-channel svg,
.header-channel img {
  width: 15px;
  height: 15px;
  display: block;
}

.header-channel svg {
  fill: currentColor;
}

.header-phone-link {
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
  margin-left: 3px;
  transition: color 0.25s ease;
}

.header-phone-link:hover {
  color: var(--red);
}

.header-contact > .header-hours {
  color: #7d7d7d;
  font-size: 11px;
  margin-top: 4px;
}

.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: #fff;
  padding: 9px 14px;
  border-radius: 10px;
  cursor: pointer;
}

/* ================================================================
   HERO
================================================================ */

.hero {
  position: relative;
  min-height: max(720px, calc(100svh - var(--header-height)));
  display: flex;
  align-items: center;
  padding: 64px clamp(24px, 5vw, 88px) 72px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -3%;
  z-index: -4;
  background-image: url("../images/hero-workspace1.png");
  background-image: image-set(
    url("../images/hero-workspace1.webp") type("image/webp"),
    url("../images/hero-workspace1.png") type("image/png")
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform-origin: center right;
  animation: heroBackgroundDrift 16s ease-in-out infinite alternate;
  filter: brightness(0.76) contrast(0.88) saturate(0.88) blur(0.7px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse at 53% 45%, transparent 36%, rgba(0,0,0,0.36) 100%),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.99) 0%,
      rgba(0, 0, 0, 0.94) 31%,
      rgba(0, 0, 0, 0.76) 50%,
      rgba(0, 0, 0, 0.28) 76%,
      rgba(0, 0, 0, 0.15) 100%
    ),
    linear-gradient(
      0deg,
      #050505 0%,
      rgba(5, 5, 5, 0.70) 8%,
      transparent 30%
    );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 77% 62%, rgba(227, 27, 35, 0.10), transparent 24%),
    linear-gradient(120deg, transparent 42%, rgba(255, 255, 255, 0.025) 43%, transparent 47%);
}

.hero-glow {
  position: absolute;
  right: 8%;
  bottom: 5%;
  width: 460px;
  height: 240px;
  border-radius: 50%;
  background: rgba(227, 27, 35, 0.18);
  filter: blur(78px);
  z-index: -1;
  animation: glowPulse 5s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, 67vw);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  font-weight: 800;
}

.hero h1 {
  margin: 0 0 34px;
  max-width: 780px;
  font-size: clamp(58px, 5.4vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.hero h1 em {
  display: block;
  margin-top: 10px;
  font-size: 0.80em;
  font-style: normal;
  color: var(--red);
}

.hero-text {
  max-width: 790px;
  margin: 0;
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.78;
  color: #d2d2d2;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 16px;
  margin: 44px 0 0;
}

.hero-benefits > div {
  position: relative;
  min-height: 136px;
  padding: 23px 21px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.022)),
    rgba(8,8,8,0.34);
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.hero-benefits > div::after {
  content: "";
  position: absolute;
  inset: auto -30px -45px auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(227,27,35,0.08);
  filter: blur(24px);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-benefits > div:hover {
  transform: translateY(-5px);
  border-color: rgba(227, 27, 35, 0.48);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.09), rgba(227,27,35,0.045)),
    rgba(8,8,8,0.48);
  box-shadow: 0 20px 48px rgba(0,0,0,0.30);
}

.hero-benefits > div:hover::after {
  transform: scale(1.25);
  opacity: 0.85;
}

.benefit-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #ff333a;
  border: 1px solid rgba(227,27,35,0.34);
  border-radius: 11px;
  background: rgba(227,27,35,0.08);
}

.benefit-icon svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-copy {
  display: block;
  position: relative;
  z-index: 1;
}

.benefit-copy b,
.benefit-copy > span {
  display: block;
}

.benefit-copy b {
  font-size: 18px;
  line-height: 1.28;
}

.benefit-copy > span {
  font-size: 13px;
  line-height: 1.48;
  color: #c1c1c1;
  margin-top: 8px;
}

.contact-caption {
  font-size: 13px;
  color: #cfcfcf;
  margin: 38px 0 15px;
}

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

.contact-btn {
  position: relative;
  min-height: 96px;
  padding: 20px 22px;
  background: rgba(16, 16, 16, 0.82);
  border: 1px solid var(--line);
  color: #fff;
  border-radius: 14px;
  text-align: left;
  cursor: pointer;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.contact-btn-icon {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.contact-btn-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.contact-btn-icon img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

.phone-icon {
  position: relative;
}

.phone-icon::before {
  content: "";
  width: 17px;
  height: 17px;
  border: 3px solid currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 5px 3px 8px 3px;
  transform: rotate(-45deg);
}

.contact-btn-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.contact-btn-copy strong {
  font-size: 17px;
  line-height: 1.2;
}

.contact-btn-copy > span {
  font-size: 12px;
  line-height: 1.35;
  color: #9a9a9a;
  margin-top: 6px;
}

.contact-btn.vk {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-color: transparent;
  box-shadow: 0 18px 38px rgba(227, 27, 35, 0.20);
}

.contact-btn.vk .contact-btn-copy > span {
  color: #ffdfe0;
}

.contact-btn.telegram {
  background: rgba(15, 18, 21, 0.88);
  border-color: rgba(255,255,255,0.14);
}

.contact-btn.telegram .contact-btn-icon {
  color: #62aee8;
  border-color: rgba(98,174,232,0.28);
  background: rgba(98,174,232,0.07);
}

.contact-btn.telegram:hover {
  border-color: rgba(98,174,232,0.45);
  background: rgba(18, 24, 29, 0.96);
}

.contact-btn.max {
  background: rgba(15, 18, 21, 0.88);
  border-color: rgba(255,255,255,0.14);
}

.contact-btn.max .contact-btn-icon {
  border-color: rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.06);
}

.contact-btn.max:hover {
  border-color: rgba(227,27,35,0.58);
  background: rgba(20, 20, 21, 0.96);
}

.contact-btn::after {
  content: "";
  position: absolute;
  top: -80%;
  left: -40%;
  width: 42%;
  height: 260%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.11), transparent);
  transform: rotate(18deg) translateX(-180%);
  transition: transform 0.6s ease;
}

.contact-btn:hover {
  transform: translateY(-5px) scale(1.008);
  border-color: rgba(255,255,255,0.28);
  box-shadow: var(--shadow);
}

.contact-btn:hover::after {
  transform: rotate(18deg) translateX(520%);
}

.contact-btn:active {
  transform: translateY(-2px) scale(0.995);
}

/* ================================================================
   ОБЩИЕ СЕКЦИИ
================================================================ */

.section {
  max-width: var(--max);
  margin: auto;
  padding: 104px clamp(20px, 4vw, 58px);
}

.section-dark {
  max-width: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(227, 27, 35, 0.06), transparent 24%),
    #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.section-dark > * {
  max-width: calc(var(--max) - 116px);
  margin-left: auto;
  margin-right: auto;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 42px;
}

.section-title-row h2,
.contacts h2 {
  font-size: clamp(36px, 4.2vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0;
}

.section-title-row > a {
  color: var(--red);
  font-weight: 800;
  font-size: 13px;
}

/* ================================================================
   КАТЕГОРИИ
================================================================ */

#categories {
  position: relative;
}

#categories .section-title-row {
  margin-bottom: 50px;
}

.categories-title-copy {
  max-width: 850px;
}

.section-lead {
  max-width: 720px;
  margin: 20px 0 0;
  color: #aaa;
  font-size: 16px;
  line-height: 1.7;
}

.section-contact-links {
  flex: 0 0 auto;
  color: #888;
  font-size: 12px;
  text-align: right;
}

.section-contact-links > span {
  display: block;
  margin-bottom: 10px;
}

.section-contact-links > div {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.section-contact-links a {
  display: inline-flex;
  align-items: center;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.section-contact-links a:hover {
  color: #fff;
}

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

.category-card {
  position: relative;
  width: 100%;
  min-height: 282px;
  padding: 28px;
  text-align: left;
  color: #fff;
  background:
    radial-gradient(circle at 100% 100%, rgba(227,27,35,0.075), transparent 32%),
    linear-gradient(150deg, #151515 0%, #0d0d0d 68%, #0b0b0b 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 17px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent 72%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -65px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: rgba(227, 27, 35, 0.075);
  filter: blur(34px);
  opacity: 0.75;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.category-card > * {
  position: relative;
  z-index: 1;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227, 27, 35, 0.62);
  background:
    radial-gradient(circle at 100% 100%, rgba(227,27,35,0.10), transparent 34%),
    linear-gradient(150deg, #181818 0%, #101010 68%, #0c0c0c 100%);
  box-shadow: 0 24px 54px rgba(0,0,0,0.30);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card:hover::after {
  transform: scale(1.18);
  opacity: 1;
}

.category-card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

.cat-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  color: #ff343b;
  border: 1px solid rgba(227,27,35,0.32);
  border-radius: 14px;
  background: rgba(227,27,35,0.07);
}

.cat-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-card strong {
  font-size: 20px;
  line-height: 1.25;
  text-transform: uppercase;
}

.category-card small {
  min-height: 46px;
  color: #aaa;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.55;
}

.category-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-top: auto;
  padding-top: 22px;
  color: #e2e2e2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-action svg {
  width: 18px;
  height: 18px;
  stroke: var(--red);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.category-card:hover .category-action svg {
  transform: translateX(5px);
}

/* ================================================================
   ВЫПОЛНЕННЫЕ ЗАКАЗЫ
================================================================ */

.orders-section {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.orders-shell {
  max-width: calc(var(--max) - 116px);
  margin: 0 auto;
  padding: 0;
}

.orders-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 40px;
  margin-bottom: 16px;
}

.orders-intro {
  max-width: 980px;
}

.orders-intro h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(34px, 3.85vw, 57px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.orders-description {
  max-width: 800px;
  margin: 30px 0 0;
  color: #9d9d9d;
  font-size: 15px;
  line-height: 1.72;
}

.orders-controls {
  display: flex;
  align-self: start;
  gap: 10px;
  margin-top: 38px;
}

.orders-arrow {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #151515;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    opacity 0.25s ease;
}

.orders-arrow span {
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.orders-arrow-prev span {
  transform: rotate(-135deg);
  margin-left: 4px;
}

.orders-arrow-next span {
  transform: rotate(45deg);
  margin-right: 4px;
}

.orders-arrow:hover:not(:disabled) {
  color: var(--red);
  background: #191919;
  border-color: rgba(227,27,35,0.58);
  transform: translateY(-2px);
}

.orders-arrow:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.orders-arrow:disabled {
  cursor: default;
  opacity: 0.32;
}

.orders-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 42px) / 3.34);
  gap: 14px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 7px 2px 24px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 2px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(227,27,35,0.72) rgba(255,255,255,0.035);
  overscroll-behavior-inline: contain;
  touch-action: pan-x pan-y;
}

.orders-slider::-webkit-scrollbar {
  height: 4px;
}

.orders-slider::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.035);
  border-radius: 999px;
}

.orders-slider::-webkit-scrollbar-thumb {
  background: rgba(227,27,35,0.72);
  border-radius: 999px;
}

.orders-slider:focus-visible {
  outline: 1px solid rgba(227,27,35,0.55);
  outline-offset: 5px;
  border-radius: 16px;
}

.order-card {
  min-width: 0;
  height: 438px;
  display: grid;
  grid-template-rows: 330px 1fr;
  overflow: hidden;
  color: #fff;
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 17px;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  box-shadow: 0 18px 44px rgba(0,0,0,0.18);
  cursor: pointer;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.order-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227,27,35,0.76);
  box-shadow:
    0 28px 68px rgba(0,0,0,0.32),
    0 0 0 1px rgba(227,27,35,0.06);
}

.order-card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: -2px;
  border-color: var(--red);
}

.order-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0c0c0c;
}

.order-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.28s ease;
}

.order-card:hover .order-image img {
  transform: scale(1.03);
}

.order-copy {
  min-width: 0;
  padding: 16px 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #111;
}

.order-copy h3 {
  margin: 0;
  overflow: hidden;
  color: #f7f7f7;
  font-size: 19px;
  line-height: 1.28;
  letter-spacing: -0.015em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.order-copy p {
  margin: 6px 0 0;
  overflow: hidden;
  color: #8f8f8f;
  font-size: 13px;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.order-copy::after {
  content: "Открыть публикацию →";
  width: max-content;
  margin-top: 8px;
  color: rgba(255,52,59,0.86);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition: color 0.28s ease, transform 0.28s ease;
}

.order-card:hover .order-copy::after {
  color: #ff4b51;
  transform: translateX(3px);
}

/* ================================================================
   КАК МЫ РАБОТАЕМ
================================================================ */

.process-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 32px;
}

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

.steps article {
  position: relative;
  padding: 26px 20px;
  border-top: 1px solid rgba(255,255,255,0.22);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), transparent);
  border-radius: 0 0 14px 14px;
}

.steps b {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-size: 12px;
}

.steps h3 {
  font-size: 18px;
  margin: 18px 0 10px;
}

.steps p {
  color: #858585;
  line-height: 1.55;
  font-size: 13px;
}

.quality-card {
  padding: 32px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 15%, rgba(227, 27, 35, 0.13), transparent 30%),
    #101010;
  border-radius: var(--radius);
}

.shield {
  width: 58px;
  height: 58px;
  border: 2px solid #fff;
  border-radius: 17px;
  display: grid;
  place-items: center;
  font-size: 28px;
}

.quality-card p {
  color: #999;
  line-height: 1.6;
}

.quality-card a {
  color: var(--red);
  font-weight: 800;
}

/* ================================================================
   ОТЗЫВЫ
================================================================ */

.reviews-section {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.reviews-shell {
  max-width: calc(var(--max) - 116px);
  margin: 0 auto;
}

.reviews-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 60px;
  margin-bottom: 32px;
}

.reviews-intro h2 {
  max-width: 820px;
  margin: 0;
  color: #f5f5f5;
  font-size: clamp(40px, 4.25vw, 62px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.reviews-heading-aside {
  min-width: 210px;
  padding-bottom: 2px;
}

.reviews-rating {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.reviews-rating-score {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.reviews-rating-score span {
  order: 2;
  color: #f5bd24;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1.5px;
  opacity: 0.82;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.reviews-rating-score strong {
  order: 1;
  color: #fff;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.reviews-rating:hover .reviews-rating-score span {
  color: #ffd45a;
  opacity: 1;
}

.reviews-rating p {
  margin: 10px 0 0;
  color: #969696;
  font-size: 13px;
  line-height: 1.4;
}

.reviews-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}

.reviews-arrow {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #151515;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    opacity 0.25s ease;
}

.reviews-arrow > span {
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.reviews-arrow-prev > span {
  margin-left: 4px;
  transform: rotate(-135deg);
}

.reviews-arrow-next > span {
  margin-right: 4px;
  transform: rotate(45deg);
}

.reviews-arrow:hover:not(:disabled) {
  color: var(--red);
  background: #191919;
  border-color: rgba(227,27,35,0.58);
  transform: translateY(-2px);
}

.reviews-arrow:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.reviews-arrow:disabled {
  cursor: default;
  opacity: 0.32;
}

.reviews-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 54px) / 3.25);
  gap: 18px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 7px 2px 20px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 2px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(227,27,35,0.72) rgba(255,255,255,0.035);
  overscroll-behavior-inline: contain;
  touch-action: pan-x pan-y;
}

.reviews-slider::-webkit-scrollbar {
  height: 4px;
}

.reviews-slider::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.035);
  border-radius: 999px;
}

.reviews-slider::-webkit-scrollbar-thumb {
  background: rgba(227,27,35,0.72);
  border-radius: 999px;
}

.reviews-slider:focus-visible {
  outline: 1px solid rgba(227,27,35,0.55);
  outline-offset: 5px;
  border-radius: 16px;
}

.review-card {
  position: relative;
  height: 340px;
  min-width: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #fff;
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 17px;
  scroll-snap-align: start;
  box-shadow: 0 18px 44px rgba(0,0,0,0.18);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 13px;
  right: 22px;
  color: rgba(255,255,255,0.06);
  font-family: Georgia, serif;
  font-size: 98px;
  line-height: 1;
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227,27,35,0.72);
  box-shadow:
    0 28px 68px rgba(0,0,0,0.32),
    0 0 0 1px rgba(227,27,35,0.05);
}

.review-card-stars {
  position: relative;
  z-index: 1;
  color: #f5bd24;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 3px;
  transition: color 0.25s ease, filter 0.25s ease;
}

.review-card-text {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  display: -webkit-box;
  overflow: hidden;
  color: #d0d0d0;
  font-size: 16px;
  line-height: 1.62;
  max-height: calc(1.62em * 6);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.review-card-text-measure {
  position: absolute !important;
  display: block !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  visibility: hidden !important;
  pointer-events: none !important;
  -webkit-line-clamp: unset !important;
}

.review-read-more {
  position: relative;
  z-index: 1;
  width: max-content;
  margin-top: 11px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  transition: color 0.25s ease, transform 0.25s ease;
}

.review-read-more[hidden] {
  display: none;
}

.review-read-more:hover {
  color: #ff4b51;
  transform: translateX(3px);
}

.review-author {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.review-author strong {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
}

.review-author span {
  display: block;
  margin-top: 6px;
  color: #7f7f7f;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.review-card:hover .review-card-stars {
  color: #ffd45a;
  filter: brightness(1.06);
}

.review-card:hover .review-author span {
  color: #fff;
}

.reviews-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.reviews-cta {
  min-height: 62px;
  padding: 11px 14px 11px 22px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  background: #121212;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 13px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  white-space: nowrap;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.reviews-cta b {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  color: var(--red);
  background: rgba(227,27,35,0.08);
  border: 1px solid rgba(227,27,35,0.22);
  border-radius: 10px;
  font-size: 18px;
  transition: transform 0.28s ease, color 0.28s ease;
}

.reviews-cta:hover {
  transform: translateY(-3px);
  background: #151515;
  border-color: rgba(227,27,35,0.58);
  box-shadow: 0 20px 48px rgba(0,0,0,0.28);
}

.reviews-cta:hover b {
  color: #ff4b51;
  transform: translateX(3px);
}

.reviews-cta:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}


/* ================================================================
   КОНТАКТЫ
================================================================ */

.contacts {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 540px;
  background: #050505;
}

.contacts-info {
  padding: 24px clamp(28px, 4vw, 64px);
}

.contacts-info .eyebrow {
  margin-bottom: 14px;
}

.contacts-info h2 {
  font-size: clamp(38px, 3.2vw, 48px);
  line-height: 0.98;
}

.contacts-info > p {
  color: #999;
  line-height: 1.65;
}

.contact-hours {
  display: grid;
  gap: 2px;
  margin: 0;
  line-height: 1.5;
}

.big-phone {
  display: block;
  font-size: clamp(30px, 2.8vw, 42px);
  font-weight: 900;
  margin: 18px 0;
}

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

.contact-actions .btn {
  width: 100%;
}

.contact-actions > a:last-child {
  grid-column: 2 / -1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 9px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 18px 35px rgba(227, 27, 35, 0.18);
}

.btn.telegram {
  gap: 9px;
  color: #f4f8fb;
  background: #15191d;
  border-color: rgba(98,174,232,0.28);
}

.btn.telegram svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: #62aee8;
}

.btn.telegram:hover {
  border-color: rgba(98,174,232,0.52);
  box-shadow: 0 15px 32px rgba(0,0,0,0.25);
}

.btn.max {
  gap: 9px;
  color: #f4f4f4;
  background: #151515;
  border-color: rgba(255,255,255,0.18);
}

.btn.max img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  object-fit: contain;
}

.btn.max:hover {
  border-color: rgba(227,27,35,0.58);
  box-shadow: 0 15px 32px rgba(0,0,0,0.25);
}

.btn.outline {
  border-color: rgba(255,255,255,0.22);
}

.contacts-map {
  position: relative;
  min-width: 0;
  min-height: 540px;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,0.18);
}

.contacts-map > div,
.contacts-map iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  min-height: inherit;
}

.contacts-map iframe {
  border: 0;
}

/* ================================================================
   FOOTER / DIALOG
================================================================ */

footer {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  padding: 22px clamp(20px, 4vw, 58px);
  border-top: 1px solid var(--line);
  color: #777;
  font-size: 12px;
}

.footer-logo {
  width: 68px;
  height: 52px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.82;
}

.footer-contacts {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.footer-contacts a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 11px;
  color: #aaa;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.footer-contacts a:hover {
  color: #fff;
  border-color: rgba(227,27,35,0.52);
  transform: translateY(-2px);
}

.footer-contacts img {
  width: 14px;
  height: 14px;
  display: block;
  object-fit: contain;
}

.footer-meta {
  white-space: nowrap;
}

dialog {
  width: min(520px, calc(100% - 30px));
  padding: 34px;
  background: #111;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

dialog::backdrop {
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(7px);
}

.dialog-close {
  position: absolute;
  right: 14px;
  top: 10px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.dialog-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

/* ================================================================
   АНИМАЦИИ HERO
================================================================ */

@keyframes heroBackgroundDrift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.055);
  }
}

@keyframes glowPulse {
  from {
    opacity: 0.65;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1.06);
  }
}

/* ================================================================
   АДАПТИВ
================================================================ */

@media (min-width: 1101px) and (max-height: 850px) {
  .hero {
    min-height: calc(100svh - var(--header-height));
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero h1 {
    margin-bottom: 28px;
  }

  .hero-text {
    line-height: 1.65;
  }

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

  .hero-benefits > div {
    min-height: 156px;
    padding: 19px 20px;
  }

  .benefit-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
  }

  .contact-caption {
    margin-top: 28px;
  }

  .contact-btn {
    min-height: 90px;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav,
  .header-contact {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav.open {
    display: flex;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(8,8,8,0.98);
    padding: 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 38px rgba(0,0,0,.42);
  }

  .main-nav.open .mobile-contact-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    padding-top: 20px;
    margin-top: 8px;
    border-top: 1px solid var(--line);
  }

  .main-nav .mobile-contact-links a {
    min-height: 42px;
    display: grid;
    place-items: center;
    padding: 0 10px;
    color: #fff;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: 9px;
    font-size: 12px;
  }

  .main-nav .mobile-contact-links a:hover {
    background: rgba(227,27,35,0.12);
    border-color: rgba(227,27,35,0.48);
  }

  .main-nav .mobile-contact-links a::after {
    display: none;
  }

  .mobile-contact-hours {
    grid-column: 1 / -1;
    color: #8f8f8f;
    font-size: 11px;
    line-height: 1.55;
    text-align: center;
  }

  .hero-content {
    width: min(780px, 100%);
  }

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

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

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

  .orders-shell {
    padding: 0 clamp(20px, 4vw, 42px);
  }

  .orders-intro h2 {
    max-width: 580px;
    line-height: 0.98;
  }

  .orders-slider {
    grid-auto-columns: calc((100% - 16px) / 2.15);
  }

  .reviews-shell {
    padding: 0 clamp(20px, 4vw, 42px);
  }

  .reviews-intro h2 {
    font-size: clamp(38px, 5.2vw, 54px);
  }

  .reviews-slider {
    grid-auto-columns: calc((100% - 18px) / 2.2);
  }

  .process-layout {
    grid-template-columns: 1fr;
  }

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

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

  .contacts-map {
    min-height: 440px;
    border-radius: 22px;
  }

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

  .footer-logo {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-copy {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-contacts {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .footer-meta {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: start;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
    padding-bottom: 56px;
  }

  .hero h1 {
    margin-bottom: 26px;
    font-size: clamp(50px, 7vw, 68px);
  }

  .hero-text {
    line-height: 1.62;
  }

  .hero-benefits {
    gap: 12px;
    margin-top: 30px;
  }

  .hero-benefits > div {
    min-height: 132px;
    padding: 19px;
  }

  .contact-caption {
    margin-top: 26px;
  }

  .contact-btn {
    min-height: 82px;
    padding: 15px 18px;
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  #categories .section-title-row {
    margin-bottom: 38px;
  }

  .category-card {
    min-height: 246px;
    padding: 24px;
  }

  .orders-description {
    margin-top: 24px;
  }

  .orders-arrow,
  .reviews-arrow {
    width: 48px;
    height: 48px;
  }

  .order-card {
    height: 400px;
    grid-template-rows: 292px 1fr;
  }

  .review-card {
    height: 330px;
    padding: 25px;
  }

  .steps article {
    padding: 22px 18px;
  }

  .quality-card {
    padding: 28px;
  }

  footer {
    gap: 16px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (max-width: 900px) {
  .orders-intro h2 {
    max-width: 460px;
  }

  .reviews-heading-row {
    grid-template-columns: minmax(0, 1fr) 185px;
    gap: 30px;
  }

  .reviews-heading-aside {
    min-width: 0;
  }

  .reviews-slider {
    grid-auto-columns: 72%;
  }

  .review-card {
    height: 330px;
  }
}

@media (max-width: 720px) {
  .main-nav.open .mobile-contact-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  :root {
    --header-height: 64px;
  }

  .site-header {
    min-height: var(--header-height);
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-mark {
    width: 76px;
    height: 52px;
    flex-basis: 76px;
  }

  .brand-mark img {
    width: 100%;
    height: 100%;
    transform: none;
    object-fit: contain;
    object-position: left center;
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
    align-items: center;
    padding: 32px 16px 30px;
  }

  .hero::before {
    inset: 0;
    background-position: 72% center;
    animation: none;
    filter: brightness(0.70) contrast(0.86) saturate(0.84) blur(0.65px);
  }

  .hero::after {
    background:
      radial-gradient(ellipse at 50% 40%, transparent 20%, rgba(0,0,0,0.34) 100%),
      linear-gradient(180deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.87) 44%, rgba(0,0,0,0.97) 78%, #050505 100%);
  }

  .hero-content {
    width: 100%;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(34px, 9.8vw, 43px);
    line-height: 0.94;
  }

  .hero h1 em {
    margin-top: 6px;
  }

  .hero-text {
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
  }

  .hero-benefits > div {
    min-height: 104px;
    padding: 13px 12px;
    border-radius: 13px;
  }

  .benefit-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 9px;
    border-radius: 9px;
  }

  .benefit-icon svg {
    width: 17px;
    height: 17px;
  }

  .benefit-copy b {
    font-size: 13px;
    line-height: 1.2;
  }

  .benefit-copy > span {
    margin-top: 5px;
    font-size: 10.5px;
    line-height: 1.35;
  }

  .contact-caption {
    margin: 20px 0 10px;
    font-size: 12px;
  }

  .contact-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .contact-btn {
    height: 78px;
    min-height: 78px;
    padding: 9px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
    border-radius: 12px;
  }

  .contact-btn-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .contact-btn-icon svg {
    width: 17px;
    height: 17px;
  }

  .contact-btn-icon img {
    width: 18px;
    height: 18px;
  }

  .contact-btn-copy strong {
    font-size: 13px;
  }

  .contact-btn-copy > span {
    margin-top: 3px;
    font-size: 9.5px;
    line-height: 1.2;
  }

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

  .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .section-title-row h2,
  .contacts h2 {
    font-size: clamp(30px, 8.2vw, 36px);
    line-height: 1;
  }

  #categories .section-title-row {
    margin-bottom: 30px;
  }

  .section-lead {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.55;
  }

  .section-title-row {
    display: block;
  }

  .section-contact-links {
    text-align: left;
    margin-top: 16px;
  }

  .section-contact-links > div {
    justify-content: flex-start;
  }

  .category-card {
    min-height: 184px;
    padding: 18px;
    border-radius: 15px;
  }

  .cat-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
  }

  .cat-icon svg {
    width: 21px;
    height: 21px;
  }

  .category-card strong {
    font-size: 18px;
    line-height: 1.2;
  }

  .category-card small {
    margin-top: 8px;
    font-size: 12.5px;
    line-height: 1.45;
  }

  .category-card small {
    min-height: 0;
  }

  .category-action {
    padding-top: 10px;
  }

  .category-grid,
  .steps {
    gap: 12px;
  }

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

  .contacts-info {
    padding: 36px 20px 32px;
  }

  .contacts-info .eyebrow {
    margin-bottom: 14px;
  }

  .contact-address {
    margin: 16px 0 0;
  }

  .big-phone {
    margin: 14px 0;
    font-size: clamp(28px, 8vw, 34px);
  }

  .contact-hours {
    line-height: 1.55;
  }

  .contacts-map {
    min-height: 326px;
    border-radius: 20px;
  }

  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
  }

  .contact-actions > a:last-child {
    grid-column: 1 / -1;
  }

  .dialog-actions {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .footer-logo {
    width: 54px;
    height: 42px;
  }

  footer {
    gap: 12px 14px;
    padding: 18px 20px;
  }

  .footer-copy {
    line-height: 1.4;
  }

  .footer-contacts {
    gap: 6px;
  }

  .footer-contacts a {
    min-height: 32px;
    padding: 0 9px;
    font-size: 11px;
  }

  .orders-heading-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 12px;
  }

  .orders-intro h2 {
    font-size: clamp(29px, 8vw, 34px);
    line-height: 0.98;
  }

  .orders-description {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.55;
  }

  .orders-controls {
    justify-content: flex-end;
    margin-top: 0;
  }

  .orders-slider {
    grid-auto-columns: 86%;
    gap: 10px;
    padding-bottom: 16px;
  }

  .order-card {
    height: 350px;
    grid-template-rows: 248px 1fr;
  }

  .order-image img {
    object-fit: contain;
  }

  .order-copy {
    padding: 13px 16px 15px;
  }

  .order-copy h3 {
    font-size: 17px;
  }

  .reviews-heading-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 18px;
  }

  .reviews-intro h2 {
    font-size: clamp(28px, 7.2vw, 32px);
    line-height: 0.98;
  }

  .reviews-heading-aside {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 20px;
  }

  .reviews-rating {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .reviews-rating-score strong {
    font-size: 34px;
  }

  .reviews-controls {
    margin-top: 0;
  }

  .reviews-slider {
    grid-auto-columns: 86%;
    gap: 10px;
    padding-bottom: 15px;
  }

  .review-card {
    height: 320px;
    padding: 21px 20px;
  }

  .review-card-text {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.55;
  }

  .review-author {
    padding-top: 12px;
  }

  .reviews-footer {
    justify-content: stretch;
    margin-top: 18px;
  }

  .reviews-cta {
    min-height: 54px;
    width: 100%;
    justify-content: space-between;
    font-size: 13px;
  }

  .steps article {
    padding: 18px;
  }

  .process-layout {
    gap: 22px;
  }

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

  .steps b {
    width: 34px;
    height: 34px;
  }

  .steps h3 {
    margin: 13px 0 8px;
    font-size: 17px;
  }

  .steps p {
    margin: 0;
    line-height: 1.5;
  }

  .quality-card {
    padding: 22px;
  }

  .quality-card p {
    line-height: 1.5;
  }

  dialog {
    padding: 26px 22px;
  }
}

@media (max-width: 360px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .contact-actions > a:last-child {
    grid-column: 1;
  }
}

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