/* ========== Fonts ========== */
@font-face {
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Onest'), url('../fonts/Onest-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Onest';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local('Onest Medium'), local('Onest-Medium'), url('../fonts/Onest-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Onest';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Onest SemiBold'), local('Onest-SemiBold'), url('../fonts/Onest-SemiBold.ttf') format('truetype');
}
@font-face {
  font-family: 'Onest';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Onest Bold'), local('Onest-Bold'), url('../fonts/Onest-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Onest';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: local('Onest ExtraBold'), local('Onest-ExtraBold'), url('../fonts/Onest-ExtraBold.ttf') format('truetype');
}
@font-face {
  font-family: 'Onest';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: local('Onest Black'), local('Onest-Black'), url('../fonts/Onest-Black.ttf') format('truetype');
}

/* ========== Reset & Base ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Onest', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #0F172A;
  background: #FAFAF8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 450;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ========== Container ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1600px) {
  .container {
    max-width: 1600px;
  }
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 16px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, #1D4ED8, #3B82F6);
  color: #fff;
  box-shadow:
    0 4px 20px rgba(59, 130, 246, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn--primary:hover {
  box-shadow:
    0 8px 32px rgba(59, 130, 246, 0.45),
    inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-2px) scale(1.02);
}

.btn--outline {
  background: transparent;
  color: #2563EB;
  border: 2px solid #2563EB;
}
.btn--outline:hover {
  background: linear-gradient(135deg, #1D4ED8, #3B82F6);
  color: #fff;
  border-color: transparent;
  box-shadow:
    0 4px 20px rgba(59, 130, 246, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.btn--large {
  width: 100%;
  padding: 18px 32px;
  font-size: 16px;
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  display: block;
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  transition: color 0.2s ease;
  letter-spacing: 0.01em;
}
.nav__link:hover {
  color: #2563EB;
}

@media (min-width: 861px) {
  .burger {
    display: none;
  }
}

.burger {
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #0F172A;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========== Sections Common ========== */
.section {
  padding: 100px 0;
}

.section--dark {
  background: #0F172A;
  color: #fff;
}
.section--dark .section__title { color: #fff; }
.section--dark .section__subtitle { color: #94A3B8; }
.section--dark .section__footnote { color: #94A3B8; }

.section--mesh {
  background:
    radial-gradient(ellipse 80% 60% at 0% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 100%),
    radial-gradient(ellipse 80% 60% at 100% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 100%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(59, 130, 246, 0.06) 0%, transparent 100%),
    #F5F5F0;
}

.section--cta {
  background: #0F172A;
  color: #fff;
}
.section--cta .section__title { color: #fff; }
.section--cta .section__subtitle { color: #94A3B8; }
.section--cta .form-status--success {
  background: transparent;
  border: none;
  padding: 0;
}
.section--cta .form-status--success .form-status__title { color: #fff; }
.section--cta .form-status--success .form-status__text { color: #94A3B8; }

.section__header {
  max-width: 1045px;
  margin: 0 auto 56px;
  text-align: center;
}

.section__title {
  font-size: 38px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section--dark .section__title {
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.section__subtitle {
  font-size: 17px;
  font-weight: 450;
  color: #64748B;
  line-height: 1.75;
}

.section__footnote {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: center;
  font-size: 14px;
  font-weight: 450;
  color: #64748B;
  line-height: 1.8;
}


.section__summary {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: #64748B;
  max-width: 600px;
  margin: 48px auto 0;
  line-height: 1.8;
  padding-top: 24px;
  border-top: 1px solid #E8E7E2;
}
.section--dark .section__summary {
  color: #94A3B8;
  border-top-color: rgba(255,255,255,0.08);
}

/* ========== Hero ========== */
.hero {
  position: relative;
  overflow: hidden;
  background: #FAFAF8;
}

.hero__bg {
  inset: 0;
  background-image: url("../images/hero/hero-bg-men-full.jpg");
  background-repeat: no-repeat;
  background-position: 65% top;
  background-size: cover;
}

@media (max-width: 768px) {
  .hero {
    position: relative;
  }

  .hero::before {
    display: none;
  }
}

.hero__visual {
  position: relative;
  min-width: 0;
  padding: 22px 0 46px 28px;
  background:
  linear-gradient(
    180deg,
    transparent 65%,
    rgba(255,255,255,.2) 75%,
    rgba(255,255,255,.8) 94%,
    #fff 100%
  ),
  linear-gradient(
    90deg,
    #fff 0%,
    #fff 25%,
    rgba(255,255,255,.95) 35%,
    rgba(255,255,255,.75) 43%,
    rgba(255,255,255,.4) 52%,
    rgba(255,255,255,.12) 62%,
    transparent 72%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: 72px;
  align-items: center;
  padding-top:140px
}

.hero__content {
  min-width: 0;
  grid-column: 1;
}

.hero__cards {
  grid-column: 2;
}

.hero__eyebrow {
  display: inline-block;
  margin-bottom: 40px;
  color: #2563EB;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__title {
  margin-bottom: 28px;
  color: #0F172A;
  font-size: clamp(48px, 4.15vw, 68px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero__title-accent {
  color: #2563EB;
}

.hero__subtitle {
  margin-bottom: 40px;
  color: #64748B;
  font-size: 18px;
  font-weight: 450;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 80px;
}

.btn--hero {
  min-width: 280px;
  padding: 17px 28px;
  border-radius: 16px;
  font-size: 16px;
}

.btn--hero svg {
  transition: transform 0.25s ease;
}

.btn--hero:hover svg {
  transform: translateX(4px);
}

.btn--hero-outline {
  padding: 13px 28px;
}
.btn--hero-outline:hover {
  background: transparent;
  color: #2563EB;
  border-color: #2563EB;
  box-shadow: none;
  transform: translateY(-2px);
}

.hero__badges {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
  margin-top: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: #485362;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  border-right: 1px solid #d6d6d6;
}
.badge:last-child {
  border-right: none;
}

.badge svg {
  flex: 0 0 auto;
  color: #2563EB;
  height: 35px;
  width: auto;
}

.hero__apply {
  color: #64748B;
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 30px;
  grid-column: 1;
}

.hero__cards {
  display: flex;
  gap: 12px;
  align-self: end;
}

.hero__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 26px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  flex: 1;
  min-width: 0;
}

.hero__card-icon {
  flex: 0 0 auto;
  color: #2563EB;
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
}

.hero__card-title {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.25;
}

.hero__card-text {
  margin: 0;
  font-size: 14px;
  font-weight: 450;
  color: #64748B;
  line-height: 1.4;
}

.hero__bracket {
  position: absolute;
  z-index: 1;
  top: -14px;
  left: -18px;
  width: 72%;
  height: calc(100% - 6px);
  border: 4px solid #2563EB;
  border-right: 0;
  border-radius: 58px 0 0 58px;
  opacity: 0.95;
}

.hero__bracket::after {
  content: '';
  position: absolute;
  top: 31%;
  right: -4px;
  width: 64px;
  height: 34%;
  border-top: 4px solid #2563EB;
  border-bottom: 4px solid #2563EB;
  border-right: 4px solid #2563EB;
  border-radius: 0 22px 22px 0;
}

/* ========== Cards Grid ========== */
.cards-grid {
  display: grid;
  gap: 24px;
}

.cards-grid--2 { grid-template-columns: 1fr 1fr; }
.cards-grid--3 { grid-template-columns: 1fr 1fr 1fr; }
.cards-grid--4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
.cards-grid--6 { grid-template-columns: 1fr 1fr 1fr; }

/* ========== Card ========== */
.card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow:
    0 1px 3px rgba(0,0,0,0.04),
    0 8px 24px rgba(0,0,0,0.04),
    0 24px 48px rgba(0,0,0,0.02);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0,0,0,0.02);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 1px 3px rgba(0,0,0,0.04),
    0 12px 32px rgba(0,0,0,0.06),
    0 32px 64px rgba(0,0,0,0.04);
}

.card__icon {
  margin-bottom: 18px;
  display: flex;
  transition: transform 0.35s ease;
}
.card:hover .card__icon {
  transform: scale(1.08);
}

.card__title {
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.card__text {
  font-size: 14px;
  font-weight: 450;
  color: #64748B;
  line-height: 1.7;
}

.card--problem .card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card__problem {
  font-size: 14px;
  font-weight: 450;
  color: #64748B;
  line-height: 1.7;
  margin: 0 0 10px 0;
}

.card__consequence {
  font-size: 14px;
  font-weight: 600;
  color: #0F172A;
  line-height: 1.7;
  margin: 0;
  margin-top: 4px;
}

.card__stat {
  font-weight: 700;
  color: #2563EB;
}

.card--problem__header,
.card--offering__header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  min-height: 44px;
}
.card--problem__header .card__icon,
.card--offering__header .card__icon {
  margin-bottom: 0;
  flex-shrink: 0;
}
.card--problem__header .card__title,
.card--offering__header .card__title {
  margin-bottom: 0;
  line-height: 1.3;
}

.card__features {
  margin: 20px 0;
  width: 100%;
}
.card__features li {
  padding: 10px 0;
  font-size: 14px;
  font-weight: 450;
  color: #475569;
  border-bottom: 1px solid #F0EFEA;
}
.card__features li:last-child { border-bottom: none; }

/* ========== Split Cards (dark) ========== */
.section--dark .card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: none;
  backdrop-filter: blur(8px);
}
.section--dark .card:hover {
  background: rgba(255,255,255,0.07);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}
.card--split {
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
}

.card--split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.section--dark .card--split__half--before {
  color: #94A3B8;
}
.section--dark .card--split__half--after {
  color: #93C5FD;
}

.card--split__half {
  padding: 28px 24px;
  font-size: 14px;
  font-weight: 450;
  line-height: 1.7;
}

.section--dark .card--split__half--before .card--split__label {
  background: rgba(255,255,255,0.08);
  color: #94A3B8;
}
.section--dark .card--split__half--after .card--split__label {
  background: rgba(59, 130, 246, 0.2);
  color: #60A5FA;
}

.card--split__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* ========== Pricing Cards ========== */
.card--pricing {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.card--pricing .card__title {
  font-size: 22px;
}

.card__price {
  font-size: 34px;
  font-weight: 900;
  color: #2563EB;
  margin: 16px 0;
  letter-spacing: -0.03em;
}

/* ========== Cities Grid ========== */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card--city {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #0F172A;
  border-radius: 16px;
  cursor: default;
}

.card--city:hover {
  transform: translateY(-3px);
}

.card--city__pin {
  flex-shrink: 0;
  display: block;
}

.cities__action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.card--featured {
  border: 2px solid #2563EB;
  position: relative;
}

.card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #1D4ED8, #3B82F6);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* ========== Segment Cards (dark) ========== */
.section--dark .card--segment {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
}
.section--dark .card--segment .card__title {
  color: #fff;
}
.section--dark .card--segment .card__text {
  color: #94A3B8;
}
.section--dark .card__solution {
  background: rgba(255,255,255,0.04);
  color: #CBD5E1;
}

.card__scenario {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #2563EB;
  margin-bottom: 8px;
}

.card__solution {
  margin-top: 16px;
  padding: 14px;
  background: #F5F5F0;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 450;
  color: #334155;
  line-height: 1.7;
}

/* ========== Atmosphere ========== */
.atmosphere {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.atmosphere__text {
  font-size: 18px;
  font-weight: 450;
  line-height: 1.8;
  color: #475569;
}

.atmosphere__text strong {
  color: #0F172A;
  font-weight: 700;
}

.atmosphere__slider {
  position: relative;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(59, 130, 246, 0.12), transparent 100%),
    radial-gradient(ellipse 40% 50% at 70% 60%, rgba(59, 130, 246, 0.08), transparent 100%),
    #F0EFEA;
  border-radius: 24px;
  border: 1px solid rgba(59, 130, 246, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    0 8px 32px rgba(0,0,0,0.04);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.atmosphere__slides {
  position: absolute;
  inset: 0;
}

.atmosphere__slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}

.atmosphere__slide--active {
  z-index: 1;
  opacity: 1;
}

.atmosphere__slide--leaving {
  z-index: 2;
  opacity: 1;
}

.atmosphere__slide--entering {
  z-index: 3;
  opacity: 0;
}

.atmosphere__slide--entering-active {
  z-index: 3;
  opacity: 1;
}

.atmosphere__slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  color: #0F172A;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.atmosphere__slider--initialized:hover .atmosphere__slider-btn {
  opacity: 1;
}

.atmosphere__slider-btn:hover {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transform: translateY(-50%) scale(1.08);
}

.atmosphere__slider-btn--prev {
  left: 12px;
}

.atmosphere__slider-btn--next {
  right: 12px;
}

.atmosphere__slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
}

.atmosphere__slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.atmosphere__slider-dot:hover {
  background: rgba(255,255,255,0.8);
}

.atmosphere__slider-dot--active {
  background: #fff;
  box-shadow: 0 0 8px rgba(255,255,255,0.4);
}

/* ========== Roadmap ========== */
.roadmap {
  max-width: 720px;
  margin: 0 auto;
}

.roadmap__step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid #E8E7E2;
  transition: all 0.3s ease;
}
.roadmap__step:last-child { border-bottom: none; }

.roadmap__num {
  font-size: 40px;
  font-weight: 900;
  color: #2563EB;
  opacity: 0.15;
  min-width: 56px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  transition: opacity 0.3s ease;
}
.roadmap__step:hover .roadmap__num {
  opacity: 0.35;
}

.roadmap__content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.roadmap__content p {
  font-size: 14px;
  font-weight: 450;
  color: #64748B;
  line-height: 1.7;
}

/* ========== Expertise ========== */
.expertise {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}

.expertise__card {
  flex: 1;
  min-width: 0;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.2s;
}

.expertise__card--result {
  border: 2px solid #3B82F6;
  background: linear-gradient(135deg, #F8FAFF 0%, #FFFFFF 100%);
}

.expertise__icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.expertise__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.expertise__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.expertise__list li {
  font-size: 14px;
  font-weight: 450;
  color: #475569;
  padding: 8px 0;
  line-height: 1.7;
  border-bottom: 1px solid #F1F5F9;
}

.expertise__list li:last-child {
  border-bottom: none;
}

.expertise__result-text {
  font-size: 14px;
  font-weight: 450;
  color: #1E40AF;
  line-height: 1.7;
  margin: 0;
}

.expertise__operator {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #DBEAFE;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== FAQ ========== */
.faq {
  max-width: 720px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid #E8E7E2;
  padding: 4px 0;
}
.faq__item:last-child { border-bottom: none; }

.faq__question {
  font-size: 16px;
  font-weight: 600;
  color: #0F172A;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.25s ease;
  letter-spacing: -0.01em;
}
.faq__question:hover { color: #2563EB; }
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: #2563EB;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg) scale(1.15);
}

.faq__answer {
  padding: 0 0 24px;
  font-size: 15px;
  font-weight: 450;
  color: #64748B;
  line-height: 1.8;
}

/* ========== CTA Form ========== */
.cta-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cta-form .btn {
  margin-top: 4px;
}

.cta-form__label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.01em;
}

.cta-form__input {
  font-family: inherit;
  font-size: 15px;
  font-weight: 450;
  padding: 16px 20px;
  border-radius: 16px;
  border: 2px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  color: #fff;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.cta-form__input::placeholder { color: rgba(255,255,255,0.35); }
.cta-form__input:focus {
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  background: rgba(255,255,255,0.08);
}

.cta-form__input--error {
  border-color: #ef4444;
}
.cta-form__input--error:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.cta-form__error {
  display: block;
  font-size: 13px;
  font-weight: 450;
  color: #f87171;
  line-height: 1.4;
  margin-top: 4px;
}

.cta-form__guarantee {
  text-align: center;
  font-size: 14px;
  font-weight: 450;
  color: #64748B;
  margin-top: 16px;
}

.cta-form__note,
.popup__form-note {
  text-align: center;
  font-size: 12px;
  font-weight: 450;
  color: #94A3B8;
  margin-top: 12px;
  line-height: 1.4;
}

/* ========== Popup ========== */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup {
  background: #fff;
  border-radius: 24px;
  padding: 48px 40px 36px;
  max-width: 480px;
  width: 90%;
  max-height: 95vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px) scale(0.96);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.1),
    0 32px 64px rgba(0,0,0,0.08);
}

.popup-overlay.active .popup {
  transform: translateY(0) scale(1);
}

.popup__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #94A3B8;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}
.popup__close:hover { color: #0F172A; transform: rotate(90deg); }

.popup__title {
  font-size: 24px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.popup__subtitle {
  font-size: 14px;
  font-weight: 450;
  color: #64748B;
  margin-bottom: 24px;
  line-height: 1.7;
}

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

.popup__form .cta-form__label {
  color: #475569;
}

.popup__form .cta-form__input {
  background: #fff;
  border-color: #E8E7E2;
  color: #0F172A;
}
.popup__form .cta-form__input::placeholder { color: #94A3B8; }
.popup__form .cta-form__input:focus {
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: #fff;
}

.popup__form .cta-form__input--error {
  border-color: #dc2626;
}
.popup__form .cta-form__input--error:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.popup__form .cta-form__error {
  color: #dc2626;
}

/* ========== Form Status ========== */
.form-status {
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  animation: formStatusIn 0.35s ease-out;
}

@keyframes formStatusIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-status--success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.form-status--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.form-status--network {
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 450;
  color: #b91c1c;
  text-align: center;
}

.form-status__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0F172A;
}

.form-status__text {
  font-size: 14px;
  line-height: 1.6;
  color: #64748B;
}

.form-status--error .form-status__title {
  color: #dc2626;
}

.form-status--error .form-status__text {
  color: #b91c1c;
}

/* ========== Anti-bot ========== */
.antibot-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  width: 0;
}

.antibot-widget {
  margin-top: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
}

.antibot-widget__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  margin: 0 auto;
}

.antibot-widget__instruction {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  line-height: 1.4;
  text-align: left;
}

.antibot-widget__shapes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.antibot-shape {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.05);
}

@media (hover: hover) {
  .antibot-shape:hover {
    border-color: #3B82F6;
    background: rgba(59,130,246,0.1);
    color: #fff;
  }
}

.antibot-shape--selected {
  border-color: #22c55e;
  background: rgba(34,197,94,0.15);
  color: #22c55e;
  transform: scale(1.05);
}

.antibot-widget--error {
  border-color: #ef4444;
}

.popup .antibot-widget--error {
  border-color: #dc2626;
}

.antibot-reset {
  display: block;
  margin: 10px auto 0;
  background: none;
  border: none;
  color: #64748B;
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  padding: 4px 8px;
}

.antibot-reset:hover {
  color: #94A3B8;
}

.antibot-loading {
  font-size: 13px;
  color: #64748B;
  text-align: center;
  margin-top: 12px;
}

.antibot-error {
  font-size: 13px;
  color: #f87171;
  text-align: center;
  margin-top: 12px;
}

.popup .antibot-widget {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.1);
}

.popup .antibot-widget__inner {
  width: fit-content;
  margin: 0 auto;
}

.popup .antibot-widget__instruction {
  color: rgba(0,0,0,0.6);
  text-align: left;
}

.popup .antibot-shape {
  border-color: rgba(0,0,0,0.15);
  background: rgba(0,0,0,0.03);
  color: rgba(0,0,0,0.6);
}

@media (hover: hover) {
  .popup .antibot-shape:hover {
    border-color: #3B82F6;
    background: rgba(59,130,246,0.08);
    color: #2563EB;
  }
}

.popup .antibot-shape--selected {
  border-color: #22c55e;
  background: rgba(34,197,94,0.1);
  color: #16a34a;
}

.popup .antibot-loading {
  color: #94A3B8;
}

.popup .antibot-error {
  color: #dc2626;
}

/* ========== Footer ========== */
.footer {
  padding: 48px 0;
  background: #0F172A;
  border-top: 1px solid rgba(255,255,255,0.04);
  color: #64748B;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__contacts h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.footer__contacts p {
  font-size: 14px;
  font-weight: 450;
  line-height: 1.7;
}

.footer__brand img {
  display: block;
  height: 50px;
  width: auto;
}

.footer__copy {
  font-size: 13px;
  font-weight: 450;
  text-align: right;
}

.footer__phone--hidden {
  cursor: pointer;
  text-decoration: underline;
  text-decoration-style: dotted;
  color: #94A3B8;
  transition: color 0.15s;
}
.footer__phone--hidden:hover {
  color: #fff;
}

/* ========== Responsive ========== */
@media (max-width: 1600px) {
  .hero__inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: stretch;
  }
  .hero__content,
  .hero__cards,
  .hero__apply {
    max-width: 50%;
  }
  .hero__title {
    font-size: clamp(38px, 3.5vw, 52px);
  }
  .hero__eyebrow {
    margin-bottom: 20px;
  }
  .hero__subtitle {
    margin-bottom: 24px;
  }
  .hero__actions {
    margin-bottom: 40px;
  }
  .hero__badges {
    margin-top: 16px;
  }
  .hero__cards {
    display: none;
  }
}

@media (max-width: 860px) {
  .header__inner {
    max-width: calc(100vw);
    margin-left: 0;
  }

  .header__inner .btn--primary {
    display: none;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 250, 248, 0.98);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
    max-width: 100vw;
  }
  .nav--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__link { font-size: 16px; color: #475569; }

  .burger {
    display: flex;
  }

  .burger--active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .burger--active span:nth-child(2) { opacity: 0; }
  .burger--active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .header { background: #fff; backdrop-filter: none; max-width: 100vw;}

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

@media (max-width: 768px) {
  .hero { padding: 72px 0 58px; background: #0F172A; }
  .hero__inner {
    display: flex;
    flex-direction: column;
    gap: 34px;
    align-items: center;
    padding-top: 250px;
  }
  .hero__content {
    max-width: none;
    text-align: center;
  }
  .hero__cards { display: none; }
  .hero__apply { max-width: none; color: #E2E8F0; text-align: center; }
  .hero__bg {
    background-image: url("../images/hero/hero-bg-men.jpg");
    background-position: center top;
    min-height: 500px;
    position: relative;
  }

  .hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      0deg,
      rgba(15, 23, 42, 1) 0%,
      rgba(15, 23, 42, 0.6) 40%,
      rgba(15, 23, 42, 0.2) 70%,
      transparent 100%
    );
    pointer-events: none;
  }
  .hero__visual {
    padding: 12px 0 36px 34px;
    background: none;
  }
  .hero__image {
    aspect-ratio: 1.24 / 1;
    border-radius: 26px;
  }
  .hero__bracket {
    left: 0;
    top: -6px;
    width: 62%;
    height: calc(100% - 18px);
    border-width: 3px;
    border-radius: 38px 0 0 38px;
  }
  .hero__bracket::after {
    right: -3px;
    width: 38px;
    border-width: 3px;
  }
  .hero__eyebrow { display: none; }
  .hero__title { font-size: clamp(28px, 8vw, 38px); line-height: 1.02; margin-bottom: 20px; color: #fff; }
  .hero__title-accent { color: #2563EB; }
  .hero__subtitle { font-size: 16px; max-width: 100%; margin-bottom: 26px; color: #E2E8F0; }
  .badge { font-size: 12px; color: #CBD5E1; border-right-color: rgba(255,255,255,0.15); }
  .badge svg { height: 35px; width: auto; color: #2563EB; }
  .hero__actions { flex-direction: column; gap: 12px; }
  .hero__badges { grid-template-columns: 1fr 1fr 1fr; gap: 14px 20px; margin-top: 22px; }
  .btn--hero { border-radius: 14px; }
  .btn--hero-outline { display: none; }


  .section { padding: 60px 0; }
  .section__title { font-size: 28px; }
  .section__header { margin-bottom: 36px; }

  .cards-grid--2,
  .cards-grid--3,
  .cards-grid--4,
  .cards-grid--6 {
    grid-template-columns: 1fr;
  }

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

  .atmosphere {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .card--split__inner {
    grid-template-columns: 1fr;
  }

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

  .expertise {
    flex-direction: column;
    gap: 8px;
  }

  .expertise__card {
    width: 100%;
    padding: 24px 20px;
  }

  .expertise__operator {
    width: 36px;
    height: 36px;
    transform: rotate(90deg);
  }

  .footer__inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .footer__copy { text-align: center; }

  .popup {
    padding: 36px 24px 28px;
  }

  .popup__subtitle {
    display: none;
  }
}


@media (max-width: 480px) {

  .antibot-reset { display: none; }

  .hero__visual { padding-left: 26px; padding-bottom: 30px; }
  .hero__image { aspect-ratio: 1.08 / 1; border-radius: 22px; }
  .hero__title { font-size: 40px; }
  .hero__badges { grid-template-columns: 1fr; gap: 10px; }
  .badge { flex-direction: row; justify-content: flex-start; gap: 10px; }
  .badge svg { height: 22px; width: auto; }
  .hero__apply {
    font-size: 14px;
    margin-top: 40px;
    margin-bottom: 40px;
    color: #E2E8F0;
  }
  .hero__cards {
    flex-direction: column;
    gap: 8px;
  }
  .hero__card {
    padding: 12px 8px;
  }
  .hero__card-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
  }
  .hero__card-title {
    font-size: 11px;
  }
  .hero__card-text {
    font-size: 10px;
  }
}



@media (max-height: 710px) and (max-width: 380px) {
  .popup-overlay {
    align-items: flex-start;
    overflow-y: auto;
  }

  .popup {
    max-width: 100%;
    width: 100%;
    min-height: 100vh;
    border-radius: 0;
    padding: 36px 24px 28px;
    transform: none;
    overflow-y: auto;
  }

  .popup-overlay.active .popup {
    transform: none;
  }
}

@media (max-width: 380px) {
  .antibot-widget__shapes {
    gap: 8px;
  }

  .antibot-shape {
    width: 52px;
    height: 52px;
  }

  .popup__title {
    font-size: 20px;
  }
}

@media (min-width: 481px) and (max-width: 675px) {
  .badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    border-right: none;
  }
}
