:root {
  --bg: #f6f7f8;
  --surface: #ffffff;
  --surface-muted: #edf1f3;
  --text: #172027;
  --muted: #64717b;
  --line: #dce3e7;
  --accent: #0c6f8f;
  --accent-strong: #084f68;
  --accent-soft: #dff2f6;
  --warm: #c7792f;
  --shadow: 0 18px 50px rgba(23, 32, 39, 0.08);
  --max-width: 1180px;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 max(20px, calc((100vw - var(--max-width)) / 2));
  border-bottom: 1px solid rgba(220, 227, 231, 0.9);
  background: rgba(246, 247, 248, 0.88);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 236px;
  height: auto;
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 14px;
}

.nav-item {
  position: relative;
  display: flex;
}

.site-nav a,
.footer-nav a {
  border-radius: 6px;
  transition: background-color 160ms ease, color 160ms ease;
}

.site-nav a {
  padding: 10px 11px;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav .is-active {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 120;
  display: flex;
  flex-direction: column;
  min-width: 230px;
  gap: 2px;
  padding: 8px;
  border: 1px solid #cfd9df;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(23, 32, 39, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.nav-submenu a {
  display: block;
  width: 100%;
  padding: 9px 10px;
  color: var(--muted);
  white-space: nowrap;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  min-height: clamp(560px, 74vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 112px max(20px, calc((100vw - var(--max-width)) / 2)) 76px;
  background: #e9eef1;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 247, 248, 0.98) 0%, rgba(246, 247, 248, 0.9) 34%, rgba(246, 247, 248, 0.55) 58%, rgba(246, 247, 248, 0.14) 100%),
    linear-gradient(180deg, rgba(23, 32, 39, 0.06), rgba(23, 32, 39, 0.2)),
    url("assets/hero-abstract.png") center right / cover no-repeat;
}

.hero-content {
  position: relative;
  max-width: 710px;
}

.hero-layout {
  position: relative;
  display: grid;
  gap: clamp(34px, 5vw, 58px);
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

.hero h1 {
  max-width: 1120px;
  font-size: clamp(48px, 5.2vw, 72px);
  line-height: 1.02;
}

.hero-lower {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 570px);
  gap: clamp(38px, 5vw, 72px);
  align-items: end;
}

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

.hero-service-column {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  border: 1px solid rgba(12, 111, 143, 0.18);
  border-radius: 6px;
  background: #f8fbfc;
  box-shadow: 0 10px 24px rgba(23, 32, 39, 0.08);
}

.hero-service-column a {
  padding: 11px 0;
  border-top: 1px solid rgba(100, 113, 123, 0.28);
  color: #263a45;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease;
}

.hero-service-column a:last-child {
  border-bottom: 1px solid rgba(100, 113, 123, 0.28);
}

.hero-service-column a:hover,
.hero-service-column a:focus-visible {
  border-color: var(--accent);
  color: var(--accent-strong);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 0.98;
  font-weight: 760;
  letter-spacing: 0;
}

.inner-main {
  min-height: calc(100vh - 286px);
  padding: 88px 20px 96px;
}

.page-intro {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: left;
}

.page-intro-wide {
  width: min(var(--max-width), 100%);
}

.center-content {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: left;
}

.page-intro {
  display: grid;
  gap: 24px;
  margin-bottom: 48px;
}

.page-intro h1.eyebrow {
  max-width: none;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 750;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.page-intro p {
  max-width: 820px;
}

.page-intro p,
.center-content {
  color: var(--muted);
  font-size: 18px;
}

.center-content {
  display: grid;
  gap: 18px;
}

.center-list {
  display: grid;
  gap: 8px;
  max-width: 690px;
  margin: 14px 0 0;
  padding-left: 24px;
  list-style: disc;
  color: var(--text);
  font-weight: 650;
}

.center-list li {
  padding: 0;
}

.center-list li::marker {
  color: var(--accent);
}

.service-list {
  display: grid;
  gap: 0;
  margin-top: 28px;
}

.service-list a {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  transition: color 160ms ease, padding-left 160ms ease;
}

.service-list a:last-child {
  border-bottom: 1px solid var(--line);
}

.service-list a:hover,
.service-list a:focus-visible {
  color: var(--accent-strong);
  padding-left: 10px;
}

.service-list h2 {
  font-size: 22px;
  line-height: 1.2;
}

.service-list p {
  color: var(--muted);
}

.services-catalog {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

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

.services-catalog-group {
  min-width: 0;
}

.services-catalog-group + .services-catalog-group {
  position: relative;
}

.services-catalog-group + .services-catalog-group::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -27px;
  border-left: 1px solid #cfd9df;
}

.services-catalog-group h2 {
  min-height: 66px;
  margin-bottom: 20px;
  font-size: 26px;
  line-height: 1.25;
}

.services-catalog-links {
  display: grid;
  gap: 0;
}

.services-catalog-links a {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
  transition: color 160ms ease, padding-left 160ms ease;
}

.services-catalog-links a:last-child {
  border-bottom: 1px solid var(--line);
}

.services-catalog-links a:hover,
.services-catalog-links a:focus-visible {
  padding-left: 10px;
  color: var(--accent-strong);
}

.services-pricing-link {
  display: block;
  width: fit-content;
  margin: 48px auto 0;
  color: var(--accent-strong);
  font-size: 22px;
  font-weight: 750;
}

.service-detail-intro {
  width: min(920px, 100%);
}

.service-detail {
  width: min(920px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.service-detail p + p,
.service-detail ul + p,
.service-detail ol + p {
  margin-top: 14px;
}

.service-detail-section {
  margin-top: 42px;
}

.service-detail-section h2 {
  margin-bottom: 16px;
  color: var(--accent-strong);
  font-size: 25px;
  line-height: 1.25;
}

.service-detail-block + .service-detail-block {
  margin-top: 30px;
}

.service-detail h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.35;
}

.service-detail ul,
.service-detail ol {
  display: grid;
  gap: 4px;
  margin: 10px 0 0;
  padding-left: 24px;
}

.service-detail strong {
  color: var(--text);
}

.careers-intro,
.careers-content {
  width: min(920px, 100%);
}

.careers-content {
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.careers-section + .careers-section {
  margin-top: 38px;
}

.careers-section h2 {
  margin-bottom: 14px;
  color: var(--accent-strong);
  font-size: 23px;
  line-height: 1.3;
}

.careers-section p + p,
.careers-section ul + p {
  margin-top: 14px;
}

.careers-section ul {
  display: grid;
  gap: 4px;
  margin: 10px 0 0;
  padding-left: 24px;
}

.contacts-content {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

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

.contact-company {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.contact-company h2 {
  margin-bottom: 18px;
  font-size: 22px;
  line-height: 1.25;
}

.company-details {
  display: grid;
  gap: 11px;
  margin: 0;
}

.company-details div {
  display: grid;
  gap: 3px;
}

.company-details dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-details dd {
  margin: 0;
  color: var(--text);
  font-size: 15px;
}

.company-details a {
  color: var(--accent-strong);
  font-weight: 700;
}

.technology-content {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

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

.technology-company {
  min-width: 0;
}

.technology-company + .technology-company {
  position: relative;
}

.technology-company + .technology-company::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -27px;
  border-left: 1px solid #cfd9df;
}

.technology-company h2 {
  margin-bottom: 20px;
  font-size: 26px;
  line-height: 1.25;
}

.technology-company p {
  color: var(--muted);
}

.technology-lead {
  margin-bottom: 12px;
  color: var(--text) !important;
  font-weight: 700;
}

.technology-subheading {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.3;
}

.technology-group {
  margin-top: 24px;
}

.technology-group h3 {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.3;
}

.technology-group ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.about-content {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

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

.about-company {
  min-width: 0;
}

.about-company + .about-company {
  position: relative;
}

.about-company + .about-company::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -27px;
  border-left: 1px solid #cfd9df;
}

.about-company h2 {
  min-height: 98px;
  margin-bottom: 22px;
  font-size: 25px;
  line-height: 1.22;
  text-transform: uppercase;
}

.about-details {
  display: grid;
  gap: 14px;
  margin: 0;
}

.about-details div {
  display: grid;
  gap: 4px;
}

.about-details dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-details dd {
  margin: 0;
  color: var(--text);
  font-size: 15px;
}

.about-activity {
  margin-top: 28px;
}

.about-activity h3 {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.35;
}

.about-activity p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.pricing-content {
  display: grid;
  gap: 36px;
  width: min(820px, 100%);
  margin: 0 auto;
}

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

.pricing-section + .pricing-section {
  padding-top: 36px;
  border-top: 1px solid #cfd9df;
}

.pricing-section h1.eyebrow {
  font-size: 28px;
  font-weight: 750;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.pricing-section p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-lead {
  max-width: 650px;
  margin-top: 28px;
  color: #33414a;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-strong);
}

.button-secondary {
  border-color: rgba(12, 111, 143, 0.28);
  background: rgba(255, 255, 255, 0.64);
  color: var(--accent-strong);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--accent);
  background: var(--surface);
}

.section {
  width: min(var(--max-width), calc(100vw - 40px));
  margin: 0 auto;
  padding: 76px 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading-row {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: end;
  max-width: none;
}

.section-heading-row > p {
  color: var(--muted);
  font-size: 17px;
}

h2 {
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

.intro-section {
  display: grid;
  gap: 22px;
}

.intro-text {
  display: grid;
  gap: 18px;
  align-content: start;
  max-width: 820px;
  color: var(--muted);
  font-size: 18px;
}

.intro-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.intro-list li::marker {
  color: var(--accent);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  color: var(--accent-strong);
  font-weight: 700;
}

.services-preview {
  border-top: 1px solid var(--line);
}

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

.service-card {
  display: grid;
  min-height: 150px;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(12, 111, 143, 0.42);
  box-shadow: 0 22px 54px rgba(23, 32, 39, 0.12);
  transform: translateY(-2px);
}

.service-card h3 {
  font-size: 20px;
}

.service-card p,
.footer-entity p {
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
  padding: 44px max(20px, calc((100vw - var(--max-width)) / 2));
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-company-group {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(140px, 0.75fr);
  gap: 24px;
  min-width: 0;
}

.footer-company-group-separated {
  position: relative;
}

.footer-company-group-separated::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -27px;
  border-left: 1px solid #cfd9df;
}

.footer-entity,
.footer-services {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
}

.footer-entity h2,
.footer-services h2 {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.footer-entity p {
  margin: 0;
  font-size: 13px;
}

.footer-entity a {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 700;
}

.footer-entity address {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

.footer-legal-list {
  display: grid;
  gap: 4px;
  margin: 0;
}

.footer-legal-list div {
  display: flex;
  gap: 5px;
}

.footer-legal-list dt,
.footer-legal-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-legal-list dt {
  font-weight: 700;
}

.footer-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  gap: 8px;
  font-size: 13px;
}

.footer-nav a {
  width: fit-content;
  padding: 2px 0;
  color: var(--muted);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--accent-strong);
}

.footer-nav .footer-pricing {
  color: var(--accent-strong);
  font-weight: 700;
}

@media (max-width: 1020px) {
  .site-header {
    min-height: 66px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - 86px);
    gap: 2px;
    padding: 10px;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
    -webkit-overflow-scrolling: touch;
  }

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

  .site-nav a {
    padding: 12px;
  }

  .nav-item {
    display: block;
  }

  .nav-submenu {
    position: static;
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    margin: 0 0 6px 14px;
    padding: 0 0 0 10px;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-submenu a {
    display: block;
    width: 100%;
    padding: 8px 10px;
    white-space: normal;
  }

  .hero {
    min-height: 760px;
    padding-top: 96px;
  }

  .hero-layout {
    gap: 38px;
  }

  .hero-lower {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-service-links {
    width: min(620px, 100%);
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(246, 247, 248, 0.94) 0%, rgba(246, 247, 248, 0.86) 48%, rgba(246, 247, 248, 0.46) 100%),
      url("assets/hero-abstract.png") center / cover no-repeat;
  }

  .section-heading-row,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-company-group-separated {
    padding-top: 28px;
    border-top: 1px solid #cfd9df;
  }

  .footer-company-group-separated::before {
    content: none;
  }

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

}

@media (max-width: 620px) {
  .brand-logo {
    width: 210px;
  }

  .hero {
    min-height: auto;
    padding: 58px 20px 24px;
  }

  .hero-layout {
    gap: 26px;
  }

  .hero-lower {
    gap: 24px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(246, 247, 248, 0.96) 0%, rgba(246, 247, 248, 0.91) 50%, rgba(246, 247, 248, 0.64) 100%),
      url("assets/hero-abstract.png") center / cover no-repeat;
  }

  h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .hero h1 {
    font-size: 36px;
  }

  .inner-main {
    padding: 58px 16px 64px;
  }

  .page-intro {
    gap: 18px;
    margin-bottom: 34px;
  }

  .page-intro h1.eyebrow {
    font-size: 23px;
  }

  .service-detail {
    font-size: 16px;
  }

  .service-detail-section {
    margin-top: 34px;
  }

  .service-detail-section h2 {
    font-size: 22px;
  }

  .service-detail h3 {
    font-size: 18px;
  }

  .services-catalog-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services-catalog-group + .services-catalog-group {
    padding-top: 32px;
    padding-left: 0;
    border-top: 1px solid #cfd9df;
    border-left: 0;
  }

  .services-catalog-group + .services-catalog-group::before {
    content: none;
  }

  .services-catalog-group h2 {
    min-height: 0;
    font-size: 22px;
  }

  .services-catalog-links a {
    font-size: 17px;
  }

  .services-pricing-link {
    margin-top: 38px;
    font-size: 20px;
  }

  .pricing-section h1.eyebrow {
    font-size: 23px;
  }

  .careers-content {
    font-size: 16px;
  }

  .careers-section + .careers-section {
    margin-top: 32px;
  }

  .careers-section h2 {
    font-size: 20px;
  }

  .center-list {
    max-width: none;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 17px;
  }

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

  .hero-service-column + .hero-service-column {
    padding-left: 10px;
  }

  .hero-service-column {
    padding: 4px 10px;
  }

  .hero-service-column a {
    padding: 8px 0;
    font-size: 13px;
  }

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

  .button {
    width: 100%;
  }

  .section {
    width: calc(100vw - 32px);
    padding: 52px 0;
  }

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

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

  .site-footer {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .contacts-grid,
  .about-grid,
  .footer-company-group,
  .technology-grid {
    grid-template-columns: 1fr;
  }

  .about-company + .about-company,
  .technology-company + .technology-company {
    padding-top: 28px;
    padding-left: 0;
    border-top: 1px solid #cfd9df;
    border-left: 0;
  }

  .about-company + .about-company::before,
  .technology-company + .technology-company::before {
    content: none;
  }

  .about-company h2 {
    min-height: 0;
  }

}
