@charset "UTF-8";
:root {
  /* --- Фоны --- */
  --bg-body: #19191B; /* Основной фон (Глубокий графит/Баклажан) */
  --bg-surface: #222226; /* Фон карточек и блоков */
  --bg-surface-hover: #2D2D33;
  /* --- Акценты (Бренд) --- */
  /* Градиент для основных кнопок и иконок */
  --primary-gradient: linear-gradient(90deg, #FFC15E 0%, #FF5C5C 100%);
  /* Сплошной цвет (для текста и бордеров) */
  --primary-solid: #FF9F43;
  /* --- Текст --- */
  --text-primary: #FFFFFF;
  --text-secondary: #9FA6B3; /* Холодный серый */
  /* --- Размеры и отступы --- */
  --container-width: 1200px; /* Максимальная ширина контента */
  --radius-l: 24px; /* Скругление больших блоков */
  --radius-m: 12px; /* Скругление кнопок и инпутов */
  --header-height: 80px;
  /* --- Тени --- */
  --shadow-primary: 0 8px 24px rgba(255, 92, 92, 0.25);
  --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg-body);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px;
  padding-left: calc(16px + env(safe-area-inset-left, 0));
  padding-right: calc(16px + env(safe-area-inset-right, 0));
}
@media (min-width: 768px) {
  .container {
    padding: 0 40px;
    padding-left: calc(40px + env(safe-area-inset-left, 0));
    padding-right: calc(40px + env(safe-area-inset-right, 0));
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .section-title {
    font-size: 40px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-m);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: var(--shadow-primary);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 92, 92, 0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn--ghost:hover {
  border-color: var(--primary-solid);
  color: var(--primary-solid);
}
.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn--outline:hover {
  border-color: var(--primary-solid);
  color: var(--primary-solid);
}
.btn--small {
  padding: 8px 16px;
  font-size: 14px;
}
.btn--full {
  width: 100%;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(25, 25, 27, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  height: var(--header-height);
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 20px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 18px;
}
.header__logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
.header__logo a:hover {
  opacity: 0.8;
}
.header__logo-icon {
  flex-shrink: 0;
  height: auto;
}
.header__nav {
  display: none;
  gap: 32px;
}
@media (min-width: 768px) {
  .header__nav {
    display: flex;
  }
}
.header__nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}
.header__nav-link:hover {
  color: var(--primary-solid);
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.header__phone {
  display: none;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .header__phone {
    display: block;
  }
}
.header__phone:hover {
  color: var(--primary-solid);
}
.header__app-btn {
  display: none;
}
@media (min-width: 768px) {
  .header__app-btn {
    display: inline-flex;
  }
}
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}
@media (min-width: 768px) {
  .header__burger {
    display: none;
  }
}
.header__burger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.header__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.header__burger.active span:nth-child(2) {
  opacity: 0;
}
.header__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
.header__mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: rgba(25, 25, 27, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  z-index: 999;
}
.header__mobile-nav.active {
  max-height: 400px;
}
.header__mobile-menu {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 16px;
}
.header__mobile-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease;
}
.header__mobile-link:last-child {
  border-bottom: none;
}
.header__mobile-link:hover {
  color: var(--primary-solid);
}
.header__mobile-link--phone {
  color: var(--primary-solid);
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 40px) 0 60px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../files/cabin_in_bc_2_hd.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
.hero__content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}
.hero__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 48px;
  }
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 64px;
  }
}
.hero__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 20px;
  }
}
.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (min-width: 768px) {
  .hero__cta {
    flex-direction: row;
    justify-content: center;
  }
}

.products {
  padding: 80px 0;
}
.products__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}
.products__tab {
  padding: 12px 24px;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-m);
  color: var(--text-secondary);
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.products__tab:hover {
  border-color: var(--primary-solid);
  color: var(--text-primary);
}
.products__tab.active {
  background: var(--primary-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-primary);
}
.products__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .products__content {
    grid-template-columns: 1fr 1fr;
  }
}
.products__image {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}
@media (min-width: 768px) {
  .products__image {
    min-height: 400px;
  }
}
.products__image-placeholder {
  width: 100%;
  max-width: 400px;
  height: auto;
}
.products__cabin-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .products__cabin-image {
    max-width: 500px;
  }
}
.products__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.products__specs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.products__rent {
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}
.products__rent-label {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 400;
}
.products__rent-value {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.products__rent-currency {
  font-size: 24px;
  color: var(--text-secondary);
}
.products__price {
  font-size: 18px;
  color: var(--text-secondary);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.products__price-value {
  color: var(--primary-solid);
  font-weight: 600;
}

.spec-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.spec-item__label {
  color: var(--text-secondary);
  min-width: 120px;
}
.spec-item__value {
  color: var(--text-primary);
  font-weight: 500;
}

.services {
  padding: 80px 0;
  background: var(--bg-surface);
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-l);
  padding: 32px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--primary-solid);
  box-shadow: var(--shadow-card);
  background: var(--bg-surface-hover);
}
.service-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  margin-bottom: 20px;
  color: #FF8A50;
}
.service-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.service-card__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}
.service-card__text {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}
.service-card__link {
  color: var(--primary-solid);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  padding: 0;
}
.service-card__link:hover {
  color: var(--text-primary);
}

.technologies {
  padding: 80px 0;
}
.technologies__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 768px) {
  .technologies__content {
    grid-template-columns: 1fr 1fr;
  }
}
.technologies__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.technologies__image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.technologies__image-placeholder {
  width: 100%;
  max-width: 500px;
  height: auto;
}
.technologies__cabin-image {
  width: 100%;
  max-width: 550px;
  height: auto;
  max-height: 600px;
  object-fit: contain;
}

.tech-feature {
  display: flex;
  gap: 20px;
}
.tech-feature__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: #FF8A50;
}
.tech-feature__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.tech-feature__content {
  flex: 1;
}
.tech-feature__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.tech-feature__text {
  color: var(--text-secondary);
  line-height: 1.6;
}

.platform {
  padding: 80px 0;
  background: var(--bg-surface);
}
.platform__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 768px) {
  .platform__content {
    grid-template-columns: 1fr 1fr;
  }
}
.platform__text {
  text-align: center;
}
@media (min-width: 768px) {
  .platform__text {
    text-align: left;
  }
}
.platform__description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}
.platform__stores {
  display: flex;
  gap: 16px;
  justify-content: center;
}
@media (min-width: 768px) {
  .platform__stores {
    justify-content: flex-start;
  }
}
.platform__store-link {
  display: block;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.platform__store-link:hover {
  transform: scale(1.05);
}
.platform__mockups {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
}
.platform__mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}
.platform__mockup--phone {
  max-width: 250px;
  width: 100%;
}
.platform__mockup--laptop {
  max-width: 450px;
  width: 100%;
}
.platform__mockup--single {
  max-width: 600px;
  width: 100%;
}
.platform__mockup-image {
  width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: contain;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-card);
}

.footer {
  padding: 80px 0 40px;
}
.footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .footer__content {
    grid-template-columns: 1fr 1fr;
  }
}
.footer__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__copyright {
  color: var(--text-secondary);
  font-size: 14px;
}
@media (max-width: 767px) {
  .footer__copyright {
    font-size: 12px;
  }
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 767px) {
  .footer__links {
    gap: 10px 16px;
    max-width: 100%;
  }
}
.footer__link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  white-space: normal;
  word-break: break-word;
  text-align: center;
}
@media (max-width: 767px) {
  .footer__link {
    font-size: 12px;
    line-height: 1.4;
  }
}
.footer__link:hover {
  color: var(--primary-solid);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-input,
.form-select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-m);
  color: var(--text-primary);
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}
.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-solid);
  box-shadow: 0 0 0 3px rgba(255, 159, 67, 0.1);
}
.form-input::placeholder,
.form-select::placeholder {
  color: var(--text-secondary);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%239FA6B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 40px;
}

.contact-item__name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-item__role {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 12px;
}
.contact-item__link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}
.contact-item__link:hover {
  color: var(--primary-solid);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
}
.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}
.modal__content {
  position: relative;
  background: var(--bg-surface);
  border-radius: var(--radius-l);
  padding: 40px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  z-index: 1;
}
.modal__content--large {
  max-width: 500px;
}
.modal__content--partnership {
  max-width: 900px;
  padding: 0;
  text-align: left;
}
@media (min-width: 320px) {
  .modal__content--partnership {
    width: 95%;
  }
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}
.modal__close:hover {
  color: var(--text-primary);
}
.modal__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}
.modal__text {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}
.modal__text:last-of-type {
  margin-bottom: 24px;
}
.modal .btn {
  margin-top: 8px;
}

.partnership-modal {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .partnership-modal {
    grid-template-columns: 1fr 1.2fr;
  }
}
.partnership-modal__image {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius-l) 0 0 var(--radius-l);
}
@media (max-width: 767px) {
  .partnership-modal__image {
    border-radius: var(--radius-l) var(--radius-l) 0 0;
    min-height: 200px;
  }
}
.partnership-modal__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.partnership-modal__content {
  padding: 40px;
}
@media (max-width: 767px) {
  .partnership-modal__content {
    padding: 30px 20px;
  }
}
.partnership-modal__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--text-primary);
}
@media (max-width: 767px) {
  .partnership-modal__title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.partnership-modal__steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.partnership-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.partnership-step__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 193, 94, 0.1) 0%, rgba(255, 92, 92, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-solid);
}
.partnership-step__icon svg {
  width: 24px;
  height: 24px;
}
.partnership-step__content {
  flex: 1;
}
.partnership-step__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.partnership-step__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.legal-content {
  padding: calc(var(--header-height) + 40px) 0 80px;
  min-height: calc(100vh - var(--header-height));
}
.legal-content__wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.legal-content__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}
@media (min-width: 768px) {
  .legal-content__title {
    font-size: 40px;
  }
}
.legal-content__subtitle {
  color: var(--text-secondary);
  font-size: 16px;
  margin: -8px 0 16px;
}
.legal-content__date {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.legal-content__section {
  margin-bottom: 40px;
}
.legal-content__section h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .legal-content__section h2 {
    font-size: 28px;
  }
}
.legal-content__section h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .legal-content__section h3 {
    font-size: 22px;
  }
}
.legal-content__section p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 16px;
}
@media (min-width: 768px) {
  .legal-content__section p {
    font-size: 17px;
  }
}
.legal-content__section ul {
  margin: 16px 0;
  padding-left: 24px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.legal-content__section ul li {
  margin-bottom: 12px;
  font-size: 16px;
}
@media (min-width: 768px) {
  .legal-content__section ul li {
    font-size: 17px;
  }
}
.legal-content__section ul li strong {
  color: var(--text-primary);
  font-weight: 600;
}
.legal-content__section a {
  color: var(--primary-solid);
  text-decoration: none;
  transition: color 0.3s ease;
}
.legal-content__section a:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

.company-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 24px 0;
}
.company-info__item {
  padding: 20px;
  background: var(--bg-surface);
  border-radius: var(--radius-m);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.company-info__label {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 16px;
}
.company-info__value {
  display: block;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}
.company-info__value a {
  color: var(--primary-solid);
  text-decoration: none;
  transition: color 0.3s ease;
}
.company-info__value a:hover {
  color: var(--text-primary);
  text-decoration: underline;
}
.company-info__note {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  font-style: italic;
  opacity: 0.7;
}

.form-group--checkbox {
  margin-top: 8px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.form-checkbox input[type=checkbox] {
  margin: 0;
  width: 20px;
  height: 20px;
  min-width: 20px;
  cursor: pointer;
  accent-color: var(--primary-solid);
  flex-shrink: 0;
  margin-top: 2px;
}
.form-checkbox__text {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}
.form-checkbox__text a {
  color: var(--primary-solid);
  text-decoration: none;
  transition: color 0.3s ease;
}
.form-checkbox__text a:hover {
  color: var(--text-primary);
  text-decoration: underline;
}
.form-checkbox:hover .form-checkbox__text {
  color: var(--text-primary);
}

.partners-page {
  background-color: var(--bg-body);
}

.partners-header {
  background: rgba(25, 25, 27, 0.9);
}
.partners-header .header__nav {
  flex: 1;
  justify-content: center;
  margin: 0 24px;
}

.partners-header .header__nav-link--active {
  color: var(--primary-solid);
}

.partners-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height, 80px) + 24px) 16px 40px;
  padding-left: calc(16px + env(safe-area-inset-left, 0));
  padding-right: calc(16px + env(safe-area-inset-right, 0));
  padding-bottom: calc(40px + env(safe-area-inset-bottom, 0));
  overflow: hidden;
}
@media (max-width: 767px) {
  .partners-hero {
    min-height: auto;
    min-height: 100dvh;
    padding-top: calc(var(--header-height, 80px) + 16px);
    padding-bottom: calc(32px + env(safe-area-inset-bottom, 0));
  }
}
.partners-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../files/cabin_in_bc_2_hd.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.partners-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}
.partners-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
}
.partners-hero__title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.25;
  color: var(--text-primary);
}
@media (min-width: 768px) {
  .partners-hero__title {
    font-size: 38px;
  }
}
@media (min-width: 1024px) {
  .partners-hero__title {
    font-size: 44px;
  }
}
.partners-hero__subheader {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .partners-hero__subheader {
    font-size: 17px;
  }
}
.partners-hero__cta {
  margin-bottom: 36px;
}
.partners-hero__bullets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  list-style: none;
  text-align: left;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}
@media (min-width: 480px) {
  .partners-hero__bullets {
    max-width: 400px;
  }
}
@media (min-width: 768px) {
  .partners-hero__bullets {
    grid-template-columns: repeat(3, 1fr);
    max-width: 720px;
    gap: 24px;
  }
}
.partners-hero__bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}
.partners-hero__bullet-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: #FF8A50;
}
.partners-hero__bullet-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.btn--partners {
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-primary);
}
.btn--partners:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 92, 92, 0.35);
}

.partners-section-title {
  color: var(--text-primary);
}
@media (max-width: 767px) {
  .partners-section-title {
    font-size: 20px !important;
    margin-bottom: 1.5rem;
    padding: 0 8px;
  }
}

.partners-segments {
  padding: 48px 0;
}
@media (min-width: 768px) {
  .partners-segments {
    padding: 80px 0;
  }
}
.partners-segments {
  background: var(--bg-surface);
}
.partners-segments__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 480px) {
  .partners-segments__grid {
    gap: 20px;
  }
}
@media (min-width: 768px) {
  .partners-segments__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .partners-segments__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.partners-segment-card {
  background: var(--bg-surface-hover);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-m);
  padding: 20px;
}
@media (min-width: 768px) {
  .partners-segment-card {
    padding: 28px;
  }
}
.partners-segment-card {
  transition: all 0.3s ease;
}
.partners-segment-card:hover {
  border-color: var(--primary-solid);
  box-shadow: var(--shadow-card);
}
.partners-segment-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  color: #FF8A50;
}
@media (min-width: 768px) {
  .partners-segment-card__icon {
    margin-bottom: 16px;
  }
}
.partners-segment-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.partners-segment-card__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}
@media (min-width: 768px) {
  .partners-segment-card__title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.partners-segment-card__text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}
@media (min-width: 768px) {
  .partners-segment-card__text {
    font-size: 14px;
    line-height: 1.55;
  }
}

.partners-problem-solution {
  padding: 48px 0;
  background: var(--bg-body);
}
@media (min-width: 768px) {
  .partners-problem-solution {
    padding: 80px 0;
  }
}

.partners-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .partners-compare {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
.partners-compare__col {
  padding: 20px 16px;
  border-radius: var(--radius-m);
}
@media (min-width: 768px) {
  .partners-compare__col {
    padding: 28px 24px;
  }
}
.partners-compare__col--problem {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
}
.partners-compare__col--solution {
  background: rgba(255, 159, 67, 0.08);
  border: 1px solid rgba(255, 159, 67, 0.3);
}
.partners-compare__title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}
@media (min-width: 768px) {
  .partners-compare__title {
    font-size: 19px;
    margin-bottom: 14px;
  }
}
.partners-compare__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
@media (min-width: 768px) {
  .partners-compare__text {
    font-size: 15px;
    line-height: 1.65;
  }
}

.partners-gallery {
  padding: 48px 0;
  background: var(--bg-body);
}
@media (min-width: 768px) {
  .partners-gallery {
    padding: 80px 0;
  }
}
.partners-gallery__subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 32px;
}
@media (min-width: 768px) {
  .partners-gallery__subtitle {
    font-size: 18px;
    margin-bottom: 40px;
  }
}
.partners-gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .partners-gallery__grid {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .partners-gallery__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.partners-gallery__item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-surface);
  min-width: 0;
}
.partners-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.partners-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.4s ease;
}
.partners-gallery__item:hover img {
  transform: scale(1.05);
}
.partners-gallery__item:hover::after {
  background: rgba(0, 0, 0, 0.25);
}
.partners-gallery__item {
  /* Заглушка без фото — заменить на <img src="..."> когда будет готово */
}
.partners-gallery__item--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  transition: transform 0.4s ease, border-color 0.3s ease;
}
.partners-gallery__item--placeholder .partners-gallery__label {
  position: static;
  background: transparent;
  font-size: 18px;
}
.partners-gallery__item--placeholder:hover {
  transform: scale(1.02);
  border-color: rgba(255, 138, 80, 0.5);
}
.partners-gallery__label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  z-index: 1;
}

.partners-platform {
  padding: 48px 0;
  background: var(--bg-surface);
}
@media (min-width: 768px) {
  .partners-platform {
    padding: 80px 0;
  }
}

.partners-platform__desc {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .partners-platform__desc {
    margin-bottom: 32px;
  }
}

.partners-platform__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .partners-platform__nav {
    gap: 16px;
    margin-bottom: 28px;
  }
}

.partners-platform__btn {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  color: var(--text-secondary);
  background: var(--bg-surface-hover);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-m);
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .partners-platform__btn {
    padding: 14px 24px;
    font-size: 15px;
  }
}
.partners-platform__btn:hover {
  color: var(--text-primary);
  border-color: var(--primary-solid);
}
.partners-platform__btn.active {
  color: #fff;
  background: var(--primary-gradient);
  border-color: transparent;
  box-shadow: var(--shadow-primary);
}

.partners-platform__carousel {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-l);
}

.partners-platform__track {
  display: flex;
  transition: transform 0.4s ease;
}

.partners-platform__slide {
  flex: 0 0 100%;
  min-width: 0;
}

.partners-platform__slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-l);
}

.partners-calculator {
  padding: 48px 0;
  background: var(--bg-body);
}
@media (min-width: 768px) {
  .partners-calculator {
    padding: 80px 0;
  }
}

.partners-calc {
  max-width: 560px;
  margin: 0 auto;
}
.partners-calc__intro {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
}
.partners-calc__inputs {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 28px;
}
.partners-calc__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.partners-calc__label {
  font-size: 15px;
  color: var(--text-secondary);
}
.partners-calc__range {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  accent-color: var(--primary-solid);
}
.partners-calc__radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.partners-calc__radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 15px;
}
.partners-calc__radio input {
  accent-color: var(--primary-solid);
}
.partners-calc__radio input:checked + span {
  color: var(--text-primary);
}
.partners-calc__result {
  background: var(--bg-surface);
  border-radius: var(--radius-m);
  padding: 24px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.partners-calc__result-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}
.partners-calc__result-row:last-child {
  margin-bottom: 0;
}
.partners-calc__result-row--highlight .partners-calc__result-value {
  color: var(--primary-solid);
  font-size: 26px;
}
.partners-calc__result-label {
  flex: 1;
  color: var(--text-secondary);
  font-size: 15px;
}
.partners-calc__result-value {
  font-weight: 700;
  font-size: 19px;
  color: var(--text-primary);
}
.partners-calc__result-currency {
  color: var(--text-secondary);
  font-size: 15px;
}
.partners-calc__disclaimer {
  font-size: 13px;
  color: var(--text-secondary);
  opacity: 0.85;
  line-height: 1.5;
}

.partners-security {
  padding: 48px 0;
  background: var(--bg-surface);
}
@media (min-width: 768px) {
  .partners-security {
    padding: 80px 0;
  }
}
.partners-security__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .partners-security__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
}
@media (max-width: 480px) {
  .partners-security__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.partners-security__item {
  text-align: center;
  padding: 16px 12px;
  background: var(--bg-surface-hover);
  border-radius: var(--radius-m);
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-width: 0;
}
@media (min-width: 768px) {
  .partners-security__item {
    padding: 24px 16px;
  }
}
.partners-security__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  color: #FF8A50;
}
.partners-security__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.partners-security__title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.partners-security__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.partners-timeline {
  padding: 48px 0;
  background: var(--bg-body);
}
@media (min-width: 768px) {
  .partners-timeline {
    padding: 80px 0;
  }
}
.partners-timeline__content {
  max-width: 720px;
  margin: 0 auto;
}
.partners-timeline__line {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 768px) {
  .partners-timeline__line {
    flex-direction: row;
    gap: 32px;
  }
}
.partners-timeline__step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.partners-timeline__step:last-of-type {
  margin-bottom: 0;
}
.partners-timeline__step-marker {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.partners-timeline__step-icon {
  font-size: 20px;
  margin-right: 8px;
}
.partners-timeline__step-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.partners-timeline__step-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.partners-timeline__guarantee {
  margin-top: 36px;
  padding: 24px;
  background: rgba(255, 159, 67, 0.08);
  border-radius: var(--radius-m);
  border: 1px solid rgba(255, 159, 67, 0.2);
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.55;
}
.partners-timeline__guarantee strong {
  color: var(--text-primary);
}

.partners-form-section {
  padding: 48px 0 40px;
  background: var(--bg-surface);
}
@media (min-width: 768px) {
  .partners-form-section {
    padding: 80px 0 40px;
  }
}

.partners-form-section .footer__form .form-input,
.partners-form-section .footer__form .form-select,
.partners-form-section .footer__form .form-textarea {
  background: var(--bg-surface-hover);
  border-color: rgba(255, 255, 255, 0.1);
}
.partners-form-section .footer__form .form-input:focus,
.partners-form-section .footer__form .form-select:focus,
.partners-form-section .footer__form .form-textarea:focus {
  border-color: var(--primary-solid);
  box-shadow: 0 0 0 3px rgba(255, 159, 67, 0.15);
}

.partners-form-section.footer .footer__content {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .partners-form-section.footer .footer__content {
    margin-bottom: 60px;
  }
}
.partners-form-section.footer .footer__bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
  .partners-page .section-title {
    font-size: 20px !important;
    margin-bottom: 1.5rem;
  }
  .partners-hero__title {
    font-size: 22px;
  }
  .partners-hero__subheader {
    font-size: 14px;
  }
  .partners-calc {
    padding: 0 4px;
  }
  .partners-platform__carousel {
    margin-left: -4px;
    margin-right: -4px;
    max-width: calc(100% + 8px);
  }
  .partners-platform__slide img {
    width: 100%;
    max-width: 100%;
  }
}
.partners-page {
  overflow-x: hidden;
}
.partners-page .container {
  min-width: 0;
}

.password-reset-page {
  padding: calc(var(--header-height) + 40px) 0 80px;
  min-height: calc(100vh - var(--header-height));
}

.password-reset-page .container {
  display: flex;
  justify-content: center;
}

.password-reset-card {
  width: 100%;
  max-width: 520px;
  padding: 40px 32px;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .password-reset-card {
    padding: 48px 40px;
  }
}
.password-reset-card__header {
  text-align: center;
  margin-bottom: 32px;
}

.password-reset-card__title {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .password-reset-card__title {
    font-size: 40px;
  }
}
.password-reset-card__description {
  margin: 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

.password-reset-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.password-reset-card .form-group {
  gap: 8px;
}

.password-reset-card .form-group__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.password-reset-card .form-input {
  background: var(--bg-surface-hover);
  border-color: rgba(255, 255, 255, 0.1);
}
.password-reset-card .form-input:focus {
  border-color: var(--primary-solid);
  box-shadow: 0 0 0 3px rgba(255, 159, 67, 0.15);
}

.password-reset-card__message {
  margin: 0 0 16px;
  padding: 12px 16px;
  border-radius: var(--radius-m);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}
.password-reset-card__message--error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #ffb4b4;
}
.password-reset-card__message--success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
}

.password-reset-card__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  margin-top: 4px;
}
.password-reset-card__actions .btn {
  width: 100%;
}

.password-reset-card__footer-link {
  text-align: center;
  margin-top: 4px;
}

.password-reset-card__link {
  color: var(--primary-solid);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.password-reset-card__link:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

.password-reset-card__result {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

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