:root {
  --smart-blue: #00b7e8;
  --deep-blue: #005ea8;
  --graphite: #1f2937;
  --steel-gray: #6b7280;
  --light-gray: #f3f4f6;
  --white: #ffffff;

  --dark-blue: #002b4f;
  --border: #dbe3ec;
  --shadow: 0 16px 40px rgba(31, 41, 55, 0.08);

  --container: 1120px;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--graphite);
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font-family: inherit;
}

.container {
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
}

/* Header */

.header {
  position: relative;
  z-index: 10;
  background: var(--white);
  border-bottom: 1px solid rgba(219, 227, 236, 0.7);
}

.header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  width: 148px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 1;

  gap: 32px;

  font-size: 14px;
  font-weight: 700;
  color: var(--graphite);
}

.nav a {
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--deep-blue);
}

.header__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.header__phone {
  font-size: 16px;
  font-weight: 800;
}

.header__callback {
  font-size: 14px;
  font-weight: 700;
  color: var(--deep-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.header__callback:focus-visible {
  outline: 2px solid var(--smart-blue);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Buttons */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 32px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: var(--white);
  background: linear-gradient(90deg, var(--deep-blue), var(--smart-blue));
}

.button--primary:hover {
  background: linear-gradient(90deg, #004f91, #00a9d8);
}

.button--outline {
  color: var(--deep-blue);
  background: var(--white);
  border-color: rgba(0, 94, 168, 0.45);
}

.button--outline:hover {
  border-color: var(--deep-blue);
}

/* Hero */

.hero {
  min-height: 520px;
  background:
    linear-gradient(90deg, #ffffff 0%, #f7fbff 44%, rgba(255, 255, 255, 0) 70%),
    linear-gradient(180deg, #eef7ff 0%, #ffffff 100%);
  overflow: hidden;
}

.hero__inner {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 72px 0 88px;
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--smart-blue);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 28px;
  color: var(--graphite);
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero__text {
  max-width: 470px;
  margin: 0 0 40px;
  color: var(--graphite);
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
}

.hero__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-radius: 12px;
  z-index: 1;
}

.hero__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.6) 30%, rgba(255,255,255,0) 60%);
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

/* Section common */

.section-head {
  margin-bottom: 56px;
}

.section-head .eyebrow {
  margin-bottom: 0;
}

.section-head--row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--deep-blue);
  font-size: 14px;
  font-weight: 700;
}

/* Services */

.services {
  padding: 64px 0 72px;
  background: var(--white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;

  box-shadow: 0 10px 28px rgba(31, 41, 55, 0.04);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;

  padding: 0;
  min-height: 100%;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 94, 168, 0.28);
  box-shadow: 0 18px 44px rgba(0, 94, 168, 0.12);
}

.service-card__icon {
  width: 100%;
  height: 150px;
  object-fit: cover;
  margin: 0;
}

.service-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 24px 24px 28px;
  text-align: center;
}
.service-card h3 {
  margin: 0 0 14px;

  color: var(--graphite);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
}

.service-card p {
  margin: 0;

  color: var(--graphite);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}
.services__action {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* About */

.about {
  position: relative;
  padding: 64px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 45%, rgba(0, 183, 232, 0.22), transparent 34%),
    linear-gradient(135deg, #001f3d 0%, var(--deep-blue) 100%);
  overflow: hidden;
}

.about::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 520px;
  height: 360px;
  opacity: 0.22;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, 0.22) 49% 50%, transparent 51%),
    linear-gradient(45deg, transparent 0 48%, rgba(255, 255, 255, 0.18) 49% 50%, transparent 51%);
  background-size: 44px 44px;
}

.about__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  align-items: center;
  gap: 72px;
}

.about .eyebrow {
  color: var(--smart-blue);
}

.about__text p:not(.eyebrow) {
  max-width: 430px;
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 500;
}

.kpi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.kpi__item {
  padding: 8px 52px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.kpi__item:last-child {
  border-right: 0;
}

.kpi__item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--smart-blue);
  font-size: 52px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.kpi__item span {
  display: block;
  color: var(--white);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
}

/* Projects */

.projects {
  padding: 72px 0 64px;
  background: var(--white);
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.project-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(31, 41, 55, 0.04);
}

.project-card__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.project-card__body {
  position: relative;
  min-height: 164px;
  padding: 26px 28px 32px;
}

.project-card h3 {
  margin: 0 0 16px;
  color: var(--graphite);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
}

.project-card p {
  max-width: 250px;
  margin: 0;
  color: var(--graphite);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}

.project-card a {
  position: absolute;
  right: 28px;
  bottom: 26px;
  color: var(--graphite);
  font-size: 26px;
  line-height: 1;
}

/* Contacts */

.contacts {
  padding: 0 0 72px;
  background: var(--white);
}

.contacts__inner {
  display: grid;
  grid-template-columns: 0.75fr 1.45fr;
  gap: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.contacts-list {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contacts-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 20px;
}

.contacts-list img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.contacts-list a,
.contacts-list address {
  color: var(--graphite);
  font-size: 17px;
  line-height: 1.55;
  font-style: normal;
  font-weight: 700;
}

.request-form {
  display: grid;
  gap: 16px;
}

.request-form .eyebrow {
  margin-bottom: 8px;
}

.request-form__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  color: var(--graphite);
  font-size: 15px;
  font-weight: 500;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.request-form input {
  height: 48px;
  padding: 0 18px;
}

.request-form textarea {
  min-height: 72px;
  resize: vertical;
  padding: 16px 18px;
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: var(--steel-gray);
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: var(--smart-blue);
  box-shadow: 0 0 0 3px rgba(0, 183, 232, 0.14);
}

.request-form .button {
  justify-self: start;
  min-width: 240px;
  margin-top: 2px;
}

/* Footer */

.footer {
  padding: 38px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: grid;
  grid-template-columns: 180px 1fr 210px;
  align-items: start;
  gap: 56px;
}

.logo--footer img {
  width: 128px;
}

.footer__brand p {
  margin: 16px 0 0;
  color: var(--steel-gray);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.footer__nav h3 {
  margin: 0 0 14px;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 800;
}

.footer__nav a {
  display: block;
  margin-bottom: 9px;
  color: var(--steel-gray);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
}

.footer__nav a:hover {
  color: var(--deep-blue);
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer__phone {
  color: var(--graphite);
  font-size: 20px;
  font-weight: 800;
}

.footer__callback {
  color: var(--deep-blue);
  font-size: 15px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Accessibility */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

/* Adaptive */

@media (max-width: 1100px) {
  .container {
    width: min(100% - 40px, var(--container));
  }

  .header__inner {
    gap: 20px;
  }

  .nav {
    gap: 24px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__image {
    inset: 0 0 0 40%;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .service-card {
    border: 1px solid var(--border);
    border-radius: 8px;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .kpi__item {
    padding: 8px 32px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__contacts {
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .header__inner {
    min-height: auto;
    padding: 20px 0;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 14px;
    overflow-x: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    min-height: auto;
  }

  .hero__content {
    padding: 56px 0 360px;
  }

  .hero__image {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    height: 360px;
  }

  .hero__image::before {
    background:
      linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 18%, rgba(255, 255, 255, 0) 48%);
  }

  .services,
  .projects {
    padding: 56px 0;
  }

  .about {
    padding: 56px 0;
  }

  .kpi {
    grid-template-columns: 1fr;
    gap: 24px;
  }

.kpi__item {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
}
.kpi__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}
  .projects__grid,
  .contacts__inner {
    grid-template-columns: 1fr;
  }

  .contacts__inner {
    gap: 40px;
  }

  .request-form__row {
    grid-template-columns: 1fr;
  }

  .footer__nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 28px);
  }

  .logo img {
    width: 128px;
  }

  .header__contacts {
    align-items: flex-start;
    width: 100%;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero__text {
    font-size: 17px;
  }

  .hero__content {
    padding-bottom: 300px;
  }

  .hero__image {
    height: 300px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 0;
  }

  .service-card__body {
    padding: 24px 20px;
  }

  .section-head--row {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
  }

  .project-card__image {
    height: 160px;
  }

  .footer__nav {
    grid-template-columns: 1fr;
  }
}

.nav__link--active {
  position: relative;
  color: var(--deep-blue);
}

.nav__link--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  height: 3px;
  background: var(--smart-blue);
  border-radius: 999px;
}

/* About page */


.about-page-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: var(--graphite);
  background:
    linear-gradient(90deg, #ffffff 0%, #f7fbff 45%, rgba(255,255,255,0) 70%),
    linear-gradient(180deg, #eef7ff 0%, #ffffff 100%);
}

.about-page-hero__image {
  position: absolute;
  inset: 0 0 0 6%;
  overflow: hidden;
  z-index: 1;
}

.about-page-hero__inner {
  position: relative;
  min-height: 330px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
}

.about-page-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 520px;
  padding: 72px 0;
}

.about-page-hero__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,0.6) 35%,
    rgba(255,255,255,0) 70%
  );
}

.about-page-hero h1 {
  margin: 0 0 28px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.about-page-hero p {
  margin: 0;
  max-width: 520px;
  font-size: 22px;
  line-height: 1.55;
  font-weight: 600;
}


.about-page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.about-values,
.about-scale,
.about-team,
.about-cta,
.company-details {
  background: var(--white);
}

.about-values {
  padding: 64px 0 56px;
}

.about-values h2,
.about-scale h2,
.about-team h2,
.company-details h2 {
  margin: 0 0 40px;
  color: var(--graphite);
  font-size: 28px;
  line-height: 1.25;
  font-weight: 800;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.about-value-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;

  box-shadow: 0 10px 28px rgba(31, 41, 55, 0.04);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.about-value-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 94, 168, 0.28);
  box-shadow: 0 18px 44px rgba(0, 94, 168, 0.12);
}

.about-value-card__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.about-value-card__body {
  padding: 24px;
  text-align: center;
  flex-grow: 1;
}

.about-value-card h3 {
  margin: 0 0 14px;
  color: var(--graphite);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
}

.about-value-card p {
  margin: 0;
  color: var(--graphite);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}

.about-scale {
  padding: 40px 0 56px;
}

.about-scale .container {
  padding-top: 44px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-scale__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about-scale__item {
  min-height: 150px;
  padding: 0 44px 40px;
  border-right: 1px solid var(--border);
}

.about-scale__item:first-child {
  padding-left: 0;
}

.about-scale__item:last-child {
  border-right: 0;
  padding-right: 0;
}

.about-scale__item strong {
  display: block;
  margin-bottom: 12px;
  color: var(--deep-blue);
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.about-scale__item span {
  display: block;
  margin-bottom: 16px;
  color: var(--graphite);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}

.about-scale__item p {
  margin: 0;
  color: var(--graphite);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

.about-team {
  padding: 32px 0 56px;
}

.about-team__inner {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: center;
  gap: 72px;
}

.about-team__text p {
  margin: 0;
  max-width: 420px;
  color: var(--graphite);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
}

.about-team__image {
  overflow: hidden;
  border-radius: 12px;
}

.about-team__image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.about-cta {
  padding: 0 0 64px;
}

.about-cta__box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 32px 40px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 183, 232, 0.12), transparent 34%),
    linear-gradient(135deg, #f4f8fc 0%, #ffffff 100%);
  border: 1px solid rgba(219, 227, 236, 0.85);
}

.about-cta h2 {
  margin: 0 0 10px;
  color: var(--graphite);
  font-size: 24px;
  line-height: 1.3;
  font-weight: 800;
}

.about-cta p {
  margin: 0;
  max-width: 520px;
  color: var(--graphite);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}

.about-cta__actions {
  display: flex;
  gap: 24px;
}

.about-cta__actions .button {
  min-width: 220px;
}

.company-details {
  padding: 34px 0 48px;
  border-top: 1px solid var(--border);
}

.company-details h2 {
  margin-bottom: 28px;
  font-size: 22px;
}

.company-details__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.company-details dl {
  margin: 0;
}

.company-details dl div {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 28px;
  padding: 7px 0;
}

.company-details dt {
  color: var(--steel-gray);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.company-details dd {
  margin: 0;
  color: var(--graphite);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.company-details a {
  color: var(--deep-blue);
}

/* About adaptive */

@media (max-width: 1100px) {
  .nav__link--active::after {
    bottom: -24px;
  }

  .about-values__grid,
  .about-scale__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .about-scale__item {
    padding: 0 28px 32px;
    border-right: 0;
  }

  .about-scale__item:first-child {
    padding-left: 28px;
  }

  .about-team__inner,
  .about-cta__box,
  .company-details__grid {
    grid-template-columns: 1fr;
  }

  .about-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .nav__link--active::after {
    display: none;
  }

.about-page-hero {
  min-height: 420px;
}

.about-page-hero__inner {
  grid-template-columns: 1fr;
}

.about-page-hero__image {
  inset: 0;
  opacity: 0.25;
}

.about-page-hero__content {
  max-width: 100%;
  padding: 48px 0;
}


  .about-values,
  .about-scale,
  .about-team {
    padding: 48px 0;
  }

  .about-cta {
    padding-bottom: 48px;
  }

  .about-cta__actions {
    flex-direction: column;
    gap: 14px;
  }

  .about-cta__actions .button {
    width: 100%;
  }

  .company-details dl div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px 0;
  }
}

@media (max-width: 560px) {
  .about-values__grid,
  .about-scale__grid {
    grid-template-columns: 1fr;
  }

  .about-scale__item,
  .about-scale__item:first-child {
    padding: 0 0 28px;
    border-bottom: 1px solid var(--border);
  }

  .about-scale__item:last-child {
    border-bottom: 0;
  }

  .about-cta__box {
    padding: 28px 20px;
  }

  .about-page-hero h1 {
    font-size: 38px;
  }

  .about-page-hero p {
    font-size: 18px;
  }
}

/* ==============================
   Services page
   ============================== */

.services-page-hero {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      #ffffff 0%,
      #f7fbff 45%,
      rgba(255,255,255,0) 70%
    ),
    linear-gradient(
      180deg,
      #eef7ff 0%,
      #ffffff 100%
    );
}

.services-page-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 330px;
}

.services-page-hero__content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  padding: 72px 0;
}

.services-page-hero__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60%;
}

.services-page-hero__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,0.6) 30%,
    rgba(255,255,255,0) 75%
  );
}

.services-page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
body {
  overflow-x: hidden;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: var(--steel-gray);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}

.breadcrumbs a {
  color: var(--deep-blue);
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.services-page-hero h1 {
  margin: 0 0 24px;
  color: var(--graphite);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.services-page-hero p {
  max-width: 610px;
  margin: 0;
  color: var(--graphite);
  font-size: 21px;
  line-height: 1.58;
  font-weight: 500;
}

/* Catalog */

.services-catalog {
  padding: 40px 0 24px;
  background: var(--white);
}

.services-catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.services-catalog-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(31, 41, 55, 0.04);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.services-catalog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 94, 168, 0.28);
  box-shadow: 0 18px 44px rgba(0, 94, 168, 0.12);
}

.services-catalog-card__image {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.services-catalog-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 28px 28px 24px;
}

.services-catalog-card h3 {
  margin: 0 0 18px;
  color: var(--graphite);
  font-size: 22px;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.services-catalog-card p {
  margin: 0;
  color: var(--graphite);
  font-size: 15px;
  line-height: 1.62;
  font-weight: 500;
}

.services-catalog-card__block {
  margin-top: 22px;
}

.services-catalog-card__block h4 {
  margin: 0 0 8px;
  color: var(--graphite);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}

.services-catalog-card__block p {
  font-size: 14px;
  line-height: 1.58;
}

.services-catalog-card .button {
  align-self: center;
  min-width: 170px;
  min-height: 44px;
  margin-top: auto;
  padding: 0 24px;
  color: var(--deep-blue);
  border-color: var(--smart-blue);
}

/* Consultation */

.services-consultation {
  padding: 0 0 72px;
  background: var(--white);
}

.services-consultation__box {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 40px;
  border: 1px solid rgba(219, 227, 236, 0.9);
  border-radius: 12px;
  background:
    radial-gradient(circle at 0% 50%, rgba(0, 183, 232, 0.12), transparent 28%),
    linear-gradient(135deg, #f3f8fe 0%, #ffffff 100%);
}

.services-consultation__icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
}

.services-consultation__icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.services-consultation h2 {
  margin: 0 0 8px;
  color: var(--graphite);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
}

.services-consultation p {
  max-width: 640px;
  margin: 0;
  color: var(--graphite);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}

.services-consultation .button {
  min-width: 250px;
}

/* Services page adaptive */

@media (max-width: 1100px) {
  .services-catalog__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-consultation__box {
    grid-template-columns: 80px 1fr;
  }

  .services-consultation .button {
    grid-column: 2;
    justify-self: start;
  }
}



@media (max-width: 820px) {
  .services-page-hero {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    background: #ffffff; /* белая подложка */
  }

  .services-page-hero__image {
    position: absolute;
    left: 0;
    right: 0;
    top: 0; /* изменили с auto на 0 */
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3; /* уменьшить непрозрачность изображения */
  }

  .services-page-hero__image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      #ffffff 0%,
      rgba(255, 255, 255, 0.8) 20%,
      rgba(255, 255, 255, 0) 50%
    );
    z-index: 1;
  }

  .services-page-hero__inner {
    position: relative;
    z-index: 2;
    min-height: 300px;
  }

  .services-page-hero__content {
    padding: 48px 0;
    position: relative;
    z-index: 3;
  }

  /* остальные стили */
}
@media (max-width: 560px) {
  .services-page-hero h1 {
    font-size: 40px;
  }

  .services-page-hero p {
    font-size: 17px;
  }

  .services-catalog-card__body {
    padding: 24px 20px;
  }

  .services-catalog-card h3 {
    font-size: 20px;
  }

  .services-catalog-card__image {
    height: 160px;
  }

  .services-consultation__box {
    padding: 24px 20px;
  }

  .services-consultation__icon {
    width: 68px;
    height: 68px;
  }
}


/* ==============================
   Projects page
   ============================== */

.projects-page-hero {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      #ffffff 0%,
      #f7fbff 45%,
      rgba(255,255,255,0) 70%
    ),
    linear-gradient(
      180deg,
      #eef7ff 0%,
      #ffffff 100%
    );
}

.projects-page-hero__inner {
  position: relative;
  min-height: 340px;
}

.projects-page-hero__content {
  position: relative;
  z-index: 3;
  max-width: 650px;
  padding: 72px 0;
}

.projects-page-hero__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60%;
}

.projects-page-hero__image::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,0.65) 30%,
    rgba(255,255,255,0) 75%
  );
}

.projects-page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-page-hero h1 {
  margin: 0 0 24px;

  color: var(--graphite);

  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.projects-page-hero p {
  margin: 0;

  color: var(--graphite);

  font-size: 18px;
  line-height: 1.75;
  font-weight: 500;
}

/* Projects catalog */

.projects-catalog {
  padding: 32px 0 48px;
  background: var(--white);
}

.projects-catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.projects-case-card {
  overflow: hidden;

  background: var(--white);

  border: 1px solid var(--border);
  border-radius: 10px;

  box-shadow: 0 10px 28px rgba(31, 41, 55, 0.04);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.projects-case-card:hover {
  transform: translateY(-3px);

  border-color: rgba(0, 94, 168, 0.28);

  box-shadow: 0 18px 44px rgba(0, 94, 168, 0.12);
}

.projects-case-card__logo {
  height: 72px;

  display: flex;
  align-items: center;

  padding: 0 20px;

  border-bottom: 1px solid rgba(219, 227, 236, 0.7);
}

.projects-case-card__logo img {
  max-width: 150px;
  max-height: 42px;
  object-fit: contain;
}

.projects-case-card__image {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.projects-case-card__body {
  padding: 22px 22px 24px;
}

.projects-case-card h3 {
  margin: 0 0 14px;

  color: var(--graphite);

  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
}

.projects-case-card p {
  margin: 0;

  color: var(--graphite);

  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
}

/* Projects KPI */

.projects-summary {
  padding: 0 0 72px;
}

.projects-summary__box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);

  gap: 0;

  border-radius: 14px;

  background:
    radial-gradient(circle at 0% 50%, rgba(0,183,232,0.12), transparent 30%),
    linear-gradient(135deg, #f4f8fc 0%, #ffffff 100%);

  border: 1px solid rgba(219, 227, 236, 0.85);

  overflow: hidden;
}

.projects-summary__item {
  display: flex;
  align-items: center;
  gap: 18px;

  padding: 28px 24px;

  border-right: 1px solid rgba(219, 227, 236, 0.85);
}

.projects-summary__item:last-child {
  border-right: 0;
}

.projects-summary__item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.projects-summary__item span {
  display: block;

  color: var(--steel-gray);

  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}

.projects-summary__item strong {
  display: block;

  color: var(--deep-blue);

  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
}

.projects-summary__item p {
  margin: 2px 0 0;

  color: var(--graphite);

  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

/* Projects adaptive */

@media (max-width: 1100px) {

  .projects-catalog__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-summary__box {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-summary__item {
    border-right: 0;
    border-bottom: 1px solid rgba(219,227,236,0.85);
  }

  .projects-summary__item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 820px) {

  .projects-page-hero {
    min-height: 420px;
  }

  .projects-page-hero__image {
    inset: 0;
    width: 100%;
    opacity: 0.25;
  }

  .projects-page-hero__content {
    max-width: 100%;
    padding: 48px 0;
  }

  .projects-catalog__grid {
    grid-template-columns: 1fr;
  }

  .projects-summary__box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {

  .projects-page-hero h1 {
    font-size: 38px;
  }

  .projects-page-hero p {
    font-size: 16px;
  }

  .projects-case-card__body {
    padding: 20px;
  }

  .projects-case-card h3 {
    font-size: 20px;
  }

  .projects-case-card__image {
    height: 150px;
  }

  .projects-summary__item {
    padding: 20px;
  }

  .projects-summary__item strong {
    font-size: 24px;
  }
}

/* ==============================
   Licenses page
   ============================== */

.licenses-page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      #ffffff 0%,
      #f7fbff 45%,
      rgba(255,255,255,0) 72%
    ),
    linear-gradient(
      180deg,
      #eef7ff 0%,
      #ffffff 100%
    );
}

.licenses-page-hero__inner {
  position: relative;
  min-height: 340px;
}

.licenses-page-hero__content {
  position: relative;
  z-index: 3;
  max-width: 650px;
  padding: 64px 0;
}

.licenses-page-hero__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 62%;
}

.licenses-page-hero__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,0.7) 32%,
    rgba(255,255,255,0) 76%
  );
}

.licenses-page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.licenses-page-hero h1 {
  margin: 0 0 24px;
  color: var(--graphite);
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.licenses-page-hero p {
  max-width: 560px;
  margin: 0 0 18px;
  color: var(--graphite);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
}

.licenses-page-hero p:last-child {
  margin-bottom: 0;
}

/* Licenses cards */

.licenses-section {
  padding: 36px 0 40px;
  background: var(--white);
}

.licenses-section h2,
.certificates-section h2,
.license-services-info h2 {
  margin: 0 0 28px;
  color: var(--graphite);
  font-size: 28px;
  line-height: 1.25;
  font-weight: 800;
}

.licenses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.license-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px 22px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(31, 41, 55, 0.04);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.license-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 94, 168, 0.28);
  box-shadow: 0 18px 44px rgba(0, 94, 168, 0.12);
}

.license-card__icon {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  object-fit: contain;
}

.license-card h3 {
  min-height: 48px;
  margin: 0 0 18px;
  color: var(--graphite);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}

.license-card dl {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
}

.license-card dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px;
}

.license-card dt {
  color: var(--steel-gray);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.license-card dd {
  margin: 0;
  color: var(--graphite);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.license-card .button {
  min-height: 40px;
  width: 100%;
  margin-top: auto;
  padding: 0 20px;
  color: var(--deep-blue);
  border-color: rgba(0, 94, 168, 0.35);
  font-size: 13px;
}

/* Certificates */

.certificates-section {
  padding: 16px 0 44px;
  background: var(--white);
}

.certificates-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.certificates-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 22px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  color: var(--deep-blue);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
  white-space: nowrap;
}

.certificates-tab--active,
.certificates-tab:hover {
  color: var(--white);
  background: linear-gradient(90deg, var(--deep-blue), var(--smart-blue));
  border-color: transparent;
}

.certificates-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 160px;
  gap: 22px;
  overflow-x: auto;
  padding: 4px 0 12px;
  scroll-snap-type: x mandatory;
}

.certificate-card {
  scroll-snap-align: start;
}

.certificate-card img {
  width: 160px;
  height: 112px;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--light-gray);
  box-shadow: 0 8px 22px rgba(31, 41, 55, 0.05);
}

.certificate-card h3 {
  margin: 12px 0 4px;
  color: var(--graphite);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.certificate-card p {
  margin: 0;
  color: var(--steel-gray);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
}

/* Information blocks */

.licenses-info {
  padding: 0 0 32px;
  background: var(--white);
}

.licenses-info__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 28px;
  padding: 32px;
  border: 1px solid rgba(219, 227, 236, 0.85);
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 183, 232, 0.1), transparent 32%),
    linear-gradient(135deg, #f4f8fc 0%, #ffffff 100%);
}

.licenses-info-card h2 {
  margin: 0 0 20px;
  color: var(--graphite);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
}

.licenses-info-card h3 {
  margin: 18px 0 8px;
  color: var(--graphite);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}

.licenses-info-card p {
  margin: 0;
  color: var(--graphite);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
}

.licenses-info-card dl {
  display: grid;
  gap: 9px;
  margin: 0;
}

.licenses-info-card dl div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
}

.licenses-info-card dt {
  color: var(--steel-gray);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.licenses-info-card dd {
  margin: 0;
  color: var(--graphite);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.license-features {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.license-features li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
}

.license-features img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.license-features h3 {
  margin: 0 0 4px;
  color: var(--graphite);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

.license-features p {
  margin: 0;
  color: var(--steel-gray);
  font-size: 13px;
  line-height: 1.45;
}

/* Services info */

.license-services-info {
  padding: 0 0 72px;
  background: var(--white);
}

.license-services-info .container {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.license-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.license-services-grid article {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: start;
  gap: 14px;
}

.license-services-grid img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.license-services-grid h3 {
  margin: 0 0 8px;
  color: var(--graphite);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}

.license-services-grid p {
  margin: 0;
  color: var(--steel-gray);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 500;
}

/* Licenses adaptive */

@media (max-width: 1100px) {
  .licenses-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .licenses-info__grid {
    grid-template-columns: 1fr;
  }

  .license-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .licenses-page-hero {
    min-height: 420px;
  }

  .licenses-page-hero__image {
    inset: 0;
    width: 100%;
    opacity: 0.25;
  }

  .licenses-page-hero__content {
    max-width: 100%;
    padding: 48px 0;
  }

  .licenses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .licenses-info__grid,
  .license-services-info .container {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .licenses-page-hero h1 {
    font-size: 36px;
  }

  .licenses-page-hero p {
    font-size: 15px;
  }

  .licenses-grid,
  .license-services-grid {
    grid-template-columns: 1fr;
  }

  .license-card {
    padding: 22px 20px;
  }

  .license-card dl div,
  .licenses-info-card dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .certificates-carousel {
    grid-auto-columns: 140px;
  }

  .certificate-card img {
    width: 140px;
    height: 100px;
  }
}
/* Fix certificates tabs */

.certificates-tab {
  cursor: pointer;
  font-family: inherit;
}

.certificates-panel {
  display: none;
}

.certificates-panel--active {
  display: block;
}

.certificate-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.certificate-card:hover img {
  border-color: rgba(0, 94, 168, 0.35);
  box-shadow: 0 14px 32px rgba(0, 94, 168, 0.12);
}

/* Fix license services block */

.license-services-info {
  padding: 0 0 72px;
  background: var(--white);
}

.license-services-info .container {
  padding: 32px 40px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
}

.license-services-info h2 {
  margin: 0 0 32px;
  color: var(--graphite);
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
}

.license-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 52px;
  row-gap: 34px;
}

.license-services-grid article {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  column-gap: 18px;
}

.license-services-grid img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.license-services-grid h3 {
  margin: 0 0 12px;
  color: var(--graphite);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
}

.license-services-grid p {
  grid-column: 2;
  margin: 0;
  max-width: 240px;
  color: var(--steel-gray);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 500;
}

/* Hide broken icons neatly if file is missing */

.license-services-grid img[src=""],
.license-services-grid img:not([src]) {
  display: none;
}

@media (max-width: 1100px) {
  .license-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .license-services-info .container {
    padding: 24px 20px;
  }

  .license-services-grid {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .license-services-grid p {
    max-width: none;
  }
}
/* ==============================
   Partners block
   ============================== */

.partners-section {
  padding: 24px 0 56px;
  background: var(--white);
}

.partners-section__head {
  max-width: 760px;
  margin-bottom: 36px;
}

.partners-section__head .eyebrow {
  margin-bottom: 14px;
}

.partners-section__head h2 {
  margin: 0 0 18px;
  color: var(--graphite);
  font-size: 32px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.partners-section__head p {
  margin: 0;
  color: var(--graphite);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 500;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.partner-card {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 183, 232, 0.12), transparent 36%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 10px 28px rgba(31, 41, 55, 0.04);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.partner-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 94, 168, 0.28);
  box-shadow: 0 18px 44px rgba(0, 94, 168, 0.12);
}

.partner-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--smart-blue);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
}

.partner-card h3 {
  margin: 0;
  color: var(--graphite);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-section__head h2 {
    font-size: 28px;
  }
}

@media (max-width: 560px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}
.projects-case-card__client {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 72px;
    padding: 0 24px;

    border-bottom: 1px solid var(--border);

    color: var(--graphite);

    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;

    letter-spacing: -0.02em;
}
/* ===== Разделение информационных блоков ===== */

.operator-info {
    padding: 40px 0 24px;
    margin-bottom: 40px;
}

.legal-info {
    padding: 24px 0 72px;
}

.licenses-info__grid {
    display: grid;
    gap: 28px;
    padding: 0;
    border: none;
    background: transparent;
}

.licenses-info-card {
    padding: 32px;
    background:
        radial-gradient(circle at 100% 0%, rgba(0,183,232,.08), transparent 35%),
        linear-gradient(135deg,#f8fbfe 0%,#ffffff 100%);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(31,41,55,.04);
}

.licenses-info-card h2,
.licenses-info-card h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

.licenses-info-card p:last-child,
.licenses-info-card ul:last-child {
    margin-bottom: 0;
}
/* ==============================
   Cookie banner
   ============================== */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;

  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;

  padding: 28px 48px;

  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid var(--border);
  box-shadow: 0 -10px 32px rgba(31, 41, 55, 0.08);
}

.cookie-banner p {
  margin: 0;
  color: var(--steel-gray);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

.cookie-banner a {
  color: var(--deep-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__button {
  min-width: 180px;
  min-height: 56px;
  padding: 0 28px;

  border: 0;
  border-radius: 999px;

  background: var(--graphite);
  color: var(--white);

  font-size: 18px;
  line-height: 1;
  font-weight: 800;

  cursor: pointer;
}

.cookie-banner__button:hover {
  background: var(--dark-blue);
}

@media (max-width: 820px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .cookie-banner p {
    font-size: 15px;
  }

  .cookie-banner__button {
    width: 100%;
  }
}
/* ==============================
   Documents list format
   ============================== */

.documents-page {
  padding: 48px 0 64px;
  background: var(--white);
}

.documents-page h2 {
  margin: 0 0 32px;
  color: var(--graphite);
  font-size: 48px;
  line-height: 1.1;
  font-weight: 800;
}

.documents-group {
  margin-bottom: 36px;
}

.documents-group h3 {
  margin: 0 0 22px;
  padding: 16px 24px;
  border-radius: 12px;
  background: var(--light-gray);
  color: var(--graphite);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
}

.documents-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
  row-gap: 28px;
}

.document-link {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  align-items: start;
  color: var(--graphite);
}

.document-link img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.document-link strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
}

.document-link small {
  display: block;
  color: var(--steel-gray);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}

.document-link:hover strong {
  color: var(--deep-blue);
}

@media (max-width: 820px) {
  .documents-list {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .documents-page h2 {
    font-size: 36px;
  }

  .documents-group h3 {
    font-size: 21px;
  }
}
/* Service field in request form */

.request-form__service {
  display: block;
}

.request-form__service input {
  width: 100%;
}
/* Request form consent and captcha */

.request-form__consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;

  color: var(--steel-gray);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}

.request-form__consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--deep-blue);
}

.request-form__consent a {
  color: var(--deep-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.request-form__captcha label {
  display: grid;
  gap: 8px;
}

.request-form__captcha span {
  color: var(--graphite);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.request-form__captcha input {
  max-width: 260px;
}
