@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #EFFAFF;
  color: #15182B;
}

.logo-md {
  display: none;
}

.header__socials-location {
  display: none;
}

.header {
  height: 66px;
  background: #EFFAFF;
  box-shadow: 0px 4px 45px 0px rgba(0, 0, 0, 0.5019607843);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  position: relative;
}
.header__socials {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.header__socials-phone {
  display: none;
}
.header__socials-mob {
  display: flex;
}
.header__socials .fb,
.header__socials .yt,
.header__socials .ig,
.header__socials .wa,
.header__socials .phone {
  height: 24px;
}
.header__nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.header__burger {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
}
.header__burger span {
  position: relative;
  width: 28px;
  height: 4px;
  background: #093177;
  border-radius: 999px;
  transition: transform 0.25s ease, background 0.25s ease;
}
.header__burger span::before, .header__burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 28px;
  height: 4px;
  background: #093177;
  border-radius: 999px;
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.2s ease;
}
.header__burger span::before {
  top: -10px;
}
.header__burger span::after {
  top: 10px;
}
.header__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 80;
}
.header__menu {
  position: fixed;
  top: 66px;
  left: 0;
  right: 0;
  background: #EFFAFF;
  box-shadow: 0px 4px 45px 0px rgba(0, 0, 0, 0.5019607843);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  padding: 28px 16px 36px;
  z-index: 90;
  display: grid;
  gap: 18px;
  justify-items: center;
}
.header__link {
  font-size: 42px;
  font-weight: 800;
  color: #093177;
  text-decoration: none;
  line-height: 1.05;
}
.header__link.is-active {
  text-decoration-thickness: 6px;
  text-underline-offset: 6px;
}
.header__nav-toggle:checked ~ .header__backdrop {
  opacity: 1;
  pointer-events: auto;
}
.header__nav-toggle:checked ~ .header__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.header__nav-toggle:checked ~ .header__burger span {
  background: transparent;
}
.header__nav-toggle:checked ~ .header__burger span::before {
  top: 0;
  transform: rotate(45deg);
}
.header__nav-toggle:checked ~ .header__burger span::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  height: calc(100vh - 66px);
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 420px;
  display: flex;
  justify-content: center;
  padding: 24px 16px;
}
.hero__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.hero h1 {
  font-size: 42px;
  line-height: 1.05;
  font-weight: 800;
  color: #F17204;
  margin-bottom: 50px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45), 0 6px 18px rgba(0, 0, 0, 0.35);
}
.hero h1 span {
  color: #093177;
}
.hero p {
  font-size: 24px;
  line-height: 1.3;
  color: #FFFFFF;
  margin-bottom: 40px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45), 0 4px 10px rgba(0, 0, 0, 0.35);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 360px;
  height: 64px;
  background: #005CDE;
  color: #FDFDFF;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35), inset 0 -3px 0 rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45), inset 0 -3px 0 rgba(0, 0, 0, 0.2);
}
.btn:active {
  transform: translateY(1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35), inset 0 3px 0 rgba(0, 0, 0, 0.25);
}

.expertise {
  background: #EFFAFF;
  padding: 24px 12px 28px;
}
.expertise__inner {
  max-width: 420px;
  margin: 0 auto;
}
.expertise__title {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
  color: #F17204;
  margin-bottom: 12px;
}
.expertise__text {
  font-size: 14px;
  line-height: 1.35;
  color: #15182B;
  margin-bottom: 16px;
}
.expertise__photo-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.5019607843);
  margin-bottom: 18px;
}
.expertise__photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.expertise__list {
  list-style: none;
  display: grid;
  gap: 16px;
}
.expertise__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  align-items: center;
}
.expertise__item-text {
  font-size: 14px;
  line-height: 1.25;
  color: #15182B;
}
.expertise__item-text strong {
  font-weight: 800;
}

.contact {
  position: relative;
  height: 600px;
  padding: 32px 16px;
  background: #000;
}
.contact__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1);
  opacity: 0.35;
}
.contact__content {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  color: #FFFFFF;
}
.contact__title {
  font-size: 26px;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}
.contact__form {
  display: grid;
  gap: 22px;
}
.contact__btn {
  margin-top: 24px;
  height: 64px;
  border-radius: 8px;
  border: none;
  background: #FFFFFF;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.field {
  display: grid;
  gap: 8px;
}
.field__label {
  font-size: 16px;
  font-weight: 700;
}
.field__label i {
  color: #ff4d4d;
  font-style: normal;
}
.field__input {
  min-height: 60px;
  padding: 0 20px;
  border-radius: 8px;
  border: none;
  outline: none;
  background: #3E4E6E;
  color: #FFFFFF;
  font-size: 18px;
}
.field__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.field__input:focus {
  outline: 2px solid #005CDE;
}

.services-section {
  background: #EFFAFF;
  padding: 28px 16px 34px;
}
.services-section__block {
  display: flex;
  flex-direction: column;
}
.services-section__inner {
  max-width: 420px;
  margin: 10px auto;
}
.services-section__title {
  text-align: center;
  color: #F17204;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 18px;
}
.services-section__text {
  color: #15182B;
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 20px;
}

.service-item {
  background: #FFFFFF;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0px 4px 45px 0px rgba(0, 0, 0, 0.5019607843);
}
.service-item__media {
  padding: 14px 14px 0;
}
.service-item__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.service-item__content {
  padding: 18px 18px 22px;
}
.service-item__title {
  font-size: 22px;
  line-height: 1.15;
  font-weight: 800;
  color: #000;
  margin-bottom: 14px;
}
.service-item__list {
  margin: 0 0 22px 20px;
  color: #000;
  font-size: 18px;
  line-height: 1.35;
}
.service-item__list li + li {
  margin-top: 6px;
}
.service-item__btn {
  height: 60px;
  margin: 0 auto;
  border-radius: 8px;
}

.why {
  position: relative;
  padding: 40px 16px;
  overflow: hidden;
}
.why__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.why__overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 49, 119, 0.62);
  z-index: 1;
}
.why__content {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin: 0 auto;
  color: #FFFFFF;
  text-align: center;
}
.why__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 26px;
}
.why__list {
  list-style: none;
  display: grid;
  gap: 26px;
  padding: 0;
  margin: 0;
}
.why__item {
  display: grid;
  justify-items: center;
  gap: 12px;
}
.why__icon {
  width: 92px;
  height: 92px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
}
.why__text {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
  max-width: 270px;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.faq {
  background: #EFFAFF;
  padding: 28px 16px 40px;
}
.faq__inner {
  max-width: 420px;
  margin: 0 auto;
}
.faq__title {
  text-align: center;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  color: #093177;
  margin-bottom: 20px;
}
.faq__list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item__q {
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 12px;
  align-items: center;
  padding: 18px;
  font-size: 16px;
  font-weight: 800;
  color: #000;
}
.faq-item__a {
  padding: 0 18px 18px;
  font-size: 14px;
  line-height: 1.35;
  color: #15182B;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.faq-item__icon {
  width: 28px;
  height: 28px;
  position: relative;
  justify-self: end;
  transition: transform 0.35s ease;
}
.faq-item__icon::before, .faq-item__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: #093177;
  border-radius: 2px;
}
.faq-item__icon::before {
  width: 18px;
  height: 3px;
}
.faq-item__icon::after {
  width: 3px;
  height: 18px;
}
.faq-item[open] .faq-item__a {
  opacity: 1;
  transform: translateY(0);
}
.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
}

.gallery {
  background: #EFFAFF;
  padding: 26px 16px 34px;
}
.gallery__inner {
  max-width: 420px;
  margin: 0 auto;
}
.gallery__thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 6px 2px 14px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.gallery__thumbs::-webkit-scrollbar {
  display: none;
}
.gallery__thumb {
  flex: 0 0 auto;
  width: 46px;
  height: 60px;
  border-radius: 10px;
  border: 2px solid transparent;
  background: transparent;
  padding: 0;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.gallery__thumb img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}
.gallery__thumb.is-active {
  border-color: #F17204;
  transform: translateY(-1px);
}
.gallery__thumb:active {
  transform: translateY(0);
}
.gallery__frame {
  border-radius: 22px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0px 4px 45px 0px rgba(0, 0, 0, 0.5019607843);
  touch-action: pan-y;
}
.gallery__main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

@media (min-width: 480px) {
  .gallery__thumb {
    width: 52px;
    height: 52px;
  }
  .gallery__main {
    height: 520px;
  }
}
.contact-info {
  position: relative;
  padding: 34px 16px 44px;
  overflow: hidden;
}
.contact-info__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.contact-info__overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 49, 119, 0.68);
  z-index: 1;
}
.contact-info__inner {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin: 0 auto;
  color: #FFFFFF;
}
.contact-info__title {
  color: #F17204;
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 18px;
}
.contact-info__lead {
  font-size: 20px;
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 28px;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}
.contact-info__sub {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
}
.contact-info__links {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-info__row {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  color: #FFFFFF;
}
.contact-info__value {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}
.contact-info__value--underline {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
}
.contact-info__socials {
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 10px 0 26px;
}
.contact-info__social {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-info__social img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact-info__btn {
  max-width: 360px;
  margin: 0 0 26px;
}
.contact-info__meta {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 500;
  opacity: 0.95;
}
.contact-info__meta p + p {
  margin-top: 10px;
}
.contact-info__year {
  margin-top: 26px;
  font-size: 28px;
  font-weight: 500;
  opacity: 0.95;
}

.contact-info__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
  margin: 10px 0;
}

@media (min-width: 768px) {
  .header {
    height: auto;
    padding: 10px 0;
  }
  .header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 32px;
    row-gap: 18px;
    align-items: center;
  }
  .header .logo-md {
    display: flex;
    grid-column: 1;
    grid-row: 1/span 2;
  }
  .header .logo-md img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
  }
  .header .logo {
    display: none;
  }
  .header__socials {
    justify-content: flex-start;
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .header__socials-mob {
    display: none !important;
  }
  .header__socials-phone {
    display: inline-flex !important;
    align-items: center;
    gap: 14px;
    font-size: 24px;
    font-weight: 900;
    color: #093177;
    text-decoration: none;
    white-space: nowrap;
  }
  .header__socials-phone img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
  }
  .header__burger, .header__backdrop, .header__nav-toggle {
    display: none !important;
  }
  .header__menu {
    grid-column: 2;
    grid-row: 2;
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 70px;
  }
  .header__link {
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    color: #093177;
    text-decoration: none;
  }
  .header__link.is-active {
    text-decoration-thickness: 6px;
    text-underline-offset: 10px;
  }
  .hero h1 {
    font-size: 62px;
    margin-bottom: 70px;
  }
  .hero p {
    margin-bottom: 70px;
  }
  .hero__content {
    max-width: 720px;
  }
  .expertise__inner {
    max-width: 720px;
  }
  .expertise__photo {
    height: 420px;
  }
}
@media (min-width: 768px) {
  .services-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 28px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 36px 24px 56px;
  }
  .services-section__block {
    grid-column: 1/-1;
  }
  .services-section__inner {
    margin: 0;
  }
  .services-section__inner:last-of-type {
    grid-column: 1/-1;
    justify-self: center;
    width: calc(50% - 14px);
  }
}
@media (min-width: 768px) {
  .why {
    padding: 64px 24px;
  }
  .why__content {
    max-width: 1100px;
    margin: 0 auto;
  }
  .why__title {
    font-size: 36px;
    margin-bottom: 48px;
  }
  .why__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 64px;
    justify-items: center;
  }
  .why__item {
    max-width: 420px;
  }
  .why__icon {
    width: 96px;
    height: 96px;
  }
  .why__text {
    font-size: 18px;
    max-width: none;
  }
}
@media (min-width: 768px) {
  .faq__inner {
    padding: 0 48px;
    max-width: 1200px;
  }
  .faq__list {
    margin: 0 auto;
  }
}
.gallery__frame {
  position: relative;
}
.gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
  z-index: 2;
  display: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.gallery__nav::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  display: block;
  margin: auto;
}
.gallery__nav:hover {
  background: rgba(0, 0, 0, 0.75);
  transform: translateY(-50%) scale(1.05);
}
.gallery__nav--prev {
  left: 12px;
}
.gallery__nav--prev::before {
  transform: rotate(-135deg);
}
.gallery__nav--next {
  right: 12px;
}
.gallery__nav--next::before {
  transform: rotate(45deg);
}

.gallery__main {
  transition: opacity 0.15s ease;
  opacity: 1;
}
.gallery__main.is-fading {
  opacity: 0.7;
}

@media (min-width: 768px) {
  .gallery {
    padding: 48px 24px 64px;
  }
  .gallery__inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .gallery__frame {
    border-radius: 28px;
  }
  .gallery__main {
    height: 70vh;
    max-height: 600px;
  }
  .gallery__thumbs {
    justify-content: center;
    padding-bottom: 18px;
  }
  .gallery__thumb {
    width: 68px;
    height: 68px;
  }
  .gallery__nav {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .contact-info {
    position: relative;
    padding: 34px;
    overflow: hidden;
  }
  .contact-info__inner {
    margin: 0;
  }
}
@media (min-width: 1280px) {
  .header {
    height: auto;
    padding: 12px 0;
  }
  .header__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 56px;
    row-gap: 18px;
    align-items: center;
  }
  .logo {
    grid-column: 1;
    grid-row: 1/span 2;
    display: inline-flex;
    align-items: center;
  }
  .logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
  }
  .logo-md {
    display: none;
  }
  .header__burger,
  .header__backdrop {
    display: none !important;
  }
  .header__nav-toggle {
    display: none !important;
  }
  .header__socials {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
  }
  .header__socials-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: auto;
  }
  .header__socials-location {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .header__socials-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: 14px;
    padding-right: 14px;
    border-right: 2px solid rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: #093177;
    white-space: nowrap;
  }
  .header__socials-phone img {
    width: 34px;
    height: 34px;
    display: block;
    object-fit: contain;
  }
  .header__socials-phone span {
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
  }
  .header__socials-mob {
    display: none !important;
  }
  .header__socials > a:not(.header__socials-phone):not(.header__socials-mob) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
  .header__socials > a:not(.header__socials-phone):not(.header__socials-mob) img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
  }
  .header__menu {
    grid-column: 2;
    grid-row: 2;
    position: static;
    inset: auto;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 84px;
  }
  .header__link {
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
    color: #093177;
    text-decoration: none;
  }
  .header__link.is-active {
    text-decoration-thickness: 6px;
    text-underline-offset: 12px;
  }
}
@media (min-width: 1280px) {
  .hero__content {
    align-items: flex-start;
    text-align: left;
    max-width: 1440px;
  }
  .hero__content h1 {
    text-align: left;
    font-size: 70px;
  }
  .hero__content p {
    text-align: left;
    font-size: 40px;
  }
  .hero__content .btn {
    margin-left: 0;
  }
}
@media (min-width: 1280px) {
  .expertise {
    padding: 72px 0 88px;
  }
  .expertise__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 520px 1fr;
    column-gap: 64px;
    /* ключ: фиксируем схему через areas */
    grid-template-areas: "photo title" "photo text" "photo list";
    align-items: start;
    align-content: start;
  }
  /* Фото слева и тянется на 3 строки */
  .expertise__photo-wrap {
    grid-area: photo;
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  }
  .expertise__photo {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    display: block;
  }
  /* Всё справа */
  .expertise__title {
    grid-area: title;
    font-size: 36px;
    line-height: 1.15;
    margin: 0 0 16px;
  }
  .expertise__text {
    grid-area: text;
    font-size: 18px;
    line-height: 1.45;
    margin: 0 0 26px;
    max-width: 620px;
  }
  .expertise__list {
    grid-area: list;
    margin: 0;
    gap: 22px;
    max-width: 620px;
  }
  .expertise__item {
    grid-template-columns: 64px 1fr;
    gap: 18px;
    align-items: center;
  }
  .expertise__icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
  }
  .expertise__item-text {
    font-size: 16px;
    line-height: 1.35;
  }
}
@media (min-width: 1280px) {
  .expertise {
    padding: 56px 24px;
  }
  .expertise__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 520px 1fr;
    column-gap: 15px;
    row-gap: 0;
    grid-template-areas: "photo title" "photo text" "photo list";
    align-items: start;
  }
  .expertise__photo-wrap {
    grid-area: photo;
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    align-self: start;
  }
  .expertise__photo {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
  }
  .expertise__title {
    grid-area: title;
    margin: 0 0;
    padding: 0;
    font-size: 40px;
    line-height: 1.05;
    font-weight: 900;
  }
  .expertise__text {
    grid-area: text;
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.45;
  }
  .expertise__list {
    grid-area: list;
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 18px;
  }
  .expertise__item {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 16px;
    align-items: center;
  }
  .expertise__icon {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .expertise__icon img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    display: block;
  }
  .expertise__item-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 600;
  }
  .contact__content {
    max-width: 520px;
  }
}
@media (min-width: 1280px) {
  .services-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 24px 80px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    align-items: stretch;
  }
  /* Заголовочный блок */
  .services-section__block {
    grid-column: 1/-1;
    text-align: center;
    margin-bottom: 12px;
  }
  .services-section__title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 14px;
  }
  .services-section__text {
    max-width: 720px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.45;
  }
  /* Карточка услуги */
  .services-section__inner {
    grid-column: span 2;
    display: flex;
    margin: 0;
  }
  /* Центрирование второго ряда (2 карточки) */
  .services-section__inner:nth-last-child(2) {
    grid-column: 2/span 2;
  }
  .services-section__inner:nth-last-child(1) {
    grid-column: 4/span 2;
  }
  .service-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
  }
  .service-item__media {
    padding: 16px 16px 0;
  }
  .service-item__img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
  }
  .service-item__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 20px 20px 24px;
  }
  .service-item__title {
    font-size: 18px;
    line-height: 1.25;
    margin-bottom: 12px;
  }
  .service-item__list {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: auto;
  }
  .service-item__btn {
    margin-top: 20px;
    height: 52px;
    font-size: 16px;
  }
  .services-section__inner:last-of-type {
    justify-self: center;
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .why__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px 64px;
    justify-items: center;
  }
}
@media (min-width: 1280px) {
  .contact-info {
    padding: 56px 24px 64px;
  }
  .contact-info__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 560px 1fr;
    column-gap: 90px;
    row-gap: 0;
    align-items: start;
    min-height: 420px;
  }
  .contact-info__title, .contact-info__lead, .contact-info__sub, .contact-info__row, .contact-info__socials, .contact-info__btn {
    grid-column: 1;
  }
  .contact-info__title {
    font-size: 44px;
    line-height: 1.05;
    font-weight: 900;
    color: #ff7a00;
    margin: 0 0 8px;
  }
  .contact-info__lead {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
    margin: 0;
    max-width: 520px;
  }
  .contact-info__sub {
    margin-top: 14px;
    font-size: 18px;
    font-weight: 800;
  }
  .contact-info__row {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 14px;
    align-items: center;
    text-decoration: none;
    color: #fff;
    width: fit-content;
  }
  .contact-info__row:hover .contact-info__value {
    text-decoration: underline;
    text-underline-offset: 6px;
  }
  .contact-info__value {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.15;
  }
  .contact-info__value--underline {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
  }
  .contact-info__socials {
    margin-top: 10px;
    display: flex;
    gap: 14px;
    align-items: center;
  }
  .contact-info__socials a img {
    width: 24px;
    height: 24px;
    display: block;
  }
  .contact-info__btn {
    margin-top: 18px;
    width: 360px;
    max-width: 100%;
    height: 56px;
  }
  .contact-info__meta {
    grid-column: 2;
    grid-row: 7;
    align-self: end;
    justify-self: end;
    text-align: right;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 500;
    opacity: 0.95;
  }
  .contact-info__meta p + p {
    margin-top: 8px;
  }
  .contact-info__year {
    grid-column: 2;
    grid-row: 8;
    align-self: end;
    justify-self: end;
    margin: 0;
    text-align: right;
    font-size: 18px;
    font-weight: 500;
    opacity: 0.95;
  }
}

/*# sourceMappingURL=style.css.map */
