@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Oswald:wght@500;600;700&display=swap");

:root {
  --bg: #edf0f2;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-strong: #ffffff;
  --text: #1b2127;
  --muted: #66717b;
  --line: rgba(27, 33, 39, 0.1);
  --brand: #f08a24;
  --brand-dark: #c46511;
  --accent: #2e3944;
  --accent-soft: #d8dee3;
  --shadow: 0 20px 60px rgba(17, 23, 29, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: min(1465px, calc(100vw - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(240, 138, 36, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(46, 57, 68, 0.12), transparent 24%),
    linear-gradient(180deg, #f3f5f6 0%, #e7ebee 100%);
}

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

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

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

.page-shell {
  position: relative;
  overflow-x: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(50px);
  z-index: -1;
  opacity: 0.45;
}

.page-shell::before {
  top: 80px;
  left: -100px;
  background: rgba(240, 138, 36, 0.14);
}

.page-shell::after {
  right: -120px;
  bottom: 120px;
  background: rgba(46, 57, 68, 0.14);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  background: #1f262d;
  color: #eef2f4;
}

.topbar-inner {
  min-height: 54px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 18px;
  align-items: center;
  font-size: 14px;
}

.topbar-badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: rgba(249, 245, 239, 0.9);
  white-space: nowrap;
}

.topbar-quicklink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #eef2f4;
  font-weight: 700;
  transition: 0.2s ease;
  white-space: nowrap;
}

.topbar-quicklink:hover {
  color: #fff;
}

.topbar-quicklink__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: rgba(240, 138, 36, 0.18);
  color: #ffbe73;
  flex: 0 0 auto;
}

.topbar-contactset {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
  min-width: 0;
}

.topbar-email {
  white-space: nowrap;
}

.topbar-address {
  white-space: nowrap;
  color: rgba(238, 242, 244, 0.78);
}

.topbar-hours {
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .topbar-inner {
    grid-template-columns: 1fr auto;
    gap: 10px 18px;
    padding: 10px 0;
  }

  .topbar-quicklink {
    justify-self: start;
  }

  .topbar-contactset {
    grid-column: 1 / -1;
    justify-self: start;
    flex-wrap: wrap;
    gap: 10px 18px;
  }
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #31b24c;
  box-shadow: 0 0 0 6px rgba(49, 178, 76, 0.18);
}

.site-header {
  position: relative;
  z-index: 120;
  isolation: isolate;
  padding: 12px 0;
  backdrop-filter: blur(18px);
  background: rgba(243, 245, 246, 0.92);
  border-bottom: 1px solid rgba(27, 33, 39, 0.07);
  transition:
    padding 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease,
    opacity 0.22s ease;
}

.site-header.is-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 13px 0;
  background: rgba(243, 245, 246, 0.98);
  box-shadow: 0 14px 30px rgba(17, 23, 29, 0.08);
  z-index: 160;
  transform: translateY(0);
  opacity: 1;
}

body.header-fixed {
  padding-top: 102px;
}

.header-inner {
  display: grid;
  grid-template-columns: 210px 1fr auto auto;
  gap: 18px;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: gap 0.22s ease;
}

.logo-mark {
  font-family: "Oswald", sans-serif;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--accent);
  transition: font-size 0.22s ease, transform 0.22s ease;
}

.logo-note {
  font-size: 12px;
  color: var(--muted);
  max-width: 170px;
  max-height: 40px;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    max-height 0.22s ease;
}

.site-header.is-scrolled .logo-note {
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
}

.site-header.is-scrolled .logo-mark {
  font-size: 29px;
}

.site-header.is-scrolled .nav-link,
.site-header.is-scrolled .nav-summary {
  font-size: 15px;
}

.site-header.is-scrolled .header-extended {
  grid-template-columns: 150px auto 1fr auto;
  gap: 14px;
}

.header-extended {
  transition: gap 0.22s ease, grid-template-columns 0.22s ease;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-link,
.nav-summary {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--text);
  font-weight: 700;
  font-size: 16px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    padding 0.22s ease,
    min-height 0.22s ease,
    font-size 0.22s ease;
}

.nav-link:hover,
.nav-summary:hover {
  background: rgba(46, 57, 68, 0.08);
}

.nav-group {
  position: relative;
}

.nav-group details {
  position: relative;
}

.catalog-trigger details {
  position: relative;
}

.nav-summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  list-style: none;
}

.nav-summary::-webkit-details-marker {
  display: none;
}

.nav-group:not(.catalog-trigger) .nav-summary::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.7;
}

.catalog-trigger .nav-summary {
  min-height: 52px;
  padding: 0 22px;
  background: linear-gradient(135deg, #25313a, #182127);
  color: #f7f8fa;
  box-shadow: 0 16px 32px rgba(24, 33, 39, 0.18);
}

.catalog-trigger .nav-summary:hover {
  background: linear-gradient(135deg, #2d3943, #1d272e);
}

.catalog-trigger .nav-summary::before {
  content: "";
  width: 14px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  box-shadow: 0 4px 0 0 currentColor inset;
  opacity: 0.9;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  padding: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: grid;
  gap: 6px;
  z-index: 170;
}

.nav-dropdown a {
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 600;
}

.nav-dropdown a:hover {
  background: rgba(217, 107, 39, 0.08);
}

.catalog-menu {
  min-width: 300px;
  width: 320px;
  padding: 10px;
  grid-template-columns: 1fr;
  gap: 6px;
}

.catalog-item {
  position: relative;
}

.catalog-item-toggle {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 0;
  background: rgba(46, 57, 68, 0.04);
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: 0.24s ease;
}

.catalog-item-link {
  display: flex;
  align-items: center;
  width: 100%;
  color: inherit;
}

.catalog-item-toggle::after {
  content: ">";
  margin-left: auto;
  font-size: 16px;
  line-height: 1;
  color: var(--muted);
  transform: translateX(0);
  transition: 0.2s ease;
}

.catalog-item-text {
  display: block;
  max-width: 220px;
  line-height: 1.2;
}

.catalog-item.is-active .catalog-item-toggle,
.catalog-item-toggle:hover {
  background: rgba(240, 138, 36, 0.12);
  transform: translateX(2px);
}

.catalog-item.is-active .catalog-item-toggle::after,
.catalog-item-toggle:hover::after {
  transform: translateX(2px);
}

.catalog-flyout {
  position: absolute;
  top: 0;
  left: calc(100% + 10px);
  width: 248px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: grid;
  gap: 4px;
  z-index: 180;
  opacity: 0;
  visibility: hidden;
  transform: translateX(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.24s ease, visibility 0.2s ease;
}

.catalog-item.is-active .catalog-flyout {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.catalog-flyout a {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(46, 57, 68, 0.04);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  transition: 0.2s ease;
}

.catalog-flyout a:hover {
  background: rgba(240, 138, 36, 0.12);
  transform: translateY(-1px);
}

.catalog-flyout--double {
  width: 332px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 8px;
}

.header-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  text-align: right;
  min-width: 220px;
  transition: gap 0.22s ease, transform 0.22s ease;
}

.header-contact strong {
  font-size: 18px;
}

.header-contact span {
  color: var(--muted);
  font-size: 12px;
}

.header-email {
  display: none;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.site-header.is-scrolled .header-email {
  display: inline-flex;
  opacity: 1;
  transform: translateY(0);
}

.site-header.is-scrolled .header-contact {
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  min-width: auto;
}

.site-header.is-scrolled .header-contact strong {
  font-size: 17px;
  order: 2;
}

.site-header.is-scrolled .header-contact span {
  display: none;
}

.site-header.is-scrolled .header-contact-action {
  min-height: 40px;
  margin-top: 0;
  margin-right: 8px;
  padding: 0 16px;
  order: 1;
}

.site-header.is-scrolled .header-email {
  display: none;
}

.header-contact-action {
  min-height: 44px;
  padding: 0 20px;
  margin-top: 4px;
  align-self: flex-end;
  justify-content: flex-start;
  text-align: left;
  transition:
    min-height 0.22s ease,
    margin 0.22s ease,
    padding 0.22s ease,
    transform 0.22s ease,
    opacity 0.22s ease;
}

.button,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.button {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 16px 30px rgba(159, 71, 20, 0.26);
}

.button-outline {
  color: var(--accent);
  background: rgba(36, 74, 87, 0.08);
}

.mobile-toggle {
  display: none;
}

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

.hero-grid,
.price-layout,
.delivery-layout,
.content-layout,
.footer-grid {
  display: grid;
  gap: 22px;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.hero-grid-wide {
  display: grid;
  grid-template-columns: 280px 1fr 360px;
  gap: 22px;
  align-items: stretch;
}

.top-banner-strip {
  background: linear-gradient(90deg, #b81f1f, #d94832);
  color: #fff;
}

.top-banner-strip .container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.header-extended {
  display: grid;
  grid-template-columns: 170px auto 1fr auto;
  gap: 20px;
  align-items: center;
}

.hero-showcase {
  position: relative;
  min-height: 620px;
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17, 22, 27, 0.84) 0%, rgba(17, 22, 27, 0.72) 42%, rgba(17, 22, 27, 0.34) 100%),
    url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.hero-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%),
    linear-gradient(0deg, rgba(240, 138, 36, 0.08), transparent 18%);
  pointer-events: none;
}

.hero-showcase-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 620px;
}

.hero-showcase-inner--single {
  grid-template-columns: 1fr;
  min-height: 0;
}

.hero-showcase-inner--single .hero-copy {
  max-width: 980px;
}

.hero-copy {
  padding: 54px 48px 42px;
  color: #f3f6f8;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-copy h1 {
  margin: 18px 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(40px, 5vw, 78px);
  line-height: 0.98;
  text-transform: uppercase;
}

.hero-copy p {
  max-width: 760px;
  color: rgba(243, 246, 248, 0.82);
  line-height: 1.75;
  font-size: 18px;
}

.hero-copy .pill {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-actions .button-outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 30px rgba(10, 14, 18, 0.18);
}

.hero-actions .button-outline[data-lead-open],
.hero-actions .button-outline[href="/delivery/"],
.hero-actions .button-outline[href="#contacts"] {
  display: none;
}

.hero-actions .button-outline:hover {
  background: rgba(255, 255, 255, 0.24);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.hero-metric {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: 26px;
  color: #fff;
}

.hero-form-panel {
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 36px;
}

.hero-form-card {
  width: min(100%, 360px);
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 40px rgba(17, 23, 29, 0.2);
}

.hero-form-card h2 {
  margin: 0 0 12px;
  font-family: "Oswald", sans-serif;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.hero-bottom-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.hero-bottom-link {
  position: relative;
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 239, 0.96));
  border: 1px solid rgba(107, 89, 79, 0.14);
  box-shadow: 0 16px 34px rgba(22, 28, 45, 0.08);
  min-height: 132px;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.hero-bottom-link::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
}

.hero-bottom-link strong {
  display: block;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero-bottom-link span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.45;
}

.hero-bottom-link:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 124, 46, 0.28);
  box-shadow: 0 22px 42px rgba(22, 28, 45, 0.14);
}

.hero-panel,
.glass-card,
.table-card,
.content-card,
.seo-card,
.map-card,
.cta-card {
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  padding: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(46, 57, 68, 0.08);
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-title,
.card-title {
  margin: 16px 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(30px, 6vw, 72px);
  line-height: 1;
  text-transform: uppercase;
}

.section-title,
.card-title {
  font-size: clamp(28px, 4vw, 44px);
}

.hero-lead,
.page-lead,
.section-copy,
.content-card p,
.seo-card p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-stats,
.mini-grid,
.trust-grid,
.cards-grid,
.service-grid,
.catalog-grid,
.seo-links,
.info-grid {
  display: grid;
  gap: 18px;
}

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

.trust-grid,
.cards-grid,
.catalog-grid,
.seo-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.stat,
.mini-card,
.feature-card,
.service-card,
.catalog-card,
.side-card,
.faq-item,
.seo-link,
.footer-map {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.stat strong,
.mini-card strong,
.feature-card strong,
.service-card strong,
.catalog-card strong,
.side-card strong {
  display: block;
  margin-bottom: 10px;
}

.stat strong {
  font-size: 28px;
}

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

.pill-row,
.hero-actions,
.calc-footer,
.cta-row,
.breadcrumb,
.footer-bottom {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.section--breadcrumbs {
  padding-bottom: 0;
}

.breadcrumb--page {
  font-size: 14px;
  color: var(--muted);
}

.breadcrumb--page a {
  color: var(--text);
  transition: color 0.18s ease;
}

.breadcrumb--page a:hover {
  color: var(--brand-dark);
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(46, 57, 68, 0.08);
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

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

.hero-catalog {
  display: grid;
  gap: 12px;
}

.hero-catalog a,
.hero-quicklinks a {
  display: block;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  font-weight: 800;
  transition: 0.2s ease;
}

.hero-catalog a:hover,
.hero-quicklinks a:hover {
  background: rgba(240, 138, 36, 0.1);
}

.hero-frame {
  display: grid;
  gap: 20px;
}

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

.hero-band .mini-card {
  background: rgba(37, 45, 54, 0.98);
  color: #eff3f5;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-band .mini-card .muted {
  color: rgba(239, 243, 245, 0.72);
}

.section-dark {
  background: linear-gradient(180deg, rgba(31, 38, 45, 0.98), rgba(24, 30, 36, 0.98));
  color: #eff3f5;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-dark .section-copy,
.section-dark .muted,
.section-dark p {
  color: rgba(239, 243, 245, 0.74);
}

.section-dark .table-card,
.section-dark .content-card,
.section-dark .mini-card,
.section-dark .feature-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

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

.popular-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.popular-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 169, 46, 0.34);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.26);
}

.popular-card__media {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.popular-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-card__body {
  display: grid;
  gap: 10px;
  padding: 20px 20px 22px;
}

.popular-card__body strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.popular-card__body span {
  color: rgba(239, 243, 245, 0.76);
  font-size: 14px;
  line-height: 1.55;
}

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

.fleet-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(107, 89, 79, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 239, 0.96));
  box-shadow: 0 18px 38px rgba(22, 28, 45, 0.08);
}

.fleet-card__media {
  position: relative;
  min-height: 280px;
  background:
    radial-gradient(circle at top right, rgba(240, 138, 36, 0.22), transparent 26%),
    linear-gradient(180deg, #2a343d 0%, #1c2329 100%);
}

.fleet-card__glow {
  position: absolute;
  inset: auto auto 18px 18px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(240, 138, 36, 0.14);
  filter: blur(12px);
}

.fleet-card__media::before,
.fleet-card__media::after {
  content: "";
  position: absolute;
}

.fleet-card__media::before {
  left: 20px;
  right: 20px;
  bottom: 28px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.fleet-card__media::after {
  left: 50%;
  top: 52%;
  width: min(92%, 420px);
  height: 220px;
  transform: translate(-50%, -46%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.96;
}

.fleet-card__media--mixer::after,
.fleet-card__media--pump::after,
.fleet-card__media--dump::after,
.fleet-card__media--manipulator::after,
.fleet-card__media--trailer::after,
.fleet-card__media--crane::after {
  background-position: center bottom;
}

.fleet-card__media.has-managed-image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.fleet-card__media.has-managed-image::after {
  display: none;
}

.fleet-card__media--mixer::after {
  background-image: url("/assets/images/avtobetonosmesitel.png");
}

.fleet-card__media--pump::after {
  background-image: url("/assets/images/avtobetononasos.png");
}

.fleet-card__media--dump::after {
  background-image: url("/assets/images/samosval.png");
}

.fleet-card__media--manipulator::after {
  background-image: url("/assets/images/manipulyator.png");
}

.fleet-card__media--trailer::after {
  background-image: url("/assets/images/shalanda.png");
}

.fleet-card__media--crane::after {
  background-image: url("/assets/images/avtokran.png");
}

.fleet-card__body {
  display: grid;
  gap: 8px;
  padding: 20px 22px 22px;
}

.fleet-card__body strong {
  font-size: 21px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.fleet-card__body span {
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 14px;
}

.fleet-card__body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.fleet-actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

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

.number-card {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.number-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 34px;
  color: #fff;
}

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

.price-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
}

.delivery-layout {
  grid-template-columns: 1.35fr 0.65fr;
}

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

.price-panel {
  display: grid;
  gap: 18px;
}

.price-panel .section-title {
  margin: 0;
}

.price-accordion {
  display: grid;
  gap: 8px;
}

.price-category {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.price-category summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 16px 52px 16px 18px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}

.price-category summary::-webkit-details-marker {
  display: none;
}

.price-category summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(36, 74, 87, 0.08);
  color: var(--accent);
  font-size: 18px;
  font-weight: 500;
}

.price-category[open] summary::after {
  content: "−";
}

.price-category__body {
  display: grid;
  gap: 14px;
  padding: 0 20px 20px;
}

.price-category__body h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.price-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(107, 89, 79, 0.12);
}

.price-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 22px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(46, 57, 68, 0.04);
  border: 1px solid rgba(107, 89, 79, 0.12);
}

.price-filter {
  display: grid;
  gap: 6px;
  min-width: 150px;
  flex: 1 1 150px;
}

.price-filter span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.price-filter select {
  width: 100%;
  min-height: 46px;
  padding: 0 42px 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(107, 89, 79, 0.16);
  background-color: rgba(255, 255, 255, 0.92);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.price-filters__reset {
  align-self: end;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(107, 89, 79, 0.16);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.price-filters__reset:hover {
  border-color: rgba(240, 138, 36, 0.4);
  background: rgba(255, 255, 255, 0.98);
  color: var(--brand-dark);
}

.price-name-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(107, 89, 79, 0.22);
  transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.price-name-link::after {
  content: "↗";
  font-size: 12px;
  color: rgba(240, 138, 36, 0.72);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.price-name-link:hover,
.price-name-link:focus-visible {
  color: var(--brand-dark);
  border-bottom-width: 2px;
  border-color: rgba(240, 138, 36, 0.95);
  transform: translateX(2px);
}

.price-name-link:hover::after,
.price-name-link:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.sort-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  background: none;
  border: none;
  font: inherit;
  font-weight: 800;
  color: inherit;
  cursor: pointer;
}

.sort-button::after {
  content: "↕";
  font-size: 12px;
  color: var(--muted);
}

.sort-button[data-sort-direction="asc"]::after {
  content: "↑";
  color: var(--accent);
}

.sort-button[data-sort-direction="desc"]::after {
  content: "↓";
  color: var(--accent);
}

.volume-control {
  display: inline-grid;
  grid-template-columns: 36px 72px 36px;
  align-items: center;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(107, 89, 79, 0.16);
  background: #fff;
}

.volume-step {
  width: 36px;
  min-height: 44px;
  padding: 0;
  border: none;
  background: rgba(36, 74, 87, 0.06);
  color: var(--accent);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.volume-step:hover {
  background: rgba(240, 138, 36, 0.14);
  color: var(--brand-dark);
}

.volume-input {
  width: 72px;
  min-height: 44px;
  padding: 0 8px;
  border: none;
  background: #fff;
  font: inherit;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  appearance: textfield;
  -moz-appearance: textfield;
}

.volume-input::-webkit-outer-spin-button,
.volume-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.volume-jump {
  display: none;
  width: 36px;
  min-height: 44px;
  padding: 0;
  border: none;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  cursor: pointer;
}

.price-calculator {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f8f3ee);
  border: 1px solid rgba(107, 89, 79, 0.16);
  box-shadow: 0 22px 48px rgba(22, 28, 45, 0.12);
}

.price-calculator__head {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
}

.price-calculator__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(36, 74, 87, 0.08);
  color: var(--accent);
}

.price-calculator__head strong {
  display: block;
  margin-bottom: 6px;
  font-size: 30px;
  line-height: 1;
}

.price-calculator__head span {
  color: var(--muted);
  line-height: 1.5;
}

.price-calculator__stats {
  display: grid;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(107, 89, 79, 0.14);
  border-bottom: 1px solid rgba(107, 89, 79, 0.14);
}

.price-calculator__stat {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
}

.price-calculator__stat span {
  font-weight: 700;
  color: var(--text);
}

.price-calculator__stat strong {
  font-size: 22px;
  color: var(--text);
}

.price-calculator__list {
  display: grid;
  gap: 10px;
}

.price-calculator__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(36, 74, 87, 0.05);
}

.price-calculator__item strong {
  font-size: 14px;
  line-height: 1.35;
}

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

.price-calculator__item em {
  font-style: normal;
  font-weight: 800;
  color: var(--text);
}

.price-calculator__empty {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(36, 74, 87, 0.04);
  color: var(--muted);
  line-height: 1.55;
}

.price-calculator__note {
  color: #a49a90;
  line-height: 1.55;
}

.price-calculator__actions {
  display: grid;
  gap: 12px;
}

.price-calculator__primary,
.price-calculator__secondary,
.price-calculator__ghost {
  width: 100%;
}

.price-calculator__toggle {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(107, 89, 79, 0.16);
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.price-calculator__toggle:hover {
  border-color: rgba(240, 138, 36, 0.28);
  background: rgba(255, 255, 255, 0.96);
}

.price-calculator__toggle-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.price-calculator__toggle-box {
  position: relative;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  border-radius: 8px;
  border: 1px solid rgba(107, 89, 79, 0.22);
  background: #fff;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.price-calculator__toggle-box::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 6px;
  height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) scale(0.9);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.price-calculator__toggle-input:checked + .price-calculator__toggle-box {
  border-color: var(--brand);
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 10px 20px rgba(240, 138, 36, 0.18);
}

.price-calculator__toggle-input:checked + .price-calculator__toggle-box::after {
  opacity: 1;
}

.price-calculator__toggle-input:focus-visible + .price-calculator__toggle-box {
  outline: 2px solid rgba(240, 138, 36, 0.35);
  outline-offset: 2px;
}

.price-calculator__toggle-text {
  display: grid;
  gap: 4px;
}

.price-calculator__toggle-text strong {
  font-size: 15px;
  line-height: 1.2;
  color: var(--text);
}

.price-calculator__toggle-text span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.delivery-pricing {
  display: grid;
  gap: 18px;
}

.delivery-pricing__top {
  display: grid;
  grid-template-columns: 0.52fr 1fr;
  gap: 18px;
  align-items: start;
}

.delivery-pricing__stack {
  display: grid;
  gap: 18px;
}

.delivery-card,
.delivery-extra {
  padding: 0;
  overflow: hidden;
}

.delivery-card h3 {
  margin: 0;
  padding: 22px 24px 0;
  font-size: 24px;
  line-height: 1.15;
}

.delivery-card__intro {
  margin: 0;
  padding: 12px 24px 2px;
  line-height: 1.55;
}

.delivery-help {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 208px;
}

.delivery-help strong {
  display: block;
  font-size: 28px;
  line-height: 1.05;
}

.delivery-help p {
  margin: 0;
  line-height: 1.65;
}

.delivery-help .button-outline {
  justify-self: start;
}

.delivery-table th,
.delivery-table td {
  padding: 18px 24px;
}

.delivery-table thead th {
  color: var(--text);
  font-size: 14px;
  text-transform: none;
}

.delivery-table tbody tr:last-child td {
  border-bottom: none;
}

.delivery-table--pump th:first-child,
.delivery-table--pump td:first-child {
  width: 18%;
}

.delivery-table--pump th:nth-child(2),
.delivery-table--pump td:nth-child(2) {
  width: 16%;
}

.delivery-table--pump th:nth-child(3),
.delivery-table--pump td:nth-child(3) {
  width: 24%;
}

.content-layout {
  grid-template-columns: 0.95fr 0.65fr;
  align-items: start;
}

.content-side {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 18px;
}

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

.grade-tile {
  display: grid;
  gap: 6px;
  padding: 16px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(46, 57, 68, 0.06), rgba(46, 57, 68, 0.02));
  border: 1px solid rgba(107, 89, 79, 0.12);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.grade-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 138, 36, 0.24);
  box-shadow: 0 16px 30px rgba(22, 28, 45, 0.08);
}

.grade-tile span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.grade-tile strong {
  display: block;
  margin: 0;
  font-size: 22px;
  line-height: 1;
}

.usage-grid {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.usage-tile {
  display: block;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(240, 138, 36, 0.08), rgba(46, 57, 68, 0.03));
  border: 1px solid rgba(107, 89, 79, 0.12);
  font-weight: 700;
  line-height: 1.35;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.usage-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 138, 36, 0.26);
  box-shadow: 0 16px 30px rgba(22, 28, 45, 0.08);
}

.content-card--docs {
  display: grid;
  gap: 16px;
}

.doc-grid {
  display: grid;
  gap: 12px;
}

.doc-tile {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(46, 57, 68, 0.06), rgba(46, 57, 68, 0.02));
  border: 1px solid rgba(107, 89, 79, 0.12);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.doc-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 138, 36, 0.24);
  box-shadow: 0 14px 28px rgba(22, 28, 45, 0.08);
}

.doc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(240, 138, 36, 0.12);
  color: var(--brand-dark);
}

.doc-tile span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.doc-tile strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.2;
}

.docs-carousel-block {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 16px;
  align-items: center;
}

.docs-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

.docs-carousel::-webkit-scrollbar {
  height: 8px;
}

.docs-carousel::-webkit-scrollbar-thumb {
  background: rgba(46, 57, 68, 0.18);
  border-radius: 999px;
}

.docs-carousel__nav {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(107, 89, 79, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent);
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(22, 28, 45, 0.08);
}

.doc-preview {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(107, 89, 79, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 242, 236, 0.94));
  text-align: left;
  cursor: pointer;
  scroll-snap-align: start;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.doc-preview:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 138, 36, 0.24);
  box-shadow: 0 18px 34px rgba(22, 28, 45, 0.08);
}

.doc-preview__sheet,
.doc-modal__sheet {
  display: block;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 238, 232, 0.96));
  border: 1px solid rgba(107, 89, 79, 0.12);
  position: relative;
  overflow: hidden;
}

.doc-preview__sheet {
  min-height: 260px;
}

.doc-preview__sheet::before,
.doc-modal__sheet::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto 18px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(240, 138, 36, 0.18), rgba(46, 57, 68, 0.08));
}

.doc-preview__sheet::after,
.doc-modal__sheet::after {
  content: "";
  position: absolute;
  inset: 68px 18px 18px 18px;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(46, 57, 68, 0.18) 0 2px,
      transparent 2px 26px
    );
  opacity: 0.6;
}

.doc-preview__sheet--concrete,
.doc-modal__sheet--concrete {
  box-shadow: inset 0 0 0 2px rgba(240, 138, 36, 0.12);
}

.doc-preview__sheet--mortar,
.doc-modal__sheet--mortar {
  box-shadow: inset 0 0 0 2px rgba(46, 57, 68, 0.1);
}

.doc-preview__sheet--poly,
.doc-modal__sheet--poly {
  box-shadow: inset 0 0 0 2px rgba(92, 100, 109, 0.14);
}

.doc-preview__sheet--license,
.doc-modal__sheet--license {
  box-shadow: inset 0 0 0 2px rgba(196, 101, 17, 0.16);
}

.doc-preview__sheet--quality,
.doc-modal__sheet--quality {
  box-shadow: inset 0 0 0 2px rgba(46, 57, 68, 0.14);
}

.doc-preview__sheet.has-managed-doc-image,
.doc-modal__sheet.has-managed-doc-image {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #fff;
}

.doc-preview__sheet.has-managed-doc-image::before,
.doc-preview__sheet.has-managed-doc-image::after,
.doc-modal__sheet.has-managed-doc-image::before,
.doc-modal__sheet.has-managed-doc-image::after {
  display: none;
}

.doc-preview strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

.doc-preview span:last-child {
  color: var(--muted);
  font-size: 14px;
}

.doc-modal[hidden] {
  display: none;
}

.doc-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px 16px;
}

.doc-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 20, 24, 0.68);
  backdrop-filter: blur(6px);
}

.doc-modal__dialog {
  position: relative;
  width: min(92vw, 760px);
  max-height: calc(100vh - 48px);
  padding: 28px 20px 20px;
  overflow-y: auto;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.doc-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: rgba(46, 57, 68, 0.08);
  color: var(--accent);
  font-size: 26px;
  cursor: pointer;
}

.doc-modal__frame {
  padding-top: 6px;
}

.doc-modal__sheet {
  min-height: 640px;
}

.doc-modal__caption {
  display: grid;
  gap: 6px;
  margin-top: 16px;
}

.doc-modal__caption strong {
  font-size: 24px;
  line-height: 1.1;
}

.doc-modal__caption span {
  color: var(--muted);
  line-height: 1.55;
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 26, 0.58);
  backdrop-filter: blur(5px);
}

.lead-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 560px);
  max-height: 90vh;
  margin: 5vh auto 0;
  padding: 30px;
  overflow-y: auto;
  border: 1px solid rgba(107, 89, 79, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(240, 138, 36, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 239, 0.96));
  box-shadow: 0 24px 56px rgba(22, 28, 45, 0.22);
}

.lead-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(107, 89, 79, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  font: inherit;
  font-size: 22px;
  cursor: pointer;
}

.lead-modal__eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-modal__title {
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 1.05;
}

.lead-modal__copy {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.6;
}

.lead-modal__summary {
  margin: 0 0 18px;
  padding: 16px 18px;
  border: 1px solid rgba(107, 89, 79, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.lead-modal__summary strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}

.lead-modal__summary-body {
  display: grid;
  gap: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.lead-modal__summary-row {
  padding-left: 14px;
  position: relative;
}

.lead-modal__summary-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.lead-form {
  display: grid;
  gap: 14px;
}

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

.lead-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lead-form__field--full {
  grid-column: 1 / -1;
}

.lead-form__field label {
  font-weight: 700;
}

.lead-form__field input,
.lead-form__field textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(107, 89, 79, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  font: inherit;
}

.lead-form__field textarea {
  min-height: 120px;
  padding: 16px;
  resize: vertical;
}

.lead-form__field input:hover,
.lead-form__field input:focus,
.lead-form__field textarea:hover,
.lead-form__field textarea:focus {
  border-color: rgba(240, 138, 36, 0.42);
  box-shadow: 0 0 0 4px rgba(240, 138, 36, 0.12);
  outline: none;
}

.lead-form__field.is-invalid input,
.lead-form__field.is-invalid textarea {
  border-color: rgba(198, 67, 45, 0.58);
  box-shadow: 0 0 0 4px rgba(198, 67, 45, 0.12);
}

.lead-form__error {
  min-height: 18px;
  color: #c6432d;
  font-size: 0.92rem;
}

.lead-form__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

.lead-form__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(107, 89, 79, 0.12);
}

.lead-form__privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.lead-form__privacy input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.lead-form__privacy a {
  color: var(--accent);
}

.lead-form__privacy--inline {
  margin-top: 4px;
  font-size: 0.95rem;
}

.lead-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.lead-form__status {
  min-height: 24px;
  color: var(--muted);
}

.lead-form__status.is-success {
  color: #2d7b46;
}

.lead-form__status.is-error {
  color: #c6432d;
}

.hero-inline-form .lead-form__status {
  margin-top: 8px;
}

.reviews-block {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 16px;
  align-items: center;
}

.reviews-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

.reviews-carousel::-webkit-scrollbar {
  height: 8px;
}

.reviews-carousel::-webkit-scrollbar-thumb {
  background: rgba(46, 57, 68, 0.18);
  border-radius: 999px;
}

.reviews-carousel__nav {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(107, 89, 79, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent);
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(22, 28, 45, 0.08);
}

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

.portfolio-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(107, 89, 79, 0.12);
  background:
    radial-gradient(circle at top left, rgba(240, 138, 36, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 242, 236, 0.96));
  box-shadow: 0 22px 44px rgba(22, 28, 45, 0.1);
  min-height: 364px;
}

.portfolio-card__media {
  position: relative;
  min-height: 228px;
  overflow: hidden;
  background: linear-gradient(180deg, #232b32, #151b20);
}

.portfolio-card--foundation {
  display: none;
}

.portfolio-card__media--video::before {
  content: "Видео";
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 18, 22, 0.58);
  color: #fff8f0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}

.portfolio-card__media--video::after {
  content: "▶";
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 248, 240, 0.14);
  color: #fff8f0;
  font-size: 28px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: auto 16px 86px 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107, 89, 79, 0.22), transparent);
}

.portfolio-card img,
.portfolio-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.portfolio-card video {
  background: #1b2228;
}

.portfolio-card__video {
  background: linear-gradient(180deg, #232b32, #151b20);
}

.portfolio-card:hover img,
.portfolio-card:hover video {
  transform: scale(1.04);
}

.portfolio-card__content {
  display: grid;
  gap: 7px;
  padding: 14px 16px 16px;
}

.portfolio-card__eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.portfolio-card__content strong {
  font-size: 17px;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.portfolio-card__content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.46;
  font-size: 13px;
}

.review-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(107, 89, 79, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 242, 236, 0.95));
  scroll-snap-align: start;
  box-shadow: 0 18px 34px rgba(22, 28, 45, 0.08);
}

.review-card__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.review-card__meta strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

.review-card__meta span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.review-card__source {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(252, 63, 29, 0.08);
  flex: 0 0 38px;
}

.review-card__rating span {
  display: inline-flex;
  letter-spacing: 0.08em;
  color: #f2a01a;
  font-size: 18px;
}

.review-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

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

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

th {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.price-tag {
  font-weight: 800;
  color: var(--brand-dark);
}

.badge-list,
.check-list,
.plain-list,
.faq-list,
.footer-links,
.footer-contacts {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.badge-list li,
.check-list li,
.plain-list li {
  display: flex;
  gap: 10px;
  align-items: start;
}

.badge-list li::before,
.check-list li::before,
.plain-list li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--brand);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.9);
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 48px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 2px),
    calc(100% - 16px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.field textarea {
  min-height: 140px;
  padding-top: 16px;
  resize: vertical;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.map-card iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 18px;
}

.cta-card {
  background: linear-gradient(135deg, rgba(39, 47, 56, 0.98), rgba(28, 35, 42, 0.96));
  color: #f6f2eb;
}

.site-footer {
  margin-top: 46px;
  padding: 42px 0 30px;
  background:
    radial-gradient(circle at top left, rgba(240, 138, 36, 0.16), transparent 28%),
    linear-gradient(180deg, #1b2127 0%, #161b20 100%);
  color: #f8f4ed;
}

.footer-grid--main {
  grid-template-columns: 1.3fr 0.95fr 0.9fr 0.95fr;
  align-items: start;
}

.footer-brand-card {
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.footer-brand-head {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.footer-brand-head .logo-mark {
  color: #fff4ea;
}

.footer-brand-tag {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 244, 237, 0.62);
}

.footer-brand-text {
  margin: 0 0 18px;
  color: rgba(248, 244, 237, 0.82);
  line-height: 1.65;
}

.footer-title {
  margin: 0 0 14px;
  font-size: 14px;
  text-transform: uppercase;
  color: rgba(248, 244, 237, 0.6);
}

.footer-phone {
  font-size: 28px;
  font-weight: 800;
  color: #fff4ea;
}

.footer-contacts {
  display: grid;
  gap: 12px;
  color: rgba(248, 244, 237, 0.74);
}

.footer-contacts a {
  color: #fff4ea;
}

.footer-contact-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  width: 100%;
}

.footer-contact-row--primary {
  margin-bottom: 4px;
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(240, 138, 36, 0.14);
  color: #f08a24;
  box-shadow: inset 0 0 0 1px rgba(240, 138, 36, 0.18);
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
}

.footer-contact-copy {
  display: grid;
  gap: 3px;
}

.footer-contact-copy small {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(248, 244, 237, 0.5);
}

.footer-telegram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.footer-telegram svg {
  width: 18px;
  height: 18px;
  color: #36a3ff;
}

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

.button-secondary {
  background: transparent;
  color: #fff4ea;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

.footer-links a,
.footer-contacts a {
  width: fit-content;
}

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

.footer-bottom {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  justify-content: space-between;
  color: rgba(248, 244, 237, 0.68);
  font-size: 14px;
  gap: 14px;
}

@media (max-width: 1080px) {
  .header-inner,
  .header-extended,
  .hero-grid,
  .hero-grid-wide,
  .price-shell,
  .price-layout,
  .delivery-layout,
  .content-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .catalog-menu {
    min-width: 0;
    width: 360px;
  }

  .footer-brand-card {
    padding: 22px;
  }

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

  .nav {
    grid-column: 1 / -1;
    order: 4;
  }

  .mini-grid,
  .hero-stats,
  .trust-grid,
  .cards-grid,
  .portfolio-grid,
  .fleet-grid,
  .catalog-grid,
  .seo-links,
  .calc-shell,
  .hero-band,
  .popular-grid,
  .number-grid,
  .contact-strip,
  .hero-bottom-links,
  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-form-panel {
    justify-content: start;
    padding-top: 0;
  }

  .content-side {
    position: static;
  }

  .docs-carousel-block {
    grid-template-columns: 1fr;
  }

  .docs-carousel__nav {
    display: none;
  }

  .reviews-block {
    grid-template-columns: 1fr;
  }

  .reviews-carousel__nav {
    display: none;
  }

  .footer-actions {
    flex-direction: column;
  }

  .footer-actions .button {
    width: 100%;
    justify-content: center;
  }

  .footer-links--columns {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .delivery-pricing__top {
    grid-template-columns: 1fr;
  }

  .price-calculator {
    position: static;
  }
}

@media (max-width: 760px) {
  .topbar-inner,
  .mini-grid,
  .hero-stats,
  .trust-grid,
  .cards-grid,
  .service-grid,
  .fleet-grid,
  .catalog-grid,
  .seo-links,
  .info-grid,
  .calc-shell,
  .hero-band,
  .popular-grid,
  .number-grid,
  .contact-strip,
  .hero-bottom-links,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .topbar-inner,
  .header-inner,
  .header-extended {
    grid-template-columns: 1fr;
  }

  .topbar-badge {
    display: none;
  }

  .header-extended {
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas:
      "logo contact toggle"
      "nav nav nav";
    align-items: center;
    gap: 12px;
  }

  .logo {
    grid-area: logo;
  }

  .logo-note {
    display: none;
  }

  .header-contact {
    grid-area: contact;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-self: end;
    gap: 6px;
    min-width: 0;
    text-align: right;
  }

  .header-contact span,
  .header-email {
    display: none !important;
  }

  .header-contact strong {
    font-size: 15px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .header-contact-action {
    display: inline-flex;
    min-height: 38px;
    padding: 0 14px;
    margin-top: 0;
    align-self: flex-end;
    font-size: 12px;
    white-space: nowrap;
  }

  .site-header.is-scrolled .header-extended {
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas:
      "logo contact toggle"
      "nav nav nav";
    gap: 12px;
  }

  .site-header.is-scrolled .header-contact {
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
  }

  .site-header.is-scrolled .header-contact strong {
    order: 0;
    font-size: 15px;
  }

  .site-header.is-scrolled .header-contact-action {
    order: 0;
    margin-right: 0;
    padding: 0 14px;
    min-height: 38px;
  }

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

  .hero-copy {
    padding: 28px 22px 18px;
  }

  .hero-form-panel {
    padding: 0 22px 22px;
  }

  .mobile-toggle {
    grid-area: toggle;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    min-height: 46px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.8);
    font-size: 0;
    color: var(--ink);
  }

  .mobile-toggle::before {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    box-shadow:
      0 -6px 0 currentColor,
      0 6px 0 currentColor;
  }

  .nav {
    grid-area: nav;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 8px;
  }

  .nav.is-open {
    display: flex;
  }

  .nav-link,
  .nav-summary {
    width: 100%;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    box-shadow: none;
    margin-top: 8px;
  }

  .catalog-trigger .nav-summary {
    justify-content: center;
  }

  .catalog-menu {
    width: 100%;
    padding: 10px;
  }

  .catalog-item-toggle {
    min-height: 48px;
  }

  .catalog-flyout {
    position: static;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .catalog-flyout--double {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .popular-section {
    display: none;
  }

  .hero-bottom-links {
    display: none;
  }

  .delivery-pricing {
    gap: 14px;
  }

  .delivery-pricing__top,
  .delivery-pricing__stack {
    gap: 14px;
  }

  .hero-actions,
  .price-downloads,
  .gost-card__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .button,
  .hero-actions .button-outline,
  .price-downloads .button,
  .price-downloads .button-outline,
  .gost-card__actions .button,
  .gost-card__actions .button-outline {
    width: 100%;
  }

  .about-hero__copy,
  .about-hero__signal,
  .sale-card,
  .sale-ladder__step,
  .gost-card,
  .contact-card {
    padding: 22px 20px;
    border-radius: 22px;
  }

  .gost-card__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .gost-card__badge {
    min-height: 30px;
    padding: 0 10px;
  }

  .service-showcase__copy {
    gap: 16px;
  }

  .service-showcase__visual {
    min-height: 280px;
    border-radius: 24px;
  }

  .service-showcase__chips span {
    min-height: 36px;
    padding: 0 14px;
    font-size: 13px;
  }

  .delivery-help {
    display: none;
  }

  .delivery-card h3 {
    padding: 18px 18px 0;
    font-size: 20px;
  }

  .delivery-card__intro {
    padding: 10px 18px 2px;
    font-size: 14px;
    line-height: 1.5;
  }

  .delivery-table th,
  .delivery-table td {
    padding: 14px 16px;
    font-size: 14px;
  }

  .delivery-table thead th {
    font-size: 13px;
  }

  .delivery-table td.price-tag {
    font-size: 16px;
    white-space: nowrap;
  }

  .delivery-table--pump th:nth-child(4),
  .delivery-table--pump td:nth-child(4) {
    display: none;
  }

  .delivery-table--pump th:first-child,
  .delivery-table--pump td:first-child {
    width: 34%;
  }

  .delivery-table--pump th:nth-child(2),
  .delivery-table--pump td:nth-child(2) {
    width: 23%;
  }

  .delivery-table--pump th:nth-child(3),
  .delivery-table--pump td:nth-child(3) {
    width: 43%;
  }

  .price-layout {
    gap: 16px;
  }

  .price-panel {
    margin-inline: -10px;
    border-radius: 20px;
  }

  .price-category__body {
    padding: 0 14px 16px;
  }

  .price-table-wrap {
    overflow: visible;
    border: none;
    border-radius: 0;
  }

  .price-sort-table thead {
    display: none;
  }

  .price-sort-table,
  .price-sort-table tbody,
  .price-sort-table tr,
  .price-sort-table td {
    display: block;
    width: 100%;
  }

  .price-sort-table tbody {
    display: grid;
    gap: 12px;
  }

  .price-sort-table tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 12px;
    padding: 14px;
    border: 1px solid rgba(107, 89, 79, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
  }

  .price-sort-table tbody td {
    display: grid;
    gap: 4px;
    padding: 0;
    border: none;
    min-width: 0;
    text-align: left;
  }

  .price-sort-table tbody td::before {
    content: attr(data-mobile-label);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
  }

  .price-sort-table tbody td[data-column="3"] {
    order: 1;
    grid-column: 1 / -1;
  }

  .price-sort-table tbody td[data-column="4"] {
    order: 2;
  }

  .price-sort-table tbody td[data-column="5"] {
    order: 3;
  }

  .price-sort-table tbody td[data-column="1"] {
    order: 4;
  }

  .price-sort-table tbody td[data-column="2"] {
    order: 5;
  }

  .price-sort-table tbody td[data-column="3"] .price-name-link {
    width: fit-content;
    max-width: 100%;
  }

  .price-sort-table tbody td[data-column="4"] .price-tag {
    font-size: 18px;
  }

  .price-file-row {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }

  .price-file-row__actions {
    width: 100%;
  }

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

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

  .volume-control {
    grid-template-columns: 32px 52px 32px auto;
  }

  .volume-step {
    width: 32px;
    min-height: 40px;
    font-size: 18px;
  }

  .volume-input {
    width: 52px;
    min-height: 40px;
    padding: 0 4px;
    font-size: 14px;
  }

  .volume-jump {
    display: none;
    width: 38px;
    min-height: 40px;
  }

  .volume-control.has-volume .volume-jump {
    display: grid;
    place-items: center;
  }

  .price-calculator {
    scroll-margin-top: 92px;
  }
}

.price-files {
  display: grid;
  gap: 24px;
}

.price-files__list {
  display: grid;
  gap: 12px;
}

.price-file-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.price-file-row strong {
  font-size: 1rem;
  line-height: 1.35;
}

.price-file-row__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.price-file-row__actions .button-outline {
  min-width: 92px;
  justify-content: center;
}

.price-downloads .button-outline {
  color: var(--accent);
  background: rgba(36, 74, 87, 0.08);
  border-color: rgba(36, 74, 87, 0.16);
  box-shadow: none;
}

.service-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.service-showcase--text-only {
  grid-template-columns: minmax(0, 1fr);
}

.service-showcase__copy {
  display: grid;
  gap: 22px;
}

.service-showcase__copy .content-card p {
  margin: 0;
}

.service-showcase__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-showcase__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(36, 74, 87, 0.08);
  border: 1px solid rgba(36, 74, 87, 0.12);
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 700;
}

.service-showcase__visual {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: 28px;
  border: 1px solid rgba(107, 89, 79, 0.14);
  background:
    radial-gradient(circle at top right, rgba(240, 138, 36, 0.22), transparent 28%),
    linear-gradient(180deg, #2a343d 0%, #1c2329 100%);
  box-shadow: 0 22px 48px rgba(22, 28, 45, 0.12);
}

.service-showcase__visual::before,
.service-showcase__visual::after {
  content: "";
  position: absolute;
}

.service-showcase__visual::before {
  inset: auto 28px 26px 28px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.service-showcase__visual::after {
  left: 50%;
  top: 50%;
  width: 280px;
  height: 200px;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.service-showcase__visual-note {
  position: absolute;
  left: 26px;
  top: 26px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-showcase__visual--lineynyy::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='210' viewBox='0 0 300 210'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle cx='82' cy='152' r='20' fill='%23F08A24'/%3E%3Ccircle cx='220' cy='152' r='20' fill='%23F08A24'/%3E%3Cpath d='M56 129h143l32 18H56z' fill='%23F7F2EB'/%3E%3Cpath d='M145 72l28 18-12 13 32 18-11 13 42 28' stroke='%23F08A24' stroke-width='13' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M92 108h44v21H92z' fill='%232E3944'/%3E%3C/g%3E%3C/svg%3E");
}

.service-showcase__visual--statsionarnyy::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='210' viewBox='0 0 300 210'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M78 154h116v16H78z' fill='%23F7F2EB'/%3E%3Cpath d='M136 68h16v86h-16z' fill='%23D8DEE3'/%3E%3Cpath d='M144 74l72-28' stroke='%23F08A24' stroke-width='14' stroke-linecap='round'/%3E%3Cpath d='M216 47v56l-18 22' stroke='%23F7F2EB' stroke-width='5' stroke-linecap='round'/%3E%3Ccircle cx='102' cy='154' r='18' fill='%23F08A24'/%3E%3Ccircle cx='176' cy='154' r='18' fill='%23F08A24'/%3E%3C/g%3E%3C/svg%3E");
}

.service-showcase__visual--progrev::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='210' viewBox='0 0 300 210'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Crect x='68' y='92' width='164' height='76' rx='18' fill='%23F7F2EB'/%3E%3Cpath d='M132 62c14 12 14 24 0 36M170 50c20 16 20 32 0 48' stroke='%23F08A24' stroke-width='10' stroke-linecap='round'/%3E%3Cpath d='M90 130h120' stroke='%232E3944' stroke-width='8' stroke-linecap='round'/%3E%3Ccircle cx='108' cy='152' r='10' fill='%23F08A24'/%3E%3Ccircle cx='192' cy='152' r='10' fill='%23F08A24'/%3E%3C/g%3E%3C/svg%3E");
}

.service-showcase__visual--zalivka::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='210' viewBox='0 0 300 210'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M58 150h184' stroke='%23F7F2EB' stroke-width='10' stroke-linecap='round'/%3E%3Cpath d='M90 120h110l16 24H74z' fill='%23D8DEE3'/%3E%3Cpath d='M104 82l72 38' stroke='%23F08A24' stroke-width='12' stroke-linecap='round'/%3E%3Cpath d='M186 120l32 22' stroke='%23F7F2EB' stroke-width='6' stroke-linecap='round'/%3E%3Ccircle cx='98' cy='150' r='16' fill='%23F08A24'/%3E%3Ccircle cx='184' cy='150' r='16' fill='%23F08A24'/%3E%3C/g%3E%3C/svg%3E");
}

.service-showcase__visual--fundament::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='210' viewBox='0 0 300 210'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Crect x='74' y='78' width='152' height='90' rx='18' fill='%23F7F2EB'/%3E%3Crect x='96' y='96' width='108' height='16' rx='8' fill='%23D8DEE3'/%3E%3Crect x='96' y='122' width='24' height='24' rx='8' fill='%23F08A24'/%3E%3Crect x='138' y='122' width='24' height='24' rx='8' fill='%23F08A24'/%3E%3Crect x='180' y='122' width='24' height='24' rx='8' fill='%23F08A24'/%3E%3Cpath d='M104 70h92' stroke='%232E3944' stroke-width='8' stroke-linecap='round'/%3E%3C/g%3E%3C/svg%3E");
}

.service-showcase__visual--works::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='210' viewBox='0 0 300 210'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M58 152h184' stroke='%23F7F2EB' stroke-width='10' stroke-linecap='round'/%3E%3Cpath d='M86 88h42v64H86z' fill='%23D8DEE3'/%3E%3Cpath d='M144 72h24v80h-24z' fill='%23F08A24'/%3E%3Cpath d='M184 98h38v54h-38z' fill='%23D8DEE3'/%3E%3Cpath d='M98 74l18-18 18 18M156 58l18-18 18 18' stroke='%23F7F2EB' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
}

.service-price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

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

.service-price-table th,
.service-price-table td {
  padding: 16px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(107, 89, 79, 0.12);
  vertical-align: top;
}

.service-price-table th {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-price-table td strong {
  display: block;
  margin-bottom: 4px;
}

.service-price-table .price-tag {
  white-space: nowrap;
}

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

.service-price-side .content-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.15;
}

.service-price-side .content-card p {
  margin: 0;
}

.service-price-side .button,
.service-price-side .button-outline {
  width: 100%;
  justify-content: center;
}

.about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 24px;
  align-items: stretch;
}

.about-hero__copy,
.about-hero__signal {
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}

.about-hero__copy {
  padding: 28px;
}

.about-hero__copy h1 {
  margin-bottom: 18px;
}

.about-hero__signal {
  display: grid;
  gap: 16px;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(240, 138, 36, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(36, 74, 87, 0.08), rgba(255, 255, 255, 0.92));
}

.about-hero__signal strong {
  display: block;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.about-hero__signal p,
.about-hero__signal .plain-list {
  margin: 0;
}

.about-page .number-card span {
  color: rgba(239, 243, 245, 0.8);
  line-height: 1.55;
}

.about-hero .button-secondary {
  color: var(--brand-dark);
  background: rgba(36, 74, 87, 0.08);
  border-color: rgba(36, 74, 87, 0.16);
  box-shadow: none;
}

.about-hero .button-secondary:hover {
  background: rgba(36, 74, 87, 0.14);
  color: var(--accent);
}

.sale-hero .button-secondary {
  color: var(--brand-dark);
  background: rgba(36, 74, 87, 0.08);
  border-color: rgba(36, 74, 87, 0.16);
  box-shadow: none;
}

.sale-hero .button-secondary:hover {
  background: rgba(36, 74, 87, 0.14);
  color: var(--accent);
}

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

.sale-card {
  position: relative;
  border-radius: 26px;
  border: 1px solid rgba(23, 38, 59, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 252, 0.98)),
    radial-gradient(circle at top right, rgba(233, 123, 34, 0.12), transparent 42%);
  padding: 30px 28px;
  box-shadow: 0 28px 60px rgba(16, 33, 55, 0.09);
}

.sale-card--accent {
  background: linear-gradient(135deg, rgba(233, 123, 34, 0.96), rgba(194, 84, 0, 0.94));
  color: #fff;
  border-color: rgba(233, 123, 34, 0.35);
}

.sale-card--accent p,
.sale-card--accent .muted,
.sale-card--accent li {
  color: rgba(255, 255, 255, 0.84);
}

.sale-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(18, 32, 51, 0.08);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sale-card--accent .sale-card__badge {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.sale-card .card-title {
  margin: 16px 0 12px;
}

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

.sale-ladder__step {
  position: relative;
  min-height: 100%;
  padding: 28px 24px 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(23, 38, 59, 0.1);
  box-shadow: 0 24px 54px rgba(16, 33, 55, 0.08);
}

.sale-ladder__step::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, var(--accent), rgba(233, 123, 34, 0.18));
}

.sale-ladder__step strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
  color: var(--ink);
}

.sale-ladder__step span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-weight: 700;
}

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

.sale-process__item {
  position: relative;
  padding: 28px 24px 24px 72px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sale-process__item span {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(233, 123, 34, 0.18);
  color: #fff;
  font-weight: 800;
}

.sale-process__item strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
}

.sale-process__item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.sale-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 38px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(18, 32, 51, 0.98), rgba(30, 50, 76, 0.95));
  box-shadow: 0 28px 70px rgba(13, 26, 43, 0.18);
}

.sale-cta .section-title,
.sale-cta .section-copy {
  color: #fff;
}

.sale-cta .section-copy {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
}

.sale-cta .button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.sale-cta .button-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.career-hero .button-secondary {
  color: var(--brand-dark);
  background: rgba(36, 74, 87, 0.08);
  border-color: rgba(36, 74, 87, 0.16);
  box-shadow: none;
}

.career-hero .button-secondary:hover {
  background: rgba(36, 74, 87, 0.14);
  color: var(--accent);
}

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

.vacancy-card {
  min-height: 100%;
  padding: 28px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 252, 0.98)),
    radial-gradient(circle at top right, rgba(233, 123, 34, 0.12), transparent 42%);
  border: 1px solid rgba(23, 38, 59, 0.1);
  box-shadow: 0 24px 56px rgba(16, 33, 55, 0.08);
}

.vacancy-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.vacancy-card__head .card-title {
  margin: 0;
}

.vacancy-card__tag {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(18, 32, 51, 0.08);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.career-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 38px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(18, 32, 51, 0.98), rgba(30, 50, 76, 0.95));
  box-shadow: 0 28px 70px rgba(13, 26, 43, 0.18);
}

.career-cta .section-title,
.career-cta .section-copy {
  color: #fff;
}

.career-cta .section-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

.career-cta .button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.career-cta .button-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.gosts-hero .button-secondary {
  color: var(--brand-dark);
  background: rgba(36, 74, 87, 0.08);
  border-color: rgba(36, 74, 87, 0.16);
  box-shadow: none;
}

.gosts-hero .button-secondary:hover {
  background: rgba(36, 74, 87, 0.14);
  color: var(--accent);
}

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

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

.gost-card {
  min-height: 100%;
  padding: 30px 28px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 249, 252, 0.99)),
    radial-gradient(circle at top right, rgba(233, 123, 34, 0.14), transparent 44%);
  border: 1px solid rgba(23, 38, 59, 0.1);
  box-shadow: 0 26px 60px rgba(16, 33, 55, 0.08);
}

.gost-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.gost-card__head .card-title {
  margin: 0;
}

.gost-card__badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(18, 32, 51, 0.08);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gost-card__name {
  margin: 0 0 12px;
  color: var(--ink);
  font-weight: 700;
}

.gost-card__actions {
  margin-top: 18px;
}

.gost-card--compact {
  padding: 22px 20px;
}

.gost-card--compact .card-title {
  font-size: 1.05rem;
}

.contacts-hero .button-secondary {
  color: var(--brand-dark);
  background: rgba(36, 74, 87, 0.08);
  border-color: rgba(36, 74, 87, 0.16);
  box-shadow: none;
}

.contacts-hero .button-secondary:hover {
  background: rgba(36, 74, 87, 0.14);
  color: var(--accent);
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(36, 74, 87, 0.08);
  border: 1px solid rgba(36, 74, 87, 0.12);
  color: var(--brand-dark);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.25;
}

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

.contact-card {
  min-height: 100%;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(23, 38, 59, 0.1);
  background: #fff;
  box-shadow: 0 24px 54px rgba(16, 33, 55, 0.08);
}

.contact-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(36, 74, 87, 0.08);
  color: var(--brand-dark);
  box-shadow: inset 0 0 0 1px rgba(36, 74, 87, 0.08);
  flex-shrink: 0;
}

.contact-card--accent {
  background: linear-gradient(135deg, rgba(233, 123, 34, 0.96), rgba(194, 84, 0, 0.94));
  border-color: rgba(233, 123, 34, 0.35);
  color: #fff;
}

.contact-card--accent .contact-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.contact-card small {
  display: block;
  margin-bottom: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-card--accent small,
.contact-card--accent p {
  color: rgba(255, 255, 255, 0.84);
}

.contact-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.contact-card a {
  color: inherit;
  text-decoration: none;
}

.contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 38px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(18, 32, 51, 0.98), rgba(30, 50, 76, 0.95));
  box-shadow: 0 28px 70px rgba(13, 26, 43, 0.18);
}

.contact-cta .section-title,
.contact-cta .section-copy {
  color: #fff;
}

.contact-cta .section-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-cta .button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.contact-cta .button-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.section-head--center {
  justify-content: center;
  text-align: center;
}

.contacts-layout {
  padding-top: 26px;
}

.contacts-panel {
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  gap: 36px;
  align-items: stretch;
}

.contacts-sidebar {
  padding: 34px 0 18px;
}

.contacts-sidebar--simple {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 0;
}

.contacts-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  color: #0f5fff;
  text-decoration: none;
}

.contacts-brand__mark {
  display: inline-flex;
  color: #0f5fff;
}

.contacts-brand__name {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.contacts-meta {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
  color: var(--brand-dark);
}

.contacts-meta p {
  margin: 0;
  font-size: 1.02rem;
}

.contacts-meta__row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contacts-meta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #0f5fff;
  flex-shrink: 0;
}

.contacts-map-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 2px;
  color: var(--brand-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contacts-map-link:hover {
  color: var(--accent);
  text-decoration-thickness: 2px;
}

.contacts-block {
  margin-bottom: 32px;
}

.contacts-block h2 {
  margin: 0 0 18px;
  font-size: 1.9rem;
  line-height: 1.08;
}

.contacts-block p {
  margin: 10px 0 0;
  color: var(--muted);
}

.contacts-worktime {
  margin: 0;
  font-size: 1.15rem;
  color: var(--brand-dark);
}

.contacts-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--brand-dark);
  font-size: 1.15rem;
  text-decoration: none;
}

.contacts-link:hover {
  color: var(--accent);
}

.contacts-link--icon {
  gap: 12px;
}

.contacts-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(233, 123, 34, 0.12);
  color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(233, 123, 34, 0.16);
  flex-shrink: 0;
}

.contacts-link--phone {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.contacts-link--strong {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.contacts-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: rgba(15, 95, 255, 0.1);
  color: #0f5fff;
  font-weight: 700;
  text-decoration: none;
}

.contacts-button:hover {
  background: rgba(15, 95, 255, 0.16);
}

.contacts-call-button {
  margin-top: 10px;
}

.contacts-map-wrap {
  min-height: 600px;
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 28px 72px rgba(16, 33, 55, 0.12);
}

.contacts-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 600px;
  border: 0;
}

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

.reviews-page .review-card {
  min-height: 100%;
  border-radius: 24px;
  box-shadow: 0 24px 56px rgba(16, 33, 55, 0.08);
}

.reviews-page .review-card__rating span {
  letter-spacing: 0.08em;
}

@media (max-width: 1180px) {
  .reviews-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.plant-hero .button-secondary {
  color: var(--brand-dark);
  background: rgba(36, 74, 87, 0.08);
  border-color: rgba(36, 74, 87, 0.16);
  box-shadow: none;
}

.plant-hero .button-secondary:hover {
  background: rgba(36, 74, 87, 0.14);
  color: var(--accent);
}

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

.plant-photo-card,
.portfolio-card {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(107, 89, 79, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 239, 0.96));
  box-shadow: 0 18px 38px rgba(22, 28, 45, 0.08);
}

.plant-photo-card img,
.portfolio-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plant-photo-card img,
.plant-photo-card__video {
  aspect-ratio: 16 / 11;
}

.plant-photo-card__video {
  display: block;
  width: 100%;
  height: auto;
  min-height: 520px;
  object-fit: cover;
  background: linear-gradient(180deg, #222a31, #161c23);
}

.plant-photo-card__body {
  display: grid;
  gap: 8px;
  padding: 20px 22px 24px;
}

.plant-photo-card__body strong {
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.plant-photo-card__body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.plant-video-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(107, 89, 79, 0.14);
  background: #1f272e;
  box-shadow: 0 20px 44px rgba(22, 28, 45, 0.1);
}

.plant-video-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.plant-video-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 28px;
  color: #fff;
  background: linear-gradient(180deg, rgba(20, 24, 29, 0.08), rgba(20, 24, 29, 0.72));
}

.plant-video-card__overlay strong {
  display: block;
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1.04;
}

.plant-video-card__overlay p {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.plant-video-card__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border: none;
  border-radius: 50%;
  background: rgba(240, 138, 36, 0.92);
  color: #fff;
  font-size: 34px;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(240, 138, 36, 0.28);
}

.plant-director {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: stretch;
}

.plant-director__photo {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(107, 89, 79, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 239, 0.96));
  box-shadow: 0 20px 44px rgba(22, 28, 45, 0.08);
}

.plant-director__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plant-director__copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 30px;
  line-height: 1.05;
}

.plant-director__copy > span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 800;
}

.plant-director__copy p {
  margin: 0 0 16px;
}

.portfolio-card__media img,
.portfolio-card__media video {
  min-height: 286px;
}

@media (max-width: 1120px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-card {
    min-height: 350px;
  }

}

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

  .portfolio-card {
    min-height: auto;
  }

  .portfolio-card__media,
  .portfolio-card__media img,
  .portfolio-card__media video {
    min-height: 214px;
  }

  .portfolio-card__content strong {
    font-size: 16px;
  }
}

.calculator-page .page-main {
  padding-bottom: 0;
}

.volume-calculator {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(107, 89, 79, 0.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(240, 138, 36, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 239, 0.96));
  box-shadow: 0 20px 44px rgba(22, 28, 45, 0.08);
}

.calculator-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.calculator-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(107, 89, 79, 0.14);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(22, 28, 45, 0.04);
}


.volume-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.calculator-price-control {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(107, 89, 79, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
}

.calculator-price-control__copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.calculator-price-control__copy p {
  margin: 0;
  max-width: 660px;
  color: var(--muted);
}

.calculator-price-control__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
}

.calculator-price-control__field span {
  font-weight: 700;
}

.calculator-price-control__field input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(107, 89, 79, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  padding: 0 16px;
  font: inherit;
}

.calculator-price-control__field input:hover,
.calculator-price-control__field input:focus {
  border-color: rgba(240, 138, 36, 0.42);
  box-shadow: 0 0 0 4px rgba(240, 138, 36, 0.12);
  outline: none;
}

.volume-tab {
  border: 1px solid rgba(107, 89, 79, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  padding: 12px 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.volume-tab:hover,
.volume-tab:focus-visible {
  border-color: rgba(240, 138, 36, 0.38);
  transform: translateY(-1px);
}

.volume-tab.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 14px 26px rgba(240, 138, 36, 0.24);
}

.volume-pane {
  display: none;
  animation: calculatorFadeIn 0.24s ease;
}

.volume-pane.is-active {
  display: block;
}

.volume-pane__intro {
  margin-bottom: 20px;
}

.volume-pane__intro h2 {
  margin: 0 0 10px;
  font-size: 1.75rem;
}

.volume-pane__intro p {
  margin: 0;
  max-width: 920px;
  color: var(--muted);
}

.calc-mode-switch,
.calc-sub-switch {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 18px;
  background: rgba(61, 74, 91, 0.06);
  margin-bottom: 18px;
}

.calc-mode-button,
.calc-sub-switch__button {
  border: none;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  padding: 10px 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.calc-mode-button.is-active,
.calc-sub-switch__button.is-active {
  background: #fff;
  color: var(--text);
  box-shadow: 0 12px 24px rgba(22, 28, 45, 0.08);
}

.calc-mode-panel,
.calc-sub-panel {
  display: none;
}

.calc-mode-panel.is-active,
.calc-sub-panel.is-active {
  display: block;
}

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

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-field label {
  font-weight: 700;
  color: var(--text);
}

.calc-field input {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(107, 89, 79, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  padding: 0 16px;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.calc-field input:hover,
.calc-field input:focus {
  border-color: rgba(240, 138, 36, 0.42);
  box-shadow: 0 0 0 4px rgba(240, 138, 36, 0.12);
  outline: none;
}

.calc-field.is-invalid input {
  border-color: rgba(198, 67, 45, 0.6);
  box-shadow: 0 0 0 4px rgba(198, 67, 45, 0.12);
}

.calc-field small {
  color: var(--muted);
  line-height: 1.45;
}

.calc-error,
.calc-group-error {
  min-height: 18px;
  font-size: 0.92rem;
  color: #c6432d;
}

.calc-formula,
.calc-note {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

.calc-dynamic-group,
.calc-piles-addon {
  margin-top: 18px;
}

.calc-dynamic-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.calc-dynamic-head strong,
.calc-block-title {
  display: block;
  font-size: 1.06rem;
}

.calc-add-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.calc-dynamic-list {
  display: grid;
  gap: 14px;
}

.calc-dynamic-card {
  padding: 18px;
  border: 1px solid rgba(107, 89, 79, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 24px rgba(22, 28, 45, 0.04);
}

.calc-dynamic-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.calc-dynamic-card__head strong {
  font-size: 1rem;
}

.calc-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border: 1px solid rgba(198, 67, 45, 0.2);
  border-radius: 12px;
  background: rgba(198, 67, 45, 0.06);
  color: #c6432d;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.calc-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-weight: 700;
  cursor: pointer;
}

.calc-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

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

.calc-result {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid rgba(240, 138, 36, 0.18);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 239, 0.94));
  box-shadow: 0 18px 36px rgba(22, 28, 45, 0.08);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.calc-result.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.calc-result__stat {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(107, 89, 79, 0.1);
}

.calc-result__stat span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.calc-result__stat strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1.08;
}

.calc-result__note {
  margin: 16px 0 0;
  color: var(--muted);
}

.calc-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(107, 89, 79, 0.12);
}

.calc-cta strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.calc-cta p {
  margin: 0;
  color: var(--muted);
  max-width: 700px;
}

.calc-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.calculator-seo-text {
  display: grid;
  gap: 18px;
}

.calculator-seo-text article {
  padding: 24px 26px;
  border: 1px solid rgba(107, 89, 79, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 32px rgba(22, 28, 45, 0.05);
}

.calculator-seo-text h2 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.calculator-seo-text p {
  margin: 0;
  color: var(--muted);
}

@keyframes calculatorFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .price-file-row__actions {
    width: 100%;
  }

  .price-file-row__actions .button-outline {
    flex: 1 1 0;
  }

  .service-showcase,
  .service-price-layout,
  .about-hero__grid {
    grid-template-columns: 1fr;
  }

  .sale-card-grid,
  .sale-ladder,
  .sale-process,
  .reviews-page-grid,
  .vacancy-grid,
  .gost-grid,
  .contact-grid,
  .calc-result__stats {
    grid-template-columns: 1fr;
  }

  .contacts-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contacts-sidebar {
    padding: 0;
  }

  .contacts-sidebar--simple {
    padding: 0;
  }

  .contacts-block h2 {
    font-size: 1.55rem;
  }

  .contacts-link--phone {
    font-size: 1.55rem;
  }

  .contacts-map-wrap,
  .contacts-map-wrap iframe {
    min-height: 320px;
  }

  .lead-modal__dialog {
    width: min(100% - 20px, 560px);
    padding: 24px 18px;
  }

  .lead-modal__title {
    font-size: 1.65rem;
  }

  .lead-form__grid,
  .lead-form__actions {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .contact-meta {
    gap: 8px;
  }

  .contact-chip {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .sale-cta,
  .career-cta,
  .contact-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }

  .plant-photo-grid,
  .plant-director {
    grid-template-columns: 1fr;
  }

  .plant-photo-card__video {
    min-height: 420px;
  }

  .volume-calculator {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .volume-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    margin-right: -2px;
  }

  .calculator-price-control {
    flex-direction: column;
    align-items: stretch;
  }

  .calculator-price-control__field {
    min-width: 0;
  }

  .calculator-highlights {
    gap: 8px;
  }

  .calculator-highlights span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }


  .volume-tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .calc-grid,
  .calc-cta {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .calc-mode-switch,
  .calc-sub-switch {
    display: flex;
    width: 100%;
  }

  .calc-mode-button,
  .calc-sub-switch__button {
    flex: 1 1 0;
    text-align: center;
  }

  .calc-dynamic-head,
  .calc-dynamic-card__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .calc-actions .button,
  .calc-actions .button-outline,
  .calc-cta__actions .button,
  .calc-cta__actions .button-outline {
    width: 100%;
    justify-content: center;
  }

  .plant-video-card__overlay {
    padding: 22px;
    flex-direction: column;
    align-items: start;
  }

  .plant-video-card__overlay strong {
    font-size: 24px;
  }
}









.delivery-cities-section .section-head {
  margin-bottom: 26px;
}

.delivery-cities-section .section-head .muted {
  max-width: 920px;
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
}

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

.delivery-city-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 148px;
  padding: 20px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 239, 0.96));
  border: 1px solid rgba(107, 89, 79, 0.14);
  box-shadow: 0 16px 34px rgba(22, 28, 45, 0.07);
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.delivery-city-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
  opacity: 0.9;
}

.delivery-city-card::after {
  content: "→";
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(240, 138, 36, 0.12);
  color: var(--brand-dark);
  font-size: 18px;
  font-weight: 800;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease;
}

.delivery-city-card strong {
  display: block;
  padding-right: 28px;
  font-size: 21px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text);
}

.delivery-city-card span {
  display: block;
  padding-right: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.delivery-city-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 138, 36, 0.32);
  box-shadow: 0 22px 44px rgba(22, 28, 45, 0.12);
}

.delivery-city-card:hover::after {
  transform: translateX(4px);
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
}

.delivery-cities-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 22px;
  padding: 26px 28px;
}

.delivery-cities-cta strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.15;
}

.delivery-cities-cta p {
  margin: 0;
  max-width: 780px;
}

.delivery-cities-cta .button {
  flex: 0 0 auto;
}

@media (max-width: 1280px) {
  .delivery-cities-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .delivery-cities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .delivery-cities-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .delivery-cities-grid {
    grid-template-columns: 1fr;
  }

  .delivery-city-card {
    min-height: auto;
    padding: 18px;
  }

  .delivery-city-card strong {
    font-size: 20px;
  }

  .delivery-cities-cta {
    padding: 22px 20px;
  }

  .delivery-cities-cta .button {
    width: 100%;
  }
}