:root {
  --bg-main: #f3f3f5;
  --bg-card: #ffffff;
  --text-primary: #111217;
  --text-secondary: #474b57;
  --accent: #d7a34e;
  --divider: #2f2f31;
  --border-soft: #e8d8ba;
  --shadow-soft: 0 8px 18px rgba(21, 21, 24, 0.08);
  --radius: 14px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-primary);
  background: var(--bg-main);
  line-height: 1.45;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(243, 243, 245, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(17, 18, 23, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.brand__logo {
  width: 108px;
  height: auto;
  display: block;
}

.brand__mark {
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.brand__name {
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  text-transform: uppercase;
  color: #222429;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav__link {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.97rem;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav__link:hover {
  color: #7d5a1f;
}

.nav__link[aria-current="page"] {
  font-weight: 700;
}

.hero {
  padding: 76px 0 68px;
  text-align: center;
}

.hero__title {
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.13;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-wrap: balance;
}

.hero__text {
  max-width: 670px;
  margin: 24px auto 0;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.divider {
  width: 120px;
  height: 1px;
  background: var(--divider);
  margin: 50px auto 0;
  opacity: 0.7;
}

.scale {
  padding: 22px 0 80px;
}

.scale__title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  line-height: 1.1;
  margin-bottom: 36px;
  font-weight: 800;
}

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

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
  min-height: 130px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.stat-card__value {
  font-weight: 800;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-card__label {
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 95%;
}

.bottom-divider {
  margin-top: 22px;
}

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

.capabilities {
  padding: 26px 0 90px;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 40px;
}

.feature + .feature {
  margin-top: 64px;
}

.feature__title {
  font-size: clamp(2rem, 1.3vw, 1rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.feature__text {
  margin-top: 18px;
  font-size: 1.23rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.feature__codes-list {
  margin-top: 18px;
  list-style: none;
  display: grid;
  gap: 12px;
}

.feature__codes-list li {
  color: #2f3440;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.42;
}

.feature__media {
  min-height: 280px;
  border-radius: 22px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.feature__media--platforms {
  background-image: none;
}

.feature__media--capabilities {
  background-image: none;
}

.feature__media--codes {
  background-image: none;
}

.feature__media img,
.direction-card__media img,
.product-item__media img,
.benefit-row__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.feature--reverse .feature__content {
  order: 2;
}

.feature--reverse .feature__media {
  order: 1;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.directions {
  padding: 16px 0 34px;
}

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

.direction-card {
  display: flex;
  flex-direction: column;
}

.direction-card--link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.direction-card--link:hover {
  transform: translateY(-2px);
}

.direction-card__media {
  min-height: 220px;
  border-radius: 12px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.direction-card__media--market {
  background-image: none;
}

.direction-card__media--quantitative {
  background-image: none;
}

.direction-card__media--qualitative {
  background-image: none;
}

.direction-card__title {
  margin-top: 14px;
  font-size: 1.32rem;
  line-height: 1.3;
  font-weight: 500;
}

.directions__note {
  margin-top: 18px;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.partners {
  padding: 34px 0 90px;
}

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

.partner-card {
  text-align: center;
}

.partner-card__logo {
  width: 320px;
  height: 190px;
  /* max-width: 320px; */
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.88;
}

.partner-card__name {
  margin: 8px auto 0;
  max-width: 330px;
  font-size: 1.12rem;
  line-height: 1.28;
}

.site-footer {
  background: #e9e9ec;
  border-top: 1px solid rgba(17, 18, 23, 0.08);
  padding: 34px 0 40px;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.site-footer__meta {
  max-width: 760px;
}

.site-footer__line {
  color: #2f343f;
  font-size: 0.87rem;
  line-height: 1.55;
}

.site-footer__line + .site-footer__line {
  margin-top: 3px;
}

.site-footer__line--bold {
  font-weight: 700;
}

.site-footer__line--spaced {
  margin-top: 10px;
  max-width: 630px;
}

.site-footer__link {
  color: #5c636f;
  text-decoration: none;
  border-bottom: 1px solid rgba(92, 99, 111, 0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-footer__link:hover {
  color: #2f343f;
  border-color: rgba(47, 52, 63, 0.6);
}

.site-footer__nav {
  min-width: 190px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__title {
  font-size: 0.87rem;
  color: #6b707a;
  margin-bottom: 2px;
}

.site-footer__nav-link {
  text-decoration: none;
  color: #2f343f;
  font-size: 0.87rem;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.site-footer__nav-link:hover {
  color: #7d5a1f;
}

.site-footer__nav-link[aria-current="page"] {
  font-weight: 700;
}

.products-page {
  padding: 92px 0 84px;
}

.products-page__title {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2.7rem, 4vw, 4rem);
  line-height: 1.06;
  text-align: center;
  font-weight: 500;
}

.products-page__lead {
  margin: 28px auto 0;
  max-width: 920px;
  text-align: center;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: #30343d;
}

.product-item {
  margin-top: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.product-item__media {
  min-height: 268px;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.product-item__media--consumer {
  background-image:
    linear-gradient(135deg, rgba(252, 105, 18, 0.4), rgba(255, 131, 20, 0.58)),
    url("assets/images/product-1.jpg");
}

.product-item__media--qualitative {
  background-image:
    linear-gradient(135deg, rgba(244, 100, 18, 0.32), rgba(255, 139, 30, 0.5)),
    url("assets/images/product-2.jpg");
}

.product-item__media--quantitative {
  background-image:
    linear-gradient(135deg, rgba(252, 104, 18, 0.36), rgba(255, 139, 30, 0.52)),
    url("assets/images/product-3.jpg");
}

.product-item__title {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2rem, 2.4vw, 2.45rem);
  line-height: 1.1;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.product-item__list {
  margin-top: 24px;
  list-style: none;
}

.product-item__list li {
  position: relative;
  padding-left: 28px;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.48;
  color: #2f3440;
}

.product-item__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2b2e36;
}

.product-item--reverse .product-item__media {
  order: 2;
}

.product-item--reverse .product-item__content {
  order: 1;
}

.product-detail-links {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-detail-link {
  text-decoration: none;
  color: inherit;
  background: #efeff1;
  border: 1px solid #dfdfe4;
  border-radius: 12px;
  padding: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-detail-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.product-detail-link h3 {
  font-size: 1.2rem;
}

.product-detail-link p {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #3b404a;
  line-height: 1.45;
}

.product-detail-link span {
  display: inline-block;
  margin-top: 10px;
  color: #7d5a1f;
  font-weight: 600;
}

.detail-page-back a {
  color: #646b77;
  text-decoration: none;
  border-bottom: 1px solid rgba(100, 107, 119, 0.4);
}

.service-card {
  margin-top: 46px;
  /* padding: 22px 20px;
  background: #efeff1;
  border: 1px solid #dfdfe4;
  border-radius: 14px; */
}

.service-card__accent {
  color: #e67e22;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.45;
}

.service-card__title,
.service-card__subtitle {
  margin-top: 14px;
  font-size: 1.25rem;
  line-height: 1.3;
}

.service-card__text {
  margin-top: 8px;
  color: #383d47;
  font-size: 0.93rem;
  line-height: 1.45;
}

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

.service-flow__item {
  background: #e7e7eb;
  border-radius: 8px;
  padding: 12px;
  position: relative;
}

.service-flow__item h4 {
  font-size: 0.88rem;
  line-height: 1.3;
}

.service-flow__item p {
  margin-top: 6px;
  color: #3c414b;
  font-size: 0.85rem;
  line-height: 1.4;
}

.service-flow__item:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.05rem;
  color: #4a4f58;
}

.service-accordion {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.service-accordion details {
  border: 1px solid #dddde2;
  border-radius: 10px;
  background: #ececef;
  padding: 10px 12px;
}

.service-accordion summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 0.92rem;
}

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

.service-accordion summary::after {
  content: "+";
  float: right;
  color: #656b76;
}

.service-accordion details[open] summary::after {
  content: "−";
}

.service-accordion ul {
  margin-top: 8px;
  padding-left: 16px;
  color: #363b45;
  font-size: 0.88rem;
  line-height: 1.45;
}

.service-accordion__desc {
  margin-top: 10px;
  color: #3b404a;
  font-size: 0.88rem;
  line-height: 1.45;
}

.service-benefits {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 8px;
}

.service-benefits__lead {
  border: 2px solid #ef9f53;
  border-radius: 8px;
  background: #f8f8fb;
  color: #ea8a32;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
  font-weight: 600;
}

.service-benefits__item {
  background: #e7e7eb;
  border-radius: 8px;
  padding: 12px;
}

.service-benefits__item h4 {
  font-size: 0.9rem;
}

.service-benefits__item p {
  margin-top: 6px;
  color: #3b404a;
  font-size: 0.86rem;
  line-height: 1.4;
}

.service-key-points,
.service-grid-2 {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.service-key-points p,
.service-grid-2 p {
  background: #e7e7eb;
  border-radius: 8px;
  padding: 10px 12px;
  color: #353a44;
  font-size: 0.87rem;
  line-height: 1.4;
}

.service-mini-flow {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.service-mini-flow article {
  background: #e7e7eb;
  border-radius: 8px;
  padding: 10px;
}

.service-mini-flow h4 {
  font-size: 0.87rem;
}

.service-mini-flow p {
  margin-top: 5px;
  color: #3b404a;
  font-size: 0.83rem;
  line-height: 1.4;
}

.star-mark {
  font-family: "Times New Roman", Times, serif;
  font-size: 2.2rem;
  line-height: 1;
  text-align: center;
  margin-bottom: 6px;
  color: #2c2f35;
}

.star-mark--small {
  text-align: left;
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.tech-page {
  padding: 78px 0 58px;
}

.tech-page__title {
  text-align: center;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2.4rem, 3.4vw, 3.3rem);
  font-weight: 500;
  line-height: 1.08;
}

.tech-page__lead {
  max-width: 760px;
  margin: 16px auto 0;
  text-align: center;
  color: #30343d;
  font-size: 1rem;
  line-height: 1.55;
}

.tech-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 28px;
}

.tech-card {
  min-height: 210px;
}

.tech-card__logo {
  width: 100%;
  max-width: 220px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

.tech-card__title {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.tech-card__text {
  margin-top: 6px;
  color: #3b3f49;
  font-size: 0.95rem;
  line-height: 1.48;
}

.tech-benefits {
  padding: 10px 0 82px;
}

.tech-benefits__title {
  text-align: center;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
}

.tech-benefits__lead {
  max-width: 640px;
  margin: 14px auto 0;
  text-align: center;
  color: #333844;
  font-size: 1rem;
  line-height: 1.52;
}

.benefit-row {
  margin-top: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  align-items: center;
  gap: 36px;
}

.benefit-row__title {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  font-weight: 500;
  line-height: 1.12;
}

.benefit-row__description {
  margin-top: 10px;
  color: #343944;
  font-size: 1rem;
  line-height: 1.52;
}

.benefit-row__media {
  min-height: 264px;
  border-radius: 20px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.benefit-row__media--react-python {
  background-image:
    linear-gradient(135deg, rgba(27, 30, 36, 0.68), rgba(20, 21, 25, 0.68)),
    url("assets/images/tech-combo-1.jpg");
}

.benefit-row__media--postgres {
  background-image:
    linear-gradient(135deg, rgba(230, 233, 242, 0.42), rgba(210, 214, 228, 0.48)),
    url("assets/images/tech-combo-2.jpg");
}

.benefit-row--reverse .benefit-row__media {
  order: 1;
}

.benefit-row--reverse .benefit-row__text {
  order: 2;
}

@media (max-width: 900px) {
  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    gap: 18px 20px;
  }

  .hero {
    padding-top: 48px;
  }

  .feature {
    gap: 30px;
  }

  .feature__title {
    font-size: clamp(1.8rem, 4.6vw, 2.4rem);
  }

  .feature__text {
    font-size: 1.06rem;
  }

  .feature__codes-list li {
    font-size: 1.02rem;
  }

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

  .directions__note {
    font-size: 1.35rem;
  }

  .partners {
    padding-bottom: 72px;
  }

  .partner-card:last-child {
    grid-column: 1 / -1;
    max-width: 360px;
    margin: 0 auto;
  }

  .site-footer__inner {
    flex-direction: column;
    gap: 20px;
  }

  .site-footer__nav {
    min-width: 0;
  }

  .brand__logo {
    width: 100px;
  }

  .products-page {
    padding: 64px 0 60px;
  }

  .products-page__lead {
    font-size: 1.06rem;
    max-width: 820px;
  }

  .product-item {
    margin-top: 38px;
    gap: 26px;
  }

  .product-item__title {
    font-size: clamp(1.9rem, 3.8vw, 2.35rem);
  }

  .product-item__list {
    margin-top: 16px;
  }

  .product-item__list li {
    font-size: 1.04rem;
    padding-left: 24px;
  }

  .product-detail-links {
    margin-top: 30px;
    gap: 10px;
  }

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

  .service-benefits__lead {
    grid-column: 1 / -1;
  }

  .tech-page {
    padding: 58px 0 48px;
  }

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

  .benefit-row {
    margin-top: 24px;
    gap: 24px;
  }

  .benefit-row__title {
    font-size: clamp(1.45rem, 3.5vw, 1.9rem);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .hero {
    text-align: left;
    padding: 40px 0 52px;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .brand {
    gap: 10px;
  }

  .brand__logo {
    width: 88px;
  }

  .brand__name {
    font-size: 0.86rem;
  }

  .nav {
    gap: 12px 14px;
  }

  .nav__link {
    font-size: 0.9rem;
  }

  .hero__title,
  .hero__text {
    margin-left: 0;
    margin-right: 0;
  }

  .divider {
    margin-left: 0;
  }

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

  .stat-card {
    align-items: flex-start;
    text-align: left;
    min-height: 118px;
  }

  .stat-card__label {
    max-width: 100%;
  }

  .capabilities {
    padding: 12px 0 64px;
  }

  .feature,
  .feature--reverse {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature + .feature {
    margin-top: 40px;
  }

  .feature--reverse .feature__content,
  .feature--reverse .feature__media {
    order: initial;
  }

  .feature__media {
    min-height: 212px;
  }

  .feature__title {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .feature__text {
    margin-top: 12px;
    font-size: 1rem;
  }

  .feature__codes-list {
    margin-top: 12px;
    gap: 10px;
  }

  .feature__codes-list li {
    font-size: 0.98rem;
  }

  .section-title {
    text-align: left;
    font-size: clamp(1.72rem, 8.2vw, 2.08rem);
  }

  .directions {
    padding: 4px 0 24px;
  }

  .directions-grid,
  .partners-grid {
    margin-top: 18px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .direction-card__media {
    min-height: 200px;
  }

  .direction-card__title {
    margin-top: 10px;
    font-size: 1.06rem;
  }

  .directions__note {
    margin-top: 16px;
    font-size: 1.08rem;
  }

  .partners {
    padding: 22px 0 64px;
  }

  .partner-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .partner-card {
    text-align: left;
  }

  .partner-card__name {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    font-size: 1rem;
  }

  .site-footer {
    padding: 24px 0 28px;
  }

  .site-footer__line,
  .site-footer__title,
  .site-footer__nav-link {
    font-size: 0.79rem;
  }

  .site-footer__line--spaced {
    max-width: 100%;
  }

  .products-page {
    padding: 40px 0 46px;
  }

  .products-page__title {
    text-align: left;
    font-size: clamp(2rem, 11vw, 2.6rem);
  }

  .products-page__lead {
    margin-top: 16px;
    text-align: left;
    font-size: 1rem;
  }

  .product-item,
  .product-item--reverse {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-item {
    margin-top: 28px;
  }

  .product-item__media {
    min-height: 208px;
    border-radius: 16px;
  }

  .product-item--reverse .product-item__media,
  .product-item--reverse .product-item__content {
    order: initial;
  }

  .product-item__title {
    font-size: 1.55rem;
  }

  .product-item__list li {
    font-size: 1rem;
    line-height: 1.42;
  }

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

  .product-detail-link {
    padding: 14px;
  }

  .service-card {
    margin-top: 28px;
    padding: 14px;
  }

  .service-flow,
  .service-key-points,
  .service-grid-2,
  .service-mini-flow,
  .service-benefits {
    grid-template-columns: 1fr;
  }

  .service-flow__item:not(:last-child)::after {
    content: "";
  }

  .service-card__title,
  .service-card__subtitle {
    font-size: 1.1rem;
  }

  .star-mark,
  .star-mark--small {
    text-align: left;
    margin-bottom: 4px;
    font-size: 1.45rem;
  }

  .tech-page {
    padding: 38px 0 36px;
  }

  .tech-page__title,
  .tech-benefits__title {
    text-align: left;
    font-size: 2rem;
  }

  .tech-page__lead,
  .tech-benefits__lead {
    margin-top: 10px;
    text-align: left;
    font-size: 0.96rem;
  }

  .tech-grid {
    margin-top: 22px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tech-card__logo {
    height: 54px;
  }

  .tech-card__title {
    margin-top: 8px;
    font-size: 0.95rem;
  }

  .tech-card__text {
    font-size: 0.9rem;
  }

  .tech-benefits {
    padding: 8px 0 48px;
  }

  .benefit-row,
  .benefit-row--reverse {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .benefit-row {
    margin-top: 18px;
  }

  .benefit-row--reverse .benefit-row__media,
  .benefit-row--reverse .benefit-row__text {
    order: initial;
  }

  .benefit-row__media {
    min-height: 208px;
    border-radius: 14px;
  }

  .benefit-row__title {
    font-size: 1.4rem;
  }

  .benefit-row__description {
    margin-top: 8px;
    font-size: 0.95rem;
  }
}
