:root {
  /* Only the orange is taken from g-service.ru; small links use a darker tint. */
  --orange: #f58415;
  --link: #a64b00;
  --link-hover: #853c00;
  --orange-dark: var(--link);
  --action: #f58415;
  --action-hover: #e87408;
  --action-ink: #ffffff;
  --page-gutter: clamp(20px, 4.5vw, 72px);
  --section-title: clamp(1.875rem, 3vw, 2.75rem);
  --subsection-title: clamp(1.625rem, 2.4vw, 2.125rem);
  --orange-soft: #fff2e5;
  --ink: #222222;
  --ink-soft: #4d4d4d;
  --muted: #717171;
  --line: #e2e6e8;
  --paper: #ffffff;
  --surface: #f7f8f8;
  --surface-2: #f1f1f1;
  --green: #20845a;
  --red: #c84230;
  --shadow: 0 18px 50px rgba(31, 31, 31, 0.08);
  --container: 1440px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --font-display: "Montserrat", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font-family: var(--font-body);
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 5.8rem);
}

h2 {
  font-size: var(--section-title);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.eyebrow,
.text-link,
.main-nav,
.header-actions,
.audience-nav,
.content-tag,
.tariff-badge {
  font-family: var(--font-body);
}

::selection {
  color: var(--action-ink);
  background: var(--action);
}

:focus-visible {
  outline: 3px solid rgba(240, 120, 0, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - var(--page-gutter) * 2), var(--container));
  margin-inline: auto;
}

.section {
  padding: 94px 0;
}

.section--muted {
  background: var(--surface);
}

.section--dark {
  color: #fff;
  background: var(--ink);
}

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

.section-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.section-heading p {
  max-width: 430px;
  margin-bottom: 5px;
  color: var(--muted);
}

.section--dark .section-heading p {
  color: rgba(255, 255, 255, 0.65);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--orange-dark);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 3px;
  background: var(--orange);
  content: "";
}

.section--dark .eyebrow {
  color: #f58415;
}

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

.icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.25rem;
  transition: box-shadow 0.18s ease, background 0.18s ease,
    color 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: none;
}

.button--primary {
  color: var(--action-ink);
  background: var(--action);
  box-shadow: none;
}

.button--primary:hover {
  background: var(--action-hover);
  box-shadow: none;
}

.button--dark {
  color: #fff;
  background: var(--ink);
}

.button--ghost {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.button--ghost:hover {
  border-color: var(--ink);
}

.button--light {
  color: var(--ink);
  background: #fff;
}

.button--small {
  min-height: 40px;
  padding: 9px 15px;
  font-size: 0.91rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--orange-dark);
  font-weight: 600;
}

.text-link::after {
  font-size: 1.15em;
  content: "→";
  transition: transform 0.18s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 0;
  box-shadow: 0 8px 24px rgba(60, 40, 20, 0.09);
  backdrop-filter: none;
}

.site-header.is-mega-open {
  box-shadow: 0 5px 16px rgba(60, 40, 20, 0.08);
}

.status-bar {
  color: #fff;
  background: var(--ink);
  font-size: 0.82rem;
}

.status-bar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.status-bar__message {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #62d995;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(98, 217, 149, 0.12);
}

.status-bar a {
  color: #f58415;
  font-weight: 700;
}

.header-main {
  display: grid;
  min-height: 78px;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 28px;
}

.logo {
  display: inline-flex;
  width: 150px;
  align-items: center;
}

.logo img {
  width: 100%;
  height: auto;
}

.main-nav,
.header-actions,
.audience-nav__inner {
  display: flex;
  align-items: center;
}

.main-nav {
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link::after {
  position: absolute;
  right: 12px;
  bottom: -17px;
  left: 12px;
  height: 2px;
  background: var(--orange);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.22s ease, transform 0.28s ease;
}

.nav-link:hover,
.nav-link.is-active,
.nav-link.is-mega-active {
  color: var(--orange-dark);
}

.nav-link:hover::after,
.nav-link.is-active::after,
.nav-link.is-mega-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid;
  border-bottom: 1.5px solid;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.22s ease;
}

.nav-link.is-mega-active .nav-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.nav-item--split { display: flex; align-items: center; }
.site-header .main-nav .nav-item--split > a { padding-right: 0; }
.site-header .main-nav .nav-link--toggle { justify-content: center; width: 28px; padding: 0; }
.nav-link--toggle::after { display: none; }
.nav-item--split.is-mega-active > .nav-link { color: var(--orange-dark); }
.nav-item--split.is-mega-active > a::after { opacity: 1; transform: scaleX(1); }
.nav-item--split > a::after { right: 0; }

.dropdown {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  width: 300px;
  padding: 12px;
  visibility: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  transition: 0.18s ease;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 12px;
  border-radius: 9px;
  font-weight: 700;
}

.dropdown a:hover {
  color: var(--orange-dark);
  background: var(--orange-soft);
}

.dropdown a::after {
  color: var(--orange);
  content: "→";
}

.mega-menu {
  position: absolute;
  z-index: 5;
  top: var(--mega-top, 100%);
  left: var(--mega-left, 16px);
  width: var(--mega-width, 526px);
  max-height: calc(100dvh - var(--mega-top, 140px) - 16px);
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(33, 29, 31, 0.12);
}

/* A hit area across the small visual gap: no pointer flicker. */
.mega-menu::before {
  position: absolute;
  top: -12px;
  right: 0;
  left: 0;
  height: 12px;
  content: "";
}

.mega-menu[hidden] {
  display: none;
}

.mega-menu__inner {
  max-height: calc(100dvh - var(--mega-top, 140px) - 34px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mega-panel[hidden],
.mega-service-detail[hidden] {
  display: none;
}

.mega-services {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  gap: 8px;
  min-height: 230px;
}

.mega-services__list {
  display: flex;
  flex-direction: column;
}

.mega-panel[data-mega-panel="other"] .mega-services {
  min-height: 116px;
}

.mega-service {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.mega-service.is-selected,
.mega-service:hover {
  color: var(--orange-dark);
  background: var(--orange-soft);
}

.mega-service__chevron {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  margin-right: 5px;
  color: var(--muted);
  border-top: 1.5px solid;
  border-right: 1.5px solid;
  transform: rotate(45deg);
}

.mega-service.is-selected .mega-service__chevron {
  color: var(--orange);
}

.mega-services__details {
  min-width: 0;
  padding-left: 8px;
  border-left: 1px solid var(--line);
}

.mega-service-detail {
  padding: 6px 4px;
}

.mega-service-detail p {
  margin: 0;
  padding: 0 10px 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.mega-service-detail a,
.mega-service-detail button,
.mega-company-link {
  display: flex;
  width: 100%;
  min-height: 40px;
  align-items: center;
  padding: 9px 10px;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  border-radius: 9px;
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
}

.mega-company-link {
  min-height: 42px;
  padding-inline: 14px;
  font-weight: 600;
}

.mega-service-detail a:hover,
.mega-service-detail button:hover,
.mega-company-link:hover,
.mega-company-link[aria-current="page"] {
  color: var(--orange-dark);
  background: var(--orange-soft);
}

.mega-menu :is(a, button):focus-visible {
  outline: 2px solid var(--orange-dark);
  outline-offset: -2px;
}

.mega-panel > .audience-service-notice {
  margin: 0;
  padding: 16px;
}

@media (prefers-reduced-motion: reduce) {
  .mega-menu { transition: none; }
}

.header-actions {
  gap: 8px;
}

.city-button,
.phone-button {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.phone-button {
  display: none;
}

.audience-nav {
  border-top: 0;
}

.audience-nav__inner {
  min-height: 45px;
  gap: 32px;
  border-top: 1px solid rgba(223, 220, 218, 0.75);
}

.audience-nav a {
  position: relative;
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.audience-nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--orange);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: 0.18s ease;
}

.audience-nav a:hover,
.audience-nav a.is-active {
  color: var(--ink);
}

.audience-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.mobile-menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
}

.mobile-menu-button span,
.mobile-menu-button span::before,
.mobile-menu-button span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  content: "";
  transition: 0.2s ease;
}

.mobile-menu-button span {
  position: relative;
}

.mobile-menu-button span::before {
  position: absolute;
  top: -6px;
}

.mobile-menu-button span::after {
  position: absolute;
  top: 6px;
}

.mobile-drawer {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: none;
  background: rgba(33, 29, 31, 0.48);
}

.mobile-drawer.is-open {
  display: block;
}

.mobile-drawer__panel {
  width: min(420px, 92vw);
  height: 100%;
  margin-left: auto;
  padding: 24px;
  overflow-y: auto;
  background: #fff;
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.15);
  animation: drawerIn 0.22s ease backwards;
}

@keyframes drawerIn {
  from {
    transform: translateX(100%);
  }
}

.mobile-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.mobile-drawer__close,
.modal__close {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.5rem;
}

.mobile-nav {
  display: grid;
  gap: 7px;
}

.mobile-nav a,
.mobile-nav-group > summary {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.08rem;
  font-weight: 600;
}

.mobile-nav-group > summary { cursor: pointer; }
.mobile-nav-group > summary > a { padding: 0; border: 0; }
.mobile-nav-group[open] > summary,
.mobile-nav-group a[aria-current="page"] { color: var(--link); }
.mobile-nav-group > a { display: block; padding-left: 16px; }

.mobile-drawer__actions {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.mobile-nav--audiences { margin-bottom: 20px; }
.mobile-nav--audiences a.is-active { color: var(--link); border-bottom-color: var(--orange); }
.audience-service-notice { grid-column: 1 / -1; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); }
.audience-service-notice strong { display: block; color: var(--ink); font-size: 18px; }
.audience-service-notice p { margin: 10px 0 16px; color: var(--ink-soft); font-size: 14px; line-height: 1.5; }
.audience-service-notice .text-link { font-size: 14px; }

/* Hero */
.hero {
  padding: 26px 0 32px;
  overflow: hidden;
  background: #fff;
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 30%);
  gap: 18px;
}

.hero__shell {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  background: #f1f1f1;
  border-radius: 34px;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__shell::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f1f1f1 2%, rgba(241, 241, 241, 0.96) 32%, rgba(241, 241, 241, 0.5) 55%, transparent 72%);
  content: "";
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 510px;
  width: min(54%, 670px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 46px 56px;
}

.hero__layout .hero__content {
  width: min(60%, 620px);
  padding-inline: 42px;
}

.hero__content h1 {
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 5vw, 4.75rem);
  white-space: nowrap;
}

.hero__layout .hero__content h1 {
  font-size: clamp(2.25rem, 3.8vw, 3.75rem);
}

.hero__content h1 span {
  color: var(--orange-dark);
}

.hero__lead {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
}

.hero__actions,
.card-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 500;
}

.hero__fact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero__fact::before {
  display: block;
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

.hero__controls {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 28px;
  height: 4px;
  padding: 0;
  border: 0;
  background: rgba(33, 29, 31, 0.25);
  border-radius: 4px;
  cursor: pointer;
  transition: 0.2s ease;
}

.hero-dot.is-active {
  width: 52px;
  background: var(--orange);
}

/* Filters and cards */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 5px;
  background: var(--surface);
  border-radius: 13px;
}

.filter-group + .filter-group {
  margin-left: 8px;
}

.chip {
  min-height: 39px;
  padding: 8px 14px;
  border: 0;
  color: var(--muted);
  background: transparent;
  border-radius: 9px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.18s ease;
}

.chip:hover,
.chip.is-active {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 4px 15px rgba(33, 29, 31, 0.08);
}

.tariff-section {
  padding: 76px 0;
}

.tariff-section > .container {
  width: min(calc(100% - var(--page-gutter) * 2), var(--container));
}

.tariff-section__head {
  display: flex;
  max-width: 760px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
}

.tariff-section__head .eyebrow {
  gap: 8px;
  margin: 0;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.tariff-section__head .eyebrow::before {
  width: 22px;
  height: 2px;
  background: #f58415;
  clip-path: none;
}

.tariff-section__head h2 {
  margin: 0;
  font-size: var(--section-title);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.tariff-section__head p {
  margin: 0;
  color: #717171;
  font-size: 17px;
  line-height: 1.55;
}

.tariff-section .filter-row {
  gap: 22px;
  margin-bottom: 30px;
}

.tariff-filter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tariff-filter-reset {
  flex: 0 0 auto;
  min-height: 50px;
  padding: 14px 20px;
  border: 1px solid var(--brand-border);
  border-radius: 14px;
  background: var(--surface);
  color: #717171;
  font: 600 0.875rem/20px var(--font-body);
  white-space: nowrap;
}

.tariff-filter-reset:hover {
  border-color: var(--brand-orange);
  color: var(--link);
  background: var(--orange-soft);
}

.filter-label {
  color: #717171;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.tariff-section .filter-group {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 0;
  padding: 4px;
  background: #f7f8f8;
  border: 1px solid #e2e6e8;
  border-radius: 999px;
}

.tariff-section .filter-group + .filter-group {
  margin-left: 0;
}

.tariff-section .chip {
  min-height: auto;
  padding: 8px 16px;
  color: #717171;
  background: transparent;
  border-radius: 999px;
  box-shadow: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
}

.tariff-section .chip:hover {
  color: #222222;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: none;
}

.tariff-section .chip.is-active,
.tariff-section .chip.is-active:hover {
  color: var(--action-ink);
  background: var(--action-hover);
  box-shadow: 0 3px 10px rgba(245, 132, 21, 0.3);
}

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

.tariff-carousel {
  position: relative;
  width: min(calc(100% - var(--page-gutter) * 2), var(--container));
  margin-inline: auto;
  padding-inline: 0;
}

.tariff-carousel__viewport {
  margin: -14px;
  padding: 14px;
  overflow: hidden;
}

.tariff-carousel .tariff-grid {
  display: flex;
  grid-template-columns: none;
  gap: 22px;
  transform: translateX(0);
}

.tariff-carousel .tariff-card {
  width: auto;
  flex: 0 0 calc((100% - 44px) / 3);
}

.tariff-carousel__arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--ink);
  background: #fff;
  border: 1px solid #e2e6e8;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(60, 40, 20, 0.13);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease,
    box-shadow 0.18s ease, opacity 0.18s ease;
}

.tariff-carousel__arrow:hover {
  color: var(--action-ink);
  background: var(--action-hover);
  border-color: #f58415;
  box-shadow: 0 14px 32px rgba(245, 132, 21, 0.28);
}

.tariff-carousel__arrow .icon {
  width: 22px;
  height: 22px;
}

.tariff-carousel__arrow--prev {
  left: 8px;
}

.tariff-carousel__arrow--prev .icon {
  transform: rotate(180deg);
}

.tariff-carousel__arrow--next {
  right: 8px;
}

.tariff-carousel__arrow.is-inactive {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.tariff-carousel > .no-match {
  padding-block: 70px;
}

.tariff-card {
  position: relative;
  display: flex;
  min-height: 376px;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  color: #222222;
  background: #fff;
  border: 1px solid #e2e6e8;
  border-radius: 16px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.tariff-card[hidden],
.tariff-section .no-match[hidden] {
  display: none !important;
}

.tariff-card:hover {
  border-color: transparent;
  box-shadow: 0 18px 48px rgba(60, 40, 20, 0.14);
  transform: translateY(-4px);
}

.tariff-carousel .tariff-card:hover {
  transform: none;
}

.tariff-card--featured {
  color: #222222;
  background: #fff;
  border-color: #f58415;
  box-shadow: 0 10px 30px rgba(245, 132, 21, 0.14);
}

.tariff-card--featured::after {
  display: none;
}

.tariff-badge,
.content-tag {
  align-self: flex-start;
  padding: 6px 10px;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border-radius: 7px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tariff-card .tariff-badge {
  padding: 4px 10px;
  color: #f58415;
  background: #fff2e5;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.tariff-card h3 {
  margin: 0;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
}

.tariff-description {
  min-height: 42px;
  margin: 0;
  color: #717171;
  font-size: 14.5px;
  line-height: 1.55;
}

.tariff-card--featured .tariff-description,
.tariff-card--featured .tariff-feature {
  color: #717171;
}

.tariff-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tariff-feature {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #3d3a37;
  font-size: 14.5px;
  line-height: 1.55;
}

.tariff-feature::before {
  width: 15px;
  height: 11px;
  margin-top: 5px;
  flex: 0 0 auto;
  background: #f58415;
  clip-path: polygon(0 0, 70% 0, 100% 50%, 70% 100%, 0 100%, 30% 50%);
  content: "";
}

.tariff-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: auto;
  padding-top: 6px;
}

.tariff-price strong {
  color: #222222;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

.tariff-price span,
.tariff-card--featured .tariff-price span {
  color: #717171;
  font-size: 14px;
}

.tariff-card .card-actions {
  flex-wrap: nowrap;
  gap: 10px;
}

.tariff-card .card-actions .button {
  min-height: 46px;
  flex: 1 1 0;
  padding: 11px 12px;
  border-width: 2px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.tariff-card .button--primary {
  background: #f58415;
  box-shadow: none;
}

.tariff-card .button--primary:hover {
  background: #e87408;
  box-shadow: none;
}

.tariff-card .button--ghost,
.tariff-card--featured .button--ghost {
  color: #222222;
  background: transparent;
  border-color: #d8d0c6;
}

.tariff-card .button--ghost:hover {
  color: #f58415;
  border-color: #f58415;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 50px;
  text-align: center;
  background: var(--surface);
  border-radius: var(--radius-md);
}

.no-match {
  display: block;
  grid-column: 1 / -1;
  padding: 30px;
  color: #717171;
  text-align: center;
}

.no-match button {
  padding: 0;
  border: 0;
  color: #f58415;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

/* Picker */
.picker {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e2e6e8;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(78, 57, 40, 0.07);
}

.picker__controls {
  padding: 48px;
  color: var(--ink);
}

.picker__controls h2 {
  max-width: 680px;
  margin-bottom: 14px;
}

.picker__controls > p {
  max-width: 590px;
  margin-bottom: 34px;
  color: var(--muted);
}

.range-field + .range-field {
  margin-top: 26px;
}

.range-field__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

.range-field__top label {
  font-weight: 600;
}

.range-field__value {
  color: var(--orange-dark);
  font-weight: 600;
}

input[type="range"] {
  width: 100%;
  height: 6px;
  appearance: none;
  background: #d8d2cc;
  border-radius: 6px;
  accent-color: var(--orange);
}

input[type="range"]::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  appearance: none;
  background: var(--orange);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.picker__result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  color: var(--ink);
  background: linear-gradient(145deg, #fff6ea 0%, #ffe4c2 100%);
  border-left: 1px solid #efc99f;
}

.picker__result .eyebrow {
  color: var(--orange-dark);
}

.picker__result .eyebrow::before {
  background: var(--orange);
}

.picker__result h3 {
  margin-bottom: 12px;
  font-size: 2.2rem;
}

.picker__result p {
  margin-bottom: 28px;
  color: #67574d;
}

.picker-result__numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 26px;
}

.picker-number {
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(240, 120, 0, 0.24);
  border-radius: 10px;
}

.picker-number strong,
.picker-number span {
  display: block;
}

.picker-number strong {
  font-size: 1.3rem;
}

.picker-number span {
  color: #756458;
  font-size: 0.82rem;
}

.picker-price {
  margin-bottom: 22px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.picker__result .button--light {
  color: var(--action-ink);
  background: var(--action);
  box-shadow: none;
}

.picker__result .button--light:hover {
  background: var(--orange-dark);
}

/* Compact tariff picker */
.picker-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(240, 120, 0, 0.11), transparent 30rem),
    linear-gradient(180deg, #f7f8f8 0%, #faf8f5 100%);
}

.picker-section .container {
  position: relative;
  z-index: 1;
}

.picker-section .picker {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(420px, 0.9fr) minmax(560px, 1.1fr);
  align-items: start;
  column-gap: 32px;
  row-gap: 34px;
  margin-inline: auto;
  padding: 32px;
  overflow: visible;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(218, 211, 203, 0.9);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(65, 45, 28, 0.08);
}

.picker-section .picker__filters {
  grid-column: 1 / -1;
  gap: 28px;
  margin: 0;
}

.picker-section .picker__filters .filter-group {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 0;
  padding: 4px;
  background: #f7f8f8;
  border: 1px solid #e2e6e8;
  border-radius: 999px;
}

.picker-section .picker__filters .chip {
  min-height: 42px;
  padding-inline: 18px;
  border-radius: 999px;
}

.picker-section .picker__filters .chip:hover,
.picker-section .picker__filters .chip.is-active {
  color: var(--action-ink);
  background: var(--action-hover);
  box-shadow: 0 6px 16px rgba(245, 132, 21, 0.24);
}

.picker-section .picker__controls {
  padding: 8px 0 0;
  color: var(--ink);
}

.picker-section .picker__controls h2 {
  margin-bottom: 40px;
  font-size: var(--section-title);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.picker-section .range-field {
  max-width: 650px;
}

.picker-section .range-field + .range-field {
  margin-top: 36px;
}

.picker-section .range-field__top {
  margin-bottom: 12px;
}

.picker-section .range-field__top label {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.picker-section .range-field__value {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.picker-section input[type="range"] {
  --range-progress: 50%;
  display: block;
  width: 100%;
  height: 18px;
  appearance: none;
  background-color: transparent;
  background-image: linear-gradient(90deg, #f58415 0 var(--range-progress), #e2e6e8 var(--range-progress) 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 4px;
  border-radius: 999px;
  cursor: pointer;
}

.picker-section input[type="range"]::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  appearance: none;
  background: #f58415;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(178, 58, 12, 0.28);
}

.picker-section input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: #f58415;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(178, 58, 12, 0.28);
}

.picker-section .picker__results {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.picker-section .picker__results.is-single {
  grid-template-columns: minmax(0, 1fr);
}

.picker-section .range-field__limits {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.875rem;
}

.picker-section .picker-plan-details {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--brand-border);
  color: var(--ink-soft);
  font-size: 0.875rem;
}

.picker-section .picker-plan-details ul {
  margin: 0;
  padding-left: 20px;
}

.picker-section .picker__result {
  display: flex;
  width: auto;
  min-width: 0;
  min-height: 380px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #e2e6e8;
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(60, 40, 20, 0.13);
}

.picker-section .picker__result--alternative {
  background: #fff;
  box-shadow: 0 12px 34px rgba(60, 40, 20, 0.09);
}

.picker-section .picker__result .content-tag {
  margin-bottom: 14px;
  color: var(--link);
  background: #fff2e5;
  border-radius: 999px;
}

.picker-section .picker__result h3 {
  margin-bottom: 10px;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.picker-section .picker__result > p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.4;
}

.picker-section .picker-result__numbers {
  display: flex;
  grid-template-columns: none;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.picker-section .picker-number {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.picker-section .picker-number__icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--link);
  background: #fff2e5;
  border-radius: 50%;
}

.picker-section .picker-number__icon .icon {
  width: 18px;
  height: 18px;
}

.picker-section .picker-number strong {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.picker-section .picker-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: auto;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.picker-section .picker-price small {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}

.picker__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.picker-section .picker__actions .button {
  min-height: 44px;
  padding: 11px 17px;
  border-radius: 10px;
  font-size: 13px;
}

.picker-section .picker__result .picker__actions {
  gap: 8px;
}

.picker-section .picker__result .picker__actions .button,
.picker-section .picker__result .picker__actions .picker-details {
  min-width: 0;
  padding-inline: 9px;
  font-size: 0.875rem;
}

.picker-details {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
}

.picker-details span {
  color: #f58415;
  font-size: 1.1em;
  transition: transform 0.18s ease;
}

.picker-details:hover span {
  transform: translateX(3px);
}

/* Address */
.address-banner {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.2fr;
  align-items: center;
  gap: 50px;
  padding: 48px;
  overflow: hidden;
  background: var(--orange-soft);
  border: 1px solid #f4d2ae;
  border-radius: var(--radius-lg);
}

.address-banner::after {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 240px;
  height: 240px;
  border: 45px solid rgba(240, 120, 0, 0.1);
  border-radius: 50%;
  content: "";
}

.address-banner__copy,
.address-form {
  position: relative;
  z-index: 1;
}

.address-banner h2 {
  margin-bottom: 12px;
  font-size: var(--section-title);
}

.address-banner p {
  margin-bottom: 0;
  color: var(--muted);
}

.address-form {
  display: flex;
  gap: 8px;
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(33, 29, 31, 0.1);
  border-radius: 13px;
  box-shadow: 0 12px 30px rgba(85, 52, 20, 0.09);
}

.address-form input {
  min-width: 0;
  flex: 1;
  padding: 0 15px;
  border: 0;
  outline: 0;
}

.address-result {
  display: none;
  margin-top: 14px;
  color: var(--green);
  font-weight: 600;
}

.address-result.is-visible {
  display: block;
}

/* Services and special offers */
.offers-section {
  background: #fff;
}

.offers-section__head {
  margin-bottom: 28px;
}

.offers-section__head h2 {
  margin: 0;
  font-size: var(--section-title);
  letter-spacing: -0.025em;
}

.offer-tabs {
  display: inline-flex;
  max-width: 100%;
  gap: 2px;
  margin-bottom: 28px;
  padding: 4px;
  overflow-x: auto;
  background: #f2f1f1;
  border-radius: 999px;
  scrollbar-width: none;
}

.offer-tabs::-webkit-scrollbar {
  display: none;
}

.offer-tab {
  min-height: 44px;
  padding: 10px 22px;
  border: 0;
  color: var(--ink-soft);
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.offer-tab:hover {
  color: var(--orange-dark);
  background: rgba(255, 255, 255, 0.72);
}

.offer-tab.is-active,
.offer-tab.is-active:hover {
  color: var(--action-ink);
  background: var(--action-hover);
  box-shadow: 0 5px 14px rgba(245, 132, 21, 0.24);
}

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

.offer-card {
  display: flex;
  min-height: 448px;
  flex-direction: column;
  padding: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ecebea;
  border-radius: 24px;
  animation: offerCardIn 0.24s ease backwards;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-card[hidden] {
  display: none;
}

.offer-card:hover {
  box-shadow: 0 18px 42px rgba(60, 40, 20, 0.1);
  transform: none;
}

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

.offer-card img {
  width: 100%;
  height: 252px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 18px;
}

.offer-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px 2px 2px;
}

.offer-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.offer-card p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.offer-card__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 7px;
  margin-top: auto;
  padding: 5px 0;
  border: 0;
  color: var(--orange-dark);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
}

.offer-card__link span {
  font-size: 16px;
  transition: transform 0.18s ease;
}

.offer-card__link:hover span {
  transform: translateX(4px);
}

/* Animated services showcase */
.service-showcase-section {
  padding-top: 18px;
  background: #fff;
}

.service-showcase__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.service-showcase__title {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: var(--section-title);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.service-showcase__title span {
  color: var(--orange);
  font-size: 0.78em;
  transition: transform 0.2s ease;
}

.service-showcase__title:hover span {
  transform: translateX(5px);
}

.service-showcase__tabs {
  display: flex;
  max-width: 100%;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.service-showcase__tabs::-webkit-scrollbar {
  display: none;
}

.service-showcase__tab {
  min-height: 38px;
  flex: 0 0 auto;
  padding: 7px 15px;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.45s ease, background-color 0.45s ease, box-shadow 0.45s ease;
}

.service-showcase__tab:hover {
  color: var(--orange-dark);
  background: var(--orange-soft);
}

.service-showcase__tab.is-active {
  color: var(--action-ink);
  background: var(--action);
  box-shadow: 0 8px 20px rgba(240, 120, 0, 0.22);
}

.service-showcase__stage {
  min-height: 390px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid #ebe7e3;
  border-radius: 30px;
}

.service-showcase__panel {
  display: grid;
  min-height: 390px;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: 28px;
  padding: 44px 58px;
}

.service-showcase__copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.service-showcase__copy h3 {
  margin-bottom: 18px;
  font-size: var(--subsection-title);
  line-height: 1.2;
}

.service-showcase__copy h3 span {
  color: var(--orange-dark);
}

.service-showcase__copy p {
  max-width: 600px;
  margin-bottom: 42px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.service-showcase__copy .button {
  min-width: 210px;
}

.service-showcase__visual {
  display: flex;
  min-height: 290px;
  align-items: center;
  justify-content: center;
}

/* Content cards */
.mosaic {
  display: grid;
  min-height: 560px;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.story-card {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: end;
  padding: 30px;
  overflow: hidden;
  color: #fff;
  background: var(--ink-soft);
  border-radius: var(--radius-md);
  isolation: isolate;
}

.story-card:first-child {
  grid-row: 1 / 3;
}

.story-card__image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.story-card--router .story-card__image {
  object-position: 56% center;
}

.story-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 21, 22, 0.38), transparent 80%),
    linear-gradient(180deg, transparent 18%, rgba(24, 21, 22, 0.92) 100%);
  content: "";
}

.story-card::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(135deg, rgba(240, 120, 0, 0.14), transparent 58%);
  content: "";
}

.story-card:not(:first-child)::before {
  background:
    linear-gradient(90deg, rgba(24, 21, 22, 0.78), rgba(24, 21, 22, 0.2) 100%),
    linear-gradient(180deg, rgba(24, 21, 22, 0.04) 12%, rgba(24, 21, 22, 0.86) 100%);
}

.story-card:hover .story-card__image {
  transform: scale(1.04);
}

.story-card h3 {
  max-width: 560px;
  margin: 16px 0 12px;
  font-size: clamp(1.5rem, 3vw, 2.55rem);
}

.story-card:not(:first-child) h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.story-card p {
  max-width: 520px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.news-grid,
.equipment-grid,
.values-grid,
.steps-grid,
.catalog-grid,
.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-card,
.equipment-card,
.value-card,
.step-card,
.catalog-card,
.doc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.news-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 26px;
  transition: 0.2s ease;
}

.news-card:hover {
  box-shadow: var(--shadow);
  transform: none;
}

.news-card h3 {
  margin: 24px 0 13px;
}

.news-card p {
  color: var(--muted);
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  color: var(--muted);
  font-size: 0.875rem;
}

/* Equipment */
.equipment-showcase {
  background: #fff;
}

.equipment-showcase__surface {
  overflow: hidden;
  padding: 24px;
  background: #f2f4f5;
  border: 1px solid #eaedef;
  border-radius: 46px;
}

.equipment-showcase__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-right: 0;
  margin-bottom: 34px;
}

.equipment-showcase__head .eyebrow {
  margin-bottom: 12px;
}

.equipment-showcase__head h2 {
  margin-bottom: 8px;
  font-size: var(--section-title);
}

.equipment-showcase__head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.equipment-showcase__arrows {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  padding-bottom: 4px;
}

.equipment-showcase__arrows button {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--ink);
  background: #ffe0bf;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.equipment-showcase__arrows button:hover {
  color: var(--action-ink);
  background: var(--action-hover);
  transform: translateY(-2px);
}

.equipment-showcase__arrows [data-equipment-prev] .icon {
  transform: rotate(180deg);
}

.equipment-carousel__viewport {
  overflow: hidden;
}

.equipment-carousel__track {
  display: flex;
  width: max-content;
  align-items: stretch;
  gap: 16px;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.equipment-carousel__set {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: stretch;
  gap: 16px;
}

.equipment-showcase__arrows .equipment-autoplay {
  width: auto;
  min-width: 100px;
  padding-inline: 16px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}

.equipment-showcase__arrows button:hover {
  transform: none;
}

.equipment-showcase__arrows button:disabled {
  opacity: 0.45;
  cursor: default;
}

.equipment-slide {
  display: flex;
  min-height: 430px;
  flex: 0 0 300px;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ece9e6;
  border-radius: 28px;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.equipment-slide:hover {
  box-shadow: 0 18px 38px rgba(40, 34, 36, 0.1);
}

.equipment-slide__visual {
  position: relative;
  display: flex;
  min-height: 174px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}

.equipment-slide__visual::before {
  position: absolute;
  width: 180px;
  height: 142px;
  background: radial-gradient(circle, #fff4e8, #ffe1c3 66%, rgba(255, 225, 195, 0));
  border-radius: 50%;
  content: "";
}

.equipment-slide__visual .device {
  transform: scale(1.06);
}

.equipment-slide__visual .device--mesh {
  transform: translateX(-36px) scale(1.06);
}

.equipment-slide__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0 22px 20px;
}

.equipment-slide__tag {
  color: var(--muted);
  font-size: 0.8125rem;
}

.equipment-slide h3 {
  min-height: 49px;
  margin: 6px 0 12px;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.equipment-specs {
  display: grid;
  gap: 4px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.8125rem;
}

.equipment-spec {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.equipment-spec dt {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: baseline;
  white-space: nowrap;
}

.equipment-spec dt::after {
  min-width: 10px;
  flex: 1;
  margin-left: 5px;
  border-top: 1px dotted #c7c2be;
  content: "";
}

.equipment-spec dd {
  margin: 0;
  color: var(--ink-soft);
  text-align: right;
  white-space: nowrap;
}

.equipment-slide__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.equipment-slide__footer > div {
  display: grid;
  gap: 1px;
}

.equipment-slide__footer small {
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.4;
}

.equipment-slide__footer strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.1;
}

.equipment-slide__footer .button {
  min-width: 98px;
  min-height: 39px;
  padding-inline: 16px;
}

.equipment-card,
.catalog-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  overflow: hidden;
}

.equipment-visual,
.catalog-visual {
  position: relative;
  display: flex;
  min-height: 190px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--surface);
}

.equipment-visual::before,
.catalog-visual::before {
  position: absolute;
  width: 170px;
  height: 170px;
  background: var(--orange-soft);
  border-radius: 50%;
  content: "";
}

.device {
  position: relative;
  z-index: 1;
  width: 150px;
  height: 65px;
  background: linear-gradient(145deg, #fff, #d9d6d2);
  border: 1px solid #cfcac5;
  border-radius: 13px;
  box-shadow: 0 18px 30px rgba(33, 29, 31, 0.18);
}

.device::before,
.device::after {
  position: absolute;
  bottom: 14px;
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

.device::before {
  right: 18px;
}

.device::after {
  right: 31px;
  opacity: 0.4;
}

.device--tv {
  width: 150px;
  height: 95px;
  background: linear-gradient(145deg, #2d292b, #0e0c0d);
  border: 7px solid #302c2e;
  border-radius: 9px;
}

.device--tv::before {
  right: 60px;
  bottom: -20px;
  width: 30px;
  height: 18px;
  background: #302c2e;
  border-radius: 0;
}

.device--camera {
  width: 105px;
  height: 80px;
  background: #fff;
  border-radius: 18px 18px 38px 38px;
}

.device--camera::before {
  right: 32px;
  bottom: 19px;
  width: 39px;
  height: 39px;
  background: radial-gradient(circle, #111 0 20%, #4b4b4b 22% 55%, #111 57%);
  border: 5px solid #ddd;
}

.device--camera::after {
  display: none;
}

.device--phone {
  width: 78px;
  height: 132px;
  background: linear-gradient(160deg, #353132, #171415);
  border: 7px solid #302c2e;
  border-radius: 15px;
}

.device--phone::before {
  right: 23px;
  bottom: 8px;
  width: 18px;
  height: 4px;
  background: var(--orange);
  border-radius: 4px;
}

.device--box {
  width: 150px;
  height: 56px;
  background: linear-gradient(145deg, #3a3537, #181516);
  border: 0;
  border-radius: 14px;
}

.device--box::before {
  right: 17px;
  bottom: 15px;
  width: 8px;
  height: 8px;
  background: var(--orange);
  box-shadow: -94px 0 0 rgba(255, 255, 255, 0.28);
}

.device--box::after {
  top: 15px;
  right: 50px;
  bottom: auto;
  width: 48px;
  height: 26px;
  background: transparent;
  border: 4px solid var(--orange);
  border-top-color: transparent;
  border-left-color: transparent;
  opacity: 1;
  transform: rotate(45deg);
}

.device--mesh {
  width: 58px;
  height: 118px;
  background: linear-gradient(145deg, #fff, #dedad6);
  border-radius: 13px;
  box-shadow: 76px 12px 0 -1px #eeeae6, 0 18px 30px rgba(33, 29, 31, 0.18);
  transform: translateX(-36px);
}

.device--mesh::before {
  right: 23px;
  bottom: 16px;
  width: 7px;
  height: 7px;
}

.device--mesh::after {
  right: -53px;
  bottom: 25px;
  width: 7px;
  height: 7px;
  opacity: 0.55;
}

.equipment-card__body,
.catalog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.equipment-card h3,
.catalog-card h3 {
  margin: 14px 0 9px;
}

.equipment-card p,
.catalog-card p {
  color: var(--muted);
}

.equipment-card__footer,
.catalog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.equipment-card__footer strong,
.catalog-card__footer strong {
  font-size: 1.28rem;
}

/* Trust and values */
.trust-section {
  color: var(--ink);
  background: #fff6ed;
  border-top: 1px solid #f1dfcc;
  border-bottom: 1px solid #f1dfcc;
}

.trust-section .section-heading p {
  color: var(--muted);
}

.trust-section .stats-grid {
  gap: 16px;
  overflow: visible;
  background: transparent;
  border: 0;
}

.trust-section .stat {
  background: #fff;
  border: 1px solid #efdac5;
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(93, 55, 24, 0.07);
}

.trust-section .stat strong {
  color: var(--orange-dark);
}

.trust-section .stat span {
  color: var(--ink-soft);
}

.trust-section .review-strip {
  background: #fff;
  border: 1px solid #efdac5;
  box-shadow: 0 14px 36px rgba(93, 55, 24, 0.06);
}

.trust-section .review-strip cite {
  color: var(--muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
}

.stat {
  padding: 42px;
  background: var(--ink);
}

.stat strong {
  display: block;
  margin-bottom: 10px;
  color: #ff9e3d;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.stat span {
  color: rgba(255, 255, 255, 0.72);
}

.review-strip {
  display: grid;
  grid-template-columns: 1.3fr auto;
  align-items: center;
  gap: 30px;
  margin-top: 22px;
  padding: 30px 34px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
}

.review-strip blockquote {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.4;
}

.review-strip cite {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  font-style: normal;
}

.value-card,
.step-card {
  padding: 28px;
}

.value-card__icon,
.step-card__number {
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border-radius: 14px;
  font-weight: 700;
}

.value-card p,
.step-card p {
  margin-bottom: 0;
  color: var(--muted);
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 70px;
}

.faq-aside {
  align-self: start;
}

.faq-aside p {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 36px;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

.faq-plus {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border-radius: 9px;
  font-size: 1.4rem;
  transition: transform 0.2s ease;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 760px;
  margin: 0;
  padding: 0 46px 24px 0;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-plus {
  transform: rotate(45deg);
}

/* Internal pages */
.page-hero {
  padding: 56px 0 70px;
  overflow: hidden;
  background: var(--surface);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 0.86rem;
}

.breadcrumbs span::before {
  margin-right: 7px;
  content: "/";
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 70px;
}

.page-hero__grid > *,
.faq-layout > * {
  min-width: 0;
}

.page-hero h1 {
  max-width: 800px;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 6vw, 5.3rem);
}

.page-hero__lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.2rem;
}

.page-hero__visual {
  position: relative;
  display: flex;
  min-height: 390px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--action-ink);
  background: var(--action);
  border-radius: var(--radius-lg);
}

.page-hero__visual::before,
.page-hero__visual::after {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 44px;
  content: "";
  transform: rotate(45deg);
}

.page-hero__visual::before {
  width: 250px;
  height: 250px;
  top: -80px;
  right: -35px;
}

.page-hero__visual::after {
  width: 190px;
  height: 190px;
  bottom: -70px;
  left: -45px;
}

.page-hero__icon {
  position: relative;
  z-index: 1;
  display: flex;
  width: 150px;
  height: 150px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.17);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 38px;
  font-size: 4.5rem;
  backdrop-filter: blur(10px);
}

.anchor-nav {
  position: sticky;
  z-index: 20;
  top: 157px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.anchor-nav__layout {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 52px;
}

.anchor-nav__title {
  flex: 0 0 auto;
  min-width: 180px;
  padding: 4px 24px 4px 0;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.anchor-nav__inner {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scrollbar-width: none;
}

.anchor-nav__inner a {
  flex: 0 0 auto;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 600;
}

.anchor-nav__inner a:hover {
  color: var(--orange-dark);
}

@media (max-width: 700px) {
  .anchor-nav__layout { gap: 16px; }
  .anchor-nav__title {
    min-width: 0;
    max-width: 48%;
    padding-right: 16px;
    font-size: .9375rem;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .anchor-nav__inner { gap: 24px; }
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.feature-split__visual {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: var(--ink);
  border-radius: var(--radius-lg);
}

.feature-split__visual::before {
  position: absolute;
  top: -25%;
  right: -10%;
  width: 65%;
  height: 150%;
  background: var(--orange);
  border-radius: 90px;
  content: "";
  transform: rotate(35deg);
}

.feature-split__visual::after {
  position: absolute;
  bottom: 55px;
  left: 55px;
  width: 190px;
  height: 90px;
  background: linear-gradient(145deg, #fff, #cfcac4);
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
  content: "";
}

.feature-list {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.feature-list__item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
}

.feature-list__number {
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border-radius: 12px;
  font-weight: 700;
}

.feature-list__item h3 {
  margin-bottom: 5px;
  font-size: 1.15rem;
}

.feature-list__item p {
  margin-bottom: 0;
  color: var(--muted);
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.search-field {
  position: relative;
  width: min(460px, 100%);
}

.search-field input,
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.search-field input {
  padding-left: 44px;
}

.search-field::before {
  position: absolute;
  z-index: 1;
  top: 15px;
  left: 16px;
  font-size: 1rem;
  content: "⌕";
}

.search-field input:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(240, 120, 0, 0.1);
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  font-size: 0.875rem;
  font-weight: 600;
}

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

.catalog-card.is-hidden,
.news-card.is-hidden,
.job-card.is-hidden {
  display: none;
}

.doc-card {
  display: flex;
  min-height: 160px;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
}

.doc-card__icon {
  display: flex;
  width: 48px;
  height: 56px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--action-ink);
  background: var(--action);
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
}

.doc-card h3 {
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.4;
}

.doc-card p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.87rem;
}

.job-list {
  display: grid;
  gap: 12px;
}

.job-card {
  padding: 0 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.job-card .faq-question {
  grid-template-columns: 1fr auto 36px;
}

.job-location {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.job-details {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.job-details > div {
  overflow: hidden;
}

.job-details__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 0 26px;
}

.job-card.is-open .job-details {
  grid-template-rows: 1fr;
}

.job-card.is-open .faq-plus {
  transform: rotate(45deg);
}

.job-details h4 {
  margin: 0 0 8px;
}

.job-details ul {
  margin: 0;
  padding-left: 19px;
  color: var(--muted);
}

.job-details .button {
  margin-top: 18px;
}

/* Account */
.account-page {
  min-height: 80vh;
  padding: 46px 0 90px;
  background: var(--surface);
}

.account-news {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 22px;
  padding: 18px 22px;
  color: #fff;
  background: var(--ink);
  border-radius: 13px;
}

.account-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.account-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.account-card--client {
  grid-row: span 2;
}

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

.avatar {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  color: var(--action-ink);
  background: var(--action);
  border-radius: 15px;
  font-size: 1.25rem;
  font-weight: 700;
}

.account-person h1 {
  margin: 10px 0 6px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.account-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 30px 0;
}

.account-data__item {
  padding: 15px;
  background: var(--surface);
  border-radius: 11px;
}

.account-data__item span,
.balance span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.82rem;
}

.balance {
  padding: 22px;
  background: var(--orange-soft);
  border-radius: 13px;
}

.balance strong {
  display: block;
  margin-bottom: 16px;
  font-size: 2.4rem;
  letter-spacing: -0.05em;
}

.service-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.service-status:last-child {
  border-bottom: 0;
}

.status-label {
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 700;
}

.chat-box {
  min-height: 220px;
}

.chat-message {
  width: 85%;
  margin: 15px 0 20px;
  padding: 14px;
  color: var(--ink-soft);
  background: var(--surface);
  border-radius: 4px 13px 13px 13px;
}

.chat-form {
  display: flex;
  gap: 8px;
}

.chat-form input {
  min-width: 0;
  flex: 1;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
}

/* Footer */
.site-footer {
  padding: 68px 0 25px;
  color: #fff;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.7fr) 1fr;
  gap: 42px;
}

.footer-logo {
  width: 180px;
  padding: 10px;
  background: #fff;
  border-radius: 10px;
}

.footer-brand p {
  max-width: 280px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.91rem;
}

.footer-column h3 {
  margin-bottom: 17px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-link-group + .footer-link-group {
  margin-top: 24px;
}

.footer-column a {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.footer-column a:hover {
  color: #fff;
}

.support-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.support-card span,
.support-card small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
}

.support-card strong {
  display: block;
  margin: 8px 0 2px;
  font-size: 1.35rem;
}

.support-card .button {
  width: 100%;
  margin-top: 17px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 50px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-weight: 700;
}

.floating-help,
.back-to-top {
  position: fixed;
  z-index: 80;
  bottom: max(24px, env(safe-area-inset-bottom));
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--action-ink);
  background: var(--action);
  border: 0;
  border-radius: 17px;
  box-shadow: 0 14px 30px rgba(240, 120, 0, 0.35);
  cursor: pointer;
  font-size: 1.35rem;
}

.floating-help { left: max(24px, env(safe-area-inset-left)); }
.back-to-top { right: max(24px, env(safe-area-inset-right)); }
.back-to-top[hidden] { display: none; }
.back-to-top .icon {
  width: 30px;
  height: 30px;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Inline И-TV wordmark: logo separator, inherited text, no extra word wrapping. */
.itv-wordmark {
  display: inline-block;
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  white-space: nowrap;
  vertical-align: baseline;
}
.itv-wordmark .itv-wordmark__separator { display: none; }
.itv-wordmark .itv-wordmark__arrow {
  display: inline-block;
  width: .32em;
  height: .52em;
  margin-inline: .07em;
  vertical-align: .015em;
  overflow: visible;
  fill: var(--brand-orange, #ED6E00);
  stroke: none;
}
/* A white keyline keeps the orange separator visible on the orange CTA. */
.button--primary .itv-wordmark__arrow path {
  stroke: #fff;
  stroke-width: 1.4;
  stroke-linejoin: round;
  paint-order: stroke fill;
}

/* Modal and toast */
.modal-layer {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(24, 21, 22, 0.62);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.18s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
}

.modal {
  position: relative;
  width: min(620px, 100%);
  max-height: min(860px, calc(100vh - 40px));
  padding: 34px;
  overflow-y: auto;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  animation: modalIn 0.22s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
}

.modal--wide {
  width: min(860px, 100%);
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.modal__logo {
  width: 155px;
  margin-bottom: 27px;
}

.modal h2 {
  max-width: calc(100% - 50px);
  margin-bottom: 10px;
  font-size: var(--section-title);
}

.modal__lead {
  margin-bottom: 26px;
  color: var(--muted);
}

.modal-form,
.form-grid {
  display: grid;
  gap: 15px;
}

.form-grid--2 {
  grid-template-columns: 1fr 1fr;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 9px;
  color: var(--muted);
  font-size: 0.875rem;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--orange);
}

.modal-separator {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 26px 0;
  color: var(--muted);
  font-size: 0.8125rem;
  text-transform: uppercase;
}

.modal-separator::before,
.modal-separator::after {
  height: 1px;
  flex: 1;
  background: var(--line);
  content: "";
}

.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 21px;
  padding: 5px;
  background: var(--surface);
  border-radius: 11px;
}

.tab {
  min-height: 42px;
  border: 0;
  color: var(--muted);
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.tab.is-active {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 3px 12px rgba(33, 29, 31, 0.08);
}

.payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.payment-method {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.payment-method:has(input:checked) {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240, 120, 0, 0.1);
}

.payment-method input {
  margin-right: 9px;
  accent-color: var(--orange);
}

#toast-root {
  position: fixed;
  z-index: 1100;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 8px;
}

.toast {
  width: min(380px, calc(100vw - 40px));
  padding: 16px 18px;
  color: #fff;
  background: var(--ink);
  border-left: 4px solid var(--orange);
  border-radius: 10px;
  box-shadow: var(--shadow);
  animation: toastIn 0.25s ease backwards;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
}

/* Responsive */
/* Keep payment, Other and account actions on one line above the mobile breakpoint. */
@media (min-width: 1181px) and (max-width: 1440px) {
  .header-main { width: calc(100% - 48px); grid-template-columns: 140px 1fr auto; gap: 12px; }
  .header-main .logo { width: 140px; }
  .main-nav { gap: 2px; }
  .site-header .main-nav .nav-link { padding-inline: 6px; font-size: .875rem; white-space: nowrap; }
}

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

  .main-nav,
  .header-actions .city-button,
  .header-actions > .button--primary,
  .header-actions > .button--ghost,
  .audience-nav,
  .mega-menu {
    display: none;
  }

  .header-actions {
    justify-content: end;
  }

  .phone-button,
  .mobile-menu-button {
    display: flex;
  }

  .anchor-nav {
    top: 112px;
  }

.hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 30%);
  }

  .service-showcase__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .service-showcase__tabs {
    width: 100%;
  }

.picker-section .picker {
    grid-template-columns: 1fr;
    column-gap: 32px;
  }

  .picker-section .picker__results {
    width: 100%;
  }

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

  .footer-column:nth-child(4) {
    display: none;
  }
}

@media (max-width: 940px) {
  .section {
    padding: 72px 0;
  }

.equipment-showcase__surface {
    padding: 24px;
    border-radius: 36px;
  }

.equipment-showcase__head {
    padding-right: 0;
  }

  .equipment-slide {
    flex-basis: 280px;
  }

  .hero__shell,
  .hero__content {
    min-height: 500px;
  }

  .hero__content {
    width: 66%;
    padding: 38px;
  }

  .hero__layout .hero__content {
    width: 66%;
    padding: 38px;
  }

  .hero__shell::after {
    background: linear-gradient(90deg, #f1f1f1 5%, rgba(241, 241, 241, 0.94) 42%, rgba(241, 241, 241, 0.35) 78%, transparent);
  }

  .tariff-grid,
  .news-grid,
  .equipment-grid,
  .catalog-grid,
  .docs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .picker,
  .address-banner,
  .feature-split,
  .page-hero__grid,
  .faq-layout,
  .account-grid {
    grid-template-columns: 1fr;
  }

.picker-section .picker {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 32px;
  }

.tariff-carousel {
    padding-inline: 0;
  }

  .tariff-carousel .tariff-card {
    flex-basis: calc((100% - 22px) / 2);
  }

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

  .picker-section .picker__result {
    width: 100%;
    max-width: none;
  }

  .picker__result {
    min-height: 370px;
    border-top: 1px solid #efc99f;
    border-left: 0;
  }

  .address-banner {
    gap: 25px;
  }

  .faq-layout {
    gap: 30px;
  }

  .feature-split__visual {
    min-height: 380px;
  }

  .page-hero__visual {
    min-height: 300px;
  }

  .account-card--client {
    grid-row: auto;
  }

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

@media (max-width: 700px) {
.container {
    width: min(calc(100% - var(--page-gutter) * 2), var(--container));
  }

  .section {
    padding: 58px 0;
  }

.equipment-showcase__surface {
    padding: 24px;
    border-radius: 26px;
  }

.equipment-showcase__head {
    align-items: flex-start;
    padding-right: 0;
    margin-bottom: 24px;
  }

  .equipment-showcase__head .eyebrow {
    margin-bottom: 9px;
  }

.equipment-showcase__head h2 {
    font-size: var(--section-title);
  }

  .equipment-showcase__head p {
    font-size: 0.9rem;
  }

  .equipment-showcase__arrows {
    gap: 7px;
  }

  .equipment-showcase__arrows button {
    width: 42px;
    height: 42px;
  }

  .equipment-showcase__arrows button .icon {
    width: 18px;
    height: 18px;
  }

  .equipment-carousel__track,
  .equipment-carousel__set {
    gap: 12px;
  }

  .equipment-slide {
    min-height: 414px;
    flex-basis: 270px;
    border-radius: 22px;
  }

  .equipment-slide__visual {
    min-height: 160px;
  }

  .equipment-slide__body {
    padding-inline: 19px;
  }

  .tariff-section {
    padding: 52px 0;
  }

.tariff-carousel {
    padding-inline: 0;
  }

  .tariff-carousel__viewport {
    margin: -10px;
    padding: 10px;
  }

  .tariff-carousel .tariff-card {
    flex-basis: 100%;
  }

  .tariff-carousel__arrow {
    width: 42px;
    height: 42px;
  }

  .tariff-carousel__arrow--prev {
    left: 3px;
  }

  .tariff-carousel__arrow--next {
    right: 3px;
  }

  .offers-section__head {
    margin-bottom: 22px;
  }

  .offer-tabs {
    display: flex;
    width: 100%;
    margin-bottom: 22px;
  }

  .offer-tab {
    padding-inline: 17px;
  }

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

  .offer-card {
    min-height: 410px;
  }

  .offer-card img {
    height: 220px;
  }

  .service-showcase-section {
    padding-top: 8px;
  }

  .service-showcase__head {
    margin-bottom: 24px;
  }

  .service-showcase__panel {
    min-height: 620px;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 34px 26px 22px;
  }

  .service-showcase__stage {
    min-height: 620px;
    border-radius: 22px;
  }

.service-showcase__copy h3 {
    font-size: var(--subsection-title);
  }

  .service-showcase__copy p {
    margin-bottom: 24px;
  }

  .service-showcase__copy .button {
    width: 100%;
  }

  .service-showcase__visual {
    min-height: 250px;
  }

  .tariff-section__head {
    margin-bottom: 32px;
  }

  .tariff-section .filter-row {
    display: grid;
    gap: 14px;
  }

  .tariff-filter {
    min-width: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .tariff-section .filter-group {
    max-width: 100%;
    overflow-x: auto;
  }

  .section-heading {
    display: block;
    margin-bottom: 28px;
  }

  .section-heading p {
    margin-top: 12px;
  }

  .status-bar__inner {
    justify-content: center;
  }

  .status-bar__inner > a,
  .phone-button {
    display: none;
  }

  .header-main {
    min-height: 68px;
    grid-template-columns: 135px 1fr auto;
    gap: 12px;
  }

  .logo {
    width: 132px;
  }

  .anchor-nav {
    top: 102px;
  }

  .hero {
    padding: 16px 0 22px;
  }

  .hero__shell {
    min-height: 680px;
    border-radius: 22px;
  }

  .hero__layout {
    gap: 12px;
  }

  .hero__image {
    height: 43%;
    top: auto;
    object-position: 68% center;
  }

  .hero__shell::after {
    background: linear-gradient(180deg, #f1f1f1 0 58%, rgba(241, 241, 241, 0.9) 70%, transparent 100%);
  }

  .hero__content {
    min-height: auto;
    width: 100%;
    justify-content: flex-start;
    padding: 34px 25px;
  }

  .hero__layout .hero__content {
    width: 100%;
    padding: 34px 25px;
  }

  .hero__content h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
    white-space: normal;
  }

  .hero__controls {
    right: 20px;
    bottom: 18px;
  }

  .hero__actions .button {
    flex: 1 1 190px;
  }

  .filter-group + .filter-group {
    margin-left: 0;
  }

  .tariff-grid,
  .news-grid,
  .equipment-grid,
  .values-grid,
  .steps-grid,
  .catalog-grid,
  .docs-grid,
  .stats-grid,
  .job-details__inner {
    grid-template-columns: 1fr;
  }

  .tariff-card:last-child {
    grid-column: auto;
  }

  .tariff-card {
    min-height: 360px;
  }

  .picker__controls,
  .picker__result,
  .address-banner {
    padding: 30px 24px;
  }

  .picker-section .picker__controls {
    padding: 0;
  }

.picker-section .picker {
    padding: 32px;
    border-radius: 22px;
  }

  .picker-section .picker__filters {
    display: grid;
    gap: 14px;
  }

  .picker-section .picker__filters .filter-group {
    max-width: 100%;
    overflow-x: auto;
  }

  .picker-section .picker__results {
    grid-template-columns: 1fr;
  }

  .picker-section .picker__results.is-single {
    grid-template-columns: 1fr;
  }

  .picker-section .picker__controls h2 {
    margin-bottom: 32px;
  }

  .picker-section .range-field + .range-field {
    margin-top: 30px;
  }

  .picker-section .picker__result {
    min-height: 350px;
    padding: 24px;
  }

  .picker-result__numbers {
    grid-template-columns: 1fr;
  }

  .address-form {
    display: grid;
  }

  .address-form input {
    min-height: 48px;
  }

  .mosaic {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .story-card:first-child {
    grid-row: auto;
  }

  .story-card {
    min-height: 330px;
  }

  .stat {
    padding: 30px;
  }

  .review-strip {
    grid-template-columns: 1fr;
    padding: 25px;
  }

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

  .page-hero__grid {
    gap: 34px;
  }

  .page-hero__visual {
    min-height: 250px;
  }

  .feature-split {
    gap: 36px;
  }

  .feature-split__visual {
    min-height: 300px;
  }

  .toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .job-card .faq-question {
    grid-template-columns: 1fr 36px;
  }

  .job-location {
    display: none;
  }

  .account-news,
  .account-card__top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-data,
  .form-grid--2,
  .payment-methods {
    grid-template-columns: 1fr;
  }

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

  .footer-column:nth-child(4) {
    display: block;
  }

  .footer-column {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .modal {
    padding: 28px 22px;
    border-radius: 16px;
  }

  .modal__close {
    top: 12px;
    right: 12px;
  }

  .floating-help,
  .back-to-top {
    bottom: max(14px, env(safe-area-inset-bottom));
  }
  .floating-help { left: max(14px, env(safe-area-inset-left)); }
  .back-to-top { right: max(14px, env(safe-area-inset-right)); }
}

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

/* Unified visual system: orange, white and neutral gray. */
:root {
  --brand-orange: var(--orange);
  /* Legacy aliases keep components on one palette, not separate local shades. */
  --brand-orange-deep: var(--link);
  --brand-orange-pale: var(--orange-soft);
  --brand-orange-wash: var(--surface);
  --brand-black: var(--ink);
  --brand-gray: #717171;
  --brand-surface: var(--surface);
  --brand-border: var(--line);
  --brand-shadow-sm: 0 8px 24px rgba(34, 34, 34, 0.06);
  --brand-shadow-md: 0 18px 44px rgba(34, 34, 34, 0.09);
  --brand-card-radius: 22px;
  --brand-control-radius: 12px;
}

body {
  background: #fff;
}

h1,
h2,
h3,
h4 {
  color: var(--brand-black);
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 800;
  overflow-wrap: anywhere;
  hyphens: auto;
}

h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h4 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.4;
}

h2 {
  font-size: var(--section-title);
}

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

main > section {
  scroll-margin-top: 158px;
}

.section {
  padding-block: 72px;
}

.section--muted {
  background: var(--brand-surface);
}

.section--dark {
  color: var(--brand-black);
  background: var(--brand-orange-wash);
}

.section--dark .section-heading p,
.section--dark .eyebrow {
  color: var(--muted);
}

.section--dark .eyebrow {
  color: var(--orange-dark);
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading h2 {
  max-width: 880px;
}

.section-heading p {
  max-width: 470px;
  font-size: 1.02rem;
}

.eyebrow,
.content-tag,
.tariff-badge {
  color: var(--brand-orange-deep);
}

.eyebrow::before {
  height: 2px;
  background: var(--brand-orange);
}

.button {
  min-height: 48px;
  padding: 11px 22px;
  border-width: 1px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: none;
}

.button:hover {
  transform: none;
}

.button--primary,
.button--dark,
.address-form .button,
.equipment-slide .button,
.catalog-card .button {
  color: var(--action-ink);
  background: var(--action);
  border-color: var(--brand-orange);
  box-shadow: none;
}

.button--primary:hover,
.button--dark:hover,
.address-form .button:hover,
.equipment-slide .button:hover,
.catalog-card .button:hover {
  color: var(--action-ink);
  background: var(--action-hover);
  border-color: var(--brand-orange-deep);
  box-shadow: none;
}

.button--ghost,
.button--light {
  color: var(--link);
  background: #fff;
  border-color: var(--orange);
}

.button--ghost:hover,
.button--light:hover {
  color: var(--brand-orange-deep);
  background: var(--brand-orange-wash);
  border-color: var(--brand-orange);
}

.button--small {
  min-height: 44px;
  padding: 10px 19px;
  font-size: 0.875rem;
}

.button:focus-visible,
.picker-details:focus-visible {
  outline: 3px solid rgba(245, 132, 21, 0.28);
  outline-offset: 3px;
}

.button:active,
.picker-details:active {
  transform: translateY(0);
}

.button:disabled,
.picker-details:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

.tariff-card .card-actions .button,
.picker-section .picker__actions .button,
.picker-section .picker__actions .picker-details {
  height: 44px;
  min-height: 44px;
  flex: 1 1 0;
  justify-content: center;
  padding: 10px 18px;
  border-width: 1px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.tariff-card .button--primary,
.equipment-slide__footer .button,
.equipment-card__footer .button,
.catalog-card__footer .button {
  background: var(--action);
  border-color: var(--action);
  box-shadow: none;
}

.tariff-card .button--ghost,
.tariff-card--featured .button--ghost {
  color: var(--link);
  background: #fff;
  border-color: var(--orange);
}

.equipment-slide__footer .button,
.equipment-card__footer .button,
.catalog-card__footer .button {
  height: 44px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.picker-section .picker__actions .picker-details {
  color: var(--link);
  background: #fff;
  border: 1px solid var(--orange);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.25rem;
  transition: background-color 0.18s ease,
    color 0.18s ease, border-color 0.18s ease;
}

.picker-section .picker__actions .picker-details:hover {
  color: var(--brand-orange-deep);
  background: var(--brand-orange-wash);
  border-color: var(--brand-orange);
  transform: none;
}

.status-bar {
  color: #fff;
  background: var(--brand-black);
  border-bottom: 0;
}

.status-bar a {
  color: #f58415;
}

.status-dot {
  background: #62d995;
  box-shadow: 0 0 0 4px rgba(98, 217, 149, 0.12);
}

.site-header {
  background: #fff;
  box-shadow: 0 7px 25px rgba(34, 34, 34, 0.07);
}

/* Use the text family for compact navigation; reserve Montserrat for headings. */
.status-bar {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.status-bar a {
  font-weight: 600;
}

.site-header .city-button,
.site-header .phone-button,
.site-header .nav-link,
.site-header .audience-nav a,
.site-header .header-actions .button {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25rem;
  letter-spacing: normal;
}

.header-actions .button {
  transition: color 0.18s ease, background-color 0.18s ease,
    border-color 0.18s ease, box-shadow 0.18s ease;
}

.header-actions .button:hover {
  transform: none;
}

.header-main {
  min-height: 80px;
}

.nav-link,
.audience-nav a {
  color: var(--brand-black);
}

.nav-link:hover,
.nav-link.is-active,
.audience-nav a:hover,
.audience-nav a.is-active {
  color: var(--brand-orange-deep);
}

.audience-nav {
  border-top: 1px solid #f0ede9;
  border-bottom: 0;
}

.audience-nav__inner {
  min-height: 46px;
  gap: 8px;
}

.site-header .audience-nav a {
  min-height: 45px;
  align-self: stretch;
  margin-block: 0;
  padding: 12px 14px;
  flex-shrink: 0;
  white-space: nowrap;
  border: 0;
  border-radius: 0;
}

.audience-nav a::after {
  content: none;
}

.mobile-nav--audiences a {
  padding: 12px;
  border: 0;
  border-radius: 0;
}

.audience-nav a:not(.is-active):hover,
.mobile-nav--audiences a:not(.is-active):hover {
  background: var(--surface);
}

.site-header .audience-nav a.is-active,
.mobile-nav--audiences a.is-active {
  color: var(--link);
  background: var(--orange-soft);
  box-shadow: inset 0 -3px 0 var(--orange);
  font-weight: 700;
}

.mega-menu,
.mobile-menu {
  border-color: var(--brand-border);
  box-shadow: var(--brand-shadow-md);
}


.hero {
  padding-top: 26px;
  padding-bottom: 38px;
}

.hero__shell {
  border: 1px solid var(--brand-border);
  box-shadow: none;
}

.hero__shell {
  background: var(--brand-surface);
  border-radius: 28px;
}

.hero__content h1 span,
.service-showcase__copy h3 span {
  color: var(--orange);
}

.hero-dot {
  background: rgba(31, 31, 31, 0.22);
}

.hero-dot.is-active {
  background: var(--brand-orange);
}

.chip,
.offer-tab,
.service-showcase__tab {
  min-height: 40px;
  color: #4d4d4d;
  background: transparent;
  border: 0;
  border-radius: 10px;
  box-shadow: none;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.25rem;
}

.offer-tab {
  min-height: 42px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25rem;
  letter-spacing: normal;
}

.filter-group,
.offer-tabs {
  padding: 4px;
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: 14px;
}

.chip:hover,
.offer-tab:hover,
.service-showcase__tab:hover {
  color: var(--brand-orange-deep);
  background: var(--brand-orange-pale);
}

.chip.is-active,
.offer-tab.is-active,
.service-showcase__tab.is-active {
  color: var(--action-ink);
  background: var(--action);
  box-shadow: none;
}

.tariff-card,
.picker,
.picker__result,
.address-banner,
.offer-card,
.service-showcase__stage,
.story-card,
.news-card,
.equipment-slide,
.equipment-card,
.catalog-card,
.value-card,
.step-card,
.stat,
.review-strip,
.faq-list,
.doc-card,
.job-card,
.account-card,
.modal {
  border-color: var(--brand-border);
  border-radius: var(--brand-card-radius);
  box-shadow: none;
}

.tariff-card,
.picker,
.picker__result,
.offer-card,
.news-card,
.equipment-slide,
.equipment-card,
.catalog-card,
.value-card,
.step-card,
.stat,
.review-strip,
.faq-list,
.doc-card,
.job-card,
.account-card,
.modal {
  background: #fff;
}

.tariff-card:hover,
.offer-card:hover,
.news-card:hover,
.equipment-slide:hover,
.equipment-card:hover,
.catalog-card:hover,
.value-card:hover,
.doc-card:hover {
  border-color: rgba(245, 132, 21, 0.48);
  box-shadow: var(--brand-shadow-sm);
}

.tariff-card--featured {
  border-color: var(--brand-orange);
  background: var(--brand-orange-wash);
}

.tariff-card--featured::after {
  background: transparent;
}

.tariff-badge,
.content-tag {
  color: var(--ink);
  background: var(--brand-orange-pale);
}

.tariff-feature::before {
  background: var(--brand-orange);
}

.tariff-price strong,
.picker-price,
.equipment-slide__footer strong,
.catalog-card__footer strong {
  color: var(--brand-black);
}

.tariff-carousel__arrow,
.equipment-showcase__arrows button {
  color: var(--brand-black);
  background: #fff;
  border: 1px solid var(--brand-border);
  box-shadow: var(--brand-shadow-sm);
}

.tariff-carousel__arrow:hover,
.equipment-showcase__arrows button:hover {
  color: var(--action-ink);
  background: var(--action-hover);
  border-color: var(--brand-orange);
}

.picker-section {
  background: var(--brand-orange-wash);
}

.picker-section .picker {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--brand-border);
  box-shadow: var(--brand-shadow-sm);
}

.picker-section .picker__result {
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
}

.picker-number__icon,
.value-card__icon,
.step-card__number,
.doc-card__icon {
  color: var(--brand-orange-deep);
  background: var(--orange-soft);
}

.picker-section input[type="range"],
.range-field input[type="range"] {
  accent-color: var(--brand-orange);
}

.address-banner {
  background: var(--orange-soft);
  border: 1px solid var(--brand-border);
}

.address-banner::after {
  border-color: rgba(245, 132, 21, 0.09);
}

.offers-section,
.service-showcase-section,
.equipment-showcase,
.trust-section {
  background: #fff;
}

.offer-card {
  background: #fff;
}

.offer-card img {
  border-bottom: 1px solid var(--brand-border);
}

.service-showcase__tabs {
  padding: 4px;
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: 14px;
}

.service-showcase__stage,
.service-showcase__panel {
  background: var(--brand-surface);
}

.service-showcase__panel {
  border-radius: var(--brand-card-radius);
}

.equipment-showcase__surface {
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: 30px;
}

.equipment-slide__visual,
.catalog-visual,
.equipment-visual {
  background: var(--brand-orange-wash);
}

.equipment-slide__visual::before,
.catalog-visual::before,
.equipment-visual::before {
  background: var(--brand-orange-pale);
}

.trust-section {
  background: var(--brand-orange-wash);
}

.trust-section .stat,
.trust-section .review-strip {
  border: 1px solid var(--brand-border);
  box-shadow: none;
}

.trust-section .stat strong {
  color: var(--brand-orange-deep);
}

.section--dark .stat {
  color: var(--brand-black);
  background: #fff;
  border: 1px solid var(--brand-border);
}

.section--dark .stat strong {
  color: var(--brand-orange-deep);
}

.section--dark .stat span {
  color: var(--muted);
}

.faq-list {
  overflow: hidden;
  border: 1px solid var(--brand-border);
}

.faq-layout {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.45fr);
  align-items: start;
  gap: clamp(44px, 6vw, 92px);
}

.faq-aside {
  padding: clamp(28px, 3vw, 40px);
  background: var(--brand-orange-wash);
  border: 1px solid rgba(245, 132, 21, 0.2);
  border-radius: var(--brand-card-radius);
}

.faq-aside h2 {
  margin: 18px 0 48px;
}

.faq-aside p {
  max-width: 330px;
  margin-bottom: 18px;
  line-height: 1.55;
}

.faq-aside .button {
  color: var(--brand-orange-deep);
  background: #fff;
  border-color: rgba(245, 132, 21, 0.28);
}

.faq-aside .button:hover {
  color: var(--action-ink);
  background: var(--action-hover);
  border-color: var(--brand-orange);
}

.faq-item {
  border-color: var(--brand-border);
}

.faq-question {
  min-height: 82px;
  padding: 22px 24px 22px 28px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.faq-question:hover {
  color: var(--brand-orange-deep);
  background: var(--brand-orange-wash);
}

.faq-question:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: -3px;
}

.faq-question > span:first-child {
  line-height: 1.35;
}

.faq-plus {
  flex: 0 0 36px;
  color: var(--brand-orange-deep);
  background: var(--orange-soft);
}

.faq-answer p {
  max-width: none;
  padding: 0 84px 26px 28px;
  line-height: 1.6;
}

.faq-item.is-open .faq-question {
  padding-bottom: 14px;
}

.page-hero {
  color: var(--brand-black);
  background: var(--brand-orange-wash);
}

.page-hero::before {
  opacity: 0.24;
}

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

.page-hero__visual {
  background: #fff;
  border: 1px solid var(--brand-border);
  box-shadow: none;
}

.page-hero__icon {
  color: var(--brand-orange);
}

.toolbar,
.search-field input,
.form-field input,
.form-field select,
.form-field textarea,
.chat-form input {
  border-color: var(--brand-border);
}

.search-field input:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.chat-form input:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 4px rgba(245, 132, 21, 0.1);
}

.account-page {
  background: var(--brand-surface);
}

.account-news {
  color: var(--brand-black);
  background: var(--brand-orange-pale);
  border: 1px solid rgba(245, 132, 21, 0.22);
  box-shadow: none;
}

.account-news span {
  color: var(--muted) !important;
}

.status-label {
  color: #236f50;
  background: #e9f7f0;
}

.site-footer {
  color: var(--brand-black);
  background: var(--brand-surface);
  border-top: 1px solid var(--brand-border);
}

.footer-logo {
  background: #fff;
  border: 1px solid var(--brand-border);
}

.footer-brand p,
.footer-column a,
.footer-bottom,
.support-card p {
  color: var(--muted);
}

.footer-column h3,
.support-card h3,
.support-card strong {
  color: var(--brand-black);
}

.footer-column a:hover {
  color: var(--brand-orange-deep);
}

.support-card {
  background: #fff;
  border: 1px solid var(--brand-border);
  box-shadow: none;
}

.social-link {
  color: var(--brand-black);
  background: #fff;
  border: 1px solid var(--brand-border);
}

.socials a {
  color: var(--brand-orange-deep);
  background: #fff;
  border: 1px solid var(--brand-border);
}

.socials a:hover {
  color: var(--action-ink);
  background: var(--action-hover);
  border-color: var(--brand-orange);
}

.support-card span,
.support-card small {
  color: var(--muted);
}

.footer-bottom {
  border-color: var(--brand-border);
}

.footer-grid { align-items: start; }
.footer-brand { min-width: 0; }

.modal-layer {
  background: rgba(31, 31, 31, 0.36);
}

.modal__close {
  background: var(--brand-surface);
}

.floating-help,
.back-to-top {
  background: var(--brand-orange);
  box-shadow: 0 12px 28px rgba(245, 132, 21, 0.24);
}

.toast {
  color: var(--brand-black);
  background: #fff;
  border: 1px solid var(--brand-border);
  box-shadow: var(--brand-shadow-md);
}

/* Shared layout and interaction hierarchy. */
.section h2,
.service-showcase__title {
  font-size: var(--section-title);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.section-heading,
.offers-section__head,
.service-showcase__head,
.equipment-showcase__head {
  margin-bottom: 32px;
}

.section-heading h2,
.service-showcase__head h2 {
  margin: 0;
}

.section-heading p {
  max-width: 620px;
  margin: 16px 0 0;
  font-size: 16px;
}

.eyebrow {
  margin-bottom: 16px;
}

.tariff-carousel__arrow--prev { left: -58px; }
.tariff-carousel__arrow--next { right: -58px; }

.tariff-carousel__arrow,
.equipment-showcase__arrows button {
  box-shadow: none;
}

.picker-section {
  background-image: none;
}

.picker-section .picker {
  background: #fff;
  box-shadow: none;
}

.picker-section .picker__filters {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--brand-border);
}

.picker-section .picker__controls { align-self: center; }

.picker-section .picker__result {
  background: #fff;
  box-shadow: none;
}

.picker-section .picker__result:not(.picker__result--alternative) {
  border-color: var(--orange);
}

.picker-section .picker__result--alternative .content-tag {
  color: var(--muted);
  background: var(--surface);
}

.picker-section .range-field__top label {
  font-size: 14px;
}

.filter-group,
.offer-tabs,
.service-showcase__tabs,
.tariff-section .filter-group,
.picker-section .picker__filters .filter-group {
  padding: 4px;
  gap: 2px;
  background: var(--surface);
  border: 1px solid var(--brand-border);
  border-radius: 14px;
}

.chip,
.offer-tab,
.service-showcase__tab,
.tariff-section .chip,
.picker-section .picker__filters .chip {
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 10px;
  box-shadow: none;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.chip.is-active,
.offer-tab.is-active,
.offer-tab.is-active:hover,
.service-showcase__tab.is-active,
.tariff-section .chip.is-active,
.tariff-section .chip.is-active:hover,
.picker-section .picker__filters .chip.is-active,
.picker-section .picker__filters .chip:hover {
  color: var(--action-ink);
  background: var(--action);
  box-shadow: none;
}

.product-illustration {
  display: block;
  width: min(100%, 240px);
  height: 164px;
  flex: 0 0 auto;
}

.equipment-slide__visual,
.catalog-visual,
.equipment-visual {
  background: var(--surface);
}

.equipment-slide__visual::before,
.catalog-visual::before,
.equipment-visual::before {
  display: none;
}

.equipment-slide__visual { min-height: 184px; }
.equipment-slide__body { padding-top: 20px; }
.equipment-slide h3 { min-height: 50px; }

.service-showcase__stage,
.service-showcase__panel { border-radius: var(--brand-card-radius); }
.service-showcase__panel { padding: 40px; }
.service-showcase__copy p { margin-bottom: 28px; }
.service-showcase__head h2 { flex-shrink: 0; }
.faq-aside { padding: 0; border: 0; background: transparent; }
.faq-aside h2 { margin: 0 0 24px; }
.trust-section .stat strong { font-size: clamp(2.5rem, 4vw, 3.75rem); }

@media (max-width: 1200px) {
  .hero__layout { grid-template-columns: 1fr; }
  .equipment-showcase__head { flex-wrap: wrap; }
}

@media (max-width: 940px) {
  .tariff-carousel { padding-bottom: 62px; }
  .tariff-carousel__arrow { top: auto; bottom: 0; transform: none; }
  .tariff-carousel__arrow--prev { left: calc(50% - 56px); }
  .tariff-carousel__arrow--next { right: calc(50% - 56px); }
}

@media (max-width: 700px) {
  .section { padding-block: 48px; }
  .hero__layout .hero__content { padding: 28px 22px; }
  .hero__layout .hero__content h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
  .equipment-showcase__surface { padding: 16px; border-radius: 22px; }
  .equipment-showcase__head { flex-direction: column; gap: 20px; }
  .equipment-showcase__arrows button { width: 44px; height: 44px; }
  .equipment-showcase__arrows .equipment-autoplay { width: auto; min-width: 132px; }
  .equipment-slide { flex-basis: min(270px, calc(100vw - 76px)); }
  .picker-section .picker { padding: 20px; }
  .picker-section .picker__filters .filter-group,
  .tariff-section .filter-group { width: 100%; overflow-x: auto; scrollbar-width: thin; }
  .picker-section .picker__filters .chip,
  .tariff-section .chip { padding-inline: 10px; }
  .picker-section .picker__result { padding: 20px; }
  .picker-section .picker__actions { flex-direction: column; align-items: stretch; }
  .service-showcase__panel { padding: 28px 20px; min-height: 520px; }
  .service-showcase__stage { min-height: 520px; }

  .service-showcase__copy .button { min-width: 0; }
}

@media (max-width: 980px) {
  .section {
    padding-block: 72px;
  }

  main > section {
    scroll-margin-top: 104px;
  }
}

@media (max-width: 700px) {
  .section {
    padding-block: 56px;
  }

  .status-bar {
    background: var(--brand-black);
  }

  .hero__shell,
  .equipment-showcase__surface,
  .picker-section .picker {
    border-radius: 22px;
  }

  .tariff-card,
  .picker__result,
  .offer-card,
  .service-showcase__stage,
  .equipment-slide,
  .stat,
  .review-strip,
  .faq-list,
  .account-card,
  .modal {
    border-radius: 18px;
  }

  .footer-column {
    border-color: var(--brand-border);
  }

  .faq-aside {
    padding: 24px;
  }

  .faq-aside h2 {
    margin-bottom: 28px;
  }

  .faq-question {
    min-height: 74px;
    gap: 14px;
    padding: 19px 18px 19px 20px;
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 60px 22px 20px;
  }

}

@media (max-width: 940px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}
