.content-cart {
  background:
    /* linear-gradient(110deg, rgba(0, 49, 160, 0.86), rgba(0, 94, 255, 0.62)), */ url("./img/main-bg-img.png")
    center center / cover no-repeat;
  padding: 25px;
  height: 800px;
  border-radius: 60px;
  position: relative;
}
.main-container {
  margin: 20px 100px;
  position: relative;
  z-index: 3;
}

.navbar {
  border: 1px solid #ffffff80;
  border-radius: 80px;
  padding: 0;
  width: max-content;
  backdrop-filter: blur(24px);
}

.nav-item {
  padding: 10px 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  text-transform: capitalize;
  color: #f7c844;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  text-decoration: none;
}

.nav-item::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.nav-item:hover,
.nav-item.active,
.nav-item--active {
  color: #ffffff;
}

.nav-item:hover::before,
.nav-item.active::before,
.nav-item--active::before {
  opacity: 1;
}

.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item-dropdown .nav-item {
  padding: 10px 25px;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
  margin-top: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.nav-item-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown a {
  padding: 12px 20px;
  color: #1a1a1a;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-dropdown a:first-child {
  border-radius: 8px 8px 0 0;
}

.nav-dropdown a:last-child {
  border-radius: 0 0 8px 8px;
}

.nav-dropdown a:hover {
  background-color: rgba(247, 200, 68, 0.2);
}

.body-test {
  background-image: url(../img/body-test.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-block {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: center;
  gap: 32px;
  border-radius: 12px;
  padding: 12px 20px;
}

.contact-left {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
}

.contact-phone-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.contact-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.contact-socials img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.company-name {
  font-family: "Unbounded", sans-serif;
  font-size: 76px;
  font-weight: 500;
  color: #f7c844;
  text-transform: uppercase;
  line-height: 86px;
}

.mobile-menu-toggle,
.mobile-nav-panel {
  display: none;
}

.company-name {
  font-family: "Unbounded", sans-serif;
  font-size: 76px;
  font-weight: 500;
  color: #f7c844;
  text-transform: uppercase;
  line-height: 86px;
}

.company-desc {
  margin-top: 18px;
  padding: 6px 10px;
  width: fit-content;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 4%;
  text-align: center;
  text-transform: uppercase;
  color: #ffffffcc;
}

.contact-link {
  color: #f7c844;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-link:hover {
  color: #fff;
}

.contact-modal-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(3, 10, 26, 0.36);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 1000;
}

.contact-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-modal {
  width: min(100%, 430px);
  border-radius: 34px;
  background: #1764d7;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.25s ease;
}

.contact-modal-overlay.is-open .contact-modal {
  transform: translateY(0) scale(1);
}

.contact-modal-content {
  padding: 34px 42px 40px;
}

.contact-modal-close {
  margin-left: auto;
  margin-right: 22px;
  margin-top: 18px;
  display: block;
  border: none;
  background: transparent;
  color: #111a3a;
  font-size: 42px;
  line-height: 1;
}

.contact-modal-title {
  margin: 10px 0 0;
  font-family: "Unbounded", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
}

.contact-modal-subtitle {
  margin: 10px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.35;
  color: #111a3a;
}

.contact-modal-form {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-modal-form input {
  width: 100%;
  padding: 0 0 12px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.52);
  background: transparent;
  outline: none;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: #ffffff;
}

.contact-modal-form input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.contact-modal-form input:focus {
  border-bottom-color: rgba(255, 255, 255, 0.95);
}

.contact-modal-form input:-webkit-autofill,
.contact-modal-form input:-webkit-autofill:hover,
.contact-modal-form input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #1764d7 inset !important;
  -webkit-text-fill-color: #ffffff !important;
}

.contact-modal-submit {
  margin-top: 26px;
  align-self: center;
  min-width: 318px;
  padding: 16px 26px;
  border: none;
  border-radius: 999px;
  background: #f7c844;
  color: #131313;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  transition: background-color 0.2s ease;
}

.contact-modal-submit:hover {
  background: #e2b433;
}

.company-block {
  position: absolute;
  left: 110px;
  bottom: 65px;
}

@media (max-width: 768px) {
  .header {
    position: relative;
  }

  .main-container {
    margin: 8px 14px;
  }

  .content-cart {
    margin: 10px;
    height: 620px;
    border-radius: 38px;
    padding: 16px 12px;
  }

  .company-block {
    left: 16px;
    bottom: 142px;
  }

  .company-name {
    font-size: 24px;
    line-height: 1.02;
  }

  .company-desc {
    font-size: 15px;
    margin-top: 8px;
    padding: 0;
    letter-spacing: 0.03em;
  }

  .header > .col-2 {
    width: auto;
    flex: 0 0 auto;
  }

  .header > .col-2 img {
    width: 58px;
  }

  .header > .col-6 {
    display: none !important;
  }

  .header > .col-3 {
    width: auto;
    flex: 1 1 auto;
    max-width: none;
    padding-right: 40px;
  }

  .header > .col-3 img {
    width: 50px;
  }

  .contact-block {
    justify-content: flex-end;
    gap: 6px;
    padding: 0;
    flex-direction: column;
  }

  .contact-left {
    align-items: flex-end;
  }

  .contact-phone {
    font-size: 13px;
  }

  .contact-phone-icon {
    width: 12px;
    height: 12px;
  }

  .contact-link {
    font-size: 8px;
  }

  .contact-modal-overlay {
    padding: 14px;
  }

  .contact-modal {
    border-radius: 28px;
  }

  .contact-modal-content {
    padding: 16px 18px 26px;
  }

  .contact-modal-close {
    margin-right: 14px;
    margin-top: 12px;
    font-size: 34px;
  }

  .contact-modal-title {
    font-size: 26px;
  }

  .contact-modal-subtitle {
    font-size: 14px;
  }

  .contact-modal-form {
    margin-top: 26px;
    gap: 18px;
  }

  .contact-modal-form input {
    font-size: 16px;
  }

  .contact-modal-submit {
    min-width: 100%;
    margin-top: 20px;
    font-size: 16px;
  }

  .contact-socials {
    margin-top: 2px;
    gap: 6px;
    margin-left: 59px;
  }

  .contact-socials img {
    width: 20px;
    height: 20px;
  }

  .mobile-menu-toggle {
    position: absolute;
    top: 2px;
    right: 0;
    width: 28px;
    height: 24px;
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4px 0;
    z-index: 5;
  }

  .mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .mobile-nav-panel {
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(2, 43, 140, 0.86);
    backdrop-filter: blur(8px);
    z-index: 4;
  }

  .mobile-nav-panel a {
    color: #f7c844;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
  }

  .mobile-nav-panel a.active {
    color: #ffffff;
  }

  .mobile-nav-dropdown {
    display: flex;
    flex-direction: column;
  }

  .mobile-nav-dropdown > a {
    color: #f7c844;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
  }

  .mobile-dropdown-items {
    display: flex;
    flex-direction: column;
    margin-top: 8px;
    padding-left: 12px;
    border-left: 2px solid rgba(247, 200, 68, 0.4);
  }

  .mobile-dropdown-items a {
    color: rgba(247, 200, 68, 0.85);
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 0;
    transition: color 0.2s;
  }

  .mobile-dropdown-items a:hover {
    color: #f7c844;
  }

  .content-cart.mobile-menu-open .mobile-nav-panel {
    display: flex;
  }

  .content-cart.mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .content-cart.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .content-cart.mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.sales-section {
  margin: 80px 100px 40px;
}

.sales-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.sales-title {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.1;
  color: #040404;
}

.sales-subtitle {
  margin: 8px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  color: #3f3f3f;
}

.sales-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sales-tab {
  border: 1px solid #1764d7;
  background: transparent;
  border-radius: 999px;
  min-width: 118px;
  padding: 10px 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #1c1c1c;
}

.sales-tab.active {
  background: #1764d7;
  color: #fff;
  font-weight: 700;
}

.sales-slider-wrap {
  margin-top: 38px;
  position: relative;
  min-height: 570px;
}

.sales-side-bg {
  position: absolute;
  top: 50px;
  bottom: 44px;
  width: 40%;
  border-radius: 32px;
}

.sales-side-bg-left {
  left: 0;
  background: url("./img/slider-bg1.png") center center / cover no-repeat;
}

.sales-side-bg-right {
  right: 0;
  background: url("./img/slider-bg2.png") center center / cover no-repeat;
}

.sales-slider {
  width: min(980px, 74vw);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 48px;
  position: relative;
  z-index: 2;
}

.sales-track {
  display: flex;
  transition: transform 0.35s ease;
}

.sales-track.fade-out {
  animation: fadeOut 0.3s ease forwards;
}

.sales-track.fade-in {
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.sales-slide {
  min-width: 100%;
  position: relative;
}

.sales-slide img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  display: block;
}

.sales-info-card {
  position: absolute;
  right: 0;
  top: 44px;
  width: min(430px, 46%);
  min-height: 220px;
  border-radius: 24px;
  padding: 28px 30px;
  backdrop-filter: blur(8px);
  background: rgba(230, 240, 255, 0.66);
  color: #151515;
  font-family: "Montserrat", sans-serif;
}

.sales-info-card h3 {
  margin: 0;
  font-size: 45px;
  font-weight: 700;
}

.sales-info-card p {
  margin: 12px 0 0;
  font-size: 32px;
}

.sales-info-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 38px;
  font-weight: 700;
  color: #1664d7;
  text-decoration: none;
}

.sales-info-card a::after {
  content: "\2192";
}

.sales-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 50%;
  background: #f5f7fa;
  color: #1664d7;
  font-size: 36px;
  line-height: 1;
  z-index: 3;
}

.sales-arrow-left {
  left: calc(50% - 580px);
}

.sales-arrow-right {
  right: calc(50% - 580px);
}

.slider-arrow-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

@media (max-width: 1400px) {
  .sales-section {
    margin: 70px 35px 30px;
  }

  .sales-title {
    font-size: 42px;
  }

  .sales-subtitle {
    font-size: 26px;
  }

  .sales-tab {
    font-size: 20px;
    min-width: 95px;
  }

  .sales-slider {
    width: min(900px, 78vw);
  }

  .sales-slide img {
    height: 500px;
  }

  .sales-info-card h3 {
    font-size: 34px;
  }

  .sales-info-card p {
    font-size: 24px;
  }

  .sales-info-card a {
    font-size: 28px;
  }

  .sales-arrow-left {
    left: 20px;
  }

  .sales-arrow-right {
    right: 20px;
  }
}

@media (max-width: 900px) {
  .sales-section {
    margin: 34px 10px 18px;
  }

  .sales-title {
    font-size: 24px;
  }

  .sales-subtitle {
    font-size: 14px;
    margin-top: 6px;
  }

  .sales-tabs {
    width: 100%;
    overflow-x: visible;
    flex-wrap: wrap;
    padding-bottom: 0;
    gap: 8px;
  }

  .sales-tab {
    flex: 0 0 auto;
    font-size: 14px;
    min-width: 124px;
    padding: 7px 18px;
  }

  .sales-slider-wrap {
    min-height: 520px;
    margin-top: 18px;
  }

  .sales-side-bg {
    top: 20px;
    bottom: 18px;
    width: 49%;
    border-radius: 20px;
  }

  .sales-slider {
    width: calc(100% - 16px);
    border-radius: 36px;
  }

  .sales-slide img {
    height: 500px;
  }

  .sales-info-card {
    top: 18px;
    right: 16px;
    width: calc(100% - 32px);
    min-height: 154px;
    padding: 16px;
    border-radius: 18px;
  }

  .sales-info-card h3 {
    font-size: 20px;
  }

  .sales-info-card p {
    margin-top: 7px;
    font-size: 14px;
  }

  .sales-info-card a {
    margin-top: 12px;
    font-size: 20px;
  }

  .sales-arrow {
    width: 42px;
    height: 42px;
    top: 56%;
  }

  .sales-arrow-left {
    left: 0;
  }

  .sales-arrow-right {
    right: 0;
  }
}

@media (max-width: 420px) {
  .sales-tab {
    min-width: 0;
    padding: 7px 20px;
  }
}

.plans-section {
  margin: 70px 56px 80px;
}

.plans-title {
  margin: 0;
  text-align: center;
  font-family: "Unbounded", sans-serif;
  font-size: 64px;
  font-weight: 600;
  color: #020202;
}

.plans-tabs {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.plans-tab {
  border: 1px solid #1764d7;
  background: transparent;
  border-radius: 999px;
  min-width: 120px;
  padding: 9px 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #141414;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.plans-tab.active {
  background: #1764d7;
  color: #ffffff;
  font-weight: 700;
}

.plans-slider-wrap {
  margin-top: 38px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plans-slider {
  overflow: hidden;
  width: 100%;
}

.plans-track {
  display: flex;
  gap: 24px;
  transition: transform 0.35s ease;
}

.plans-track.fade-out {
  animation: fadeOut 0.3s ease forwards;
}

.plans-track.fade-in {
  animation: fadeIn 0.3s ease forwards;
}

.plan-slide {
  flex: 0 0 calc((100% - 48px) / 3);
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plan-slide img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  display: block;
}

.plan-link {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #1664d7;
}

.plan-link::after {
  content: "\2192";
}

.plans-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #1664d7;
  font-size: 60px;
  line-height: 1;
  z-index: 2;
}

.plans-arrow-left {
  left: -52px;
}

.plans-arrow-right {
  right: -52px;
}

.plans-arrow:disabled {
  opacity: 0.35;
}

  .plans-no-results {
    margin: 24px 0 0;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
    text-align: center;
  }

@media (max-width: 1400px) {
  .plans-section {
    margin: 58px 28px 60px;
  }

  .plans-title {
    font-size: 46px;
  }

  .plan-slide img {
    max-height: 460px;
  }
}

@media (max-width: 1100px) {
  .plan-slide {
    flex: 0 0 calc((100% - 24px) / 2);
  }

  .plan-slide img {
    max-height: 410px;
  }

  .plans-arrow-left {
    left: -34px;
  }

  .plans-arrow-right {
    right: -34px;
  }
}

@media (max-width: 680px) {
  .plans-section {
    margin: 34px 10px 34px;
  }

  .plans-title {
    text-align: center;
    font-size: 30px;
    line-height: 0.98;
    font-weight: 500;
  }

  .plans-tabs {
    margin-top: 14px;
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0;
    gap: 8px;
  }

  .plans-tab {
    flex: 0 0 calc((100% - 8px) / 2);
    min-width: 0;
    font-size: 14px;
    padding: 7px 10px;
  }

  .plans-tab:last-child {
    flex-basis: calc((100% - 8px) / 2);
  }

  .plans-slider-wrap {
    margin-top: 12px;
  }

  .plans-slider {
    width: 100%;
  }

  .plans-track {
    gap: 10px;
  }

  .plan-slide {
    flex: 0 0 100%;
    border-radius: 26px;
    overflow: hidden;
    background: #e0e1e5;
  }

  .plan-slide img {
    max-height: 308px;
  }

  .plan-link {
    bottom: 12px;
    font-size: 18px;
  }

  .plans-arrow {
    width: 42px;
    height: 42px;
    background: #f5f7fa;
    top: 58%;
  }

  .plans-arrow-left {
    left: -2px;
  }

  .plans-arrow-right {
    right: -2px;
  }

  .slider-arrow-icon {
    width: 16px;
    height: 16px;
  }
}

.details-plans-section {
  margin-top: 14px;
}

.details-plans-section .plans-filters {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.details-plans-section .plans-reset-btn {
  border: 1px solid #1764d7;
  border-radius: 999px;
  min-width: 104px;
  height: 42px;
  padding: 0 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: #1764d7;
  background: transparent;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.details-plans-section .plans-reset-btn.is-active {
  background: #1764d7;
  color: #ffffff;
}

.details-plans-section .plans-filter-item {
  position: relative;
  display: inline-flex;
}

.details-plans-section .plans-filter-item::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid #1c1c1c;
  border-bottom: 2px solid #1c1c1c;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.details-plans-section .plans-filter-select {
  border: 1px solid #1764d7;
  border-radius: 999px;
  height: 42px;
  min-width: 220px;
  padding: 0 42px 0 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1c1c1c;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.details-plans-section .plans-filter-select:focus {
  outline: none;
  border-color: #1664d7;
}

@media (max-width: 1400px) {
  .details-plans-section .plans-filters {
    margin-top: 20px;
    gap: 10px;
  }

  .details-plans-section .plans-reset-btn,
  .details-plans-section .plans-filter-select {
    font-size: 16px;
    height: 40px;
  }

  .details-plans-section .plans-filter-select {
    min-width: 180px;
  }
}

@media (max-width: 680px) {
  .details-plans-section .plans-filters {
    justify-content: flex-start;
    gap: 8px;
  }

  .details-plans-section .plans-reset-btn,
  .details-plans-section .plans-filter-select {
    height: 36px;
    font-size: 14px;
  }

  .details-plans-section .plans-reset-btn {
    min-width: 72px;
    padding: 0 14px;
  }

  .details-plans-section .plans-filter-item {
    flex: 1 1 calc((100% - 8px) / 2);
  }

  .details-plans-section .plans-filter-select {
    min-width: 0;
    width: 100%;
    padding: 0 34px 0 12px;
  }

  .details-plans-section .plans-filter-item::after {
    right: 12px;
    width: 7px;
    height: 7px;
  }
}

.nearby-section {
  margin: 70px 34px 80px;
}

.nearby-section {
  margin: 70px 34px 80px;
}

.nearby-title {
  margin: 0;
  text-align: center;
  font-family: "Unbounded", sans-serif;
  font-size: 62px;
  font-weight: 600;
  color: #020202;
}

.nearby-content {
  position: relative;
  margin: 34px auto 0;
  max-width: 1700px;
}

.nearby-map-wrap {
  margin-left: 240px;
  border-radius: 38px;
  overflow: hidden;
}

.nearby-map {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.nearby-list {
  position: absolute;
  top: 30px;
  left: 0;
  width: 205px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nearby-card {
  background: linear-gradient(270deg, #ffffff -6.23%, #eef1f7 97.42%);
  border-radius: 18px;
  padding: 12px 14px 10px 18px;
}

.nearby-card h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: #040404;
  text-transform: lowercase;
}

.nearby-card p {
  margin: 5px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1.1;
  color: #3f3f3f;
}

.nearby-card span {
  display: inline-block;
  margin-top: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: #1664d7;
}

@media (max-width: 1400px) {
  .nearby-section {
    margin: 58px 20px 62px;
  }

  .nearby-title {
    font-size: 46px;
  }

  .nearby-content {
    margin-top: 22px;
  }

  .nearby-map-wrap {
    margin-left: 205px;
    border-radius: 30px;
  }

  .nearby-map {
    aspect-ratio: 16 / 8;
  }

  .nearby-list {
    top: 18px;
    width: 170px;
    gap: 12px;
  }

  .nearby-card {
    border-radius: 14px;
    padding: 10px 10px 10px 16px;
  }

  .nearby-card h3 {
    font-size: 19px;
  }

  .nearby-card p,
  .nearby-card span {
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  .nearby-section {
    margin: 48px 12px 48px;
  }

  .nearby-title {
    font-size: 30px;
  }

  .nearby-content {
    margin-top: 18px;
    min-height: auto;
  }

  .nearby-map-wrap {
    margin-left: 0;
    border-radius: 20px;
  }

  .nearby-map {
    height: 300px;
  }

  .nearby-list {
    position: static;
    width: 100%;
    margin-bottom: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .nearby-card {
    padding: 10px 10px 10px 12px;
  }

  .nearby-card h3 {
    font-size: 20px;
  }

  .nearby-card p,
  .nearby-card span {
    font-size: 13px;
  }
}

.benefits-section {
  margin: 40px 70px 80px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.45fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.benefit-card {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  min-height: 320px;
}

.benefit-card-large {
  grid-row: 1 / 3;
  min-height: 660px;
}

.benefit-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.benefit-content {
  position: absolute;
  left: 50px;
  top: 54px;
  color: #070707;
}

.benefit-card-large .benefit-content {
  left: 52px;
  top: 62px;
}

.benefit-card-top .benefit-content {
  left: 52px;
  top: 58px;
}

.benefit-card-bottom .benefit-content {
  left: 58px;
  top: auto;
  bottom: 62px;
}

.benefit-content h3 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 42px;
  line-height: 55px;
  letter-spacing: 0%;
}

/* .benefit-card-top .benefit-content h3 {
  max-width: 88%;
} */

/* .benefit-card-bottom .benefit-content h3 {
  max-width: 76%;
} */

.benefit-content a {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1664d7;
}

.benefit-content a::after {
  content: "\2192";
}

@media (max-width: 1400px) {
  .benefits-section {
    margin: 34px 24px 60px;
  }

  .benefits-grid {
    gap: 14px;
  }

  .benefit-card {
    border-radius: 28px;
    min-height: 250px;
  }

  .benefit-card-large {
    min-height: 515px;
  }

  .benefit-content {
    left: 28px;
    top: 28px;
  }

  .benefit-card-large .benefit-content,
  .benefit-card-top .benefit-content {
    left: 28px;
    top: 30px;
  }

  .benefit-card-bottom .benefit-content {
    left: 30px;
    bottom: 30px;
  }

  .benefit-content h3 {
    font-size: 32px;
    line-height: 120%;
  }

  .benefit-content a {
    margin-top: 16px;
    font-size: 30px;
  }
}

@media (max-width: 900px) {
  .benefits-section {
    margin: 30px 12px 44px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .benefit-card,
  .benefit-card-large {
    min-height: 260px;
  }

  .benefit-card-large {
    grid-row: auto;
  }

  .benefit-content {
    left: 18px;
    top: 18px;
  }

  .benefit-card-bottom .benefit-content {
    bottom: 18px;
  }

  .benefit-content h3 {
    font-size: 28px;
    line-height: 120%;

  }

  .benefit-content a {
    margin-top: 10px;
    gap: 8px;
    font-size: 20px;
  }
}

.about-section {
  margin: 50px 56px 90px;
}

.about-content {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 28px;
  align-items: start;
}

.about-title {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: 66px;
  font-weight: 600;
  line-height: 1.05;
  color: #020202;
}

.about-text {
  margin: 24px 0 0;
  max-width: 880px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.45;
  color: #242424;
}

.about-text strong {
  font-weight: 700;
}

.about-link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #1664d7;
}

.about-link::after {
  content: "\2192";
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-stat-card {
  background: #d8dde6;
  border-radius: 28px;
  min-height: 240px;
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-stat-number {
  font-family: "Unbounded", sans-serif;
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
  color: #040404;
}

.about-stat-title {
  margin-top: 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.05;
  color: #040404;
}



.about-stat-desc {
  margin-top: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  line-height: 1.2;
  color: #1f1f1f;
}

@media (max-width: 1400px) {
  .about-section {
    margin: 40px 24px 74px;
  }

  .about-content {
    grid-template-columns: 1.2fr 1fr;
    gap: 18px;
  }

  .about-title {
    font-size: 48px;
  }

  .about-text {
    margin-top: 16px;
    font-size: 15px;
  }

  .about-link {
    font-size: 26px;
  }

  .about-stat-card {
    min-height: 170px;
    border-radius: 20px;
    padding: 16px 10px;
  }

  .about-stat-number {
    font-size: 52px;
  }

  .about-stat-title {
    font-size: 34px;
  }

  .about-stat-desc {
    margin-top: 8px;
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .about-section {
    margin: 34px 12px 50px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-title {
    font-size: 34px;
  }

  .about-text {
    font-size: 14px;
  }

  .about-link {
    margin-top: 12px;
    font-size: 20px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-stat-card {
    min-height: 140px;
    border-radius: 16px;
  }

  .about-stat-number {
    font-size: 40px;
  }

  .about-stat-title {
    font-size: 28px;
  }

  .about-stat-desc {
    font-size: 14px;
  }
}

.projects-section {
  margin: 40px 56px 80px;
}

.details-hero {
  background: url("./img/bricwood2-bg.png") center center / cover no-repeat;
}

.details-hero-title {
  position: absolute;
  left: 110px;
  bottom: 65px;
}

.details-hero-title h1 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: #f7c844;
  text-transform: uppercase;
}

.details-hero-title p {
  margin: 8px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  color: #d8dde6;
}

.details-title {
  margin: 0;
  text-align: center;
  font-family: "Unbounded", sans-serif;
  font-size: 62px;
  font-weight: 600;
  color: #020202;
}

.details-facts-section {
  margin: 54px 32px 42px;
}

.details-facts-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.details-fact-card {
  min-height: 102px;
}

.details-fact-card h3 {
  text-transform: none;
  font-size: 13px;
  color: #3d78d0;
}

.details-fact-card p {
  margin-top: 4px;
  font-size: 13px;
}

.details-fact-card .details-fact-big {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: #232323;
}

.details-location-section {
  margin: 0 32px 52px;
}

.details-map-wrap {
  margin-top: 24px;
  border-radius: 38px;
  overflow: hidden;
}

.details-map {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}



.details-slider-wrap {
  min-height: 420px;
}

.details-slider-wrap .sales-side-bg {
  top: 28px;
  bottom: 24px;
  width: 34%;
  border-radius: 34px;
}

.details-slider-wrap .sales-slider {
  width: min(980px, 78vw);
}

.details-slider-wrap .sales-slide img {
  height: 420px;
  border-radius: 40px;
}

.details-slider-wrap .sales-arrow-left {
  left: calc(50% - 520px);
}

.details-slider-wrap .sales-arrow-right {
  right: calc(50% - 520px);
}

.details-info-card {
  top: 30px;
  right: 16px;
  width: min(360px, 44%);
  min-height: auto;
  padding: 20px 22px;
}

.details-info-card h3 {
  font-size: 34px;
}

.details-info-card p {
  margin-top: 6px;
  font-size: 20px;
}

.details-info-card a {
  margin-top: 14px;
  font-size: 20px;
}

.details-specs-section {
  margin: 0 32px 84px;
}

.details-specs-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.details-spec-card {
  min-height: 88px;
}

.details-spec-card h3 {
  text-transform: none;
  font-size: 13px;
  color: #3d78d0;
}

.details-spec-card p {
  margin-top: 4px;
  font-size: 13px;
  color: #1f2022;
}

.objects-section {
  margin: 40px 40px 80px;
}

.objects-section .plans-tabs {
  margin-top: 0;
}

.objects-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  transition: opacity 0.3s ease;
}


.objects-grid.fade-out {
  opacity: 0;
}

.objects-grid.fade-in {
  opacity: 1;
}

.object-card {
  background: #d8dde6;
  border-radius: 24px;
  overflow: hidden;
}

.object-card-featured {
  grid-column: span 2;
  position: relative;
  min-height: 310px;
}

.object-card-featured .object-card-image {
  height: 100%;
}

.object-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.object-card-overlay {
  position: absolute;
  right: 14px;
  top: 34px;
  width: min(52%, 300px);
  border-radius: 18px;
  padding: 18px 20px;
  background: rgba(232, 236, 242, 0.86);
  backdrop-filter: blur(8px);
}

.object-card-body {
  padding: 14px 16px 18px;
}

.object-card-overlay h3,
.object-card-body h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 35px;
  font-weight: 700;
  color: #161616;
}

.object-card-overlay p,
.object-card-body p {
  margin: 4px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  line-height: 1.2;
  color: #3f3f3f;
}

.object-card-overlay p strong,
.object-card-body p strong {
  color: #151515;
  font-weight: 700;
}

.object-card-overlay a,
.object-card-body a {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1664d7;
  text-decoration: none;
}

.object-card-overlay a::after,
.object-card-body a::after {
  content: "\2192";
}

@media (max-width: 1400px) {
  .objects-section {
    margin: 34px 20px 60px;
  }

  .objects-grid {
    gap: 14px;
  }

  .object-card-image {
    height: 150px;
  }

  .object-card-featured {
    min-height: 270px;
  }

  .object-card-overlay {
    top: 18px;
    right: 10px;
    width: min(55%, 240px);
    padding: 12px 14px;
  }

  .object-card-overlay h3,
  .object-card-body h3 {
    font-size: 18px;
  }

  .object-card-overlay p,
  .object-card-body p {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .objects-section {
    margin: 20px 12px 44px;
  }

  .objects-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .object-card-featured {
    grid-column: span 1;
    min-height: auto;
  }

  .object-card-featured .object-card-image,
  .object-card-image {
    height: 190px;
  }

  .object-card-overlay {
    position: static;
    width: auto;
    border-radius: 0;
    backdrop-filter: none;
    background: #d8dde6;
    padding: 14px 16px 18px;
  }
}

.projects-header {
  justify-content: center;
}

.projects-title {
  text-align: center;
}

.projects-slider-wrap {
  margin-top: 20px;
}

@media (max-width: 1400px) {
  .details-hero-title {
    left: 30px;
    bottom: 38px;
  }

  .details-hero-title h1 {
    font-size: 48px;
  }

  .details-hero-title p {
    font-size: 28px;
  }

  .details-title {
    font-size: 44px;
  }

  .details-facts-section,
  .details-location-section,
  .details-gallery-section,
  .details-construction-section,
  .details-specs-section {
    margin-left: 20px;
    margin-right: 20px;
  }

  .construction-gallery-date {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .construction-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .details-facts-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .details-specs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .details-slider-wrap .sales-arrow-left {
    left: 8px;
  }

  .details-slider-wrap .sales-arrow-right {
    right: 8px;
  }

  .details-slider-wrap .sales-slide img {
    height: 360px;
  }

  .details-info-card h3 {
    font-size: 24px;
  }

  .details-info-card p {
    font-size: 16px;
  }

  .details-info-card a {
    font-size: 16px;
  }

  .projects-section {
    margin: 30px 24px 60px;
  }
}

@media (max-width: 900px) {
  .details-hero {
    height: 620px;
  }

  .details-hero-title {
    left: 16px;
    bottom: 118px;
  }

  .details-hero-title h1 {
    font-size: 34px;
  }

  .details-hero-title p {
    margin-top: 6px;
    font-size: 22px;
  }

  .details-title {
    font-size: 30px;
  }

  .details-facts-section,
  .details-location-section,
  .details-gallery-section,
  .details-construction-section,
  .details-specs-section {
    margin-left: 12px;
    margin-right: 12px;
  }

  .details-construction-content {
    margin-top: 16px;
  }

  .construction-gallery-group + .construction-gallery-group {
    margin-top: 18px;
  }

  .construction-gallery-date {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .construction-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3px;
  }

  .details-facts-grid,
  .details-specs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .details-fact-card .details-fact-big {
    font-size: 28px;
  }

  .details-map-wrap {
    border-radius: 20px;
  }

  .details-slider-wrap {
    min-height: 315px;
  }

  .details-slider-wrap .sales-side-bg {
    top: 14px;
    bottom: 10px;
    width: 28%;
    border-radius: 20px;
  }

  .details-slider-wrap .sales-slider {
    width: calc(100% - 26px);
    border-radius: 26px;
  }

  .details-slider-wrap .sales-slide img {
    height: 260px;
    border-radius: 26px;
  }

  .details-slider-wrap .sales-arrow {
    top: 52%;
  }

  .details-info-card {
    top: 12px;
    right: 12px;
    width: calc(100% - 24px);
    padding: 12px;
    border-radius: 14px;
  }

  .details-info-card h3 {
    font-size: 16px;
  }

  .details-info-card p,
  .details-info-card a {
    font-size: 12px;
  }

  .projects-section {
    margin: 24px 12px 44px;
  }
}

.site-footer {
  background: #34363b;
  border-radius: 0;
}

.footer-inner {
  max-width: 1680px;
  margin: 0 auto;
  padding: 50px 56px 42px;
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr 1.25fr 1fr;
  column-gap: 56px;
  align-items: start;
}

.footer-logo img {
  width: 100px;
  height: auto;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  text-decoration: none;
  color: #bfc2c8;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.15;
}

.footer-nav a.is-active {
  color: #f3c94f;
  font-weight: 700;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #f5f7fa;
}

.footer-phone img {
  width: 28px;
  height: 28px;
}

.footer-phone span {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #f5f7fa;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 5px;
}

.footer-socials img {
  width: 20px;
  height: 20px;
}

.footer-copy {
  margin: 6px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #d8dbe1;
  margin-left: 5px;
}

.footer-address,
.footer-mail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: #bfc2c8;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.2;
}

.footer-icon {
  color: #f3c94f;
  font-size: 20px;
  line-height: 1;
}

.footer-address p {
  margin: 0;
}

@media (max-width: 1400px) {
  .footer-inner {
    padding: 34px 24px 28px;
    grid-template-columns: 0.8fr 1fr 1.2fr;
    row-gap: 20px;
    column-gap: 24px;
  }

  .footer-logo {
    grid-row: 1 / 3;
  }

  .footer-nav a,
  .footer-address,
  .footer-mail {
    font-size: 24px;
  }

  .footer-phone span {
    font-size: 28px;
  }

  .footer-copy {
    font-size: 22px;
  }

  .footer-socials img {
    width: 24px;
    height: 24px;
  }

  .footer-icon {
    font-size: 28px;
  }
}

@media (max-width: 900px) {
  .site-footer {
    margin: 0;
  }

  .footer-inner {
    grid-template-columns: 66px 1fr;
    column-gap: 18px;
    row-gap: 10px;
    padding: 24px 20px 26px;
    align-items: start;
  }

  .footer-logo {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-logo img {
    width: 60px;
  }

  .footer-nav {
    grid-column: 2;
    grid-row: 1;
    gap: 6px;
    margin-top: 4px;
  }

  .footer-nav a,
  .footer-address,
  .footer-mail {
    font-size: 14px;
    line-height: 1.2;
  }

  .footer-contacts {
    display: contents;
  }

  .footer-phone {
    grid-column: 1 / -1;
    grid-row: 2;
    gap: 10px;
    margin-top: 4px;
  }

  .footer-phone span {
    font-size: 16px;
    font-weight: 700;
  }

  .footer-address {
    grid-column: 1 / -1;
    grid-row: 3;
    gap: 10px;
  }

  .footer-mail {
    grid-column: 1 / -1;
    grid-row: 4;
    gap: 10px;
  }

  .footer-socials {
    grid-column: 1 / -1;
    grid-row: 5;
    gap: 10px;
    margin-top: 2px;
  }

  .footer-copy {
    grid-column: 1 / -1;
    grid-row: 6;
    margin-top: 6px;
    font-size: 10px;
  }

  .footer-phone img {
    width: 28px;
    height: 28px;
  }

  .footer-socials img {
    width: 28px;
    height: 28px;
  }

  .footer-icon {
    font-size: 17px;
  }
}

/* ============================================
   CONTACTS PAGE
   ============================================ */

.contacts-hero {
  background:
    url("./img/contacts-bg-img.png")
    center center / cover no-repeat;
}

.contacts-hero-title {
  position: absolute;
  left: 110px;
  bottom: 65px;
}

.contacts-hero-title h1 {
  font-family: "Unbounded", sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: #f7c844;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}

.about-hero {
  background: url("./img/about-bg.png") center center / cover no-repeat;
}

.about-hero-title {
  position: absolute;
  left: 110px;
  bottom: 65px;
}

.about-hero-title h1 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: #f7c844;
}

.news-post-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, rgba(0, 49, 160, 0.82), rgba(0, 94, 255, 0.64));
  pointer-events: none;
  z-index: 1;
}

.news-post-hero .header,
.news-post-hero .about-hero-title {
  z-index: 2;
}

.about-page-about {
  margin-bottom: 36px;
}

.about-news-section {
  margin: 0 32px 56px;
}

.about-news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.about-news-card {
  background: #d8dde6;
  border-radius: 20px;
  padding: 16px;
}

.about-news-date {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  color: #6f737a;
}

.about-news-card h3 {
  margin: 8px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #151515;
}

.about-news-card p {
  margin: 8px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.35;
  color: #383b42;
}

.about-news-card a {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1664d7;
  text-decoration: none;
}

.about-news-card a::after {
  content: "\2192";
}

.news-list-section {
  margin: 42px 32px 56px;
}

.news-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.news-list-card {
  background: #EEF1F7;
  border-radius: 34px;
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(220px, 44%) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.news-list-image-link {
  display: block;
  border-radius: 28px;
  overflow: hidden;
  min-height: 260px;
  background: #c7ceda;
}

.news-list-image,
.news-list-image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
}

.news-list-image {
  object-fit: cover;
}

.news-list-body {
  padding: 8px 6px 8px 2px;
}

.news-list-date {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #5f636b;
}

.news-list-title {
  margin: 10px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 1.14;
  font-weight: 700;
  color: #111214;
}

.news-list-excerpt {
  margin: 10px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.35;
  color: #383b42;
}

.news-list-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1664d7;
}

.news-list-link::after {
  content: "\2192";
}

@media (max-width: 1400px) {
  .news-list-section {
    margin: 34px 20px 50px;
  }

  .news-list-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .news-list-card {
    border-radius: 28px;
    padding: 14px;
    grid-template-columns: minmax(200px, 40%) minmax(0, 1fr);
    gap: 16px;
  }

  .news-list-image-link,
  .news-list-image,
  .news-list-image-placeholder {
    min-height: 230px;
  }

  .news-list-date {
    font-size: 12px;
  }

  .news-list-title {
    font-size: 18px;
  }

  .news-list-excerpt {
    font-size: 13px;
  }

  .news-list-link {
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  .news-list-section {
    margin: 24px 12px 40px;
  }

  .news-list-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .news-list-card {
    grid-template-columns: 1fr;
    border-radius: 28px;
    padding: 12px;
    gap: 12px;
  }

  .news-list-image-link,
  .news-list-image,
  .news-list-image-placeholder {
    min-height: 240px;
    border-radius: 22px;
  }

  .news-list-body {
    padding: 10px 2px 4px;
  }

  .news-list-date {
    font-size: 12px;
  }

  .news-list-title {
    margin-top: 8px;
    font-size: 22px;
    line-height: 1.12;
  }

  .news-list-excerpt {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.32;
  }

  .news-list-link {
    margin-top: 12px;
    font-size: 20px;
  }
}

.news-post-section {
  margin: 42px 32px 84px;
}

.news-post-container {
  max-width: 1120px;
  margin: 0 auto;
}

.news-post-date {
  margin: 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #6f737a;
}

.news-post-title {
  margin: 10px 0 0;
  text-align: center;
  font-family: "Unbounded", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.12;
  color: #121212;
}

.news-post-cover-wrap {
  margin-top: 24px;
  border-radius: 34px;
  overflow: hidden;
}

.news-post-cover {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 620px;
}

.news-post-content {
  margin: 30px auto 0;
  max-width: 980px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: #23262d;
}

.news-post-content > *:first-child {
  margin-top: 0;
}

.news-post-content p,
.news-post-content ul,
.news-post-content ol,
.news-post-content blockquote,
.news-post-content h2,
.news-post-content h3,
.news-post-content h4 {
  margin-top: 0;
  margin-bottom: 18px;
}

.news-post-content ul,
.news-post-content ol {
  padding-left: 24px;
}

.news-post-content strong {
  font-weight: 700;
}

.news-post-content a {
  color: #1664d7;
}

@media (max-width: 1400px) {
  .news-post-section {
    margin: 34px 20px 64px;
  }

  .news-post-title {
    font-size: 40px;
  }

  .news-post-cover-wrap {
    border-radius: 28px;
  }

  .news-post-content {
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .news-post-section {
    margin: 24px 12px 44px;
  }

  .news-post-date {
    text-align: left;
    font-size: 12px;
  }

  .news-post-title {
    margin-top: 8px;
    text-align: left;
    font-size: 28px;
  }

  .news-post-cover-wrap {
    margin-top: 16px;
    border-radius: 20px;
  }

  .news-post-content {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.55;
  }
}

.about-reviews-section {
  margin: 0 32px 46px;
}

.about-reviews-title {
  margin: 0;
  text-align: center;
  font-family: "Unbounded", sans-serif;
  font-size: 56px;
  font-weight: 600;
  color: #030303;
}

.about-reviews-wrap {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;
}

.about-reviews-arrow {
  border: none;
  background: transparent;
  font-size: 28px;
  color: #2b2b2b;
}

.about-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.about-review-card {
  border: 1px solid #bfc2c8;
  border-radius: 24px;
  background: #f2f3f5;
  padding: 16px 18px;
}

.about-review-card p {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.35;
  color: #2a2d33;
}

.about-review-card strong {
  display: block;
  margin-top: 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: #121212;
}

.about-page-contacts {
  margin-top: 0;
}

/* Info row */
.contacts-section {
  margin: 40px 100px 80px;
}

.contacts-info-row {
  display: flex;
  gap: 32px;
  align-items: center;
  width: 100%;
  order: -1;
  flex-wrap: wrap;
}

.contacts-info-row span {
  color: #000000CC;
}

.contacts-info-row p {
  color: #000000CC;
}

.contacts-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #1c1c1c;
}

.contacts-info-item a {
  color: #1c1c1c;
  text-decoration: none;
}

.contacts-info-item a:hover {
  color: #1764d7;
}

.contacts-info-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.contacts-pin,
.contacts-mail-icon {
  font-size: 20px;
  line-height: 1;
  color: #f7c844;
}

/* Body: form + map */
.contacts-body {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

/* Form */
.contacts-form-wrap {
  flex: 0 0 auto;
  max-width: 800px;
  background: #1764d7;
  border-radius: 20px;
  padding: 28px 24px 24px;
}

.contacts-form-row {
  display: flex;
  gap: 12px;
}

.contacts-form-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contacts-form-col:first-child {
  flex: 1 1 auto;
}

.contacts-form-col--message {
  flex: 1 1 auto;
}

.contacts-form input,
.contacts-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 0;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}

.contacts-form input::placeholder,
.contacts-form textarea::placeholder {
  color: rgba(255,255,255,0.7);
}

.contacts-form input:focus,
.contacts-form textarea:focus {
  border-bottom-color: #fff;
}

.contacts-form input:-webkit-autofill,
.contacts-form input:-webkit-autofill:hover,
.contacts-form input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #1764d7 inset !important;
  -webkit-text-fill-color: #ffffff !important;
}

.contacts-form textarea {
  resize: none;
  height:84px;
}

.contacts-form-btn {
  margin-top: 18px;
  display: block;
  width: auto;
  margin-left: auto;
  margin-right: 0;
  background: #f7c844;
  color: #1c1c1c;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 10px 28px;
  cursor: pointer;
  transition: background 0.2s;
}

.contacts-form-btn:hover {
  background: #e0b330;
}

/* Map */
.contacts-map-wrap {
  flex: 1 1 auto;
  min-width: 300px;
  border-radius: 20px;
  overflow: hidden;
  height: 330px;
}

.contacts-map {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  display: block;
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .contacts-section {
    margin: 32px 40px 60px;
  }

  .contacts-form-wrap {
    width: 400px;
  }
}

@media (max-width: 900px) {
  .about-hero-title {
    left: 16px;
    bottom: 36px;
  }

  .about-hero-title h1 {
    font-size: 36px;
  }

  .about-news-section {
    margin: 0 12px 36px;
  }

  .about-news-grid {
    grid-template-columns: 1fr;
  }

  .about-news-card a {
    font-size: 16px;
  }

  .about-reviews-section {
    margin: 0 12px 30px;
  }

  .about-reviews-title {
    font-size: 34px;
  }

  .about-reviews-wrap {
    grid-template-columns: 1fr;
  }

  .about-reviews-grid {
    grid-template-columns: 1fr;
  }

  .about-reviews-arrow {
    display: none;
  }

  .contacts-hero-title {
    left: 16px;
    bottom: 36px;
  }

  .contacts-hero-title h1 {
    font-size: 36px;
  }

  .contacts-section {
    margin: 22px 14px 40px;
  }

  .contacts-info-row {
    gap: 20px;
    margin-bottom: 20px;
  }

  .contacts-info-item {
    font-size: 14px;
  }

  .contacts-body {
    flex-direction: column;
  }

  .contacts-form-wrap {
    width: 100%;
    padding: 18px 14px 16px;
  }

  .contacts-form-row {
    flex-direction: column;
    gap: 0;
  }

  .contacts-form-col {
    gap: 12px;
  }

  .contacts-form-col:first-child {
    flex: 1;
  }

  .contacts-form textarea {
    height: 84px;
  }

  .contacts-map-wrap {
    width: 100%;
    min-height: 220px;
  }

  .contacts-map {
    min-height: 220px;
  }
}

.news-page { margin: 40px 32px 70px; }
.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.news-card { background: #d8dde6; border-radius: 22px; overflow: hidden; display: flex; flex-direction: column; }
.news-card-media img { width: 100%; height: 190px; object-fit: cover; display: block; }
.news-card-body { padding: 14px 16px 16px; }
.news-card-date { margin: 0; font-size: 11px; color: #6f737a; font-family: "Montserrat", sans-serif; }
.news-card-title { margin: 8px 0 0; font-size: 28px; font-weight: 700; color: #151515; font-family: "Montserrat", sans-serif; line-height: 1.15; }
.news-card-title a { color: inherit; text-decoration: none; }
.news-card-excerpt { margin: 8px 0 0; font-size: 14px; color: #383b42; line-height: 1.35; font-family: "Montserrat", sans-serif; }
.news-card-link { margin-top: 10px; display: inline-flex; align-items: center; gap: 8px; color: #1664d7; font-size: 20px; font-weight: 700; text-decoration: none; font-family: "Montserrat", sans-serif; }

.news-single { margin: 40px 32px 70px; }
.news-single-wrap { max-width: 980px; margin: 0 auto; }
.news-single-title { margin: 8px 0 16px; font-family: "Unbounded", sans-serif; font-size: 42px; line-height: 1.15; color: #151515; }
.news-single-image { width: 100%; border-radius: 24px; display: block; margin: 0 0 18px; }
.news-single-content { font-family: "Montserrat", sans-serif; font-size: 18px; line-height: 1.55; color: #1f2022; }

@media (max-width: 1100px) { .news-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 900px) {
  .news-page, .news-single { margin: 24px 12px 44px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card-title { font-size: 22px; }
  .news-card-link { font-size: 18px; }
  .news-single-title { font-size: 28px; }
  .news-single-content { font-size: 15px; }
}

.details-construction-section {
			margin: 32px 56px 72px;
		}

		.details-construction-section h1,
		.details-construction-section h2 {
			margin: 0 0 26px;
			text-align: center;
			font-family: "Unbounded", sans-serif;
			font-size: 56px;
			font-weight: 600;
			color: #1b1f25;
			text-transform: uppercase;
			line-height: 1.05;
		}

		.details-construction-section .content {
			margin: 0;
			width: 100%;
			max-width: none;
		}

		.details-construction-section .content > div,
		.details-construction-section .construction-gallery-group {
			width: 100%;
			max-width: none;
		}

		.details-construction-section .construction-gallery-group + .construction-gallery-group {
			margin-top: 24px;
		}

		.details-construction-section .construction-gallery-groups-grid {
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			align-items: flex-start;
			gap: 14px;
		}

		.details-construction-section .construction-gallery-groups-grid .construction-gallery-group {
			flex: 0 0 calc(25% - 10.5px);
			/* max-width: calc(25% - 10.5px); */
			margin: 0;
		}

		.details-construction-section .construction-gallery-groups-grid .construction-gallery-grid {
			display: block;
		}

		.details-construction-section .construction-gallery-date {
			margin: 0 0 12px;
			font-family: "Montserrat", sans-serif;
			font-size: 20px;
			font-weight: 700;
			color: #242933;
			text-transform: none;
		}

		.details-construction-section .construction-gallery-grid {
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			align-items: flex-start;
			gap: 14px;
		}

		.details-construction-section .construction-gallery-grid .construction-gallery-item {
			flex: 0 0 calc(25% - 10.5px);
			/* max-width: calc(25% - 10.5px); */
		}

		.details-construction-section .construction-gallery-item {
			margin: 0;
			overflow: visible;
			background: transparent;
			border-radius: 0;
		}

		.details-construction-section .construction-gallery-item img {
			width: 100%;
			height: auto;
			object-fit: contain;
			display: block;
			transition: transform 0.35s ease;
		}

		.details-construction-section .construction-gallery-item:hover img {
			transform: scale(1.03);
		}

		@media (max-width: 1400px) {
			.details-construction-section {
				margin: 24px 20px 56px;
			}

			.details-construction-section h1,
			.details-construction-section h2 {
				font-size: 42px;
				margin-bottom: 20px;
			}

			.details-construction-section .construction-gallery-grid {
				gap: 12px;
			}

			.details-construction-section .construction-gallery-grid .construction-gallery-item {
				flex: 0 0 calc(33.333% - 8px);
				/* max-width: calc(33.333% - 8px); */
			}

			.details-construction-section .construction-gallery-groups-grid {
				gap: 12px;
			}

			.details-construction-section .construction-gallery-groups-grid .construction-gallery-group {
				flex: 0 0 calc(33.333% - 8px);
				/* max-width: calc(33.333% - 8px); */
			}

			.details-construction-section .construction-gallery-date {
				font-size: 18px;
			}
		}

		@media (max-width: 900px) {
			.details-construction-section {
				margin: 20px 12px 44px;
			}

			.details-construction-section h1,
			.details-construction-section h2 {
				font-size: 30px;
				margin-bottom: 14px;
			}

			.details-construction-section .construction-gallery-grid {
				gap: 8px;
			}

			.details-construction-section .construction-gallery-grid .construction-gallery-item {
				flex: 0 0 100%;
			}

			.details-construction-section .construction-gallery-groups-grid {
				gap: 8px;
			}

			.details-construction-section .construction-gallery-groups-grid .construction-gallery-group {
				flex: 0 0 100%;
			}

			.details-construction-section .construction-gallery-date {
				font-size: 15px;
				margin-bottom: 8px;
			}

			.details-construction-section .construction-gallery-group + .construction-gallery-group {
				margin-top: 16px;
			}
		}

@media  (max-width: 1920px) {
  .about-stat-number {
    font-size: 56px;
  }

  .about-stat-title {
    font-size: 35px;
  }
}

@media (max-width: 1850px) {
  .about-stat-title{
    font-size: 26px;
    
  }

  .nav-item {
    font-size: 14px;
    padding: 10px 10px;
  }

    .about-stat-number {
    font-size: 46px;
  }

  .about-stat-title {
    font-size: 28px;
  }
}

@media (max-width: 1500px) {

  .nav-item {
    font-size: 10px;
  }
}