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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #151822;
  background: #f5f5f7;
  line-height: 1.6;
}

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

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

.page {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

/* BG FX */

.bg {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.7;
  z-index: -1;
  pointer-events: none;
}

.fx--1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 30% 30%, #ffe0c2, #ffb471);
  top: -180px;
  left: -140px;
  animation: floatOne 18s ease-in-out infinite alternate;
}

.fx--2 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 70% 30%, #d9ecff, #9fc7ff);
  top: 40%;
  right: -160px;
  animation: floatTwo 22s ease-in-out infinite alternate;
}

.fx--3 {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle at 50% 50%, #ffd1a1, #ffe7c9);
  bottom: -160px;
  left: 10%;
  animation: floatThree 26s ease-in-out infinite alternate;
}

@keyframes floatOne {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(40px, 60px, 0); }
  100% { transform: translate3d(10px, 120px, 0); }
}

@keyframes floatTwo {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-50px, -40px, 0); }
  100% { transform: translate3d(-20px, 40px, 0); }
}

@keyframes floatThree {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(30px, -30px, 0); }
  100% { transform: translate3d(-10px, 50px, 0); }
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(252, 252, 255, 0.92);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.header__left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111827;
}

.logo__accent {
  color: #f97316;
}

.logo--footer {
  font-size: 18px;
}

.header__tagline {
  font-size: 11px;
  color: #6b7280;
}

/* NAV */

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__link {
  font-size: 13px;
  color: #4b5563;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav__link:hover {
  background: rgba(15, 23, 42, 0.06);
  color: #111827;
  transform: translateY(-1px);
}

.nav__link--cta {
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #111827;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.35);
}

.nav__link--cta:hover {
  background: linear-gradient(135deg, #fb923c, #fdba74);
}

/* BURGER */

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.burger span {
  width: 20px;
  height: 2px;
  background: #111827;
  border-radius: 999px;
}

/* HERO */

.hero {
  padding: 72px 0 56px;
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.25fr);
  gap: 40px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
  background: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.1;
  margin: 0 0 14px;
  color: #020617;
}

.hero__title span {
  color: #f97316;
}

.hero__subtitle {
  margin: 0 0 18px;
  font-size: 15px;
  max-width: 640px;
  color: #4b5563;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-pill {
  min-width: 110px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 12px 30px rgba(148, 163, 184, 0.35);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-pill__value {
  font-weight: 700;
  font-size: 16px;
  color: #111827;
}

.hero-pill__label {
  font-size: 11px;
  color: #6b7280;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.hero__note {
  font-size: 11px;
  color: #6b7280;
  max-width: 540px;
}

/* hero image */

.hero__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 640px;
  border-radius: 24px;
  overflow: hidden;
  background: #020617;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.4);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, opacity 0.12s ease;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #111827;
  box-shadow: 0 14px 36px rgba(249, 115, 22, 0.32);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(249, 115, 22, 0.42);
}

.btn--secondary {
  background: #ffffff;
  color: #111827;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.btn--secondary:hover {
  background: #f9fafb;
}

.btn--full {
  width: 100%;
}

/* SECTIONS */

.section {
  padding: 56px 0;
}

.section--soft {
  background: radial-gradient(circle at 0% 0%, rgba(254, 249, 195, 0.4), transparent 50%),
              radial-gradient(circle at 100% 0%, rgba(219, 234, 254, 0.5), transparent 55%);
}

.section--accent {
  background: radial-gradient(circle at 0% 0%, rgba(251, 146, 60, 0.16), transparent 55%);
}

.section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: flex-start;
}

.section__inner--two {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
}

.section__title {
  font-size: 26px;
  margin: 0 0 16px;
  color: #0f172a;
}

.section__title--center {
  text-align: center;
}

.section__subtitle {
  margin: 0 0 24px;
  color: #4b5563;
}

.section__subtitle--center {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* INFO GRID */

.info-grid {
  display: grid;
  gap: 16px;
}

.info-card {
  padding: 14px 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 16px 36px rgba(148, 163, 184, 0.25);
}

.info-card__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b7280;
}

.info-card__value {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-top: 4px;
}

.info-card__note {
  font-size: 12px;
  color: #6b7280;
  margin-top: 6px;
}

/* LISTS */

.list {
  padding-left: 18px;
  margin: 0 0 12px;
}

.list li {
  margin-bottom: 4px;
}

/* BENEFITS CARDS */

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

.card {
  padding: 18px 16px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 40px rgba(148, 163, 184, 0.3);
}

.card__title {
  margin: 0 0 8px;
  font-size: 16px;
  color: #111827;
}

.card__text {
  margin: 0;
  font-size: 13px;
  color: #4b5563;
}

/* MAP */

.map-card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 40px rgba(148, 163, 184, 0.28);
}

.map {
  height: 320px;
}

#map {
  width: 100%;
  height: 320px;
}

/* VIDEO */

.video-frame {
  max-width: 880px;
  margin: 0 auto;
}

.video-frame__inner {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.55);
}

.video-frame__inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* GALLERY / SWIPER */

.media-slider {
  width: 100%;
  padding: 10px 0 40px;
}

.media-slider .swiper-wrapper {
  align-items: stretch;
}

.media-slider .swiper-slide {
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(148, 163, 184, 0.3);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #ffffff;
}

.gallery-item {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 10px 12px 12px;
  font-size: 12px;
  color: #4b5563;
}

.swiper-button-prev,
.swiper-button-next {
  color: #111827;
}

.swiper-pagination-bullet-active {
  background: #f97316;
}

/* FORMS */

.form {
  display: grid;
  gap: 10px;
}

.form__field {
  display: grid;
  gap: 4px;
  font-size: 13px;
  color: #374151;
}

.form__field span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
}

.form input,
.form select,
.form textarea {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 8px 10px;
  color: #111827;
  font: inherit;
}

.form textarea {
  resize: vertical;
  min-height: 76px;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.4);
}

.form__policy {
  margin: 4px 0 0;
  font-size: 11px;
  color: #6b7280;
}

.form--card {
  padding: 18px 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 20px 48px rgba(148, 163, 184, 0.35);
}

/* CONTACTS DIRECT */

.contacts-direct {
  margin-top: 18px;
  padding-top: 10px;
  border-top: 1px dashed rgba(148, 163, 184, 0.6);
}

.contacts-direct__label {
  font-size: 12px;
  color: #6b7280;
  margin: 0 0 6px;
}

.contacts-direct__phone {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
}

.contacts-direct__messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contacts-direct__btn {
  font-size: 12px;
  padding-inline: 14px;
}

/* FAQ */

.faq {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.faq__item {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(255, 255, 255, 0.98);
  padding: 10px 14px;
}

.faq__question {
  cursor: pointer;
  font-size: 14px;
  color: #111827;
}

.faq__answer {
  margin-top: 8px;
  font-size: 13px;
  color: #4b5563;
}

/* FOOTER */

.footer {
  background: #f9fafb;
  color: #6b7280;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 32px;
  padding: 28px 16px 20px;
}

.footer__text {
  font-size: 12px;
  max-width: 420px;
}

.footer__title {
  margin: 0 0 10px;
  font-size: 14px;
  color: #111827;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
}

.footer__list li {
  margin-bottom: 4px;
}

.footer__bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 11px;
}

.footer__bottom-inner {
  padding: 10px 16px 14px;
  color: #6b7280;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .hero__content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__right {
    justify-content: flex-start;
  }

  .section__inner,
  .section__inner--two {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .footer__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .header__inner {
    padding: 10px 0;
  }

  .header__tagline {
    font-size: 10px;
  }

  .nav {
    position: fixed;
    inset: 56px 12px auto 12px;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 10px 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.5);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  .nav.nav--open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav__link {
    width: 100%;
    justify-content: center;
  }

  .burger {
    display: flex;
  }

  .hero {
    padding-top: 64px;
  }

  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-item img {
    height: 200px;
  }

  .contacts-direct__phone {
    font-size: 16px;
  }

  .contacts-direct__messengers {
    flex-direction: column;
  }
}
