:root {
  --page: #141722;
  --page-deep: #10131d;
  --panel: #f5f5f4;
  --panel-ink: #1c202b;
  --muted: #8d94a5;
  --muted-strong: #c7ccd7;
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(20, 23, 34, 0.22);
  --accent: #ff5578;
  --blue: #72c9f4;
  --card: #171b27;
  --card-lift: #3d4962;
  --container: 1760px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 16% 8%, rgba(62, 75, 103, 0.22), transparent 34rem),
    radial-gradient(circle at 72% 0%, rgba(47, 55, 78, 0.22), transparent 28rem),
    var(--page);
  color: #ffffff;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, black, transparent 62%);
}

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

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

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

h1 {
  max-width: 1500px;
  margin-bottom: 28px;
  font-size: clamp(48px, 7vw, 132px);
  font-weight: 900;
}

h2 {
  font-size: clamp(34px, 4.2vw, 76px);
  font-weight: 900;
}

h3 {
  font-size: clamp(21px, 1.45vw, 30px);
  font-weight: 900;
}

p {
  color: var(--muted-strong);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 270px 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 86px;
  padding: 0 44px;
  background: rgba(20, 23, 34, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 220px;
  height: 42px;
}

.brand img {
  width: 220px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 760;
  text-transform: lowercase;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  border-color: rgba(255, 255, 255, 0.48);
  color: #ffffff;
}

.header-actions {
  display: flex;
  gap: 8px;
}

.icon-button,
.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
}

.menu-toggle span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.section {
  padding: 92px 0;
  scroll-margin-top: 108px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 38px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.section-label::before,
.dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.hero {
  position: relative;
  min-height: calc(100svh - 86px);
  padding: 150px 0 0;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 900px;
  height: 900px;
  left: 14%;
  top: -240px;
}

.hero::after {
  width: 560px;
  height: 560px;
  right: 5%;
  top: -190px;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 42px;
  align-items: end;
}

.hero__lead p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.button::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.button-light {
  color: #ffffff;
}

.button-dark {
  color: var(--panel-ink);
}

.button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-ribbon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  background: rgba(16, 19, 29, 0.38);
}

.hero-ribbon span {
  min-height: 70px;
  padding: 24px 44px;
  border-right: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 850;
  text-transform: lowercase;
}

.hero-ribbon span:last-child {
  border-right: 0;
}

.light-panel {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--panel-ink);
}

.light-panel > *,
.section-split-heading > *,
.industries > *,
.hero__lead > *,
.footer-top > * {
  min-width: 0;
}

.light-panel p {
  color: #434958;
}

.about-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  min-height: 520px;
  padding: 38px 42px;
}

.about-panel .section-label {
  color: var(--panel-ink);
}

.about-panel h2 {
  margin-bottom: 24px;
}

.about-panel__body {
  align-self: end;
}

.about-panel__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 44px 0 28px;
}

.about-panel__stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--panel-ink);
  font-size: clamp(42px, 4vw, 76px);
  line-height: 0.9;
  font-weight: 900;
}

.about-panel__stats span {
  color: #555d6d;
  font-size: 13px;
  font-weight: 700;
}

.section-split-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: start;
  margin-bottom: 34px;
}

.section-split-heading h2 {
  margin: 0;
}

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

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

.software-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(18, 22, 32, 0.76);
}

.software-card__mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.software-card h3 {
  margin-bottom: 18px;
}

.software-card p {
  margin-bottom: 22px;
  font-size: 15px;
}

.registry-badge {
  width: fit-content;
  margin-top: auto;
  margin-bottom: 24px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 85, 120, 0.45);
  border-radius: 999px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 850;
}

.software-card a {
  color: #ffffff;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.solution-card {
  display: flex;
  flex-direction: column;
  min-height: 290px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: rgba(18, 22, 32, 0.68);
  scroll-margin-top: 108px;
}

.solution-card.is-featured {
  grid-column: span 2;
  background: var(--card-lift);
}

.solution-card h3 {
  margin-bottom: 14px;
}

.solution-card p {
  margin-bottom: 30px;
  font-size: 14px;
}

.solution-card a {
  margin-top: auto;
  color: #ffffff;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.solution-card__icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.solution-card__icon svg {
  width: 23px;
  height: 23px;
  stroke-width: 2.2;
}

.industries {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1fr);
  gap: 44px;
}

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

.industry-item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 40px;
  gap: 20px;
  align-items: center;
  min-height: 64px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.86);
}

.industry-item > * {
  min-width: 0;
}

.industry-item span:first-child {
  color: #7d8495;
  font-weight: 800;
}

.industry-item > div {
  display: grid;
  gap: 9px;
}

.industry-item h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.15;
}

.industry-item p {
  display: none;
  margin: 0;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.48;
}

.industry-item.is-open {
  align-items: start;
  background: var(--card-lift);
}

.industry-item.is-open p {
  display: block;
}

.industry-toggle {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #ffffff;
  align-self: center;
  justify-self: end;
  flex: 0 0 auto;
}

.industry-item.is-open .industry-toggle {
  align-self: start;
}

.advantages-head {
  max-width: 1040px;
  margin: 0 auto 56px;
  text-align: center;
}

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

.ring-card {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.ring-card::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.ring-card:nth-child(1)::before {
  left: 24%;
  top: 5%;
}

.ring-card:nth-child(2)::before {
  left: 14%;
  bottom: 20%;
}

.ring-card:nth-child(3)::before {
  top: 8%;
  right: 18%;
}

.ring-card:nth-child(4)::before {
  left: 18%;
  bottom: 18%;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.project-card {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.project-thumb {
  position: relative;
  display: grid;
  align-content: space-between;
  justify-items: start;
  min-height: clamp(170px, 18vw, 240px);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: #1b2432;
  color: #ffffff;
}

.project-card.is-active .project-thumb {
  border-color: rgba(255, 93, 132, 0.58);
  background: #222c3e;
}

.project-card.is-active .project-thumb::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.project-thumb svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.8;
}

.project-thumb span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.12;
}

.project-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.partners-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.partner-pill {
  display: inline-grid;
  place-items: center;
  min-height: 76px;
  min-width: 126px;
  max-width: 310px;
  padding: 18px 24px;
  border-radius: 999px;
  background: #e5e5e3;
  color: var(--panel-ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}

.partner-pill.is-wide {
  min-width: 260px;
}

.documents-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  min-height: 520px;
  padding: 38px 42px;
}

.documents-panel .section-label {
  color: var(--panel-ink);
}

.doc-list {
  display: grid;
  gap: 0;
}

.doc-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--panel-ink);
}

.doc-item strong {
  display: block;
  text-transform: uppercase;
}

.doc-item span {
  display: block;
  margin-top: 3px;
  color: #666d7d;
  font-size: 13px;
}

.doc-item i {
  color: var(--accent);
  font-style: normal;
  font-weight: 900;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  gap: clamp(28px, 4vw, 76px);
  align-items: start;
  padding: clamp(26px, 3vw, 52px);
}

.contact-info .section-label {
  color: var(--panel-ink);
}

.contact-info h2,
.contact-form h2 {
  font-size: clamp(30px, 3.2vw, 54px);
  line-height: 0.98;
}

.contact-info p {
  max-width: 640px;
  margin-bottom: 30px;
  font-size: 17px;
}

.contact-list {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.contact-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 74px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--panel-ink);
}

.contact-row span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #666d7d;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-row strong {
  color: var(--panel-ink);
  font-size: clamp(19px, 1.55vw, 30px);
  line-height: 1.02;
  font-weight: 900;
  overflow-wrap: normal;
  word-break: normal;
}

.contact-row em {
  grid-column: 2;
  margin-top: -12px;
  color: #666d7d;
  font-style: normal;
  font-size: 15px;
}

.contact-map {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: #e8e8e6;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.18);
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.84) contrast(1.02);
  pointer-events: none;
}

.contact-map__marker {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.contact-map__marker span {
  display: block;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
}

.contact-map__label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 5px;
  max-width: 560px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(20, 23, 34, 0.92);
  color: #ffffff;
  pointer-events: none;
}

.contact-map__label strong {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-map__label span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding-left: clamp(0px, 3vw, 44px);
  border-left: 1px solid var(--line-dark);
}

.contact-form h2 {
  margin-bottom: 10px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 11px 13px;
  border: 1px solid #d7d8dc;
  border-radius: 6px;
  background: #ffffff;
  color: var(--panel-ink);
}

.contact-form button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.contact-form textarea {
  min-height: 136px;
  resize: vertical;
}

.consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: #656c7b;
  font-size: 13px;
}

.consent input {
  width: 16px;
  min-height: 16px;
  margin-top: 2px;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: #2f7d65;
  font-weight: 760;
}

.form-note.is-error {
  color: #b42345;
}

.contact-location {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(26px, 4vw, 70px);
  align-items: center;
}

.contact-location .contact-map {
  min-height: 460px;
}

.contact-location__body {
  padding: 36px 0;
}

.contact-location__body h2 {
  margin-bottom: 24px;
}

.contact-location__body p {
  max-width: 660px;
  font-size: 18px;
}

.contact-location__address {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.contact-location__body a:not(.button) {
  color: #ffffff;
  font-weight: 850;
}

.contact-location__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.requisites-main-section {
  padding-top: 26px;
}

.requisites-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(30px, 5vw, 86px);
  align-items: start;
  padding: clamp(26px, 3vw, 52px);
}

.requisites-summary .section-label {
  color: var(--panel-ink);
}

.requisites-summary h2 {
  margin-bottom: 22px;
  font-size: clamp(32px, 3.6vw, 64px);
  line-height: 0.98;
}

.requisites-summary p {
  max-width: 560px;
  margin-bottom: 30px;
  font-size: 17px;
}

.requisites-list {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.legal-main-section {
  padding-top: 24px;
}

.legal-document {
  display: grid;
  gap: 18px;
  max-width: 1040px;
  padding: clamp(24px, 4vw, 58px);
  color: var(--panel-ink);
}

.legal-document p,
.legal-document li {
  max-width: 920px;
  margin: 0;
  color: #3d4453;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.62;
}

.legal-document h2 {
  max-width: 920px;
  margin: 22px 0 2px;
  color: var(--panel-ink);
  font-size: clamp(24px, 2.3vw, 38px);
  line-height: 1.08;
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 24px;
}

.legal-document li::marker {
  color: var(--accent);
}

.legal-document__notice {
  padding: 20px;
  border-left: 4px solid var(--accent);
  background: rgba(255, 93, 132, 0.08);
  font-weight: 850;
}

.legal-document__copyright {
  margin-top: 12px;
  font-weight: 900;
}

.requisite-row {
  display: grid;
  grid-template-columns: minmax(170px, 0.38fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}

.requisite-row span {
  color: #666d7d;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.requisite-row strong {
  color: var(--panel-ink);
  font-size: clamp(21px, 1.7vw, 32px);
  line-height: 1.02;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 68px 0 26px;
  border-top: 1px solid var(--line);
  background: var(--page-deep);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr 120px;
  gap: 46px;
  align-items: start;
  margin-bottom: 70px;
}

.footer-column h3 {
  margin: 0 0 18px;
  font-size: 18px;
}

.footer-column a,
.footer-column span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted-strong);
  font-size: 14px;
}

.footer-mini-form {
  display: grid;
  gap: 10px;
}

.footer-mini-form input {
  width: 100%;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: #ffffff;
}

.to-top {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-logo img {
  width: min(1420px, 100%);
  margin: 0 auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  color: #7f8797;
  font-size: 12px;
}

.footer-bottom a {
  color: inherit;
}

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

.contacts-page .page-hero {
  padding: 88px 0 36px;
}

.contact-main-section {
  padding-top: 26px;
}

.page-hero h1 {
  max-width: 1240px;
}

.page-hero p {
  max-width: 780px;
  font-size: 20px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-chip {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.filter-chip.is-active,
.filter-chip:hover {
  background: var(--accent);
  border-color: var(--accent);
}

[hidden] {
  display: none !important;
}

.text-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  padding: 44px;
}

.text-panel .section-label {
  color: var(--panel-ink);
}

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

.link-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--panel-ink);
  font-weight: 850;
  text-transform: uppercase;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 220px auto;
  }

  .main-nav {
    position: fixed;
    left: 24px;
    right: 24px;
    top: 96px;
    display: none;
    flex-direction: column;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(20, 23, 34, 0.96);
  }

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

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

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

  .industries,
  .section-split-heading,
  .about-panel,
  .documents-panel,
  .contact-panel,
  .contact-location,
  .requisites-panel,
  .text-panel,
  .hero__lead {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding-left: 0;
    border-left: 0;
  }

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

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

@media (max-width: 760px) {
  h1 {
    font-size: 38px;
    line-height: 0.98;
  }

  h2 {
    font-size: 32px;
    line-height: 1;
  }

  h3 {
    font-size: 21px;
    line-height: 1;
  }

  .container {
    width: min(var(--container), calc(100% - 30px));
  }

  .site-header {
    min-height: 70px;
    padding: 0 15px;
  }

  .brand,
  .brand img {
    width: 170px;
  }

  .main-nav {
    left: 15px;
    right: 15px;
    top: 78px;
  }

  .hero {
    min-height: auto;
    padding: 92px 0 0;
  }

  .hero-ribbon {
    position: relative;
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .hero-ribbon span {
    min-height: 48px;
    padding: 15px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 62px 0;
  }

  .contacts-page .page-hero {
    padding: 76px 0 30px;
  }

  .contact-main-section,
  .requisites-main-section {
    padding-top: 18px;
  }

  .about-panel,
  .documents-panel,
  .contact-panel,
  .requisites-panel,
  .text-panel {
    padding: 22px;
  }

  .about-panel__stats,
  .solutions-grid,
  .software-grid,
  .projects-grid,
  .advantages-rings,
  .form-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .solution-card.is-featured {
    grid-column: auto;
  }

  .industry-item {
    grid-template-columns: 42px minmax(0, 1fr) 36px;
    gap: 12px;
    padding: 17px 0;
    align-items: center;
  }

  .industry-item h3 {
    font-size: 17px;
    line-height: 1.18;
  }

  .industry-item p {
    font-size: 13px;
    line-height: 1.46;
  }

  .industry-toggle {
    width: 34px;
    height: 34px;
  }

  .partner-pill {
    width: auto;
    min-width: 118px;
    min-height: 58px;
    padding: 14px 16px;
    font-size: 12px;
  }

  .partner-pill.is-wide {
    min-width: 190px;
  }

  .contact-map {
    min-height: 240px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .requisite-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-row em {
    grid-column: auto;
    margin-top: -4px;
  }

  .contact-location .contact-map {
    min-height: 270px;
  }

  .contact-location__body {
    padding: 0;
  }

  .footer-top {
    gap: 26px;
  }

  .to-top {
    width: 82px;
    height: 82px;
  }

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

@media (max-width: 430px) {
  .header-actions .icon-button {
    display: none;
  }

  .brand,
  .brand img {
    width: 150px;
  }

  .solution-card,
  .project-thumb {
    min-height: 240px;
  }

  .project-thumb {
    min-height: 170px;
  }
}
