@charset "UTF-8";
:root {
  --bg: #fff;
  --surface: #ffffff;
  --text: #111111;
  --text-secondary: rgba(0, 0, 0, 0.92);
  --line: #d8d8d8;
  --dark: #040308;
  --mint: #e2f8ea;
  --white: #ffffff;
  --sky-soft: #e8f1fe;
  --navy: #143e68;
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.04);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.page {
  min-height: 100vh;
}

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

.section {
  padding-top: 112px;
}

.header {
  padding-top: 16px;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand__logo {
  width: 72px;
  flex-shrink: 0;
}
.brand__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.brand__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.brand__label {
  font-size: 14px;
  line-height: 1.2;
  color: #000;
  opacity: 0.6;
  text-align: left;
}
.brand__name {
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  color: #093559;
  text-align: left;
}

.details-button {
  border: none;
  background: #093559;
  color: var(--white);
  padding: 14px 42px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.details-button:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
}

.lang-switcher__button {
  border: none;
  background: transparent;
  color: rgba(0, 0, 0, 0.5);
  padding: 8px 8px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  cursor: default;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lang-switcher__button--active {
  color: #000;
  cursor: pointer;
}

.lang-switcher__button--active:hover {
  background: rgba(0, 0, 0, 0.05);
}

.hero {
  padding-top: 0;
}
.hero > .container {
  width: 100%;
}
.hero__card {
  position: relative;
  min-height: 100vh;
  border-radius: 0;
  overflow: hidden;
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__content {
  position: relative;
  z-index: 1;
  min-height: 720px;
  padding: 16px 48px 48px;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgb(0, 0, 0);
  backdrop-filter: blur(5px);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0;
}
.hero__title {
  margin: 0;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.95;
  font-weight: 500;
}
.hero__text {
  max-width: 680px;
  margin: 0;
  font-size: 16px;
  line-height: 180%;
}

.hero .header {
  width: 100%;
  padding-top: 0;
  margin-bottom: 185px;
}

.hero .header .container {
  width: 100%;
}

.section-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(17, 17, 17, 0.9);
  border-radius: 999px;
  font-size: 16px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 34px;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.9fr);
  gap: 40px 64px;
  align-items: start;
}
.about__lead-text {
  margin: 0;
  font-size: clamp(18px, 3vw, 32px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.about__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service-card {
  padding: 28px 32px 30px;
  border-radius: 18px;
  background: var(--sky-soft);
}
.service-card__title {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.2;
  font-weight: 500;
}
.service-card__text {
  margin: 0;
  max-width: 720px;
  padding-left: 14px;
  border-left: 1px solid rgba(20, 62, 104, 0.8);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.approach {
  padding-top: 120px;
}
.approach__card {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 42px 44px;
}
.approach__items {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: start;
}
.approach__arrow {
  font-size: 34px;
  line-height: 1;
  padding-top: 42px;
  color: rgba(255, 255, 255, 0.9);
}

.approach-item__title {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
}
.approach-item__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 360px;
}

.footer {
  padding: 104px 0 36px;
}
.footer__line {
  width: 100%;
  height: 1px;
  background: #d9d9d9;
}
.footer__text {
  margin: 34px 0 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  color: #8c8c8c;
}

.details__header {
  display: flex;
  justify-content: center;
  margin-bottom: 54px;
}
.details__title {
  margin: 0;
  font-size: clamp(24px, 3.4vw, 32px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.details__wrap {
  max-width: 100%;
}
.details__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}
.modal.is-open {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}
.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 700px);
  max-height: 90vh;
  overflow-y: scroll;
  margin: 0;
  background: #ececec;
  border-radius: 24px;
  padding: 32px 42px 42px 42px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}
.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.modal__subtitle {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.2;
  color: #000;
  opacity: 0.6;
}
.modal__title {
  margin: 0;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
}
.modal__close {
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--text);
  flex-shrink: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.modal__close:hover {
  transform: scale(1.08);
  opacity: 0.8;
}
.modal__close svg {
  width: 28px;
  height: 28px;
}
.modal__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.detail-item {
  min-height: 72px;
  border: 1px solid #cfcfcf;
  border-radius: 16px;
  padding: 14px 18px 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
}
.detail-item__text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.detail-item__label {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--navy);
}
.detail-item__value {
  font-size: 16px;
  line-height: 1.4;
}

.copy-button {
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.copy-button:hover {
  transform: scale(1.08);
  opacity: 0.8;
}
.copy-button svg {
  width: 26px;
  height: 26px;
}
.copy-button.is-copied svg {
  display: none;
}
.copy-button.is-copied::after {
  content: "✓";
  font-size: 28px;
  color: #093c2c;
}

.body-lock {
  overflow: hidden;
}

@media (max-width: 1200px) {
  .about__grid {
    gap: 32px;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
  .approach__items {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .approach__arrow {
    display: none;
  }
}
@media (max-width: 900px) {
  .container {
    width: min(100% - 24px, 1440px);
  }
  .header__inner {
    gap: 16px;
  }
  .brand {
    gap: 8px;
  }
  .brand__logo {
    width: 36px;
  }
  .brand__label {
    font-size: 10px;
  }
  .brand__name {
    font-size: 14px;
  }
  .header__actions {
    gap: 8px;
  }
  .details-button {
    padding: 12px 16px;
    font-size: 12px;
  }
  .lang-switcher {
    gap: 2px;
  }
  .lang-switcher__button {
    padding: 6px 6px;
    font-size: 12px;
  }
  .hero__card {
    min-height: 560px;
  }
  .hero__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding: 12px 16px 24px;
    max-width: 100%;
  }
  .hero__badge {
    display: block;
    padding: 10px 14px;
    font-size: 10px;
    text-align: center;
    margin-bottom: 0;
  }
  .hero__title {
    text-align: center;
    margin-bottom: 0;
  }
  .hero__text {
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    max-width: 100%;
  }
  .section {
    padding-top: 56px;
  }
  .details__header {
    margin-bottom: 28px;
  }
  .details__title {
    font-size: 28px;
  }
  .about__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .about__lead-text {
    font-size: 24px;
    line-height: 1.28;
  }
  .about__text {
    font-size: 14px;
    line-height: 1.7;
  }
  .services__grid {
    width: 100%;
    gap: 12px;
  }
  .service-card {
    padding: 22px 18px 20px;
  }
  .service-card__title {
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 10px;
  }
  .service-card__text {
    font-size: 14px;
    line-height: 1.7;
    padding-left: 10px;
  }
  .approach {
    padding-top: 48px;
  }
  .approach__card {
    padding: 28px 20px 30px;
    border-radius: 24px;
  }
  .approach-item__title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .approach-item__text {
    font-size: 14px;
  }
  .footer {
    padding: 64px 0 24px;
  }
  .footer__text {
    margin-top: 16px;
  }
  .modal__dialog {
    width: calc(100% - 24px);
    margin: 0;
    padding: 24px 18px 24px;
    border-radius: 24px;
  }
  .modal__header {
    margin-bottom: 20px;
  }
  .modal__subtitle {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .modal__title {
    font-size: 18px;
  }
  .detail-item {
    min-height: 64px;
    border-radius: 12px;
    padding: 14px;
  }
  .detail-item__text {
    gap: 8px;
  }
  .detail-item__label, .detail-item__value {
    font-size: 14px;
  }
  .section-chip {
    min-height: 32px;
    padding: 0 14px;
    margin-bottom: 22px;
    font-size: 12px;
  }
}

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