@charset "UTF-8";
.pagination {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.pagination .page-item .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background-color: #e3e1e1;
  color: #000000;
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.pagination .page-item .page-link:hover {
  background-color: #727171;
  border-color: #727171;
  text-decoration: none;
}
.pagination .page-item.active .page-link {
  background-color: #af4100;
  border-color: #af4100;
  cursor: default;
}
.pagination .page-item.disabled .page-link {
  background-color: inherit;
  border: none;
  cursor: not-allowed;
}
.pagination .page-item.ellipsis .page-link {
  cursor: default;
  pointer-events: none;
  background: transparent;
  border: none;
  color: #888;
}
.pagination .arrow {
  background: transparent !important;
  border: none !important;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  filter: invert(98%) sepia(0%) saturate(5%) hue-rotate(147deg) brightness(94%) contrast(90%);
}
.pagination .arrow img {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
  transition: filter 0.2s ease;
}
.pagination .arrow:hover img {
  filter: invert(45%) sepia(1%) saturate(0%) hue-rotate(45deg) brightness(95%) contrast(84%);
}
.pagination .page-item.disabled .arrow img {
  visibility: hidden;
}

@media (max-width: 768px) {
  .pagination {
    gap: 0.15rem;
  }
  .pagination .page-item .page-link {
    width: 1.8rem;
    height: 1.8rem;
    font-size: 0.7rem;
    padding: 0.15rem;
  }
  .pagination .arrow {
    width: 1.8rem;
    height: 1.8rem;
  }
  .pagination .arrow img {
    width: 0.7rem;
    height: 0.7rem;
  }
}
@media (max-width: 768px) {
  .pagination {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    padding: 0.5rem 0;
  }
  .pagination .page-item .page-link {
    width: 2rem;
    height: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0;
  }
  .pagination .page-item.active .page-link {
    background-color: #af4100;
    color: #fff;
  }
  .pagination .arrow {
    width: 2rem;
    height: 2rem;
  }
  .pagination .arrow img {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.form-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.nok-form {
  max-width: 1400px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.form-col {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.form-item {
  position: relative;
  display: flex;
  align-items: center;
  background: #e3e1e1;
  border-radius: 30px;
  border: 1px solid transparent;
  padding: 0 25px;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}
.form-item input,
.form-item textarea {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 1rem;
  color: #000;
  resize: none;
}
.form-item input::placeholder,
.form-item textarea::placeholder {
  color: #4e4e4e;
}
.form-item .form-icon {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 28px;
  height: 28px;
  pointer-events: none;
}
.form-item.small {
  height: 68px;
}
.form-item.large {
  height: 153px;
  align-items: flex-start;
  padding-top: 35px;
}

.file-item label {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  padding: 0;
  border-radius: 30px;
  background: #e3e1e1;
  border: 2px solid transparent;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}
.file-item label:has(input:focus) {
  border-color: #af4100;
}
.file-item label input {
  display: none;
}
.file-item label .form-icon {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 28px;
  height: 28px;
}
.file-item label .file-name {
  color: #4e4e4e;
  font-size: 1rem;
  width: 100%;
  padding-left: 25px;
  transition: color 0.3s ease;
}

.btn-nok-submit {
  width: 100%;
  height: 68px;
  border: none;
  border-radius: 30px;
  background: #af4100;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-nok-submit:hover {
  background: rgba(179, 61, 11, 0.8);
  color: #fff;
}

.form-item.has-error {
  border: 2px solid #af4100;
}

.form-item.large {
  flex-direction: column;
  justify-content: flex-start;
  background: #e3e1e1;
  padding: 25px;
  border-radius: 30px;
  overflow: hidden;
}
.form-item.large textarea {
  width: 100%;
  height: 100%;
  resize: none;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1rem;
  color: #000;
  line-height: 1.5;
  overflow-y: auto;
  padding-right: 45px;
}

.form-item.large textarea {
  scrollbar-width: thin;
  scrollbar-color: #4e4e4e transparent;
}
.form-item.large textarea::-webkit-scrollbar {
  width: 6px;
}
.form-item.large textarea::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}
.form-item.large textarea::-webkit-scrollbar-thumb {
  background: #4e4e4e;
  border-radius: 10px;
  transition: background 0.2s ease;
}
.form-item.large textarea::-webkit-scrollbar-thumb:hover {
  background: #3d3d3d;
}

.form-wrapper {
  position: relative;
  min-height: 220px;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  text-align: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.form-success h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.form-success .success-icon {
  width: 50px;
  height: 50px;
}

@media (max-width: 768px) {
  .form-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .nok-form {
    padding: 0 10px;
  }
  .form-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .form-col {
    flex-direction: column;
    gap: 15px;
  }
  .form-item {
    border-radius: 30px;
    padding: 0 20px;
  }
  .form-item.small {
    height: 60px;
  }
  .form-item.large {
    height: 180px;
    padding: 20px;
  }
  .form-item.large textarea {
    padding-right: 35px;
  }
  .form-item .form-icon {
    top: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
  }
  .file-item label {
    border-radius: 30px;
    height: 60px;
  }
  .file-item label .file-name {
    padding-left: 20px;
  }
  .file-item label .form-icon {
    right: 15px;
    top: 15px;
    width: 24px;
    height: 24px;
  }
  .btn-nok-submit {
    height: 60px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
  }
  .form-hint {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 1rem;
    color: #4e4e4e;
  }
  .form-success {
    padding: 60px 15px;
  }
  .form-success h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  .form-success .success-icon {
    width: 45px;
    height: 45px;
  }
}
.form-wrapper {
  position: relative;
  margin-bottom: 0px;
}

.nok-form,
.form-success {
  position: static;
  width: 100%;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.35s ease, padding 0.35s ease, margin 0.35s ease;
}

.nok-form {
  max-height: 1200px;
  opacity: 1;
}

.form-success {
  max-height: 0;
  opacity: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.form-wrapper.is-success .nok-form {
  max-height: 0;
  opacity: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.form-wrapper.is-success .form-success {
  max-height: 1200px;
  opacity: 1;
  padding: 80px 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.accordion-wrapper {
  max-width: 1400px;
}

.accordion-toggle {
  background: transparent;
  border: none;
  outline: none;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #000;
  filter: brightness(0%);
  margin-left: 0rem;
}
.accordion-toggle .accordion-icon {
  width: 20px;
  height: 20px;
  margin-left: 1.5rem;
  transition: transform 0.3s ease;
}
.accordion-toggle.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  margin-top: 0;
}
.accordion-content.open {
  max-height: 10000px;
  opacity: 1;
  margin-top: 15px;
}

/* Список документов */
.content {
  list-style: disc;
  background: #e3e1e1;
  border-radius: 40px;
  padding: 25px 40px;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
  color: #000;
}
.content li {
  margin-bottom: 1.5rem;
}
.content p {
  font-weight: 400;
  color: #000;
}
.content a {
  color: #000;
}

.nok-table-title {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.nok-table {
  width: 100%;
  border-collapse: collapse;
  border: none;
}
.nok-table th {
  background: inherit;
  font-weight: 400;
  font-size: 1.125rem;
  padding: 10px 12px;
  text-align: left;
}
.nok-table td {
  padding: 10px 12px;
  border: none;
  font-weight: 400;
  font-size: 1.125rem;
  padding: 30px 12px;
}
.nok-table tbody tr:nth-child(odd) td {
  background: rgba(96, 145, 249, 0.5019607843);
}
.nok-table tbody tr:nth-child(even) td {
  background: #E3E1E1;
}
.nok-table th:first-child,
.nok-table td:first-child {
  width: 16%;
  min-width: 160px;
  white-space: nowrap;
}

.btn-orange {
  background-color: #af4100;
  color: #fff;
  border-radius: 30px;
  padding: 10px 30px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s ease;
}
.btn-orange:hover {
  background-color: rgba(179, 61, 11, 0.8);
  color: #fff;
}

/* Контейнер с шагами */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Каждый шаг */
.step-item {
  position: relative;
}
.step-item .step-number {
  position: relative;
  font-size: 130px;
  font-weight: 700;
  color: #6091f9;
  line-height: 1;
  display: inline-block;
  margin-bottom: 10px;
  font-family: "Montserrat";
}
.step-item .step-number span {
  position: absolute;
  bottom: 8px;
  left: 50%;
  font-size: 22px;
  color: #000;
  font-weight: 400;
  z-index: 2;
  font-family: "Montserrat", sans-serif !important;
}
.step-item p {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.3;
  color: #000;
  margin: 0;
}

@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: 2fr 2fr;
    gap: 30px;
  }
  .step-item .step-number {
    font-size: 100px;
  }
  .step-item .step-number span {
    bottom: 15px;
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .step-item .step-number {
    font-size: 90px;
  }
  .step-item .step-number span {
    bottom: 10px;
    font-size: 18px;
  }
}
.footer {
  background: #18233a !important;
}
.footer .footer-content .footer-logo .logo-img {
  height: 4.375rem;
  width: auto;
}
.footer .footer-content .footer-contacts .contact-item .contact-icon {
  width: 1.3rem;
  height: 1.3rem;
}
.footer .footer-content .footer-contacts .contact-item .contact-text {
  font-size: 1.125rem;
  color: white;
}
.footer .footer-content .footer-contacts .contact-item .contact-text a {
  color: white;
  text-decoration: none;
}
.footer .footer-content .footer-contacts .contact-item .contact-text a:hover {
  text-decoration: underline;
}
.footer .footer-content .footer-contacts .btn {
  background: #af4100;
  white-space: nowrap;
  border: none;
  color: white;
  font-weight: 400;
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-size: 1.125rem;
}
.footer .footer-content .footer-contacts .btn:hover {
  background: rgba(179, 61, 11, 0.8);
}

@media (max-width: 767.98px) {
  .footer .footer-content {
    padding: 1.5rem 0;
  }
  .footer .footer-content .footer-logo {
    margin-bottom: 1rem;
  }
  .footer .footer-content .footer-logo .logo-img {
    height: 2.5rem;
  }
  .footer .footer-content .footer-contacts .contact-item {
    margin-bottom: 0.8rem;
  }
  .footer .footer-content .footer-contacts .contact-item .contact-icon {
    width: 1.1rem;
    height: 1.1rem;
  }
  .footer .footer-content .footer-contacts .contact-item .contact-text {
    font-size: 0.9rem;
  }
  .footer .footer-content .footer-contacts .btn {
    font-size: 0.9rem;
    padding: 0.4rem 1.2rem;
  }
}
@media (max-width: 575.98px) {
  .footer .footer-content {
    padding: 1rem 0;
  }
  .footer .footer-content .footer-logo {
    margin-bottom: 0.8rem;
  }
  .footer .footer-content .footer-logo .logo-img {
    height: 2rem;
  }
  .footer .footer-content .footer-contacts .contact-item {
    margin-bottom: 0.6rem;
    justify-content: flex-start;
    padding: 0 1rem;
  }
  .footer .footer-content .footer-contacts .contact-item .contact-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.4rem;
  }
  .footer .footer-content .footer-contacts .contact-item .contact-text {
    font-size: 0.85rem;
    line-height: 1.3;
  }
  .footer .footer-content .footer-contacts .contact-item .contact-text br {
    display: none;
  }
  .footer .footer-content .footer-contacts .contact-item:last-child .contact-text {
    text-align: center;
    width: 100%;
  }
  .footer .footer-content .footer-contacts .btn {
    font-size: 0.85rem;
    padding: 0.35rem 1rem;
    margin-top: 1rem;
  }
}
.top-bar {
  position: relative;
  height: 7rem;
  display: flex;
  align-items: center;
}
.top-bar.top-bar-with-bg {
  background: url("/static/landing/img/ingener3.svg") center center/cover no-repeat;
}
.top-bar.top-bar-with-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 33, 93, 0.6);
  z-index: 0;
}
.top-bar.top-bar-simple {
  background: #18233a;
}
.top-bar .container {
  position: relative;
  z-index: 1;
}
.top-bar .top-bar-logo {
  height: 4.375rem;
}
.top-bar .contact-info .contact-items .contact-item a {
  color: white;
  text-decoration: none;
}
.top-bar .contact-info .contact-items .contact-item a:hover {
  text-decoration: underline;
}
.top-bar .contact-info .contact-items .contact-item .contact-icon {
  width: 1.3rem;
  height: 1.3rem;
  order: 1;
}
.top-bar .contact-info .contact-items .contact-item small {
  font-size: 1.125rem;
  order: 2;
}
.top-bar .contact-info .btn {
  background: #af4100;
  white-space: nowrap;
  border: none;
  color: white;
  font-weight: 400;
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-size: 1.125rem;
}
.top-bar .contact-info .btn:hover {
  background: rgba(179, 61, 11, 0.8);
}

.navbar {
  background-color: #18233a !important;
  border-bottom: none !important;
}
.navbar .navbar-nav .nav-link {
  color: white;
  font-size: 1.125rem;
  font-weight: 400;
  padding: 0.5rem 2.3rem;
}
@media (max-width: 1400px) {
  .navbar .navbar-nav .nav-link {
    font-size: 1rem !important;
    padding: 0.5rem 1.5rem;
  }
}
.navbar .navbar-nav .nav-link:hover {
  color: white;
}
.navbar .navbar-nav .dropdown-toggle::after {
  display: none;
}
.navbar .navbar-nav .custom-dropdown-toggle {
  gap: 0.5rem;
}
.navbar .navbar-nav .dropdown-menu {
  border: none;
  border-radius: 0 0 30px 30px;
  margin-top: 0.5rem;
  background-color: #18233a;
}
.navbar .navbar-nav .dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
  color: #fff;
  transition: background-color 0.3s ease;
  border-radius: 0 0 30px 30px;
}
.navbar .navbar-nav .dropdown-menu .dropdown-item:hover {
  background-color: rgba(5, 33, 93, 0.6);
}

@media (max-width: 1000px) {
  .top-bar {
    height: auto;
    padding: 0.5rem 0;
  }
  .top-bar .container {
    padding: 0;
  }
  .top-bar .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }
  .top-bar .top-bar-logo {
    margin-bottom: 0.5rem;
    height: 2rem;
    width: auto;
  }
  .top-bar .contact-info {
    flex-direction: column !important;
    align-items: flex-start;
    width: 100%;
    padding: 0 1rem;
  }
  .top-bar .contact-info .contact-items {
    width: 100%;
  }
  .top-bar .contact-info .contact-items .contact-item {
    margin-bottom: 0.6rem;
    justify-content: flex-start;
    align-items: center;
  }
  .top-bar .contact-info .contact-items .contact-item .contact-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.4rem;
  }
  .top-bar .contact-info .contact-items .contact-item small {
    font-size: 0.85rem;
    line-height: 1.3;
    word-wrap: break-word;
  }
  .top-bar .contact-info .btn {
    font-size: 0.85rem;
    padding: 0.3rem 1rem;
    margin-top: 0.3rem;
    width: fit-content;
  }
}
.floating-burger {
  position: fixed;
  top: 3rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #af4100;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}
.floating-burger:hover {
  background-color: rgba(179, 61, 11, 0.8);
}
.floating-burger .burger-icon {
  width: 1.5rem;
  height: 0.125rem;
  background-color: #fff;
  position: relative;
}
.floating-burger .burger-icon::before, .floating-burger .burger-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.125rem;
  background-color: #fff;
  left: 0;
  transition: all 0.3s ease;
}
.floating-burger .burger-icon::before {
  top: -0.5rem;
}
.floating-burger .burger-icon::after {
  bottom: -0.5rem;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background-color: #18233a;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1050;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu .nav-link,
.mobile-menu .dropdown-item {
  font-size: 0.95rem;
  color: white;
}
.mobile-menu .nav-link:hover,
.mobile-menu .dropdown-item:hover {
  color: rgba(179, 61, 11, 0.8);
}
.mobile-menu .dropdown-menu {
  position: static;
  width: 100%;
  border-radius: 0.25rem;
}

@media (max-width: 1000px) {
  .navbar .navbar-toggler {
    display: none;
  }
}
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1040;
}

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

.mobile-menu .dropdown-menu {
  display: none;
  background: #11192b;
  border: none;
  padding-left: 1rem;
  margin-top: 0.3rem;
  border-radius: 0.5rem;
}
.mobile-menu .dropdown-menu.show {
  display: block;
}
.mobile-menu .dropdown-menu .dropdown-item {
  color: white;
  font-size: 0.9rem;
  padding: 0.4rem 0.8rem;
  white-space: normal;
  line-height: 1.3;
}

/* ===== ОБЩЕЕ ===== */
.callback-modal {
  background: #e3e1e1;
  border-radius: 36px !important;
  padding: 50px 40px 45px;
  position: relative;
  overflow: hidden;
  width: 560px;
  margin: 0 auto;
}

.callback-step {
  width: 366px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.callback-step h5,
.callback-step p {
  text-align: left;
}

/* ===== ТЕКСТЫ ===== */
.callback-modal h5 {
  color: #000;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
}

.callback-modal p {
  font-size: 1rem;
  color: #4E4E4E;
  margin-bottom: 2rem;
  line-height: 1.3;
}

/* ===== ФОРМА ===== */
.callback-modal form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

/* ===== ИНПУТЫ ===== */
.callback-input {
  border-radius: 40px;
  height: 64px;
  font-size: 1rem;
  transition: all 0.2s ease;
  max-width: 366px;
  width: 100%;
  padding-left: 24px;
  padding-right: 50px;
}

.callback-input:focus {
  border-color: #af4100;
  box-shadow: none;
}

/* ===== ИКОНКИ ВНУТРИ ===== */
.callback-modal .form-group {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.callback-modal i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
}

/* ===== КНОПКА ===== */
.callback-submit-btn {
  background-color: #af4100;
  border-radius: 40px;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color 0.2s ease;
  width: 100%;
  max-width: 380px;
}

.callback-submit-btn:hover {
  background-color: rgba(179, 61, 11, 0.8);
}

/* ===== КРЕСТИК ===== */
.btn-close {
  opacity: 0.6;
  transition: opacity 0.2s ease;
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 20px;
}

.btn-close:hover {
  opacity: 1;
}

/* ===== ГАЛОЧКА ===== */
.checkmark-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
}

.checkmark {
  font-size: 42px;
  color: #28a745;
  border: 2px solid #28a745;
  border-radius: 10px;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 480px) {
  .callback-modal {
    padding: 35px 20px 30px;
    border-radius: 28px !important;
  }
  .callback-modal h5 {
    font-size: 1.4rem;
  }
  .callback-input {
    height: 56px;
    font-size: 0.95rem;
  }
  .callback-submit-btn {
    font-size: 0.95rem;
    padding: 12px 16px;
  }
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100vh;
}

main {
  flex: 1;
}

.mobile-menu ul,
.mobile-menu li {
  list-style: none !important;
  list-style-type: none !important;
}

.mobile-menu li::marker {
  content: "" !important;
  color: transparent !important;
}/*# sourceMappingURL=style.css.map */