:root {
  --page-bg: #ffffff;
  --text-dark: #3f6f6b;
  --tag-accent: #49bdb0;
  --hero-radius: 32px;
  --page-gutter: 48px;
  --card-max-width: 1820px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, Arial, sans-serif;
  background: var(--page-bg);
  color: #111;
}

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

a,
button {
  -webkit-tap-highlight-color: transparent;
}

button {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.page {
  width: 100%;
}

.hero {
  padding: 14px var(--page-gutter) 0;
}

.hero-slider {
  max-width: var(--card-max-width);
  margin: 0 auto;
  overflow: hidden;
}

.hero-card {
  position: relative;
  min-height: 752px;
  border-radius: var(--hero-radius);
  overflow: hidden;
  background: #8db9dc;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(93, 160, 212, 0.78) 0%,
      rgba(116, 176, 220, 0.48) 34%,
      rgba(255, 255, 255, 0) 68%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0) 100%
    );
}

.hero-header {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  z-index: 4;
}

.hero-header__inner {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 36px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.logo img {
  width: 170px;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 54px;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.96);
  text-decoration: none;
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
  transition: opacity var(--transition);
}

.desktop-nav a:hover {
  opacity: 0.8;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 34px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.lang-switcher span {
  font-size: 24px;
  line-height: 1;
}

.lang-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
  transition:
    opacity var(--transition),
    color var(--transition),
    font-weight var(--transition);
}

.lang-link.is-active {
  color: #ffffff;
  opacity: 1;
  font-weight: 700;
}

.header-contact-btn {
  min-width: 184px;
  height: 58px;
  padding: 0 30px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
  transition:
    background var(--transition),
    border-color var(--transition);
}

.header-contact-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.burger span {
  display: block;
  width: 28px;
  height: 2px;
  margin-left: auto;
  border-radius: 2px;
  background: #ffffff;
}

.hero-main {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  min-height: 622px;
  padding: 152px 38px 0;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-quick-links {
  width: 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 48px;
}

.hero-side-link {
  min-height: 44px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.82);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #ffffff;
  text-decoration: none;
}

.hero-side-link span:first-child {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.hero-side-link .arrow {
  font-size: 34px;
  line-height: 1;
  transform: translateY(-2px);
}

.hero-copy {
  max-width: 710px;
}

.hero-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(54px, 5.3vw, 84px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.hero-copy p {
  max-width: 760px;
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 23px;
  font-weight: 300;
  line-height: 1.58;
}

.hero-right {
  position: relative;
}

.hero-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 16px 34px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--text-dark);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  box-shadow: 0 12px 32px rgba(50, 77, 100, 0.12);
  white-space: nowrap;
}

.hero-tag.is-accent {
  background: var(--tag-accent);
  color: #ffffff;
}

.hero-tag--top {
  top: 166px;
  left: 112px;
}

.hero-tag--middle {
  top: 314px;
  right: 4px;
}

.hero-tag--bottom {
  left: 170px;
  bottom: 0px;
}

.hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.hero-cta {
  width: min(582px, 100%);
  min-height: 94px;
  padding: 22px 38px 22px 38px;
  border-radius: 0 34px 0 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #3d6d67;
  text-decoration: none;
}

.hero-cta span:first-child {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.hero-cta-arrow {
  font-size: 48px;
  line-height: 1;
  font-weight: 300;
}

.hero-note__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--card-max-width);
  margin: 0 auto;
}

.hero-note {
  min-height: 66px;

  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #5d6877;
}

.hero-note svg {
  flex: 0 0 auto;
}

.hero-note span {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
}

.mobile-drawer-backdrop,
.mobile-drawer {
  display: none;
}

.hero-bg__mobile {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg__mobile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about {
  padding: 72px var(--page-gutter) 0;
}

.about__container {
  max-width: var(--card-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 0.98fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: start;
}

.about__media {
  position: relative;
  height: 534px;
  border-radius: 32px;
  overflow: hidden;
  cursor: pointer;
  outline: none;
}

.about__media:focus-visible {
  box-shadow: 0 0 0 3px rgba(73, 189, 176, 0.35);
}

.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.about__image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
  transition: opacity 0.35s ease;
  z-index: 1;
}

.about__media:hover .about__image-overlay,
.about__media:focus-visible .about__image-overlay {
  opacity: 0;
}

.about__media:hover .about__image,
.about__media:focus-visible .about__image {
  transform: scale(1.02);
}

.about__play {
  position: absolute;
  top: 40px;
  right: 36px;
  z-index: 2;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: #49bdb0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(73, 189, 176, 0.28);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.about__play img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  margin-left: 4px;
}

.about__media:hover .about__play,
.about__media:focus-visible .about__play {
  transform: scale(1.04);
}

.about__cta {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  min-width: 304px;
  min-height: 72px;
  padding: 16px 26px 16px 38px;
  border-radius: 999px;
  background: #49bdb0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #ffffff;
  text-decoration: none;
  pointer-events: none;
}

.about__cta span {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.about__cta img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
}

.about__content {
  padding-top: 2px;
}

.about__title,
.services-hero__title {
  margin: 0;
  max-width: 760px;
  color: #10192d;
  font-size: clamp(42px, 4vw, 76px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.about__title span {
  color: #49bdb0;
}

.about__text {
  margin-top: 42px;
  max-width: 760px;
}

.about__text p,
.services-hero__text {
  margin: 0 0 24px;
  color: #5e697c;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.55;
}

.about__text p:last-child {
  margin-bottom: 0;
}

.about__text-strong {
  color: #1a2438 !important;
  font-weight: 700 !important;
}

.about-cards {
  max-width: var(--card-max-width);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.about-card {
  min-height: 330px;
  padding: 40px 40px 36px;
  border-radius: 30px;
  background: #f4f4f4;
}

.about-card--accent {
  background: #49bdb0;
}

.about-card__icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(217, 217, 217, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card__icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.about-card__title {
  margin: 34px 0 22px;
  color: #141d30;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.about-card__text {
  margin: 0;
  color: #4f5b70;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.55;
}

.about-card--accent .about-card__title,
.about-card--accent .about-card__text {
  color: #ffffff;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 12, 22, 0.82);
  backdrop-filter: blur(4px);
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.video-modal__video {
  display: block;
  width: 100%;
  max-height: calc(100vh - 40px);
  background: #000;
}

.video-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  backdrop-filter: blur(8px);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.video-modal__close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.04);
}

body.video-open {
  overflow: hidden;
}

.services {
  padding: 84px var(--page-gutter) 0;
}

.services-hero {
  position: relative;
  max-width: var(--card-max-width);
  margin: 0 auto;
  overflow: hidden;
  margin-bottom: 48px;
}

.services-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-hero__overlay {
  background: rgba(10, 18, 30, 0.28);
}

.services-hero__inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.services-accordion {
  position: relative;
  z-index: 2;
  max-width: calc(var(--card-max-width) - 120px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  background: rgba(248, 239, 230, 0.6);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition:
    background var(--transition),
    box-shadow var(--transition);
  border-radius: 30px;
  position: relative;
}

.service-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.35s ease;
  background: linear-gradient(
    to bottom,
    rgba(248, 239, 230, 0) 0%,
    rgba(248, 239, 230, 0.78) 58%,
    rgba(248, 239, 230, 0.96) 100%
  );
  box-shadow: inset 0 -18px 30px rgba(0, 0, 0, 0.04);
}

.service-item.is-open::after {
  opacity: 0;
}

.service-item.is-open {
  background: rgba(248, 239, 230, 0.82);
}

.service-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 42px;
}

.service-item__heading {
  display: flex;
  align-items: center;
  gap: 26px;
  min-width: 0;
}

.service-item__number {
  flex: 0 0 auto;
  color: #49bdb0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
}

.service-item__title {
  margin: 0;
  color: #21695f;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.08;
}

.service-item__toggle {
  flex: 0 0 auto;
  min-width: 146px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  color: #21695f;
  transition: opacity var(--transition);
}

.service-item__toggle:hover {
  opacity: 0.72;
}

.service-item__toggle-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  transition: opacity 0.24s ease;
}

.service-item__toggle-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.service-item__toggle-icon::before,
.service-item__toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #21695f;
  transform: translate(-50%, -50%);
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
}

.service-item__toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-item.is-open .service-item__toggle-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.4);
}

.service-item__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s ease;
}

.service-item.is-open .service-item__content {
  grid-template-rows: 1fr;
}

.service-item__content-inner {
  min-height: 0;
  overflow: hidden;
}

.service-item__content-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1fr);
  gap: 48px;
  padding: 0 42px 42px;
  align-items: start;
}

.service-item__info {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-top: 8px;
}

.service-item__description {
  margin: 0;
  max-width: 720px;
  color: #7f7a74;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.7;
}

.service-item__meta {
  margin-top: auto;
  padding-top: 42px;
}

.service-item__price {
  color: #21695f;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.service-item__book {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: #21695f;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-item__book:hover {
  opacity: 0.75;
}

.service-item__book-arrow {
  font-size: 28px;
  line-height: 1;
  font-weight: 300;
  transform: translateY(-1px);
}

.service-item__media {
  width: 100%;
  aspect-ratio: 1.26 / 1;
  overflow: hidden;
  background: #e7dfd6;
  border-radius: 30px;
}

.service-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.requests {
  padding: 92px var(--page-gutter) 0;
}

.requests__container {
  max-width: var(--card-max-width);
  margin: 0 auto;
}

.requests__head {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.requests__title {
  margin: 0;
  color: #10192d;
  font-size: clamp(42px, 4vw, 76px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.03em;
}

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

.requests__item {
  min-height: 122px;
  padding: 24px 40px;
  border-radius: 28px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  color: #1b2336;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
}

.requests__item--extra {
  display: none;
}

.requests.is-expanded .requests__item--extra {
  display: flex;
}

.requests__actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.requests__toggle {
  min-width: 220px;
  min-height: 64px;
  padding: 0 28px;
  border-radius: 999px;
  background: #49bdb0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    background 0.25s ease;
}

.requests__toggle:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.requests__note {
  margin: 54px 0 0;
  text-align: center;
  color: #5e697c;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.55;
}

.team {
  padding: 92px var(--page-gutter) 0;
  overflow: hidden;
}

.team__container {
  max-width: var(--card-max-width);
  margin: 0 auto;
}

.team__head {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.team__title {
  margin: 0;
  color: #10192d;
  font-size: clamp(42px, 4vw, 76px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.team__text {
  margin: 24px auto 0;
  max-width: 860px;
  color: #5e697c;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.55;
}

.team-slider {
  margin-top: 52px;
  overflow: visible;
}

.team-card {
  height: 100%;
  border-radius: 28px;
  background: #f7f7f7;
  overflow: hidden;
}

.team-card__media {
  position: relative;
  aspect-ratio: 0.88 / 1;
  overflow: hidden;
  background: #e9e9e9;
}

.team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__socials {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.team-card__social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.team-card__social:hover {
  transform: translateY(-2px);
  opacity: 0.88;
}

.team-card__social img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.team-card__body {
  padding: 24px 24px 28px;
}

.team-card__name {
  margin: 0;
  color: #1b2336;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.team-card__role {
  margin: 10px 0 0;
  color: #21695f;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.team__controls {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.team__nav {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #49bdb0;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    background 0.25s ease;
}

.team__nav:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.team__nav.swiper-button-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.team-card__social svg {
  width: 22px;
  height: 22px;
  display: block;
}

.team-card--founder {
  background: #49bdb0;
}

.team-card--founder .team-card__name,
.team-card--founder .team-card__role {
  color: #ffffff;
}

.workflow {
  padding: 136px var(--page-gutter) 0;
}

.workflow__container {
  max-width: var(--card-max-width);
  margin: 0 auto;
}

.workflow__card {
  display: grid;
  grid-template-columns: minmax(420px, 0.96fr) minmax(420px, 1fr);
  gap: 68px;
  align-items: stretch;
}

.workflow__left {
  position: relative;
  min-height: 760px;
  padding: 38px 48px 42px;
  border-radius: 34px;
  background: #f8efe6;
  overflow: hidden;
}

.workflow__badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 268px;
  min-height: 78px;
  padding: 16px 34px;
  border-radius: 999px;
  background: #49bdb0;
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

.workflow__title {
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 40px;
  z-index: 2;
  margin: 0;
  color: #10192d;
  font-size: clamp(54px, 5vw, 86px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.workflow__decor {
  position: absolute;
  width: 240px;
  height: 240px;
  opacity: 0.8;
  pointer-events: none;
}

.workflow__decor img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.workflow__decor--one {
  left: 40px;
  top: 180px;
  transform: rotate(-28deg);
}

.workflow__decor--two {
  right: 60px;
  top: 80px;
  transform: rotate(35deg);
}

.workflow__decor {
  opacity: 0.55;
}

.workflow__right {
  position: relative;
  padding: 18px 0;
}

.workflow-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 42px;
  align-items: start;
}

.workflow-step + .workflow-step {
  margin-top: 56px;
}

.workflow-step__num {
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: #49bdb0;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
}

.workflow-step__content {
  padding-top: 6px;
}

.workflow-step__title {
  margin: 0;
  color: #10192d;
  font-size: clamp(30px, 2.4vw, 54px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.workflow-step__text {
  margin: 22px 0 0;
  max-width: 760px;
  color: #5e697c;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.55;
}

.workflow-offer {
  margin-top: 64px;
  padding: 30px 34px;
  border-radius: 28px;
  background: rgba(248, 239, 230, 0.72);
}

.workflow-offer__title {
  margin: 0;
  color: #21695f;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.workflow-offer__text {
  margin: 18px 0 0;
  color: #5e697c;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.7;
}

.gratitude {
  padding: 80px var(--page-gutter);
}

.gratitude__container {
  max-width: var(--card-max-width);
  margin: 0 auto;
}

.gratitude__card {
  background: #c7d8d4;
  border-radius: 34px;
  padding: 72px 80px;
  position: relative;
}

.gratitude__quote img {
  width: 36px;
  opacity: 0.5;
}

.gratitude__text {
  margin: 28px 0 42px;

  font-size: 34px;
  line-height: 1.45;
  font-weight: 500;
  color: #10192d;
}

.gratitude__text span {
  color: #e2f2ed;
}

.gratitude__author-label {
  font-size: 18px;
  color: #44536a;
  margin-bottom: 16px;
}

.gratitude__divider {
  height: 1px;
  background: rgba(16, 25, 45, 0.2);
  margin-bottom: 26px;
}

.gratitude__author {
  display: flex;
  align-items: center;
  gap: 18px;
}

.gratitude__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.gratitude__name {
  font-size: 22px;
  font-weight: 600;
  color: #2f7c73;
}

.gratitude__role {
  font-size: 16px;
  color: #44536a;
}

.gratitude {
  padding: 86px var(--page-gutter) 0;
}

.gratitude__container {
  max-width: var(--card-max-width);
  margin: 0 auto;
}

.gratitude__card {
  position: relative;
  min-height: 905px;
  border-radius: 32px;
  background: #cfe0dc;
  overflow: hidden;
}

.gratitude__content {
  width: 100%;
  max-width: 90%;

  margin: 0 auto;
  padding-top: 140px;
}

.gratitude__quote {
  position: absolute;
  top: 78px;
  left: 184px;
  width: 58px;
  height: 58px;
  opacity: 0.52;
}

.gratitude__quote img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gratitude__text {
  margin: 0;
  color: #101828;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.58;
  letter-spacing: -0.02em;
}

.gratitude__text span {
  color: #2f7c73;
}

.gratitude__author-label {
  margin-top: 52px;
  color: #243049;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
}

.gratitude__divider {
  width: calc(100% - 182px - 160px);
  max-width: 1060px;
  height: 1px;
  margin-top: 22px;
  background: rgba(42, 77, 85, 0.36);
}

.gratitude__author {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 32px;
}

.gratitude__avatar {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.gratitude__author-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gratitude__name {
  color: #2f6f6a;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.gratitude__role {
  color: #2f6f6a;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
}

.contact-form-section {
  padding: 92px var(--page-gutter) 0;
}

.contact-form-section__container {
  max-width: var(--card-max-width);
  margin: 0 auto;
}

.contact-form-section__head {
  max-width: 1180px;
  margin: 0 auto 56px;
  text-align: center;
}

.contact-form-section__title {
  margin: 0;
  color: #10192d;
  font-size: clamp(42px, 4vw, 76px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.contact-form-section__subtitle {
  margin: 22px auto 0;
  max-width: 960px;
  color: #5e697c;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.55;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 490px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.contact-form-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.consult-card {
  padding: 34px 36px 32px;
  border-radius: 32px;
  background: #49bdb0;
  color: #ffffff;
  box-shadow: 0 18px 48px rgba(73, 189, 176, 0.18);
}

.consult-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.consult-card__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.consult-card__body {
  margin-top: 24px;
}

.consult-card__title {
  margin: 0;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.2;
}

.consult-card__text {
  margin: 14px 0 0;
  max-width: 310px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
}

.consult-card__divider {
  height: 1px;
  margin: 26px 0 24px;
  background: rgba(255, 255, 255, 0.22);
}

.consult-card__price {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.consult-card__meta {
  margin-top: 12px;
  font-size: 17px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.consult-image-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  aspect-ratio: 1.04 / 0.7;
  background: #ececec;
}

.consult-image-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consult-image-card__tag {
  position: absolute;
  right: 22px;
  bottom: 22px;
  min-height: 54px;
  padding: 14px 26px;
  border-radius: 999px;
  background: #49bdb0;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(73, 189, 176, 0.22);
}

.consult-benefits {
  padding: 26px 28px 24px;
  border-radius: 24px;
  background: #f3f4f6;
}

.consult-benefits__title {
  margin: 0 0 18px;
  color: #5e697c;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}

.consult-benefits__list {
  margin: 0;
  padding-left: 20px;
  color: #44536a;
  font-size: 16px;
  line-height: 1.8;
}

.contact-form-card {
  padding: 44px 44px 34px;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(16, 25, 45, 0.1);
}

.contact-form-card__title {
  margin: 0 0 32px;
  color: #10192d;
  font-size: clamp(32px, 2.5vw, 54px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form__label {
  color: #44536a;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.contact-form__field {
  position: relative;
}

.contact-form__icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  opacity: 0.58;
  pointer-events: none;
}

.contact-form__icon--top {
  top: 20px;
  transform: none;
}

.contact-form__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e2e5ea;
  background: #f7f8fa;
  color: #10192d;
  border-radius: 20px;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.contact-form input {
  height: 68px;
  padding: 0 20px 0 54px;
  font-size: 18px;
}

.contact-form textarea {
  min-height: 148px;
  resize: vertical;
  padding: 18px 20px 18px 54px;
  font-size: 18px;
  line-height: 1.55;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8a92a3;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(73, 189, 176, 0.55);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(73, 189, 176, 0.12);
}

.contact-form__submit {
  height: 72px;
  margin-top: 6px;
  border-radius: 20px;
  background: #49bdb0;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 14px 34px rgba(73, 189, 176, 0.2);
}

.contact-form__submit:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.contact-form__submit img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.contact-form__policy {
  margin: 2px 0 0;
  text-align: center;
  color: #8a92a3;
  font-size: 15px;
  line-height: 1.6;
}

.contacts-clean {
  padding-top: 92px;
}

.contacts-clean__container {
  max-width: var(--card-max-width);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
}

.contacts-clean__content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.contacts-clean__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #49bdb0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contacts-clean__title {
  margin: 0;
  color: #10192d;
  font-size: clamp(42px, 4vw, 76px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.contacts-clean__desc {
  max-width: 760px;
  margin: 22px auto 0;
  color: #5e697c;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.55;
}

.contacts-clean__info {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contacts-clean__link,
.contacts-clean__address {
  margin: 0;
  color: #1b2336;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
}

.contacts-clean__link:hover {
  color: #49bdb0;
}

.contacts-clean__address {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: #5e697c;
  font-weight: 400;
}

.contacts-clean__socials {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.contacts-clean__social {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f4f6f8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.contacts-clean__social:hover {
  transform: translateY(-2px);
  background: #49bdb0;
}

.contacts-clean__social img,
.contacts-clean__social svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
  fill: #21695f;
}

.contacts-clean__social:hover img,
.contacts-clean__social:hover svg {
  filter: brightness(0) invert(1);
}

.contacts-clean__map {
  width: 100%;
  margin-top: 56px;
  height: 540px;
  overflow: hidden;
}

.contacts-clean__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.site-footer {
  background: #49bdb0;
  color: white;
  padding: 70px 0 40px;
}

.footer-container {
  max-width: var(--card-max-width);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.5fr 1fr;
  gap: 60px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 18px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 18px;
}

.footer-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 17px;
  transition: opacity 0.25s;
}

.footer-menu a:hover {
  opacity: 0.7;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact img {
  width: 18px;
  margin-top: 3px;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-social {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.25s,
    background 0.25s;
}

.footer-social img {
  width: 18px;
}

.footer-social:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.25);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 50px;
  padding-top: 24px;
  text-align: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-logo {
    width: 150px;
  }

  .footer-description {
    font-size: 16px;
  }
}

@media (max-width: 1440px) {
  .contacts-clean {
    padding-top: 76px;
  }

  .contacts-clean__desc {
    font-size: 19px;
  }

  .contacts-clean__link,
  .contacts-clean__address {
    font-size: 24px;
  }

  .contacts-clean__map {
    height: 500px;
  }
}

@media (max-width: 1024px) {
  .contacts-clean {
    padding-top: 58px;
  }

  .contacts-clean__desc {
    font-size: 18px;
    line-height: 1.6;
  }

  .contacts-clean__link,
  .contacts-clean__address {
    font-size: 22px;
  }

  .contacts-clean__map {
    margin-top: 42px;
    height: 420px;
  }
}

@media (max-width: 767px) {
  .contacts-clean {
    padding-top: 44px;
  }

  .contacts-clean__eyebrow {
    font-size: 13px;
  }

  .contacts-clean__desc {
    margin-top: 16px;
    font-size: 16px;
  }

  .contacts-clean__info {
    margin-top: 28px;
    gap: 12px;
  }

  .contacts-clean__link,
  .contacts-clean__address {
    font-size: 18px;
    line-height: 1.5;
  }

  .contacts-clean__socials {
    margin-top: 22px;
    gap: 10px;
  }

  .contacts-clean__social {
    width: 46px;
    height: 46px;
  }

  .contacts-clean__map {
    margin-top: 32px;
    height: 320px;
  }
}

@media (max-width: 1440px) {
  .contact-form-section {
    padding-top: 76px;
  }

  .contact-form-layout {
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 28px;
  }

  .contact-form-section__subtitle {
    font-size: 19px;
  }

  .consult-card {
    padding: 28px 28px 26px;
    border-radius: 28px;
  }

  .consult-card__title {
    font-size: 24px;
  }

  .consult-card__text {
    font-size: 16px;
  }

  .consult-card__price {
    font-size: 46px;
  }

  .contact-form-card {
    padding: 34px 34px 28px;
    border-radius: 30px;
  }

  .contact-form-card__title {
    margin-bottom: 24px;
  }
}

@media (max-width: 1024px) {
  .contact-form-section {
    padding-top: 58px;
  }

  .contact-form-section__head {
    margin-bottom: 34px;
  }

  .contact-form-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-form-aside {
    order: 2;
  }

  .contact-form-card {
    order: 1;
  }

  .contact-form-section__subtitle {
    font-size: 18px;
    line-height: 1.6;
  }

  .contact-form-card__title {
    font-size: 34px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .contact-form-section {
    padding-top: 44px;
  }

  .contact-form-section__head {
    margin-bottom: 26px;
  }

  .contact-form-section__subtitle {
    margin-top: 16px;
    font-size: 16px;
  }

  .contact-form-card {
    padding: 22px 18px 22px;
    border-radius: 24px;
  }

  .contact-form-card__title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .contact-form {
    gap: 18px;
  }

  .contact-form__group {
    gap: 8px;
  }

  .contact-form__label {
    font-size: 16px;
  }

  .contact-form input {
    height: 58px;
    padding-left: 48px;
    font-size: 16px;
    border-radius: 16px;
  }

  .contact-form textarea {
    min-height: 126px;
    padding-left: 48px;
    font-size: 16px;
    border-radius: 16px;
  }

  .contact-form__icon {
    left: 15px;
    width: 20px;
    height: 20px;
  }

  .contact-form__submit {
    height: 60px;
    border-radius: 16px;
    font-size: 17px;
  }

  .contact-form__policy {
    font-size: 13px;
  }

  .consult-card,
  .consult-image-card__media,
  .consult-benefits {
    border-radius: 22px;
  }

  .consult-image-card__tag {
    right: 14px;
    bottom: 14px;
    min-height: 44px;
    padding: 10px 16px;
    font-size: 14px;
  }
}

@media (max-width: 1440px) {
  .gratitude {
    padding-top: 72px;
  }

  .gratitude__card {
    min-height: 760px;
  }

  .gratitude__quote {
    top: 68px;
    left: 122px;
    width: 48px;
    height: 48px;
  }

  .gratitude__text {
    max-width: 930px;
    font-size: 28px;
    line-height: 1.55;
  }

  .gratitude__author-label {
    margin-top: 42px;
    font-size: 20px;
  }

  .gratitude__divider {
    width: calc(100% - 120px - 110px);
    margin-top: 18px;
  }

  .gratitude__author {
    margin-top: 28px;
    gap: 22px;
  }

  .gratitude__avatar {
    width: 92px;
    height: 92px;
  }

  .gratitude__name {
    font-size: 24px;
  }

  .gratitude__role {
    font-size: 17px;
  }
}

@media (max-width: 1024px) {
  .gratitude {
    padding-top: 56px;
  }

  .gratitude__card {
    min-height: auto;
    border-radius: 28px;
  }

  .gratitude__quote {
    top: 34px;
    left: 34px;
    width: 42px;
    height: 42px;
  }

  .gratitude__text {
    max-width: none;
    font-size: 24px;
    line-height: 1.55;
  }

  .gratitude__author-label {
    margin-top: 34px;
    font-size: 18px;
  }

  .gratitude__divider {
    width: 100%;
    max-width: none;
    margin-top: 16px;
  }

  .gratitude__author {
    margin-top: 24px;
  }

  .gratitude__avatar {
    width: 74px;
    height: 74px;
  }

  .gratitude__name {
    font-size: 22px;
  }

  .gratitude__role {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .gratitude {
    padding-top: 44px;
  }

  .gratitude__card {
    border-radius: 24px;
  }

  .gratitude__content {
    padding-top: 30px;
  }

  .gratitude__card {
    padding: 60px 0px;
  }

  .gratitude__quote {
    top: 22px;
    left: 20px;
    width: 34px;
    height: 34px;
  }

  .gratitude__text {
    font-size: 18px;
    line-height: 1.6;
  }

  .gratitude__author-label {
    margin-top: 28px;
    font-size: 16px;
  }

  .gratitude__author {
    align-items: center;
    gap: 14px;
    margin-top: 18px;
  }

  .gratitude__avatar {
    width: 58px;
    height: 58px;
  }

  .gratitude__name {
    font-size: 18px;
  }

  .gratitude__role {
    font-size: 14px;
  }
}

@media (max-width: 1440px) {
  .workflow {
    padding-top: 76px;
  }

  .workflow__card {
    gap: 44px;
  }

  .workflow__left {
    min-height: 680px;
    padding: 30px 34px 34px;
  }

  .workflow__badge {
    min-width: 228px;
    min-height: 68px;
    font-size: 20px;
  }

  .workflow__title {
    left: 34px;
    right: 34px;
    bottom: 34px;
  }

  .workflow__decor--one {
    width: 230px;
    top: 170px;
  }

  .workflow__decor--two {
    width: 280px;
    right: 34px;
  }

  .workflow__right::before {
    left: 40px;
    width: 6px;
  }

  .workflow-step {
    grid-template-columns: 80px 1fr;
    gap: 30px;
  }

  .workflow-step__num {
    width: 80px;
    height: 80px;
    font-size: 34px;
  }

  .workflow-step__text {
    font-size: 19px;
  }

  .workflow-offer__title {
    font-size: 24px;
  }

  .workflow-offer__text {
    font-size: 17px;
  }
}

@media (max-width: 1024px) {
  .workflow {
    padding-top: 58px;
  }

  .workflow__card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .workflow__left {
    min-height: 420px;
    padding: 24px 24px 28px;
    border-radius: 28px;
  }

  .workflow__badge {
    min-width: 190px;
    min-height: 58px;
    padding: 12px 22px;
    font-size: 18px;
  }

  .workflow__title {
    left: 24px;
    right: 24px;
    bottom: 26px;
    font-size: clamp(42px, 8vw, 68px);
    line-height: 0.96;
  }

  .workflow__decor--one {
    width: 184px;
    left: -6px;
    top: 130px;
  }

  .workflow__decor--two {
    width: 220px;
    right: 24px;
    top: 34px;
  }

  .workflow__right {
    padding: 0;
  }

  .workflow__right::before {
    left: 30px;
    top: 70px;
    bottom: 210px;
    width: 5px;
  }

  .workflow-step {
    grid-template-columns: 60px 1fr;
    gap: 18px;
  }

  .workflow-step + .workflow-step {
    margin-top: 34px;
  }

  .workflow-step__num {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .workflow-step__content {
    padding-top: 2px;
  }

  .workflow-step__title {
    font-size: clamp(28px, 5vw, 40px);
  }

  .workflow-step__text {
    margin-top: 12px;
    font-size: 18px;
    line-height: 1.6;
  }

  .workflow-offer {
    margin-top: 36px;
    padding: 22px 20px;
    border-radius: 22px;
  }
}

@media (max-width: 767px) {
  .workflow {
    padding-top: 44px;
  }

  .workflow__left {
    min-height: 320px;
    padding: 18px 18px 22px;
    border-radius: 24px;
  }

  .workflow__badge {
    min-width: 164px;
    min-height: 48px;
    padding: 10px 18px;
    font-size: 16px;
  }

  .workflow__title {
    left: 18px;
    right: 18px;
    bottom: 18px;
    font-size: 42px;
  }

  .workflow__decor--one {
    width: 138px;
    top: 118px;
  }

  .workflow__decor--two {
    width: 164px;
    right: 12px;
    top: 42px;
  }

  .workflow__right::before {
    left: 24px;
    top: 56px;
    bottom: 270px;
    width: 4px;
  }

  .workflow-step {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .workflow-step__num {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .workflow-step__title {
    font-size: 24px;
    line-height: 1.15;
  }

  .workflow-step__text {
    font-size: 16px;
    line-height: 1.6;
  }

  .workflow-offer__title {
    font-size: 20px;
  }

  .workflow-offer__text {
    font-size: 15px;
    line-height: 1.65;
  }
}

@media (max-width: 1440px) {
  .team {
    padding-top: 76px;
  }

  .team__text {
    font-size: 19px;
  }

  .team-card__body {
    padding: 20px 20px 24px;
  }

  .team-card__name {
    font-size: 22px;
  }

  .team-card__role {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .team {
    padding-top: 58px;
  }

  .team__text {
    font-size: 18px;
    line-height: 1.6;
  }

  .team-slider {
    margin-top: 34px;
  }

  .team-card {
    border-radius: 24px;
  }

  .team-card__socials {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .team-card__social {
    width: 38px;
    height: 38px;
  }

  .team-card__social img {
    width: 16px;
    height: 16px;
  }

  .team__nav {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .team {
    padding-top: 44px;
  }

  .team__text {
    margin-top: 18px;
    font-size: 16px;
  }

  .team-card {
    border-radius: 20px;
  }

  .team-card__body {
    padding: 18px 18px 22px;
  }

  .team-card__name {
    font-size: 20px;
  }

  .team-card__role {
    margin-top: 8px;
    font-size: 15px;
  }

  .team__controls {
    margin-top: 22px;
  }
}

@media (max-width: 1440px) {
  .requests {
    padding-top: 76px;
  }

  .requests__grid {
    margin-top: 56px;
    gap: 22px 24px;
  }

  .requests__item {
    min-height: 108px;
    padding: 22px 28px;
    font-size: 20px;
    border-radius: 24px;
  }

  .requests__note {
    font-size: 19px;
  }
}

@media (max-width: 1024px) {
  .requests {
    padding-top: 58px;
  }

  .requests__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 40px;
    gap: 18px;
  }

  .requests__item {
    min-height: 96px;
    padding: 20px 22px;
    font-size: 18px;
    border-radius: 22px;
  }

  .requests__toggle {
    min-width: 200px;
    min-height: 58px;
    font-size: 17px;
  }

  .requests__note {
    margin-top: 36px;
    font-size: 18px;
    line-height: 1.6;
  }
}

@media (max-width: 767px) {
  .requests {
    padding-top: 44px;
  }

  .requests__grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
    gap: 14px;
  }

  .requests__item {
    min-height: 82px;
    padding: 18px 18px;
    font-size: 17px;
    border-radius: 20px;
  }

  .requests__toggle {
    width: 100%;
    min-width: 0;
    max-width: 320px;
    min-height: 54px;
    font-size: 16px;
  }

  .requests__note {
    margin-top: 28px;
    font-size: 16px;
  }
}

@media (max-width: 1440px) {
  .services {
    padding-top: 72px;
  }

  .services-hero__inner {
    padding: 72px 24px 126px;
  }

  .services-accordion {
    max-width: calc(var(--card-max-width) - 80px);
    margin-top: -48px;
  }

  .service-item__summary {
    padding: 28px 30px;
  }

  .service-item__content-inner {
    gap: 36px;
    padding: 0 30px 30px;
  }

  .service-item__description {
    font-size: 18px;
  }

  .service-item__price {
    font-size: 22px;
  }
}

@media (max-width: 1024px) {
  .services {
    padding-top: 56px;
  }

  .services-hero {
    min-height: 320px;
  }

  .services-hero__inner {
    padding: 52px 20px 108px;
  }

  .services-hero__brand {
    font-size: 14px;
    letter-spacing: 0.22em;
  }

  .services-hero__text {
    font-size: 17px;
    line-height: 1.55;
  }

  .services-accordion {
    max-width: 100%;
    margin-top: -40px;
    gap: 14px;
  }

  .service-item__summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 24px 20px;
  }

  .service-item__heading {
    width: 100%;
    align-items: flex-start;
    gap: 14px;
  }

  .service-item__number {
    font-size: 20px;
  }

  .service-item__title {
    font-size: 30px;
  }

  .service-item__toggle {
    min-width: 0;
    justify-content: flex-start;
  }

  .service-item__content-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 0 20px 24px;
  }

  .service-item__description {
    font-size: 17px;
    line-height: 1.65;
  }

  .service-item__meta {
    padding-top: 28px;
  }

  .service-item__price {
    font-size: 21px;
  }

  .service-item__book {
    margin-top: 20px;
    font-size: 16px;
    letter-spacing: 0.14em;
  }

  .service-item__media {
    order: -1;
    aspect-ratio: 1.35 / 1;
  }
}

@media (max-width: 767px) {
  .services {
    padding-top: 44px;
  }

  .services-hero {
    min-height: 260px;
  }

  .services-hero__inner {
    padding: 42px 16px 96px;
  }

  .services-hero__title {
    font-size: 62px;
  }

  .services-hero__text {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.6;
  }

  .service-item__summary {
    padding: 20px 16px;
  }

  .service-item__heading {
    flex-direction: column;
    gap: 10px;
  }

  .service-item__number {
    font-size: 18px;
  }

  .service-item__title {
    font-size: 24px;
  }

  .service-item__toggle-text {
    font-size: 16px;
  }

  .service-item__content-inner {
    padding: 0 16px 20px;
  }

  .service-item__description {
    font-size: 15px;
  }

  .service-item__price {
    font-size: 19px;
  }

  .service-item__book {
    font-size: 14px;
  }

  .service-item__media {
    aspect-ratio: 1.12 / 1;
  }
}

@media (max-width: 1440px) {
  .about {
    padding-top: 60px;
  }

  .about__container {
    gap: 34px;
  }

  .about__media {
    min-height: 470px;
  }

  .about__play {
    width: 90px;
    height: 90px;
    top: 30px;
    right: 26px;
  }

  .about__play img {
    width: 28px;
    height: 28px;
  }

  .about__cta {
    min-width: 280px;
    min-height: 66px;
    padding: 15px 22px 15px 32px;
  }

  .about__cta span {
    font-size: 18px;
  }

  .about__text {
    margin-top: 30px;
  }

  .about__text p {
    font-size: 19px;
  }

  .about-card {
    min-height: 290px;
    padding: 34px 30px 30px;
  }

  .about-card__title {
    margin-top: 28px;
    font-size: 22px;
  }

  .about-card__text {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .about {
    padding-top: 48px;
  }

  .about__container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about__media {
    min-height: 520px;
  }

  .about__content {
    padding-top: 0;
  }

  .about__title {
    max-width: 100%;
    font-size: clamp(36px, 7vw, 56px);
  }

  .about__text {
    max-width: 100%;
    margin-top: 24px;
  }

  .about__text p {
    font-size: 18px;
    line-height: 1.6;
  }

  .about-cards {
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .video-modal__dialog {
    width: min(100vw - 24px, 1100px);
    max-height: calc(100vh - 24px);
    margin: 12px auto;
    border-radius: 18px;
  }

  .video-modal__video {
    max-height: calc(100vh - 24px);
  }
}

@media (max-width: 767px) {
  .about {
    padding-top: 40px;
  }

  .about__media {
    min-height: 360px;
    border-radius: 24px;
  }

  .about__play {
    width: 74px;
    height: 74px;
    top: 18px;
    right: 18px;
  }

  .about__play img {
    width: 22px;
    height: 22px;
  }

  .about__cta {
    left: 16px;
    right: 16px;
    bottom: 16px;
    transform: none;
    min-width: 0;
    width: auto;
    min-height: 58px;
    padding: 14px 18px 14px 20px;
  }

  .about__cta span {
    font-size: 17px;
  }

  .about__title {
    font-size: 42px;
  }

  .about__text p {
    font-size: 16px;
  }

  .about-card {
    border-radius: 24px;
    padding: 26px 22px 24px;
  }

  .about-card__icon {
    width: 58px;
    height: 58px;
  }

  .about-card__icon img {
    width: 26px;
    height: 26px;
  }

  .about-card__title {
    margin: 24px 0 16px;
    font-size: 20px;
  }

  .about-card__text {
    font-size: 16px;
    line-height: 1.65;
  }

  .video-modal__close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}

@media (max-width: 420px) {
  .about__title {
    font-size: 36px;
  }

  .about__media {
    min-height: 310px;
  }
}

@media (max-width: 1440px) {
  :root {
    --page-gutter: 28px;
  }

  .hero-card {
    min-height: 700px;
  }

  .hero-header__inner {
    grid-template-columns: 190px 1fr auto;
    padding: 20px 28px 0;
  }

  .logo img {
    width: 150px;
  }

  .desktop-nav {
    gap: 34px;
  }

  .desktop-nav a,
  .lang-link,
  .lang-switcher span {
    font-size: 18px;
  }

  .header-contact-btn {
    min-width: 164px;
    height: 52px;
    font-size: 18px;
  }

  .hero-main {
    min-height: 578px;
    padding: 138px 28px 0;
  }

  .hero-quick-links {
    width: 320px;
    margin-bottom: 38px;
  }

  .hero-side-link span:first-child {
    font-size: 18px;
  }

  .hero-copy p {
    font-size: 20px;
    max-width: 620px;
  }

  .hero-tag {
    min-height: 58px;
    padding: 15px 28px;
    font-size: 19px;
  }

  .hero-tag--top {
    top: 150px;
    left: 78px;
  }

  .hero-tag--middle {
    top: 286px;
    right: 0;
  }

  .hero-tag--bottom {
    left: 118px;
    bottom: 0px;
  }

  .hero-note span {
    font-size: 16px;
  }

  .hero-cta {
    width: min(520px, 100%);
    min-height: 86px;
  }

  .hero-cta span:first-child {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  :root {
    --page-gutter: 20px;
  }

  .hero {
    padding-top: 12px;
  }

  .hero-card {
    min-height: 860px;
    border-radius: 28px;
  }

  .hero-header__inner {
    grid-template-columns: 1fr auto auto;
    gap: 14px;
    padding: 18px 20px 0;
  }

  .desktop-nav,
  .lang-switcher,
  .header-contact-btn {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .logo img {
    width: 132px;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(78, 137, 185, 0.46) 0%,
      rgba(106, 164, 209, 0.54) 34%,
      rgba(106, 164, 209, 0.72) 63%,
      rgba(106, 164, 209, 0.9) 100%
    );
  }

  .hero-main {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 240px 20px 0;
  }

  .hero-quick-links {
    width: 100%;
    max-width: 290px;
    margin-bottom: 28px;
    gap: 14px;
  }

  .hero-side-link {
    padding-bottom: 12px;
  }

  .hero-side-link span:first-child {
    font-size: 17px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(40px, 9vw, 58px);
  }

  .hero-copy p {
    max-width: 440px;
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.55;
  }

  .hero-right {
    min-height: 250px;
  }

  .hero-tag {
    min-height: 52px;
    padding: 14px 22px;
    font-size: 16px;
  }

  .hero-tag--top {
    top: 40px;
    left: 10px;
  }

  .hero-tag--middle {
    top: 118px;
    right: 0;
  }

  .hero-tag--bottom {
    left: 24px;
    bottom: 28px;
  }

  .hero-bottom {
    position: relative;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .hero-cta {
    width: calc(100% - 58px);
    min-height: 84px;
    padding: 20px 22px 20px 24px;
    border-radius: 0 26px 0 0;
  }

  .hero-cta span:first-child {
    font-size: 17px;
  }

  .hero-cta-arrow {
    font-size: 36px;
  }

  .hero-note {
    padding: 0 20px 20px;
    gap: 12px;
  }

  .hero-note span {
    font-size: 15px;
    line-height: 1.45;
  }

  .mobile-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 38;
    background: rgba(9, 19, 31, 0.36);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity var(--transition),
      visibility var(--transition);
    display: block;
  }

  .mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 39;
    width: min(88vw, 360px);
    height: 100dvh;
    padding: 22px 20px 24px;
    background: #ffffff;
    transform: translateX(100%);
    transition: transform var(--transition);
    display: flex;
    flex-direction: column;
  }

  .mobile-drawer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
  }

  .mobile-drawer__top img {
    width: 126px;
  }

  .mobile-drawer__close {
    width: 40px;
    height: 40px;
    color: #123;
    font-size: 34px;
    line-height: 1;
  }

  .mobile-drawer__langs {
    display: flex;
    gap: 14px;
    margin-bottom: 34px;
  }

  .mobile-drawer__langs .lang-link {
    color: rgba(28, 44, 62, 0.55);
    font-size: 18px;
  }

  .mobile-drawer__langs .lang-link.is-active {
    color: #14283c;
  }

  .mobile-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .mobile-drawer__nav a {
    color: #14283c;
    text-decoration: none;
    font-size: 20px;
    line-height: 1.2;
  }

  .mobile-drawer__contact {
    margin-top: auto;
    min-height: 54px;
    border-radius: 999px;
    background: #14283c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .mobile-drawer-backdrop {
    opacity: 1;
    visibility: visible;
  }

  body.menu-open .mobile-drawer {
    transform: translateX(0);
  }
}

@media (max-width: 767px) {
  :root {
    --page-gutter: 16px;
  }

  .hero-card {
    min-height: 760px;
    border-radius: 24px;
  }

  .hero-header__inner {
    padding: 16px 16px 0;
  }

  .logo img {
    width: 120px;
  }

  .hero-main {
    padding: 80px 16px 0;
  }

  .hero-quick-links {
    margin-bottom: 240px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: 48px;
  }

  .hero-copy p {
    max-width: 320px;
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-right {
    min-height: 220px;
  }

  .hero-tag {
    min-height: 46px;
    padding: 12px 18px;
    font-size: 14px;
  }

  .hero-tag--top {
    top: 30px;
    left: 4px;
  }

  .hero-tag--middle {
    top: 100px;
    right: -2px;
  }

  .hero-tag--bottom {
    left: 14px;
    bottom: 20px;
  }

  .hero-cta {
    width: calc(100% - 42px);
    min-height: 76px;
    padding: 18px 18px 18px 20px;
  }

  .hero-cta span:first-child {
    font-size: 15px;
  }

  .hero-note {
    align-items: flex-start;
    padding: 0 16px 16px;
  }

  .hero-note svg {
    width: 22px;
    height: 22px;
  }

  .hero-note span {
    font-size: 14px;
  }

  .hero-note {
    padding-top: 24px;
  }

  .hero-bg {
    display: none;
  }

  .hero-bg__mobile {
    display: block;
  }
}

@media (max-width: 420px) {
  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-side-link span:first-child {
    font-size: 15px;
  }

  .hero-tag {
    max-width: 72vw;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .hero-cta-arrow {
    display: none;
  }

  .hero-bottom {
    align-items: center;
  }

  .hero-cta {
    border-radius: 26px 26px 0 0;
    padding: 12px;

    justify-content: center;
  }

  .hero-cta span:first-child {
    white-space: nowrap;
    text-align: center;
    font-size: 12px;
  }
}

.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.32s ease,
    visibility 0.32s ease;
}

.promo-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.promo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 26, 31, 0.72);
  backdrop-filter: blur(2px);
}

.promo-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 780px);
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%) scale(0.96);
  padding: 56px 44px 38px;
  border-radius: 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
  box-shadow: 0 34px 90px rgba(16, 25, 45, 0.28);
  transition: transform 0.32s ease;
}

.promo-modal.is-open .promo-modal__dialog {
  transform: translateY(-50%) scale(1);
}

.promo-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f2f4f7;
  color: #5e697c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  line-height: 1;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.promo-modal__icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: #49bdb0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(73, 189, 176, 0.22);
}

.promo-modal__icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.promo-modal__title {
  margin: 28px 0 0;
  color: #10192d;
  font-size: clamp(36px, 3vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.promo-modal__text {
  margin: 18px 0 0;
  color: #5e697c;
  font-size: 19px;
  line-height: 1.6;
}

.promo-modal__benefits {
  margin-top: 28px;
  padding: 22px 22px 20px;
  border-radius: 22px;
  background: #f3f5f7;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.promo-modal__benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #44536a;
  font-size: 17px;
  line-height: 1.45;
}

.promo-modal__benefit img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 auto;
}

.promo-modal__price-card {
  margin-top: 26px;
  padding: 24px 28px 20px;
  border-radius: 22px;
  background: #49bdb0;
  color: #ffffff;
  text-align: center;
}

.promo-modal__price-label {
  font-size: 18px;
  line-height: 1.3;
  opacity: 0.95;
}

.promo-modal__price-row {
  margin-top: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}

.promo-modal__price-value {
  font-size: 56px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.promo-modal__price-currency {
  font-size: 20px;
  line-height: 1.3;
  transform: translateY(-8px);
}

.promo-modal__price-note {
  margin-top: 8px;
  font-size: 16px;
  opacity: 0.94;
}

.promo-modal__cta {
  width: 100%;
  min-height: 72px;
  margin-top: 26px;
  padding: 0 28px;
  border-radius: 20px;
  background: #49bdb0;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 14px 30px rgba(73, 189, 176, 0.2);
}

.promo-modal__cta:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.promo-modal__cta-arrow {
  font-size: 30px;
  line-height: 1;
  font-weight: 300;
}

.promo-modal__later {
  width: 100%;
  margin-top: 16px;
  color: #6d7688;
  font-size: 17px;
  line-height: 1.4;
  text-align: center;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .promo-modal__dialog {
    width: calc(100% - 24px);
    padding: 22px 18px 20px;
    border-radius: 24px;
  }

  .promo-modal__close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .promo-modal__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }

  .promo-modal__icon img {
    width: 28px;
    height: 28px;
  }

  .promo-modal__title {
    margin-top: 20px;
    font-size: 30px;
  }

  .promo-modal__text {
    font-size: 16px;
  }

  .promo-modal__benefits {
    margin-top: 22px;
    padding: 18px 16px;
    border-radius: 18px;
    gap: 14px;
  }

  .promo-modal__benefit {
    align-items: flex-start;
    font-size: 15px;
  }

  .promo-modal__benefit img {
    width: 20px;
    height: 20px;
    margin-top: 1px;
  }

  .promo-modal__price-card {
    margin-top: 20px;
    padding: 18px 16px 16px;
    border-radius: 18px;
  }

  .promo-modal__price-value {
    font-size: 44px;
  }

  .promo-modal__price-currency {
    font-size: 18px;
    transform: translateY(-6px);
  }

  .promo-modal__cta {
    min-height: 60px;
    margin-top: 20px;
    border-radius: 16px;
    font-size: 17px;
  }

  .promo-modal__later {
    margin-top: 12px;
    font-size: 15px;
  }
}

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  background: #f5f7f9;
}

.success-card {
  width: 100%;
  max-width: 640px; /* меньше чем в макете */
  padding: 48px 36px 40px;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(16, 25, 45, 0.12);
  text-align: center;
}

.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #49bdb0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon img {
  width: 36px;
  height: 36px;
}

.success-title {
  margin: 0;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 700;
  color: #10192d;
}

.success-text {
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 1.6;
  color: #5e697c;
}

.success-meta {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.success-meta-item {
  padding: 18px;
  border-radius: 18px;
  background: #f3f5f7;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.success-meta-item img {
  width: 22px;
  height: 22px;
}

.success-meta-item span {
  font-size: 15px;
  color: #44536a;
}

.success-meta-item strong {
  color: #10192d;
}

.success-steps {
  margin-top: 28px;
  padding: 22px;
  border-radius: 20px;
  background: #49bdb0;
  color: white;
  text-align: left;
}

.success-steps h3 {
  margin: 0 0 16px;
  font-size: 18px;
}

.success-step {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
}

.success-step span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.success-btn {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  background: #49bdb0;
  color: #ffffff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  transition: 0.25s;
}

.success-btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.success-note {
  margin-top: 18px;
  font-size: 14px;
  color: #8a92a3;
}

@media (max-width: 540px) {
  .success-meta {
    display: flex;
    flex-direction: column;
  }
  .success-card {
    padding: 24px 18px 20px;
  }
}

.payment-failed-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  background: #f5f7f9;
}

.payment-failed-card {
  width: 100%;
  max-width: 640px;
  padding: 48px 36px 40px;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(16, 25, 45, 0.12);
  text-align: center;
}

.payment-failed-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #f06a6a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(240, 106, 106, 0.18);
}

.payment-failed-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.payment-failed-title {
  margin: 0;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 700;
  color: #10192d;
  line-height: 1.1;
}

.payment-failed-text {
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 1.6;
  color: #5e697c;
}

.payment-failed-info {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.payment-failed-info-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: #f8f9fb;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.payment-failed-info-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex: 0 0 auto;
}

.payment-failed-info-item span {
  font-size: 15px;
  line-height: 1.5;
  color: #44536a;
}

.payment-failed-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.payment-failed-btn {
  min-width: 220px;
  height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  transition: 0.25s ease;
}

.payment-failed-btn--primary {
  background: #49bdb0;
  color: #ffffff;
}

.payment-failed-btn--primary:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.payment-failed-btn--ghost {
  background: #eef2f5;
  color: #10192d;
}

.payment-failed-btn--ghost:hover {
  background: #e7edf2;
}

.payment-failed-note {
  margin-top: 18px;
  font-size: 14px;
  color: #8a92a3;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .payment-failed-card {
    padding: 28px 18px 24px;
    border-radius: 24px;
  }

  .payment-failed-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
  }

  .payment-failed-icon img {
    width: 28px;
    height: 28px;
  }

  .payment-failed-title {
    font-size: 30px;
  }

  .payment-failed-text {
    font-size: 16px;
  }

  .payment-failed-info {
    margin-top: 22px;
  }

  .payment-failed-info-item {
    padding: 16px;
    border-radius: 16px;
  }

  .payment-failed-info-item span {
    font-size: 14px;
  }

  .payment-failed-actions {
    margin-top: 22px;
    gap: 10px;
  }

  .payment-failed-btn {
    width: 100%;
    min-width: 0;
    height: 54px;
    font-size: 16px;
  }

  .payment-failed-note {
    margin-top: 14px;
    font-size: 13px;
  }
}

.hero {
  position: relative;
  padding: 14px var(--page-gutter) 0;
}

.hero-header {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--card-max-width);
  z-index: 10;
  pointer-events: none;
}

.hero-header__inner {
  width: 100%;
  padding: 22px 36px 0;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 24px;
  pointer-events: auto;
}
