html {
  scroll-behavior: smooth;
}

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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  color: #070707;
  background: #fafbfd;
  overflow-x: hidden;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Hero Section */
.hero {
  background-color: #f5f7fa;
  border-radius: 0 0 5vw 5vw;
  padding: 60px 0 2vw;
  position: relative;
  background-repeat: no-repeat;
  overflow: hidden;
  background-image: url("/design/orange_theme/images/hero-bg.png");
  background-position-y: bottom;
  background-position-x: center;
}

.hero::before {
  position: absolute;
  top: 116px;
  left: -281px;
  width: 2279.9px;
  height: 1003.36px;
  /* background: linear-gradient(135deg, #E2E9F5 0%, #FFFFFF 100%); */
  z-index: 0;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 118px;
  position: relative;
  z-index: 1;
}

.hero-left {}

.disclaimer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fdfeff;
  border-radius: 232px;
  padding: 6px 12px;
  margin-bottom: 12px;
}

.disclaimer img {
  width: 20px;
  height: 16px;
}

.disclaimer-text {
  font-size: 12px;
  font-weight: 500;
  color: #696e82;
}

.hero-title {
  font-family: "Inter", sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
  color: #070707;
}

.promo_wrapper {
  margin-bottom: 58px;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: #070707;
  margin-bottom: 20px;
  max-width: 508px;
}

.hero-description {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: #696e82;
  text-decoration: underline;
  margin-bottom: 58px;
  cursor: pointer;
}

.hero-content-mobile {
  display: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-bottom: 20px;
  max-width: 552px;
}

.feature-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0px 16px 16px rgba(161, 175, 196, 0.05);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: #f5f7fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  flex: none;
  justify-content: center;
  position: relative;
}

.feature-icon img {
  width: 32px;
  height: 32px;
}

.feature-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  color: #070707;
}

/* Calculator */
.calculator {
  background: #ffffff;
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0px 16px 16px rgba(161, 175, 196, 0.1);
  max-width: 532px;
}

.calc-field {
  margin-bottom: 32px;
}

.calc-label {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #070707;
  margin-bottom: 10px;
}

.calc-input {
  background: #ffffff;
  border: 1px solid #cccfde;
  border-radius: 16px 16px 0 0;
  padding: 16px;
  width: 100%;
  height: 60px;
  font-size: 20px;
  font-weight: 500;
  color: #070707;
  border-bottom: none;
}

.calc-slider {
  background: #cccfde;
  height: 5px;
  border-radius: 0 0 16px 16px;
  position: relative;
}

.calc-slider-fill {
  background: linear-gradient(90deg, #0c8ff2 0%, #3cabff 100%);
  height: 6px;
  border-radius: 0 0 0 16px;
  width: 57.5%;
  position: relative;
  top: -0.5px;
}

.calc-slider-handle {
  width: 24px;
  height: 24px;
  background: #ffffff;
  border: 6px solid rgb(19 147 244);
  box-shadow: 0 0 0 7px #1594f52b;
  border-radius: 50%;
  position: absolute;
  right: -12px;
  top: -9px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.calc-slider-handle__user-get-zaim {
  right: -4px;
  top: -3px;
  width: 12px;
  height: 12px;
}

.calc-slider-handle:hover {
  transform: scale(1.1);
  border-color: rgba(9, 141, 241, 0.2);
}

.calc-range {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 14px;
  color: #696e82;
}

.calc-button {
  background: linear-gradient(90deg, #0c8ff2 0%, #3cabff 100%);
  border: none;
  border-radius: 2323px;
  padding: 12px 40px;
  width: 100%;
  height: 70px;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.calc-button:hover {
  background: linear-gradient(90deg, #0a7dd9 0%, #2b9ae6 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(12, 143, 242, 0.3);
}

.calc-tags {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.calc-tag {
  background: #f5f7fa;
  border-radius: 120px;
  padding: 8px 24px;
  height: max-content;
  font-weight: 500;
  color: #696e82;
  transition: all 0.3s ease-in;
  max-height: 45px;
  overflow: hidden;
}

.calc-tag-hidden {
  opacity: 0;
  display: none;
  max-height: 0px;
  padding: 0;
}

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

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

.calc-row-label {
  font-size: 16px;
  font-weight: 500;
  color: #696e82;
}

.calc-row-value {
  font-size: 20px;
  font-weight: 600;
  color: #070707;
}

@media screen and (max-width: 768px) {
  .calc-row-label {
    font-size: 14px;
  }

  .calc-row-value {
    font-size: 16px;
  }

  .calc-row-badge {
    padding: 5px 11px !important;
    font-size: 12px !important;
    margin-right: 10px !important;
  }
}

.calc-row-badge {
  background: #33b970;
  color: #ffffff;
  border-radius: 120px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  margin-right: 16px;
}

/* Main Content */
.main-content {
  padding: 8vw 0;
  overflow: hidden;
  padding-bottom: 100px;
}

.section {
  margin-bottom: 100px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  color: #070707;
  margin-bottom: 32px;
}

/* Loan Types */
.loan-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
  overflow: visible !important;
}

/* Ensure desktop grid layout is preserved */
@media (min-width: 769px) {
  .loan-types.swiper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .loan-types .swiper-wrapper {
    display: contents;
  }

  .loan-types .swiper-slide {
    display: block;
  }
}

/* Swiper styles for mobile */
@media (max-width: 768px) {
  .loan-types.swiper {
    display: block;
    overflow: hidden;
    margin-bottom: 24px;
  }

  .loan-types .swiper-wrapper {
    display: flex;
  }

  .loan-types .swiper-slide {
    width: auto;
    flex-shrink: 0;
  }
}

.loan-card {
  background: linear-gradient(135deg, #ffffff 33.65%, #f1f4fa 100%);
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0px 16px 16px rgba(161, 175, 196, 0.05);
  position: relative;
  overflow: hidden;
}

.loan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #e8eef7 0%, #ffffff 100%);
  z-index: 0;
}

.loan-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
}

.loan-card-text {
  flex: 1;
}

.loan-card-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #070707;
  margin-bottom: 10px;
}

.loan-card-amount {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  color: #696e82;
  margin-bottom: 0;
}

.loan-card-term {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #696e82;
  margin-bottom: 40px;
}

.loan-card-button {
  background: linear-gradient(90deg, #0c8ff2 0%, #3cabff 100%);
  border: none;
  border-radius: 2323px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.loan-card-button:hover {
  background: linear-gradient(90deg, #0a7dd9 0%, #2b9ae6 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(12, 143, 242, 0.3);
}

.loan-card-icon {
  width: 161px;
  height: 154px;
}

img.loan-card-icon.fire-icon {
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
}

img.loan-card-icon.flash-icon {
  transform: rotate(31deg);
}

.loan-disclaimer {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #696e82;
  text-align: left;
}

/* How to Get Loan */
.how-to-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* Ensure desktop grid layout is preserved */
@media (min-width: 769px) {
  .how-to-steps.swiper {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }

  .how-to-steps .swiper-wrapper {
    display: contents;
  }

  .how-to-steps .swiper-slide {
    display: block;
  }
}

/* Swiper styles for mobile */
@media (max-width: 768px) {
  .how-to-steps.swiper {
    display: block;
    overflow: hidden;
  }

  .how-to-steps .swiper-wrapper {
    display: flex;
  }

  .how-to-steps .swiper-slide {
    width: auto;
    flex-shrink: 0;
  }

  .loan-card-icon {
    width: 99px;
    object-fit: cover;
    height: 112px;
  }
}

.neomoney-step-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 29px 30px;
  box-shadow: 0px 16px 16px rgba(161, 175, 196, 0.05);
  text-align: center;
  position: relative;
}

.step-number {
  width: 44px;
  height: 44px;
  background: #f5f7fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  position: absolute;
  top: 29px;
  left: 32px;
  color: #070707;
}

.step-icon {
  width: 101px;
  height: 101px;
  border-radius: 50%;
  margin-top: -10px;
  margin-bottom: 10px;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #070707;
  margin-bottom: 10px;
}

.step-description {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #696e82;
}

/* Reviews */
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.reviews-nav {
  display: flex;
  gap: 16px;
}

.nav-button {
  width: 48px;
  height: 48px;
  background: #f5f7fa;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-button:hover {
  background: #e8eef7;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(161, 175, 196, 0.2);
}

.nav-button.active {
  background: #ffffff;
}

.nav-button.active:hover {
  background: #f5f7fa;
}

/* More (three-dots) dropdown */
.nav-more {
  position: relative;
}

.nav-more-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  color: #070707;
  opacity: 1;
  padding: 4px 6px;
  border-radius: 8px;
  display: flex;
  gap: 5px;
}

.nav-more-btn:hover {
  background: #f6f8fc;
  opacity: 1;
}

.nav-more-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid #e7eaf3;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(7, 7, 7, 0.08);
  padding: 8px;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 60;
}

.nav-more-btn span {
  width: 4px;
  height: 4px;
  border-radius: 20px;
  background: #000;
}

.nav-more-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-more-link {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-more-link:hover {
  background: #f6f8fc;
}

@media (max-width: 991px) {
  .nav-more {
    display: none;
  }
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Enable Swiper on desktop with 2 slides per view */
@media (min-width: 769px) {
  .reviews-grid.swiper {
    display: block;
    overflow: visible;
  }

  .reviews-grid .swiper-wrapper {
    display: flex;
  }

  .reviews-grid .swiper-slide {
    width: calc(50% - 16px);
    flex-shrink: 0;
  }
}

/* Swiper styles for mobile */
@media (max-width: 768px) {
  .reviews-grid.swiper {
    display: block;
    overflow: hidden;
  }

  .reviews-grid .swiper-wrapper {
    display: flex;
  }

  .reviews-grid .swiper-slide {
    width: auto;
    flex-shrink: 0;
  }
}

.review-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0px 16px 16px rgba(161, 175, 196, 0.05);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.review-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #070707;
  margin-bottom: 6px;
}

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

.review-name {
  font-size: 16px;
  font-weight: 400;
  color: #696e82;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 2px;
}

.star {
  width: 17px;
  height: 16px;
}

.rating-text {
  font-size: 16px;
  font-weight: 400;
  color: #070707;
  margin-left: 5px;
}

.review-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #070707;
  margin-bottom: 32px;
}

.review-tags {
  display: flex;
  gap: 10px;
}

.review-tag {
  background: #f5f7fa;
  border-radius: 55px;
  padding: 4px 17px;
  font-size: 14px;
  font-weight: 400;
  color: #696e82;
}

.review-tag.verified {
  background: rgba(44, 182, 77, 0.1);
  color: #33b970;
}

/* CTA Section */
.cta-section {
  background: url("/design/orange_theme/images/MDOPAQ7EmD.png") right/cover;
  border-radius: 32px;
  padding: 40px 60px;
  box-shadow: 0px 16px 16px rgba(161, 175, 196, 0.05);
  margin-bottom: 100px;
}

.cta-content {
  max-width: 601px;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
  color: #070707;
  margin-bottom: 14px;
}

.cta-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #696e82;
  margin-bottom: 42px;
}

.cta-button {
  background: linear-gradient(90deg, #0c8ff2 0%, #3cabff 100%);
  border: none;
  border-radius: 2323px;
  padding: 12px 24px;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  min-width: 188px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}

.cta-button:hover {
  background: linear-gradient(90deg, #0a7dd9 0%, #2b9ae6 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(12, 143, 242, 0.3);
}

/* Requirements */
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* Ensure desktop grid layout is preserved */
@media (min-width: 769px) {
  .requirements-grid.swiper {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }

  .requirements-grid .swiper-wrapper {
    display: contents;
  }

  .requirements-grid .swiper-slide {
    display: block;
  }
}

/* Swiper styles for mobile */
@media (max-width: 768px) {
  .requirements-grid.swiper {
    display: block;
    overflow: hidden;
    margin: 0 -20px;
    padding: 0 15px;
  }

  .requirements-grid .swiper-wrapper {
    display: flex;
  }

  .requirements-grid .swiper-slide {
    width: auto;
    flex-shrink: 0;
  }
}

/* Swiper pagination styles */
.swiper-pagination {
  position: relative !important;
  margin-top: 20px;
  text-align: center !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background: #cccfde !important;
  border-radius: 50% !important;
  opacity: 1 !important;
  margin: 0 4px !important;
  transition: transform 0.3s ease, background-color 0.3s ease !important;
  display: inline-block !important;
  visibility: visible !important;
  transform: scale(1) !important;
  position: relative !important;
}

.swiper-pagination-bullet-active {
  background: #0c8ff2 !important;
  transform: scale(1.2) !important;
  opacity: 1 !important;
}

/* Override dynamic bullets scaling */
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background: #cccfde !important;
  transform: scale(1) !important;
  opacity: 1 !important;
  position: relative !important;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  background: #0c8ff2 !important;
  transform: scale(1.2) !important;
  opacity: 1 !important;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  background: #0c8ff2 !important;
  transform: scale(1.2) !important;
  opacity: 1 !important;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  background: #cccfde !important;
  transform: scale(1) !important;
  opacity: 1 !important;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  background: #cccfde !important;
  transform: scale(1) !important;
  opacity: 1 !important;
}

/* Additional stability rules to prevent opacity flickering */
.swiper-pagination-bullet,
.swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Ensure pagination is always visible on all screen sizes */
@media (min-width: 769px) {
  .swiper-pagination {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* Override any hidden states */
.swiper-pagination.swiper-pagination-hidden {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.requirement-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 24px;
  display: flex;
  height: 100%;
  box-shadow: 0px 16px 16px rgba(161, 175, 196, 0.05);
  flex-direction: column;
}

.circle-container {
  width: 90px;
  height: 90px;
  background: #f5f7fa;
  border-radius: 50px;
  margin-left: auto;
}

.circle-container img {
  max-width: 109px;
}

.requirement-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #070707;
  margin-bottom: 10px;
}

.requirement-icon {
  width: 100%;
  height: 80px;
  margin-top: auto;
}

/* News */
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.news-filter {
  background: #f5f7fa;
  border: none;
  border-radius: 120px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  color: #070707;
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-filter:hover {
  background: #e8eef7;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(161, 175, 196, 0.15);
}

.news-filter.active {
  background: #f5f7fa;
  color: #070707;
}

.news-filter.active:hover {
  background: #e8eef7;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Enable Swiper on desktop with 2 slides per view */
@media (min-width: 769px) {
  .news-grid.swiper {
    display: block;
    overflow: visible;
  }

  .news-grid .swiper-wrapper {
    display: flex;
  }

  .news-grid .swiper-slide {
    width: calc(50% - 16px);
    flex-shrink: 0;
  }
}

/* Swiper styles for mobile */
@media (max-width: 768px) {
  .news-grid.swiper {
    display: block;
    overflow: hidden;
  }

  .news-grid .swiper-wrapper {
    display: flex;
  }

  .news-grid .swiper-slide {
    width: auto;
    flex-shrink: 0;
  }
}

/* Empty state styles */
.news-empty-state {
  text-align: center;
  padding: 60px 20px;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.news-empty-state.show {
  opacity: 1;
  transform: translateY(0);
}

.empty-state-content {
  max-width: 400px;
  margin: 0 auto;
}

.empty-state-icon {
  font-size: 48px;
  margin-bottom: 20px;
  opacity: 0.6;
}

.empty-state-title {
  font-size: 24px;
  font-weight: 600;
  color: #070707;
  margin-bottom: 12px;
}

.empty-state-description {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.5;
}

/* Smooth transitions for news cards */
.swiper-slide {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.swiper-slide.hiding {
  opacity: 0;
  transform: scale(0.95);
}

.swiper-slide.showing {
  opacity: 1;
  transform: scale(1);
}

.news-card {
  background: #ffffff;
  border-radius: 32px;
  box-shadow: 0px 16px 16px rgba(161, 175, 196, 0.05);
  overflow: hidden;
  position: relative;
}

.news-image {
  width: 100%;
  height: 236px;
  object-fit: cover;
}

.news-content {
  padding: 40px;
}

.news-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  color: #070707;
  margin-bottom: 26px;
}

.news-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #696e82;
  margin-bottom: 56px;
}

.news-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.news-tag {
  background: #f5f7fa;
  border-radius: 55px;
  padding: 4px 17px;
  font-size: 14px;
  font-weight: 400;
  color: #696e82;
}

.news-date {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-size: 14px;
  font-weight: 400;
  color: #696e82;
}

@media screen and (max-width: 768px) {
  .news-date {
    bottom: 28px;
    left: auto;
    right: 24px;
  }
}

/* Why Choose Us */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.why-main-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0px 16px 16px rgba(161, 175, 196, 0.05);
  position: relative;
  overflow: hidden;
}

.why-main-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 0;
}

.why-main-content {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 40px;
  /* height: -webkit-fill-available; */
  height: fit-content;
}

.why-main-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.why-main-icon {
  width: 106px;
  height: 100px;
}

.why-main-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  color: #070707;
  margin-bottom: 26px;
}

.why-main-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #696e82;
  margin-bottom: 56px;
}

.why-main-button {
  background: #f5f7fa;
  border: none;
  border-radius: 3242342px;
  padding: 12px 24px;
  font-size: 16px;
  width: max-content;
  font-weight: 700;
  color: #696e82;
  margin-top: auto;
  cursor: pointer;
  transition: all 0.3s ease;
}

.why-main-button:hover {
  background: #e8eef7;
  color: #070707;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(161, 175, 196, 0.2);
}

.why-side-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.why-side-card {
  border-radius: 32px;
  padding: 32px;
  max-height: 260px;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.why-side-card.blue {
  background: linear-gradient(90deg, #0c8ff2 0%, #61bbff 100%);
  color: #ffffff;
}

.why-side-card.orange {
  background: linear-gradient(135deg, #f4794a 0%, #ffb14e 100%);
  color: #ffffff;
}

.why-side-card.white {
  background: #ffffff;
  box-shadow: 0px 16px 16px rgba(161, 175, 196, 0.05);
  color: #070707;
}

.why-side-card.white.padding-xl {
  padding: 34px 24px;
}

.why-side-card.white.padding-xl>div>.why-side-title {
  line-height: 32px;
  margin-bottom: 8px;
}

.why-side-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 16px;
}

.why-side-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 20px;
}

.why-side-icon {
  width: 80px;
  margin-left: auto;
}

/* FAQ */
#faq {
  scroll-margin-top: 90px;
}

.section-faq-user {
  margin: 40px auto 0;
  padding: 0 30px;
}

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

.faq-item {
  background: #ffffff;
  box-shadow: 0px 16px 16px rgba(161, 175, 196, 0.05);
}

.faq-item:first-child {
  border-radius: 32px 32px 0 0;
}

.faq-item:last-child {
  border-radius: 0 0 32px 32px;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 40px;
  cursor: pointer;
}

.faq-icon {
  width: 28px;
  height: 28px;
}

.faq-question-text {
  flex: 1;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #070707;
}

.faq-arrow {
  width: 17px;
  height: 10px;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 40px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
  padding: 0px 40px 16px;
  max-height: 200px;
}

.faq-answer-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #696e82;
  max-width: 936px;
}

/* SEO Text */
#terms {
  scroll-margin-top: 90px;
}

.seo-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #696e82;
  margin-bottom: 24px;
}

.seo-expand {
  background: #f5f7fa;
  border: none;
  border-radius: 3242342px;
  padding: 12px 34px;
  font-size: 16px;
  font-weight: 600;
  color: #696e82;
  cursor: pointer;
  transition: all 0.3s ease;
}

.seo-expand:hover {
  background: #e8eef7;
  color: #070707;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(161, 175, 196, 0.2);
}

/* Footer */
.footer {
  background: #f5f7fa;
  border-radius: 80px 80px 0 0;
  padding: 80px 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  max-width: 1390px;
  margin: auto;
}

.footer-left {
  flex: 1;
  max-width: 975px;
}

.footer-header {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 40px;
  align-content: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-nav {
  display: flex;
  gap: 0;
}

.footer-nav-item {
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  color: #070707;
  text-decoration: none;
}

.footer-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #696e82;
  margin-bottom: 40px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  justify-content: flex-start;
}

.footer-social-title {
  font-size: 14px;
  font-weight: 500;
  color: #070707;
}

.footer-social-icons {
  display: flex;
  gap: 8px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 40px;
  margin-bottom: 24px;
}

.footer-link {
  font-size: 14px;
  font-weight: 400;
  color: #696e82;
  text-decoration: none;
}

.footer-copyright {
  font-size: 14px;
  font-weight: 400;
  color: #696e82;
}

.footer-right {
  width: 303px;
}

.footer-support {
  margin-bottom: 20px;
}

.footer-support-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-support-title {
  font-size: 14px;
  font-weight: 500;
  color: #070707;
}

.footer-support-icons {
  display: flex;
  gap: 8px;
}

.footer-contact {
  margin-bottom: 20px;
}

.footer-phone {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #070707;
  margin-bottom: 8px;
}

.footer-email {
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  color: #070707;
  margin-bottom: 8px;
}

.footer-support-text {
  font-size: 14px;
  font-weight: 400;
  color: #696e82;
  margin-bottom: 20px;
}

.footer-callback {
  background: #ffffff;
  border: none;
  border-radius: 2323px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #070707;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-callback:hover {
  background: #f5f7fa;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(161, 175, 196, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 60px;
  }

  .hero-content {
    gap: 60px;
  }

  .calculator {
    width: 400px;
  }

  .loan-types {
    grid-template-columns: repeat(2, 1fr) !important;
  }

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

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

.mobile {
  display: none !important;
}

.descktop {
  display: flex;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .hero-content {
    flex-direction: column;
    gap: 25px;
  }

  .calculator {
    width: 100%;
    padding: 20px;
  }

  .hero-content-mobile {
    display: block;
    width: 100%;
  }

  .hero-content-desktop {
    display: none;
  }

  .hero-title {
    font-size: 26px;
    line-height: 33px;
  }

  .calc-label {
    font-size: 18px;
  }

  .feature-text {
    font-size: 15px;
  }

  .feature-icon {
    width: 41px;
    height: 41px;
  }

  .promo_wrapper {
    margin-bottom: 0px;
  }

  .loan-types {
    grid-template-columns: 1fr;
  }

  .how-to-steps {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-content {
    flex-direction: column;
  }

  .footer-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 26px;
  }

  .footer-nav {
    flex-wrap: wrap;
    display: flex;
    flex-direction: column;
  }

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

  .footer-logo {
    width: 118.5px;
  }

  img.why-side-icon.sec-icon {
    /* scale: 1.5; */
    transform: translateX(-11px) translateY(36px);
    position: absolute;
    right: 22px;
    bottom: -7px;
    width: 126px;
    height: 125px;
  }

  img.why-side-icon.forth-icon {
    /* scale: 1.5; */
    width: 130px;
    height: 104px;
    position: absolute;
    top: 88px;
    right: 22px;
    transform: translateX(-22px) translateY(28px);
  }

  .why-side-icon {
    height: 94px;
    width: 83px;
    margin-top: auto;
  }

  .why-side-card {
    flex-direction: row;
  }

  .descktop {
    display: none !important;
  }

  .mobile {
    display: flex !important;
  }
}

/* Tablet-specific responsive design (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  /* Hero Section Tablet Optimizations */
  .hero-content {
    gap: 80px;
  }

  .hero-title {
    font-size: 48px;
    line-height: 56px;
  }

  .promo_wrapper {
    margin-bottom: 40px;
  }

  .hero-description {
    margin-bottom: 40px;
  }

  .features-grid {
    margin-bottom: 40px;
  }

  .calculator {
    width: 380px;
    padding: 32px;
  }

  /* Loan Types Grid - 2 columns for tablets */
  .loan-types {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }

  .loan-types.swiper {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* How-to Steps - 2 columns for tablets */
  .how-to-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .how-to-steps.swiper {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Reviews Grid - maintain 2 columns but adjust spacing */
  .reviews-grid {
    gap: 24px;
  }

  .reviews-grid.swiper .swiper-slide {
    width: calc(50% - 12px);
  }

  /* News Grid - maintain 2 columns but adjust spacing */
  .news-grid {
    gap: 24px;
  }

  .news-grid.swiper .swiper-slide {
    width: calc(50% - 12px);
  }

  /* Requirements Grid - 3 columns for tablets */
  .requirements-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .requirements-grid.swiper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  /* Why Choose Grid - maintain 2 columns */
  .why-choose-grid {
    gap: 24px;
  }

  /* CTA Section adjustments */
  .cta-section {
    padding: 32px 40px;
  }

  .cta-title {
    font-size: 32px;
    line-height: 38px;
  }

  /* Navigation adjustments */
  .nav-controls {
    gap: 12px;
  }

  .nav-btn {
    width: 48px;
    height: 48px;
  }

  /* Section spacing adjustments */
  .section {
    margin-bottom: 80px;
  }

  .main-content {
    padding: 80px 0;
    padding-bottom: 100px;
  }

  /* Header/Navigation tablet optimizations */
  .header-inner {
    height: 72px;
  }

  .header-left {
    gap: 28px;
  }

  .main-nav {
    gap: 20px;
  }

  .nav-link {
    font-size: 13px;
  }

  .header-right {
    gap: 20px;
  }

  .btn-login {
    padding: 8px 18px;
    font-size: 13px;
  }

  .btn-logout {
    padding: 8px 18px;
    font-size: 13px;
  }

  /* Footer tablet optimizations */
  .footer {
    padding: 60px 40px;
  }

  .footer-content {
    gap: 40px;
  }

  .footer-header {
    gap: 24px;
  }

  .footer-nav {
    gap: 24px;
  }

  .footer-nav-link {
    font-size: 13px;
  }

  /* Card content adjustments for tablets */
  .loan-card {
    padding: 28px;
  }

  .loan-card-title {
    font-size: 22px;
    line-height: 30px;
  }

  .review-card {
    padding: 28px;
  }

  .news-content {
    padding: 32px;
  }

  .news-title {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 20px;
  }

  .news-description {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 40px;
  }

  /* Step card adjustments */
  .neomoney-step-card {
    padding: 28px;
  }

  .step-title {
    font-size: 20px;
    line-height: 28px;
  }

  .step-description {
    font-size: 15px;
    line-height: 22px;
  }

  /* Why choose card adjustments */
  .why-main-card {
    padding: 32px;
  }

  .why-main-content {
    gap: 32px;
  }

  .why-main-title {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 20px;
  }

  .why-main-description {
    font-size: 16px;
    line-height: 24px;
  }
}

.news-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .section {
    margin-bottom: 40px;
  }

  .header-inner {
    height: 64px !important;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 7px;
    border-radius: 20px;
  }

  .footer {
    padding: 40px 20px;
    border-radius: 22px 22px 0 0;
  }

  .cta-section {
    background: url("/design/orange_theme/images/MDOPAQ7EmD-mobile.png");
    padding: 24px;
    height: 437px;
    background-repeat: no-repeat;
    background-size: 22rem;
    border: 1px solid #eaebed;
    background-position: bottom center;
    margin-bottom: 40px;
  }

  .cta-title,
  .section-title {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 32px;
  }

  .section-title {}

  .cta-title {
    margin-bottom: 18px;
  }

  .cta-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
    padding-right: 42px;
  }

  .cta-button {
    padding: 12px 24px;
    width: 100%;
    font-size: 16px;
  }

  .requirement-card {
    border-radius: 22px;
    padding: 16px 21px;
  }

  .circle-container {
    margin-left: 0;
    margin-right: auto;
    width: 81px;
    height: 81px;
  }

  .hero {
    padding-top: 24px;
  }

  .loan-card-title {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .loan-card {
    padding: 24px;
  }

  .step-title {
    font-size: 18px;
  }

  .reviews-header {
    margin-bottom: 0;
  }

  .reviews-nav {
    display: none;
  }

  .review-card {
    padding: 24px;
  }

  .review-title {
    font-size: 18px;
  }

  .review-text {
    font-size: 14px;
  }

  .circle-container img {
    max-width: 88px;
    position: absolute;
    right: 24px;
    scale: 1.1;
  }

  .news-card {
    border-radius: 22px;
  }

  .news-content {
    padding: 24px;
  }

  .news-header {
    margin: 0;
  }

  .news-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .news-description {
    font-size: 14px;
    margin-bottom: 26px;
  }

  .news-meta {
    padding-right: 77px;
  }

  .news-filters {
    flex-wrap: nowrap;
    width: 100%;
    margin-bottom: 30px;
    overflow: auto;
  }

  .why-main-card {
    padding: 24px;
  }

  .why-main-title {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 28px;
  }

  .why-main-description {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 24px;
  }

  .why-side-card {
    padding: 24px;
  }

  .why-side-card.blue.mobile:has(.frist-icon) {
    height: 169px;
  }

  .calc-button {
    font-size: 18px;
    height: 56px;
    margin-bottom: 26px;
  }

  .calc-label {
    font-size: 18pxc;
  }

  .calc-tag {
    font-size: 12px;
    padding: 5px 16px;
  }

  .calc-tags {
    gap: 3px;
    margin-bottom: 20px;
  }

  .neomoney-step-card {
    padding: 29px 71px;
  }

  .news-image {
    height: 146px;
  }

  .btn-login {
    font-size: 13px;
    color: #696e82 !important;
  }

  .btn-logout {
    font-size: 13px;
    color: #696e82 !important;
  }

  .hero-title {
    padding-right: 70px;
    line-height: 31px;
  }

  .calc-range {
    font-size: 12px;
  }

  .calc-field {
    margin-bottom: 12px;
  }

  .calc-input {
    height: 56px;
    font-size: 16px;
  }

  .calculator {
    padding: 18px 18px 24px;
  }

  .loan-title {
    padding-right: 6rem;
  }

  .why-main-icon {
    width: 63px;
    height: 63px;
    margin-bottom: 20px;
  }

  .why-side-title {
    font-size: 20px;
    line-height: 28px;
  }

  .why-side-description {
    font-size: 14px;
    line-height: 24px;
  }

  p.why-side-description.sec {
    margin-bottom: 45px;
    color: #696E82;
  }

  p.why-side-description.thrd {
    margin-bottom: 38px;
  }

  .why-side-icon.thrd-icon {
    position: relative;
    top: 7px;
  }

  .why-side-title:has(+ .forth) {
    margin-bottom: 8px;
  }

  p.why-side-description.forth {
    margin-bottom: 31px;
    max-width: 220px;
  }
}

/* Header / Navbar */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e7eaf3;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  font-weight: 800;
  text-decoration: none;
}

.logo-neo {
  font-size: 22px;
  color: #0c8ff2;
}

.logo-money {
  font-size: 22px;
  color: #070707;
  margin-left: 2px;
}

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

.nav-link {
  font-size: 14px;
  color: #070707;
  text-decoration: none;
  opacity: 1;
  font-weight: 600;
}

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

.nav-ellipsis {
  font-size: 20px;
  color: #070707;
  opacity: 0.7;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.support-block {
  display: none;
  /* hidden by default on mobile/tablet, shown on wide screens via media query */
  text-align: left;
}

.support-caption {
  font-size: 12px;
  color: #9aa2b1;
  margin-bottom: 2px;
}

.support-email {
  font-size: 14px;
  color: #070707;
  text-decoration: none;
}

.support-email:hover {
  text-decoration: underline;
}

.btn-login {
  padding: 8px 22px;
  background: #f1f4f9;
  border-radius: 999px;
  text-decoration: none;
  color: #000000;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(9, 141, 241, 0.06) inset;
}

.btn-logout {
  padding: 10px 22px;
  background: #f1f4f9;
  border-radius: 999px;
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(9, 141, 241, 0.06) inset;
  font-size: 16px;
  line-height: 24px;
}

.btn-logout:hover {
  text-decoration: none;
}

.hamburger {
  position: relative;
  width: 19px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  justify-content: space-between;
  padding: 0;
  flex-direction: column;
  align-items: flex-end;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #070707;
  border-radius: 1px;
}

span.second {
  width: 100%;
}

span.frist {
  width: 80%;
}

span.third {
  width: 60%;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 7, 7, 0.35);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 100;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-panel {
  width: 100%;
  background: #fff;
  border-radius: 0 0 18px 18px;
  padding: 16px 20px;
  transform: translateY(-12px);
  transition: transform 0.2s ease;
}

.mobile-menu-overlay.active .mobile-menu-panel {
  transform: translateY(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-close {
  background: transparent;
  border: none;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px 0;
}

.mobile-nav-link {
  text-decoration: none;
  color: #070707;
  font-size: 18px;
  font-weight: 600;
}

.mobile-contacts {
  border-top: 1px solid #e7eaf3;
  border-bottom: 1px solid #e7eaf3;
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-phone {
  font-size: 22px;
  font-weight: 800;
  color: #070707;
  text-decoration: none;
}

.mobile-caption {
  font-size: 12px;
  color: #9aa2b1;
}

.mobile-caption.subtle {
  color: #9aa2b1;
}

.mobile-email {
  font-size: 16px;
  color: #070707;
  text-decoration: none;
}

.mobile-email.strong {
  font-weight: 800;
}

.mobile-separator {
  height: 1px;
  background: #e7eaf3;
  margin: 8px 0;
}

.btn-help {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 29px;
  background: #f1f4f9;
  border-radius: 50px;
  text-decoration: none;
  color: #0c8ff2;
  font-weight: 700;
}

/* Responsive */
@media (min-width: 992px) {
  .support-block {
    display: block;
  }

  .main-nav {
    display: flex;
  }

  .hamburger {
    display: none;
  }
}

@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
}

.seo-text strong {
  font-size: 20px;
  color: black;
}

.seo-text ul li {
  list-style: inside;
  margin: 11px;
}

.seo-text span {
  font-weight: 600;
}

/* SEO Text Hidden Content */
.seo-text-hidden {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.seo-text.expanded .seo-text-hidden {
  max-height: 6200px;
  transition: max-height 0.5s ease-in;
}

.seo-expand.active {
  background: #e8eef7;
  color: #070707;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(161, 175, 196, 0.2);
}

/* DOCS */
.docs {
  max-width: 1320px;
  margin: 80px auto;
  padding: 0 30px;
}

.docs__title {
  font-size: 28px;
}

.docs__wrapper:last-child {
  border-radius: 32px;
}

.docs__list-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 6px 12px;
  border: solid rgb(212, 212, 212);
  border-width: 1px 1px 0 1px;
}

.docs__list-item:last-child {
  border-width: 1px;
}

.faq-answer.docs__list-wrapper {
  transition: max-height 0.9s ease, padding 0.9s ease;
}

.faq-answer.docs__list-wrapper.active {
  max-height: 4200px;
}

@media (max-width: 320px) {
  .docs__list-item {
    flex-direction: column;
  }
}

/* Callback Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  /* animation: fadeIn 0.3s ease; */
}

.modal-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  width: 90%;
  max-height: 95%;
  animation: slideIn 0.3s ease;
  overflow: auto;
  padding: 0 20px 20px;
}

.modal-header {
  padding: 20px 20px 10px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #333;
}

.callbackForm__input {
  padding-bottom: 1rem;
  background: none;
  box-sizing: border-box;

  font-size: 16px;
  font-weight: 400;
  color: #2c2b39;
  padding: 13px;
  background: #f4f7fa;
  outline: none;
  -webkit-appearance: none;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: #f2f4f7;
  border: 1px solid #e6eaf0;
  border-radius: 14px;
  height: 60px;
  font-size: 16px;
  padding: 16px 20px;
  width: 100%;
}

.callbackForm__fieldset {
  border: none;
}

.callbackForm__select {
  width: 100%;
  padding: 0.5rem 0;

  font-size: 1rem;
  font-weight: 400;
  background: #f2f4f7;
  border: 1px solid #e6eaf0;
  border-radius: 14px;
  height: 60px;
  font-size: 16px;
  padding: 16px 20px;
}

.clearfix {
  position: relative;
}

#worksheet #steps fieldset label input:focus~.floating-label,
#worksheet #steps fieldset label textarea:focus~.floating-label,
#worksheet #steps fieldset label .select:has(> .valid,
  select:focus,
  .education,
  textarea:focus,
  select#Regregion,
  select#Faktregion,
  textarea.callbackForm__input:not(:placeholder-shown),
  select > option[value=""]:not(:checked),
  > select:not(.work_scope),
  select:not([value=""]):not([value="0"]))~.floating-label,
#worksheet #steps fieldset label input:not(:placeholder-shown)~.floating-label,
#worksheet #steps fieldset label textarea:not(:placeholder-shown)~.floating-label,
#login label input:not(:focus):valid~.floating-label,
/* #worksheet #steps fieldset label input#patronymic:read-only~.floating-label, */
.floating-label.active {
  top: -23px;
  left: 4px;
  color: #000;
  opacity: 1;
  font-size: 16px;
}

#worksheet #steps fieldset label input#patronymic:read-only {
  background-color: #dfe1e4;
}

textarea.callbackForm__input::placeholder {
  opacity: 0;
}

#worksheet #steps fieldset label .floating-label,
/*#worksheet #steps fieldset label input.sup:not(:focus):valid ~ .floating-label,*/
#login label .floating-label,
#login label input.sup:not(:focus):valid~.floating-label {
  position: absolute;
  pointer-events: none;
  top: 17px;
  color: #818c99;
  left: 10px;
  transition: 0.2s ease all;
  font-size: 14px;
}

#worksheet #steps fieldset label input:focus~.floating-label,
#worksheet #steps fieldset label textarea:focus~.floating-label,
#loginlabel input:focus~.floating-label {
  opacity: 1;
}

.clearfix-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  /* margin: 40px 0 0; */
}

.clearfix-group_column {
  grid-template-columns: repeat(1, 1fr);
}

@media (max-width: 768px) {
  .clearfix-group {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .requirement-title {
    font-size: 16px;
  }
}

.clearfix {
  margin: 40px 0 0;
  width: 100%;
}

.callback-send-button {
  background: linear-gradient(90deg, #0c8ff2 0%, #3cabff 100%);
  border: none;
  border-radius: 2323px;
  width: 100%;
  padding: 24px 24px;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

textarea.callbackForm__input {
  height: 115px;
  min-height: 60px;
}

/* Additional data */

.additional-data__subtitle {
  font-weight: 500;
  font-size: 16px;
  color: #696e82;
}

.additional-data__title {
  font-size: 34px;
  font-weight: 700;
}

#worksheet #steps fieldset label.additional-data__radio {
  background-color: #f5f7fa;
  border-radius: 44px;
  color: #696e82;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 50px;
  width: auto;
  transition: all 0.3s ease-in;
}

#worksheet #steps fieldset label.additional-data__radio:has(> div > input:checked) {
  background-color: #0c8ff2;
  color: #ffffff;
}

#worksheet #steps fieldset div.clearfix:has(> .additional-data__radio) {
  display: flex;
  gap: 15px;
}

#worksheet #steps fieldset div.additional-data__family-block {
  padding: 30px 0 0;
}

button.button.big.additional-data__button {
  margin: 30px 0 0;
}
