/* Figma extracted styles for Akamatsu 1920 */

/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #ffffff;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Header - Frame 4 (50:426) */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 123, 71, 0.85); /* #FF7B47 с прозрачностью для блюра */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 436px;
  padding: 16px 401px;
  max-width: 1920px;
  margin: 0 auto;
  box-sizing: border-box;
}

.logo {
  display: block;
  flex-shrink: 0;
}

.logo img {
  display: block;
  max-width: 249px;
  min-height: 53px;
}

/* Burger Button - скрыта по умолчанию */
.burger-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 101;
  flex-direction: column;
  justify-content: space-around;
  align-item: center;
  width: 20px;
  height: 20px;
}

.burger-button span {
  position: relative;
  display: block;
  top: 0;
  width: 100%;
  height: 2px;
  gap: 10px;
  background: #ffffff;
  transition: all 0.3s ease 0s;
  transform-origin: center;
}

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

.burger-button.active span:nth-child(2) {
  opacity: 0;
}

.burger-button.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  top: -5px;
}

/* Navigation - Frame 3 (50:440) */
.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 39px;
}

.nav-link {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.21022720337em; /* 24.2px */
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav-link:hover {
  opacity: 0.8;
}

/* Hero Section - Frame 5 (50:231) */
.hero {
  position: relative;
  width: 100%;
  height: 600px;
  margin-top: 0;
  overflow: hidden;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

/* Background - Rectangle 1 (50:232) */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ff7b48;
  z-index: 1;
}

/* Geisha Image (50:233) */
.hero-image {
  position: relative;
  top: 106px;
  flex: 0 0 30%;
  /* left: 1179px; */
  /* padding: 0 0 50% 0; */
  max-width: 373px;
  min-height: 494px;
  z-index: 2;
}

.hero-image img {
  position: absolute;
  top: 0;
  left: 0;
  /* display: block; */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Content - Frame 6 (50:234) */
.hero-content {
  position: absolute;
  top: 158px;
  left: 400px;
  width: 779px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 3;
}

/* Title - (50:235) */
.hero-title {
  font-family: "Tektur", sans-serif;
  font-weight: 500;
  font-size: 64px;
  line-height: 1.29999995232em; /* 83.2px */
  color: #ffffff;
  text-align: left;
  /* margin: 0; */
}

/* Subtitle - (50:236) */
.hero-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.21022720337em; /* 24.2px */
  color: #ffffff;
  text-align: left;
  width: 513px;
  margin: 0;
}
.hero-title-white {
  font-family: "Tektur", sans-serif;
  font-weight: 500;
  font-size: 64px;
  line-height: 1.29999995232em; /* 83.2px */
  color: #ffffff;
  text-align: left;
  margin-bottom: 64px;
}
/* Responsive adjustments for large screens */
@media (min-width: 1921px) {
  .header {
    width: 100%;
    max-width: none;
  }

  .header-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 16px 401px;
  }

  .hero {
    width: 100%;
    /* max-width: 1920px; */
    margin-left: auto;
    margin-right: auto;
    max-width: none;
  }

  .hero-bg {
    width: 100%;
  }

  .hero-image {
    left: calc(50% + 259px); /* 1179px - 960px (center) + offset */
  }

  .hero-content {
    left: calc(50% - 560px); /* 400px offset from center */
  }

  .footer-container {
    max-width: 1920px;
    margin: 0 auto;
    /* padding: 16px 401px; */
  }
}

/* Responsive adjustments for viewport centering */
@media (max-width: 1920px) {
  .header-container {
    max-width: 100%;
    padding-left: max(16px, calc((100% - 1118px) / 2));
    padding-right: max(16px, calc((100% - 1118px) / 2));
  }

  .hero {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image {
    left: calc(50% + 259px);
  }

  .hero-content {
    left: calc(50% - 560px);
  }

  .footer {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================
   Main Content Section - 1920px Design
   ============================================ */

/* Main Content Wrapper */
.main-content {
  width: 100%;
  background: #ffffff;
}

/* Center content for viewports larger than 1920px */
@media (min-width: 1921px) {
  .main-content {
    width: 100%;
  }

  .footer {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
  }

  .about-company,
  .launch-support,
  .contact-form-section {
    width: 100%;
  }
}

/* Center content for viewports 1920px and below */
@media (max-width: 1920px) {
  .main-content {
    position: relative;
    left: 0;
    transform: none;
    max-width: 100%;
  }
}

/* Content Wrapper - Frame 23 (1:44) */
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 120px;
  width: 100%;
  padding: 80px max(16px, calc((100% - 1118px) / 2));
  box-sizing: border-box;
  margin-bottom: 40px;
}

.content-inner {
  display: flex;
  flex-direction: column;
  gap: 120px;
  width: 100%;
  max-width: 1118px;
}

/* Product Section */
.product-section {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

/* Section Column - 2 колонки на desktop (layout_YQLWGL) */
.section-column {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

/* Section Title - style_ALDZII (layout_Q76B7M) */
.section-title {
  font-family: "Tektur", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.3em;
  color: #ff672b;
  width: 426px;
  flex-shrink: 0;
}

/* Section Text - style_XPADDB */
.section-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.21022720337em;
  color: #020b15;
  flex: 1;
}

/* White text modifier - объединено для всех элементов */
.section-title.white,
.section-text.white,
.functionality-title.white,
.functionality-text.white {
  color: #ffffff;
}

.section-title.orange {
  color: #ff7e4b;
}

/* Features Section (layout_92930P) */
.features-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Features Wrapper */
.features-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Features Grid - Frame 13 (1:51) */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Feature Card - Frame 7-12 (layout_DCPS80) */
.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 24px;
  padding: 16px;
  width: calc((100% - 32px) / 3); /* 3 cards per row on desktop */
  height: 180px;
  background: #f5f5f5;
}

.feature-icon {
  display: block;
}

/* Feature Text - style_UWUUV5 */
.feature-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.21022720337em;
  color: #020b15;
  margin: 0;
}

/* CTA Button - Frame 17 (1:106) */
.cta-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px;
  width: 100%;
  background-color: #ff7b47;
  border: none;
  cursor: pointer;
  font-family: "Tektur", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3em;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.1s ease; /* Добавлен transform для active */
}

.cta-button:hover {
  background-color: #ff966c; /* hover цвет */
}

.cta-button:active {
  background-color: #fd5919; /* active цвет */
  transform: translateY(1px); /* Легкое нажатие */
}

/* Functionality Section - Frame 16 (1:108) */
.functionality-section {
  display: flex;
  gap: 16px;
}

.functionality-header {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 426px;
  flex-shrink: 0;
}

.functionality-image {
  width: 429px;
  height: 340px;
  object-fit: cover;
}

/* Functionality List - Frame 19 (1:112) */
.functionality-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

/* Functionality Item - Frame 18 (1:113) */
.functionality-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 0 24px 0;
  border-bottom: 1px solid #cccccc;
}

.functionality-item:last-child {
  border-bottom: none;
}

/* Functionality Title - style_UCVY0U */
.functionality-title {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.21022720337em;
  color: #020b15;
  width: 602px;
  margin: 0;
}

/* Functionality Text - style_UTBAYD */
.functionality-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5em;
  color: #272c32;
  width: 602px;
  margin: 0;
}

/* ============================================
   About Company & Launch Section
   ============================================ */

/* About Launch Section - Frame 24 (1:128) */
.about-launch-section {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* About Company - Frame 17 (1:129) */
.about-company {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 64px max(16px, calc((100% - 1118px) / 2));
  width: 100%;
  background: #131313;
}

/* Общий стиль для псевдоэлементов ::before с полной шириной */
.about-company::before,
.launch-support::before,
.contact-form-section::before,
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  height: 100%;
  z-index: -1;
}

.about-company::before {
  background: #131313;
}

.about-company-inner {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 1118px;
  max-width: 100%;
  margin: 0 auto;
}

.about-company-inner .section-title {
  width: 426px;
  flex-shrink: 0;
}

.about-company-inner .section-text {
  flex: 1;
}

/* Launch Support - Frame 18 (1:132) */
.launch-support {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 120px max(16px, calc((100% - 1118px) / 2));
  width: 100%;
  background: #ff7b47;
}

.launch-support::before {
  background: #ff7b47;
}

.launch-support-inner {
  width: 1118px;
  max-width: 100%;
  margin: 0 auto;
}

.launch-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.launch-content .section-title {
  width: auto;
  white-space: nowrap;
}

/* Steps Grid - Frame 13 (1:136) */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

/* Step Card - Frame 7-12 (1:137-1:162) */
.step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 13.5px;
  padding: 16px;
  width: 362px;
  /* max-height: 180px; */
  height: auto;
  background: #f5f5f5;
}

.step-card-tall {
  height: auto;
}

.step-image {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* Step Number - Frame 25 (1:140) */
.step-number {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background: #020b15;
  border-radius: 40px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.21022720337em;
  color: #ffffff;
}

/* FAQ Section */
.faq-section {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 64px;
  align-items: flex-start;
}

.faq-header {
  width: 426px;
  flex-shrink: 0;
}

.faq-content {
  flex: 1;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* FAQ Item - Frame 18 (1:171) */
.faq-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 0 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.faq-item-open .functionality-text {
  display: block;
  /* margin-top: 8px; */
}

.faq-item:not(.faq-item-open) .functionality-text {
  display: none;
}

/* ============================================
   Contact Form Section
   ============================================ */

/* Contact Form Section - Frame 15 (1:194) */
.contact-form-section {
  position: relative;
  padding: 80px max(16px, calc((100% - 1118px) / 2));
  width: 100%;
  background: #ffffff;
  margin-top: 40px;
}

.contact-form-section::before {
  background: #ffffff;
}

.contact-form-wrapper {
  width: 1118px;
  max-width: 100%;
  margin: 0 auto;
}

.contact-form-container {
  display: flex;
  gap: 16px;
}

.contact-form-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 426px;
  flex-shrink: 0;
}

.contact-form-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
}

.form-intro {
  margin: 0;
}

/* Contact Form - Frame 36 (1:198) */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Form Field */
.form-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Form Label */
.form-label {
  position: absolute;
  left: 0;
  top: 0;

  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5em;
  color: #020b15;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.2s ease;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}

.form-label .required {
  color: #ff7b47;
  transition: color 0.3s ease-in-out; /* Добавляем анимацию для цвета звездочки */
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label,
.form-textarea:focus + .form-label,
.form-textarea:not(:placeholder-shown) + .form-label {
  opacity: 1;
  top: -10px;
  font-size: 10px;
  color: #a0a6bf;
}
.form-input:focus + .form-label .required,
.form-input:not(:placeholder-shown) + .form-label .required,
.form-textarea:focus + .form-label .required,
.form-textarea:not(:placeholder-shown) + .form-label .required {
  color: inherit; /* Наследует цвет #a0a6bf от родителя */
}

/* Form Input - Frame 34-39 (1:199-1:209) */
.form-input,
.form-textarea {
  padding: 8px 0;
  border: none;
  border-bottom: 1px solid #cccccc;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5em;
  color: #020b15;
  outline: none;
  transition: border-color 0.2s ease;
  position: relative;
  z-index: 2;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus {
  border-bottom-color: #ff7b47;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: transparent;
}

.form-textarea {
  /* min-height: 120px; */
  resize: vertical;
  border-bottom: 1px solid #cccccc;
  padding-top: 0;
}

/* Стили для сообщений об ошибках */
.error-message {
  position: absolute;
  right: 0;
  top: 14px; /* Позиционируем ниже родительского элемента */

  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3em;
  color: #f03226;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  white-space: nowrap;
  /* Убрано: background-color, border-radius, box-shadow, padding */
  z-index: 10;
}

/* Стили для полей с ошибками */
.form-input.error,
.form-textarea.error {
  border-bottom-color: #f03226;
}

.form-input.error + .form-label,
.form-textarea.error + .form-label {
  color: #f03226;
}

.form-input.error + .form-label .required,
.form-textarea.error + .form-label .required {
  color: #f03226;
}

/* Когда есть ошибка и поле в фокусе */
.form-input.error:focus,
.form-textarea.error:focus {
  border-bottom-color: #f03226;
}

/* Показываем сообщение об ошибке */
.error-message.show {
  opacity: 1;
}

/* Form Checkbox - Checkbox (1:211) */
.form-checkbox {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid #cccccc;
  cursor: pointer;

  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 4px;
  position: relative;
}
/* Изменение цвета при нажатии/выборе */
.form-checkbox input[type="checkbox"]:checked {
  background-color: #ff7b47;
  border-color: #ff7b47;
}
/* Галочка внутри чекбокса */
.form-checkbox input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
}
.checkbox-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5em;
  color: #020b15;
}

.checkbox-link {
  color: #ff7b47;
  text-decoration: none;
}

.checkbox-link:hover {
  text-decoration: underline;
}

/* ============================================
   Footer
   ============================================ */

/* Footer - Frame 17 (1:216) */
.footer {
  width: 100%;
  max-width: none;
  /* position: static;
    left: auto;
    transform: none;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto; */
}
.footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 64px max(16px, calc((100% - 1118px) / 2));
  width: 100%;
  background: #131313;
  box-sizing: border-box;
}

.footer::before {
  background: #131313;
}

.footer-logo {
  display: block;
  width: 249px;
  height: 53px;
}

/* Frame 40 (layout_XSZBOF) */
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

/* style_QEEX1Z */
.footer-company {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.21022720337em;
  color: #ffffff;
  margin: 0;
  text-align: right;
}

/* style_AOBOZM */
.footer-address {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.21022720337em;
  color: #ffffff;
  margin: 0;
  text-align: right;
}

/* ============================================
   Responsive Adaptations for Main Content
   ============================================ */
/* Desktop 1440px */
@media (max-width: 1440px) {
  .header-container {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 430px;
    padding: 16px max(16px, calc((100% - 1118px) / 2));
    box-sizing: border-box;
  }

  .content-inner {
    width: 100%;
    max-width: 1118px;
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* Блоки со сплошным фоном - фон 100%, контент центрируется */
  .about-company,
  .launch-support,
  .contact-form-section {
    padding-left: max(16px, calc((100% - 1118px) / 2));
    padding-right: max(16px, calc((100% - 1118px) / 2));
  }
}

/* Desktop 1280px */
@media (max-width: 1281px) {
  .header {
    width: 100%;
    max-width: 1280px;
    left: 0;
    transform: none;
    margin: 0 auto; /* Добавляем центрирование */
  }

  .header-container {
    padding: 30.5px 102px;
    gap: 24px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .logo {
    flex-shrink: 0;
  }

  .nav {
    gap: 20px;
    flex-wrap: nowrap;
    flex-shrink: 1;
    min-width: 0;
  }

  .nav-link {
    font-size: 20px;
    white-space: nowrap;
  }
  .hero-content {
    left: calc(50% - 530px);
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transform: translateX(-48px);
  }

  .main-content {
    /* width: 1280px; */
    left: 50%;
    transform: translateX(-50%);
  }

  .content-wrapper {
    gap: 0;
    padding: 80px 0;
  }

  .content-wrapper > *:first-child .section-title:first-child,
  .content-inner > *:first-child .section-title:first-child {
    margin-top: 0;
  }

  .content-inner {
    width: 1044px;
  }

  .about-company {
    padding: 64px 118px;
  }

  .launch-support {
    padding: 120px 118px;
  }
  .launch-content {
    gap: 0;
  }
  .steps-grid {
    display: grid;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
    grid-template-columns: repeat(3, 1fr);
  }

  .step-card {
    max-width: 337px;
    min-height: 180px;
    /* flex: 0 0 337px; */
  }
  .hero-title-white {
    font-size: 50px;
  }

  .contact-form-section {
    padding: 80px 118px;
  }

  .contact-form-left {
    width: 426px;
  }

  .footer {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 118px;
    box-sizing: border-box;
    left: 0;
    transform: none;
  }

  .footer-info {
    align-items: flex-end;
  }
}

/* Desktop 1200px */
@media (max-width: 1200px) {
  .hero-content {
    left: calc(50% - 530px);
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-company-inner {
    gap: 0;
  }

  .faq-section {
    gap: 0;
  }

  /* Добавляем псевдоэлемент для растягивания фона */
  .footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: inherit; /* Наследует цвет фона */
    z-index: -1;
  }
}
@media (max-width: 1216px) {
  .hero-content {
    left: calc(50% - 510px);
  }
}

@media (max-width: 1168px) {
  .header-container {
    padding: 30.5px 40px;
    gap: 24px;
    max-width: 100%;
  }
  .hero-image {
    left: calc(50% + 250px);
  }
  .hero-image img {
    transform: translateX(-50px);
  }
  .hero-content {
    left: calc(50% - 540px);
  }

  /* Фоновые блоки - фон растянуть на 100% ширины */

  .about-company,
  .launch-support,
  .contact-form-section {
    width: 100%;
    padding: 80px 50px;
  }

  .about-company::before,
  .launch-support::before,
  .contact-form-section::before {
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
  }

  .about-company-inner,
  .launch-support-inner,
  .contact-form-wrapper {
    width: 100%;
    /* max-width: 1168px; */
    margin: 0 auto;
  }

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

/* @media (max-width: 1130px) {
} */

@media (max-width: 1132px) {
  .header {
    width: 100%;
    max-width: 100%;
    left: 0;
    transform: none;
  }

  .header-container {
    padding: 16px 40px;
    gap: 24px;
    box-sizing: border-box;
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transform: translateX(-140px);
  }

  .hero-image {
    left: calc(50% + 330px);
  }

  .hero-content {
    left: calc(50% - 520px);
  }
  .main-content {
    width: 100%;
    max-width: 100%;
    left: 0;
    transform: none;
    overflow-x: hidden;
  }

  .content-wrapper {
    padding: 80px 40px;
    gap: 80px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .content-inner {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .about-company,
  .launch-support,
  .contact-form-section {
    width: 100%;
    /* padding: 80px 50px; */
  }

  .about-company {
    padding: 80px 10px;
  }

  .launch-support {
    padding: 80px 40px;
  }

  .contact-form-section {
    padding: 80px 40px;
  }

  .footer {
    width: 100%;
    max-width: 100%;
    left: 0;
    transform: none;
    padding: 64px 40px;
    box-sizing: border-box;
  }

  /* Добавляем псевдоэлемент для растягивания фона */
  .footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: inherit;
    z-index: -1;
  }
}
@media (max-width: 1103px) {
  .hero-image {
    left: calc(50% + 320px);
  }

  .hero {
    bottom: -28px;
  }
}
/* Tablet & Mobile - Responsive Breakpoints */
@media (max-width: 1025px) {
  .hero-image {
    left: calc(50% + 285px);
  }

  .hero-content {
    left: calc(50% - 470px);
  }

  .hero-title {
    font-size: 50px;
  }
  .main-content {
    max-width: 100%;
    max-width: 100%;
    left: 0;
    transform: none;
    overflow-x: hidden;
  }

  .content-wrapper {
    padding: 80px 40px;
    gap: 80px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .content-inner {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .product-section {
    display: flex;
    flex-direction: column;
    gap: 80px;
  }

  /* Section columns остаются в row на планшетах */
  .section-title {
    /* width: 300px; */
    max-width: 100%;
  }

  /* Features section - заголовок сверху */
  .features-section {
    align-items: stretch;
  }

  .features-section .section-title {
    width: 100%;
  }

  .features-grid {
    justify-content: center;
  }

  /* 2 cards per row on tablet */
  .feature-card {
    width: calc((100% - 16px) / 2);
    min-width: 280px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .functionality-section {
    flex-direction: column;
    gap: 16px;
  }

  .functionality-image {
    display: none;
  }

  /* Общие стили для full-width секций */
  .about-company,
  .launch-support,
  .contact-form-section {
    width: 100%;
    max-width: 100%;
    left: 0;
    transform: none;
  }

  .about-company {
    flex-direction: column;
    padding: 80px 50px;
  }

  .about-company-inner {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    gap: 16px;
  }

  .about-company-inner .section-title {
    width: 100%;
  }

  .launch-support {
    padding: 80px 40px;
    gap: 48px;
  }

  .launch-support-inner {
    width: 100%;
    max-width: 100%;
  }
  .step-card {
    max-width: 300px;
  }
  .contact-form-section {
    padding: 60px 40px;
  }

  .contact-form-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .contact-form-left {
    width: 300px;
    max-width: 100%;
  }

  /* Общие стили для FAQ */
  .faq-section {
    flex-direction: column;
    align-items: flex-end;
    /* gap: 16px; */
  }

  .faq-header {
    width: 100%;
  }

  .footer {
    width: 100%;
    max-width: 100%;
    left: 0;
    transform: none;
    padding: 48px 40px;
    box-sizing: border-box;
  }

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

  .footer-address {
    font-size: 18px;
  }
}
@media (max-width: 981px) {
  .hero-content {
    left: calc(50% - 450px);
  }
}

@media (max-width: 965px) {
  .hero-image {
    left: calc(50% + 248px);
  }
  .hero-content {
    left: calc(50% - 440px);
  }
}
@media (max-width: 901px) {
  .hero-content {
    left: calc(50% - 414px);
  }

  .hero-image img {
    transform: translateX(-169px);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
}
@media (max-width: 835px) {
  .hero-content {
    left: calc(50% - 370px);
  }
}
@media (max-width: 821px) {
  .hero-content {
    left: calc(50% - 360px);
  }
}
@media (max-width: 811px) {
  .hero-image {
    left: calc(50% + 206px);
  }
  .hero-content {
    left: calc(50% - 360px);
  }
}

/* Tablet 768px */
@media (max-width: 769px) {
  /* Бургерная кнопка видна на планшетах и мобильных */
  .burger-button {
    display: flex;
    align-content: space-between;
    flex-direction: column;
    justify-content: space-between;
  }

  /* Навигация скрыта по умолчанию на планшетах и мобильных */
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 123, 71, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 16px;
    z-index: 100;
  }

  .nav.active {
    display: flex;
    flex-direction: row;
  }

  .nav-link {
    width: 100%;
    padding: 8px 0;
  }
  .hero-content {
    left: calc(50% - 340px);
    max-width: 600px;
  }

  .hero-image {
    left: calc(50% + 188px);
  }
  .hero-title {
    font-size: 40px;
    padding-top: 40px;
  }

  .main-content {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .content-wrapper {
    padding: 80px 45px;
    gap: 80px;
    margin: 0;
  }

  /* Section columns остаются в row */
  .section-title {
    max-width: 250px;
  }

  .launch-content .section-title {
    width: auto;
    white-space: nowrap;
    padding-bottom: 32px;
  }

  /* Общие стили для functionality элементов */
  .functionality-title {
    /* font-size: 20px; */
    width: 100%;
    max-width: 100%;
  }

  .functionality-text {
    /* font-size: 15px; */
    width: 100%;
    max-width: 100%;
  }

  /* Общие стили для full-width секций */
  .about-company,
  .launch-support,
  .contact-form-section {
    width: 100%;
    max-width: 100%;
    left: 0;
    transform: none;
    padding: 80px 45px;
  }
  .contact-form-section {
    margin-top: 0;
  }

  .about-company {
    padding: 80px 45px;
  }

  .about-company-inner {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    gap: 16px;
  }

  .about-company-inner .section-title {
    width: 100%;
  }

  .launch-support {
    padding: 80px 45px;
  }

  .launch-support-inner {
    width: 100%;
    max-width: 100%;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-card {
    width: calc(50% - 8px);
    min-width: 280px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .step-image {
    max-width: 100%;
    height: auto;
  }

  .contact-form-section {
    padding: 80px 40px;
  }

  .contact-form-left {
    width: 250px;
    max-width: 100%;
  }
  .error-message {
    left: 0;
    right: auto;
    top: 100%;
    margin-top: 8px;
    white-space: normal;
    width: 100%;
    text-align: left;
  }
  /* Общие стили для FAQ */
  .faq-section {
    flex-direction: column;
    gap: 16px;
  }

  .faq-header {
    width: 100%;
  }

  .footer {
    width: 100%;
    max-width: 100%;
    /* left: 0;
    transform: none; */
    padding: 40px 40px;
  }

  .footer-logo {
    width: 200px;
    height: auto;
    max-width: 100%;
  }
}
@media (max-width: 685px) {
  .hero-content {
    left: calc(50% - 300px);
    top: 120px;
  }
  .hero-image {
    left: calc(50% + 160px);
  }
  .hero-image img {
    transform: translateX(-186px);
  }
  .hero-title {
    font-size: 40px;
    padding-top: 0px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }
}
@media (max-width: 605px) {
  .steps-grid {
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
  }
}

@media (max-width: 580px) {
  .hero {
    bottom: -28px;
  }
  .hero-content {
    left: calc(50% - 250px);
    top: 110px;
  }
  .hero-image img {
    transform: translateX(-238px);
  }
  .section-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .content-wrapper > *:first-child .section-title:first-child,
  .content-inner > *:first-child .section-title:first-child {
    display: inline;
    max-width: none;
  }
}
@media (max-width: 550px) {
  .launch-content .section-title {
    /* width: auto; */
    white-space: wrap;
    padding-bottom: 32px;
    max-width: 500px;
  }
}

@media (max-width: 510px) {
  .hero-content {
    left: calc(50% - 210px);
    top: 100px;
  }
  .hero-image img {
    transform: translateX(-260px);
  }
  .hero-subtitle {
    width: 460px;
  }
}
@media (max-width: 486px) {
  .hero-image {
    left: calc(50% + 160px);
    max-width: 266px;
    height: 352px;
  }
  .hero-image img {
    transform: translateX(-260px);
    top: 142px;
    left: 13vh;
  }
  .hero-content {
    left: calc(50% - 200px);
    top: 100px;
  }
  .hero-title {
    font-size: 35px;
    padding-top: 0px;
  }
}
@media (max-width: 470px) {
  .hero-content {
    left: calc(50% - 190px);
    top: 100px;
  }
  .hero-title {
    font-size: 40px;
    padding-top: 0;
    width: 420px;
  }
}
/* Mobile 430px and below */
@media (max-width: 431px) {
  /* Бургерная кнопка видна на мобильных */
  /* .burger-button {
    display: flex;
  } */
  .header-container {
    padding: 16px 16px;
  }

  /* Навигация скрыта по умолчанию на мобильных */
  /* .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 123, 71, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 16px;
    z-index: 100;
  } */
  /* 
  .nav.active {
    display: flex;
  }

  .nav-link {
    width: 100%;
    padding: 8px 0;
  } */
  .logo img {
    display: block;
    max-width: 148px;
    min-height: 32px;
  }

  .hero-content {
    left: calc(50% - 190px);
    max-width: 400px;
    top: 100px;
  }

  .hero-title {
    font-size: 30px;
    padding-top: 0;
  }
  .hero-subtitle {
    font-size: 16px;
    width: 350px;
  }
  .hero-image {
    left: calc(50% + 130px);
  }

  /* Общие стили для контента */
  .main-content {
    width: 100%;
    max-width: 100%;
    left: 0;
    transform: none;
    overflow-x: hidden;
  }

  .content-wrapper {
    padding: 80px 16px;
    gap: 80px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .content-inner {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* На мобильных section-column становится вертикальным */
  .section-column {
    flex-direction: column;
    gap: 16px;
  }

  .section-title {
    font-size: 32px;
    width: 100%;
    max-width: 100%;
  }
  .launch-content .section-title {
    width: auto;
    white-space: pre-wrap;
    padding-bottom: 0;
  }
  .launch-content-title {
    width: 320px;
  }
  .section-text {
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Features section */
  .features-section .section-title {
    font-size: 32px;
    width: 100%;
  }

  /* 1 card per row on mobile */
  .features-grid {
    flex-direction: column;
    gap: 16px;
  }

  .feature-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .feature-text {
    font-size: 14px;
  }

  .functionality-section {
    flex-direction: column;
    gap: 24px;
  }

  .functionality-image {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  /* Общие стили для functionality элементов */
  .functionality-title {
    font-size: 18px;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .functionality-text {
    font-size: 14px;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Общие стили для full-width секций */
  .about-company,
  .launch-support,
  .contact-form-section {
    width: 100%;
    max-width: 100%;
    left: 0;
    transform: none;
  }

  .about-company {
    padding: 64px 16px;
  }

  .about-company-inner {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    gap: 16px;
  }

  .about-company-inner .section-title {
    width: 100%;
  }

  .launch-support {
    padding: 80px 16px;
  }

  .launch-support-inner {
    width: 100%;
    max-width: 100%;
  }
  .hero-title-white {
    display: none;
    margin-bottom: 0;
  }

  .steps-grid {
    flex-direction: column;
    gap: 16px;
    grid-template-columns: repeat(1, 1fr);
  }

  .step-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .step-image {
    max-width: 100%;
    height: auto;
  }

  .contact-form-section {
    padding: 80px 20px;
  }

  .contact-form-wrapper {
    width: 100%;
    max-width: 100%;
  }

  /* Общие стили для FAQ */
  .faq-section {
    flex-direction: column;
    gap: 16px;
  }

  .faq-header {
    width: 100%;
  }

  /* Contact form становится вертикальным на мобильных */
  .contact-form-container {
    flex-direction: column;
    gap: 16px;
  }

  .contact-form-left {
    width: 100%;
  }

  .contact-form-right {
    width: 100%;
  }

  .form-input,
  .form-textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .footer {
    width: 100%;
    max-width: 100%;
    left: 0;
    transform: none;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 40px 16px;
    box-sizing: border-box;
  }

  .footer-logo {
    width: 249px;
    height: 53px;
    max-width: 100%;
  }

  .footer-info {
    align-items: stretch;
    gap: 8px;
  }

  .footer-company {
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    word-wrap: break-word;
  }

  .footer-address {
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    word-wrap: break-word;
  }
}
@media (max-width: 415px) {
  .hero-content {
    left: calc(50% - 185px);
    max-width: 400px;
    top: 100px;
  }
}

@media (max-width: 401px) {
  .hero-content {
    left: calc(50% - 176px);
    max-width: 400px;
    top: 100px;
  }
}
@media (max-width: 391px) {
  .hero-content {
    left: calc(50% - 174px);
    max-width: 400px;
    top: 100px;
  }
}
@media (max-width: 377px) {
  .header {
    width: 100%;
    max-width: 375px;
    height: 64px;
    left: 0;
    transform: none;
    margin: 0 auto;
  }

  .header-container {
    padding: 16px;
    gap: 16px;
    box-sizing: border-box;
    height: 64px;
    justify-content: space-between;
    align-items: center;
  }

  /* Logo: 148*32 */
  .logo img {
    width: 148px;
    height: 32px;
  }

  .nav-link {
    width: 100%;
    padding: 8px 0;
  }

  /* Hero-bg растянуть на 100% */
  .hero-bg {
    margin: 0 auto;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
  }

  /* Hero section */
  .hero {
    width: 100%;
    /* max-width: 375px; */
    /* min-height: 400px; */
    margin: 0 auto;
    overflow: hidden;
  }

  /* Hero-content */
  .hero-content {
    left: calc(50% - 168px);
    max-width: 400px;
    top: 90px;
  }

  /* Hero-subtitle font-size 16px, padding справа 10px и слева 10px */
  .hero-subtitle {
    font-size: 16px;
    /* padding-left: 10px; */
    padding-right: 30px;
    width: 100%;
    margin: 0;
    gap: 8px;
  }

  /* Content-wrapper padding-top 80px, padding-bottom 104px, padding-left/right 16px */
  .content-wrapper {
    padding: 80px 16px 104px 16px;
    gap: 80px;
  }

  /* Section-title padding-bottom 16px, font-size 32px */
  .section-title {
    font-size: 32px;
  }

  /* Section-text font-size 16px, padding-bottom 80px */
  .section-text {
    font-size: 16px;
  }

  .content-inner {
    width: 100%;
    flex-direction: column;
  }

  .section-column {
    flex-direction: column;
    gap: 16px;
  }

  /* h2.section-title "Преимущества": padding-bottom 16px */
  .features-section .section-title {
    /* padding-bottom: 16px; */
  }

  /* Feature-grid padding-bottom 16px, padding-top 16px */
  .features-grid {
    padding-top: 16px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  /* Feature-card 343*180 */
  .feature-card {
    width: 343px;
    max-width: 100%;
    height: 180px;
    margin: 0 auto;
  }

  /* CTA-button 343*58, font-size 20px */
  .cta-button {
    width: 343px;
    max-width: 100%;
    height: 58px;
    font-size: 20px;
    margin: 0 auto;
    display: block;
  }
  .cta-button:hover {
    background-color: #ff966c; /* hover цвет */
  }

  .cta-button:active {
    background-color: #fd5919; /* active цвет */
    transform: translateY(1px); /* Легкое нажатие */
  }

  /* About-company фон растянуть на 100% */
  .about-company {
    padding: 80px 16px;
    width: 100%;
  }

  /* Section-title orange padding-top 0 */
  .about-company-inner .section-title.orange {
    padding-top: 0;
  }

  /* h2.hero-title.white "Процесс запуска и поддержка": скрыт */
  .launch-support .hero-title.white {
    display: none;
  }

  /* div.step-card: padding-bottom 16px и в одну колонку */
  .steps-grid {
    flex-direction: column;
    gap: 16px;
  }

  .step-card {
    width: 100%;
    padding-bottom: 16px;
  }

  /* Все full-width секции: padding-top 80px */
  .about-company,
  .launch-support,
  .contact-form-section {
    padding: 64px 16px;
    width: 100%;
    max-width: 100%;
  }

  .launch-support {
    padding: 80px 16px;
  }

  .contact-form-section {
    padding: 80px 16px;
  }

  /* Footer */
  .footer {
    width: 100%;
    /* max-width: 375px; */
    padding: 40px 16px;
    margin: 0 auto;
  }
}

@media (max-width: 321px) {
  .hero-content {
    left: calc(50% - 135px);
    max-width: 295px;
    top: 50px;
  }
  .hero-title {
    width: 290px;
  }
  .hero-image {
    left: calc(50% + 74px);
  }
  .cta-button {
    font-size: 18px;
    margin: 0 auto;
  }
  .cta-button:hover {
    background-color: #ff966c; /* hover цвет */
  }
  .cta-button:active {
    background-color: #fd5919; /* active цвет */
    transform: translateY(1px); /* Легкое нажатие */
  }

  /* About-company фон растянуть на 100% */
  .about-company {
    padding: 80px 16px;
    width: 100%;
  }
  .section-title {
    font-size: 28px;
  }
}

/* ============================================ Success Modal ============================================ */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.success-modal.active {
  opacity: 1;
  visibility: visible;
}

.success-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.success-modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px;
  background: #ffffff;
  border-radius: 0;
  max-width: 682px;
  width: calc(100% - 40px);
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1001;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.success-modal-title {
  font-family: "Tektur", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2999999523162842em;
  color: #ff672b;
  margin: 0;
  width: 426px;
  max-width: 100%;
}

.success-modal-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.success-modal-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2102272033691406em;
  color: #020b15;
  margin: 0;
  width: 602px;
  max-width: 100%;
}

.success-modal-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px;
  width: 100%;
  background: #ff7b47;
  border: none;
  cursor: pointer;
  font-family: "Tektur", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3em;
  color: #ffffff;
  text-align: center;
  transition: background 0.2s ease;
  align-self: stretch;
}

.success-modal-button:hover {
  background: #ff6a35;
}
