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

a {
  text-decoration: none;
}

li {
  list-style: none;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  color: #2D3139;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1264px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Titillium Web", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
}
.btn--primary {
  border-radius: 99px;
  background: #739EC9;
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--neutral-white, #FFF);
  font-family: "Titillium Web";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}
@media (max-width: 1024px) {
  .btn--primary {
    padding: 10px 22px;
    font-size: 14px;
  }
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  width: 161px;
  height: 38px;
  text-decoration: none;
  line-height: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 480px) {
  .logo {
    width: 169px;
    height: 40px;
  }
}
.logo img {
  width: 100%;
  height: 100%;
  display: block;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  border-radius: 97px;
  background: #FFF;
  padding: 16px 0;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .header {
    border-bottom: 1px solid var(--border-default, #DBDEE4);
    background: var(--bg-primary, #FFF);
    padding: 12px 0;
    border-radius: 0;
  }
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: height 0.3s ease;
}
.header__nav {
  display: block;
}
@media (max-width: 800px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  list-style: none;
  gap: 24px;
  margin: 0;
  padding: 0;
}
@media (max-width: 1100px) {
  .header__nav-list {
    gap: 16px;
  }
}
.header__nav-link {
  transition: color 0.2s ease;
  position: relative;
  color: var(--neutral-900, #2D323B);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 800px) {
  .header__actions {
    display: none;
  }
}
.header__whatsapp {
  display: flex;
  align-items: center;
  gap: 4px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  color: #5CA77F;
  font-family: "Titillium Web", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
}
.header__whatsapp span {
  display: inline-block;
  line-height: 1;
}
.header__whatsapp img {
  display: block;
  width: 20px;
  height: 20px;
}
.header__burger {
  display: none;
  border-radius: 8px;
  background: var(--Dubai-blue, #739EC9);
  border: none;
  width: 38px;
  height: 38px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.15s ease;
  outline: none;
}
.header__burger img {
  display: block;
  width: 24px;
  height: 24px;
}
@media (max-width: 800px) {
  .header__burger {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.4s ease;
}
.mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
  transition: none;
}
.mobile-menu__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.mobile-menu.is-open .mobile-menu__backdrop {
  opacity: 1;
}
.mobile-menu__content {
  position: relative;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background-color: #ffffff;
  box-shadow: -8px 0 25px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  padding: 24px;
  z-index: 10;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.mobile-menu.is-open .mobile-menu__content {
  transform: translateX(0);
}
.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding-bottom: 20px;
}
.mobile-menu__close {
  background: none;
  border: none;
  font-size: 36px;
  line-height: 1;
  color: #2D3139;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s ease, transform 0.15s ease;
}
.mobile-menu__close:hover {
  color: #F26522;
  transform: scale(1.1);
}
.mobile-menu__close:active {
  transform: scale(0.9);
}
.mobile-menu__nav {
  margin-bottom: auto;
}
.mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu__link {
  font-family: "Titillium Web", sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #2D3139;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: block;
  padding: 8px 0;
}
.mobile-menu__link:hover {
  color: #F26522;
  padding-left: 4px;
}
.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
  border-top: 1px solid #EAEAEA;
  padding-top: 24px;
}
.mobile-menu__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Titillium Web", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #5CA77F;
  text-decoration: none;
  padding: 10px;
  border: 1px dashed rgba(92, 167, 127, 0.3);
  border-radius: 12px;
  transition: background-color 0.2s ease;
}
.mobile-menu__whatsapp img {
  width: 20px;
  height: 20px;
}
.mobile-menu__whatsapp:hover {
  background-color: rgba(92, 167, 127, 0.05);
}
.mobile-menu__cta {
  width: 100%;
  padding: 14px 28px;
}

.btn--accent {
  border-radius: 99px;
  background: #F26522;
  display: flex;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--neutral-white, #FFF);
  font-family: "Titillium Web";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  }
@media (max-width: 480px) {
  .btn--accent {
    width: 100%;
    padding: 12px 32px;
  }
}
.btn--outline {
  border-radius: 99px;
  border: 1px solid var(--txt-inverted, #FFF);
  display: flex;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--neutral-white, #FFF);
  font-family: "Titillium Web";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  }
@media (max-width: 480px) {
  .btn--outline {
    width: 100%;
    padding: 12px 32px;
  }
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.breadcrumbs__link {
  color: var(--txt-inverted, #FFF);
  font-family: "Golos Text";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.6;
}
.breadcrumbs__separator {
  width: 6px;
  height: 6px;
  background: #FFF;
  opacity: 0.4;
  border-radius: 50%;
}
.breadcrumbs__current {
  color: var(--txt-inverted, #FFF);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.hero {
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .hero {
    padding-top: 32px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 480px) {
  .hero {
    padding-top: 24px;
  }
}
.hero__card {
  height: 490px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-color: #739EC9;
  padding: 44px;
  display: flex;
}
@media (max-width: 1024px) {
  .hero__card {
    height: 430px;
  }
}
@media (max-width: 480px) {
  .hero__card {
    height: 480px;
    padding: 16px;
  }
}
.hero__content {
  max-width: 580px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 768px) {
  .hero__content {
    max-width: 100%;
    gap: 20px;
  }
}
.hero .block__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 480px) {
  .hero .block__inner {
    gap: 24px;
  }
}
.hero .title-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 480px) {
  .hero .title-block {
    gap: 16px;
  }
}
.hero__title {
  color: #ffffff;
  font-family: "Titillium Web", sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
    letter-spacing: -0.5px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .hero__title {
    font-size: 38px;
    letter-spacing: -0.38px;
    max-width: 513px;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 26px;
    letter-spacing: -0.26px;
  }
}
.hero__title--desktop {
  display: block;
}
@media (max-width: 480px) {
  .hero__title--desktop {
    display: none;
  }
}
.hero__title--mobile {
  display: none;
}
@media (max-width: 480px) {
  .hero__title--mobile {
    display: block;
  }
}
.hero__text {
  color: #ffffff;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}
@media (max-width: 1024px) {
  .hero__text {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .hero__text {
    font-size: 14px;
  }
}
.hero__text--desktop {
  display: block;
}
@media (max-width: 1024px) {
  .hero__text--desktop {
    display: none;
  }
}
.hero__text--tablet {
  display: none;
}
@media (max-width: 1024px) {
  .hero__text--tablet {
    display: block;
  }
}
.hero__actions {
  display: none;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
}
@media (min-width: 1025px) {
  .hero__actions {
    display: flex;
  }
}
@media (max-width: 1024px) {
  .hero__actions {
    display: flex;
  }
  .hero__actions .btn--accent {
    display: inline-flex;
  }
  .hero__actions .btn--outline {
    display: none;
  }
}
@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }
  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }
  .hero__actions .btn--outline {
    display: inline-flex;
  }
}

.contact-section {
  background-color: #ffffff;
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .contact-section {
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .contact-section {
    margin-bottom: 60px;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 304px 1fr;
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1025px) {
  .contact-sidebar {
    height: 100%;
  }
}
@media (max-width: 1024px) {
  .contact-sidebar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .contact-sidebar {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .contact-sidebar {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.contact-card {
  border-radius: 16px;
  background: var(--bg-secondary, #F3F4F6);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 1025px) {
  .contact-card {
    flex: 1;
    justify-content: center;
  }
}
@media (max-width: 1024px) {
  .contact-card {
    padding: 16px;
  }
}
.contact-card__label {
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
.contact-card__value {
  font-family: "Titillium Web", sans-serif;
  color: var(--txt-primary, #2D323B);
  word-break: break-all;
  font-size: 20px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.2px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .contact-card__value {
    font-size: 18px;
    letter-spacing: -0.18px;
  }
}
.contact-card__value--highlight {
  color: #F26522;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact-form-card {
  border-radius: 16px;
  background: var(--bg-secondary, #F3F4F6);
  padding: 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .contact-form-card {
    padding: 16px;
  }
}
.contact-form-card__title {
  font-family: "Titillium Web", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
    letter-spacing: -0.24px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.contact-form-card__divider {
  height: 1px;
  background-color: #DBDEE4;
  width: 100%;
  margin-bottom: 16px;
}
.contact-form-card__grid {
  display: grid;
  grid-template-columns: 2fr 1.7fr;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 16px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-form-card__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.contact-form-card_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  grid-column: 1;
  grid-row: 1/span 2;
}
@media (max-width: 900px) {
  .contact-form-card_row {
    grid-column: auto;
    grid-row: auto;
  }
}
@media (max-width: 600px) {
  .contact-form-card_row {
    grid-template-columns: 1fr;
    margin-bottom: 8px;
  }
}

.grid-name {
  grid-column: 1;
  grid-row: 1;
}
@media (max-width: 600px) {
  .grid-name {
    grid-column: auto;
    grid-row: auto;
  }
}

.grid-company {
  grid-column: 2;
  grid-row: 1;
}
@media (max-width: 600px) {
  .grid-company {
    grid-column: auto;
    grid-row: auto;
  }
}

.grid-phone {
  grid-column: 1;
  grid-row: 2;
}
@media (max-width: 600px) {
  .grid-phone {
    grid-column: auto;
    grid-row: auto;
  }
}

.grid-email {
  grid-column: 2;
  grid-row: 2;
}
@media (max-width: 600px) {
  .grid-email {
    grid-column: auto;
    grid-row: auto;
  }
}

.grid-service {
  grid-column: 1/span 2;
  grid-row: 3;
}
@media (max-width: 600px) {
  .grid-service {
    grid-column: auto;
    grid-row: auto;
  }
}

.grid-desc {
  grid-column: 2;
  grid-row: 1;
}
@media (max-width: 900px) {
  .grid-desc {
    grid-column: auto;
    grid-row: auto;
  }
}

.grid-file {
  grid-column: 2;
  grid-row: 2;
}
@media (max-width: 900px) {
  .grid-file {
    grid-column: auto;
    grid-row: auto;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.form-label {
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--oe-labels-primary, #111827);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.form-label .required-star {
  color: #F26522;
  margin-left: 1px;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.form-input {
  width: 100%;
  height: 44px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--oe-border-default, #E5E7EB);
  background: var(--bg-primary, #FFF);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.form-textarea {
  width: 100%;
  height: 130px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--oe-border-default, #E5E7EB);
  background: var(--bg-primary, #FFF);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  resize: none;
}
.form-textarea::-moz-placeholder {
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.form-textarea::placeholder {
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.select-wrapper {
  position: relative;
  width: 100%;
}
.select-wrapper select {
  width: 100%;
  height: 44px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--oe-border-default, #E5E7EB);
  background: var(--bg-primary, #FFF);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease;
}
.select-wrapper::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 11.667px;
  height: 6.667px;
  background: url("../images/select-chevron.svg") no-repeat center;
  background-size: contain;
  pointer-events: none;
}

.file-upload {
  width: 100%;
  height: 44px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--oe-border-default, #E5E7EB);
  background: var(--bg-primary, #FFF);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.file-upload__icon {
  flex-shrink: 0;
}
.file-upload__text {
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: hidden;
  color: var(--txt-primary, #2D323B);
  text-overflow: ellipsis;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.file-input-hidden {
  display: none;
}

.contact-form-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  border-top: 1px solid #DBDEE4;
  padding-top: 20px;
  gap: 20px;
}
@media (max-width: 768px) {
  .contact-form-card__footer {
    flex-direction: column;
    align-items: stretch;
  }
}
@media screen and (max-width: 480px) {
  .contact-form-card__footer {
    gap: 16px;
  }
}

.form-agreement {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  .form-agreement {
    align-items: start;
  }
}
.form-agreement__checkbox {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid var(--border-default, #DBDEE4);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  margin-top: -1px;
    transition: background-color 0.2s ease, border-color 0.2s ease, background-image 0.15s ease;
  outline: none;
}
.form-agreement__checkbox:checked {
  background-color: #739EC9;
  border-color: #739EC9;
}
.form-agreement__checkbox:checked::after {
  content: "";
  display: block;
  width: 10px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 8' fill='none'%3E%3Cpath d='M9 1L3.5 6.5L1 4' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.form-agreement__checkbox:focus-visible {
  outline: 2px solid rgba(115, 158, 201, 0.4);
  outline-offset: 2px;
}
.form-agreement__text {
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
.form-agreement__link {
  color: var(--Brand-primary, #F26522);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.form-submit-btn {
  padding: 15px 32px;
  color: var(--neutral-white, #FFF);
  font-family: "Titillium Web";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}
@media (max-width: 768px) {
  .form-submit-btn {
    width: 100%;
  }
}

.whatsapp-section {
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .whatsapp-section {
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .whatsapp-section {
    margin-bottom: 38px;
  }
}

.whatsapp-card {
  padding-right: 400px;
  border-radius: 16px;
  background: #DFF4DE;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
}
@media (max-width: 768px) {
  .whatsapp-card {
    flex-direction: column;
    padding: 32px 24px 0 24px;
    align-items: stretch;
    text-align: left;
  }
}
@media (max-width: 480px) {
  .whatsapp-card {
    padding: 24px;
  }
}
.whatsapp-card__content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .whatsapp-card__content {
    padding: 0;
    margin-bottom: 24px;
    max-width: 100%;
  }
}
.whatsapp-card__title {
  color: var(--txt-primary, #2D323B);
  font-family: "Titillium Web", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .whatsapp-card__title {
    font-size: 24px;
    letter-spacing: -0.24px;
    margin-bottom: 16px;
  }
}
.whatsapp-card__subtitle {
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 12px;
}
.whatsapp-card__link {
  color: #5CA77F;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
.whatsapp-card__text {
  max-width: 632px;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--txt-primary, #2D323B);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 44px;
}
@media (max-width: 1024px) {
  .whatsapp-card__text {
    font-size: 15px;
    margin-bottom: 24px;
  }
}
@media (max-width: 480px) {
  .whatsapp-card__text {
    font-size: 14px;
  }
}
.whatsapp-card__btn {
  border-radius: 99px;
  background: #5CA77F;
  color: #ffffff;
  padding: 12px 32px;
  font-family: "Titillium Web", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease;
}
@media (max-width: 768px) {
  .whatsapp-card__btn {
    width: 100%;
    max-width: 320px;
  }
}
.whatsapp-card__image-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: absolute;
  max-width: 319px;
  width: 100%;
  right: 96px;
  bottom: 0;
}
@media (max-width: 1024px) {
  .whatsapp-card__image-wrapper {
    max-width: 319px;
    right: 35px;
  }
}
@media (max-width: 768px) {
  .whatsapp-card__image-wrapper {
    position: relative;
    right: auto;
    max-width: 275px;
    margin: 0 auto;
    justify-content: center;
  }
}
.whatsapp-card__image {
  display: block;
  height: 364px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom right;
     object-position: bottom right;
}
@media (max-width: 768px) {
  .whatsapp-card__image {
    width: 100%;
    height: auto;
    max-height: 281px;
    -o-object-position: bottom center;
       object-position: bottom center;
  }
}

.discuss-section {
  background-color: #ffffff;
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .discuss-section {
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .discuss-section {
    margin-bottom: 60px;
  }
}

.discuss-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 38px;
  align-items: center;
}
@media (max-width: 768px) {
  .discuss-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
}

.discuss-content {
  display: flex;
  flex-direction: column;
}

.discuss-title {
  color: var(--txt-primary, #2D323B);
  font-family: "Titillium Web", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
@media (max-width: 480px) {
  .discuss-title {
    font-size: 24px;
    letter-spacing: -0.24px;
  }
}

.discuss-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #DBDEE4;
}

.discuss-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #DBDEE4;
}
.discuss-item:last-child {
  border: none;
  padding-bottom: 0;
}
.discuss-item__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.discuss-item__text {
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--txt-primary, #2D323B);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.discuss-image-wrapper {
  width: 100%;
  min-height: 400px;
  height: 100%;
  display: flex;
}
@media (max-width: 480px) {
  .discuss-image-wrapper {
    min-height: 298px;
  }
}

.discuss-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  display: block;
}

.steps-section {
  background-color: #ffffff;
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .steps-section {
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .steps-section {
    margin-bottom: 60px;
  }
}
.steps-section--workflow .section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .steps-section--workflow .section-title {
    margin-bottom: 16px;
  }
}

.steps-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px 0;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0.24px;
  color: var(--txt-primary, #2D323B);
}
.steps-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F26522;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .steps-eyebrow {
    margin-bottom: 12px;
  }
}

.steps-lead {
  max-width: 980px;
  margin: 0 0 40px 0;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  color: var(--txt-primary, #2D323B);
}
@media (max-width: 768px) {
  .steps-lead {
    font-size: 15px;
    margin-bottom: 28px;
  }
}

.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
}
@media (max-width: 768px) {
  .steps-container {
    flex-direction: column;
    align-items: stretch;
  }
}

.step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding-right: 24px;
}
.step-item:last-child {
  padding-right: 0;
}
.step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 40px;
  width: calc(100% - 40px);
  height: 1px;
  background-color: #739EC9;
  z-index: 1;
}
@media (max-width: 768px) {
  .step-item {
    flex-direction: row;
    align-items: flex-start;
    padding-right: 0;
    padding-bottom: 32px;
    gap: 20px;
  }
  .step-item:last-child {
    padding-bottom: 0;
  }
  .step-item:not(:last-child)::after {
    top: 40px;
    left: 20px;
    width: 2px;
    height: calc(100% - 40px);
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .step-item:not(:last-child)::after {
    top: 32px;
    left: 16px;
    height: calc(100% - 32px);
  }
}

.step-circle {
  width: 50px;
  height: 50px;
  border-radius: 143px;
  background: var(--Dubai-blue, #739EC9);
  color: var(--txt-inverted, #FFF);
  font-family: "Titillium Web", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.26px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .step-circle {
    width: 32px;
    height: 32px;
    margin-bottom: 0;
    font-size: 16px;
  }
}

.step-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step-title {
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--txt-primary, #2D323B);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .step-title {
    font-size: 16px;
  }
}

.step-description {
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  max-width: 282px;
}
@media (max-width: 768px) {
  .step-description {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    max-width: 100%;
  }
}

.section-title {
  color: var(--txt-primary, #2D323B);
  font-family: "Titillium Web", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
    letter-spacing: -0.28px;
    margin-bottom: 24px;
  }
}
@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
    letter-spacing: -0.24px;
    margin-bottom: 20px;
  }
}

.section-subtitle {
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  color: #525A6B;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  margin-top: -16px;
  margin-bottom: 40px;
  max-width: 800px;
}
@media (max-width: 768px) {
  .section-subtitle {
    font-size: 15px;
    margin-top: -12px;
    margin-bottom: 32px;
  }
}
@media (max-width: 480px) {
  .section-subtitle {
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 24px;
  }
}

.uae-section {
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .uae-section {
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .uae-section {
    margin-bottom: 60px;
  }
}

.uae-grid {
  display: flex;
  gap: 50px;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .uae-grid {
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .uae-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}
.uae-grid .section-title {
  margin-bottom: 24px;
}

.uae-header {
  grid-area: header;
}
@media (max-width: 768px) {
  .uae-header {
    width: 100%;
    order: 1;
  }
}

.uae_inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
  width: 575px;
}
@media (max-width: 1024px) {
  .uae_inner {
    width: calc(50% - 16px);
  }
}
@media (max-width: 768px) {
  .uae_inner {
    display: contents;
  }
}

.uae-subtitle {
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .uae-subtitle {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 0;
  }
}

.uae-card-wrapper {
  grid-area: card;
}
@media (max-width: 768px) {
  .uae-card-wrapper {
    width: 100%;
    order: 3;
  }
}

.company-card {
  background-color: #739EC9;
  border-radius: 16px;
  padding: 24px;
  color: #ffffff;
}
@media (max-width: 480px) {
  .company-card {
    padding: 16px;
  }
}
.company-card__title {
  color: #ffffff;
  font-family: "Titillium Web", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.24px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .company-card__title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.company-card__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.company-card__item {
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  color: #ffffff;
}
.company-card__key {
  font-weight: 600;
  display: inline;
}
.company-card__value {
  font-weight: 400;
  display: inline;
}
.company-card__value br {
  display: none;
}

.uae-map-wrapper {
  grid-area: map;
  width: 575px;
  height: 435px;
  display: flex;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .uae-map-wrapper {
    width: calc(50% - 16px);
    height: auto;
  }
}
@media (max-width: 768px) {
  .uae-map-wrapper {
    width: 100%;
    height: auto;
    max-height: none;
    order: 2;
  }
}

.uae-map-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  display: block;
}
@media (max-width: 768px) {
  .uae-map-image {
    height: auto;
    max-height: none;
  }
}

.footer {
  border-radius: 24px 24px 0 0;
  background: #2D323B;
  padding: 60px 0;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .footer {
    padding-bottom: 73px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 20px 0 50px 0;
  }
}

.footer-cta {
  border-radius: 30px;
  background: #F26522;
  padding: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .footer-cta {
    padding: 32px;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .footer-cta {
    padding: 24px;
    margin-bottom: 38px;
    gap: 24px;
    border-radius: 16px;
    flex-direction: column;
    text-align: start;
  }
}
.footer-cta__content {
  flex: 1;
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
  max-width: 536px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .footer-cta__content {
    max-width: 424px;
  }
}
@media (max-width: 768px) {
  .footer-cta__content {
    max-width: 100%;
    align-items: center;
  }
}
.footer-cta__title {
  color: #ffffff;
  font-family: "Titillium Web", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer-cta__title--desktop {
  display: block;
}
@media (max-width: 1024px) {
  .footer-cta__title--desktop {
    display: none;
  }
}
.footer-cta__title--mobile {
  display: none;
}
@media (max-width: 1024px) {
  .footer-cta__title--mobile {
    display: block;
  }
}
@media (max-width: 480px) {
  .footer-cta__title {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
.footer-cta__description {
  color: var(--txt-inverted, #FFF);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
.footer-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .footer-cta__actions {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
}
.footer-cta__btn {
  width: 536px;
  display: flex;
  align-items: center;
  padding: 37px 5px 37px 91px;
  border-radius: 1000px;
  background: var(--bg-primary, #FFF);
  position: relative;
  text-align: center;
  color: var(--txt-primary, #2D323B);
  font-family: "Titillium Web", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.24px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .footer-cta__btn {
    width: 424px;
    padding-left: 50px;
  }
}
@media (max-width: 768px) {
  .footer-cta__btn {
    width: 100%;
    font-size: 16px;
    letter-spacing: -0.16px;
  }
}
@media (max-width: 480px) {
  .footer-cta__btn {
    padding: 21px 5px 21px 24px;
  }
}
.footer-cta__btn-text--desktop {
  display: inline-block;
}
@media (max-width: 1024px) {
  .footer-cta__btn-text--desktop {
    display: none;
  }
}
@media (max-width: 480px) {
  .footer-cta__btn-text--desktop {
    padding-left: 0;
  }
}
.footer-cta__btn-text--mobile {
  display: none;
}
@media (max-width: 1024px) {
  .footer-cta__btn-text--mobile {
    display: inline-block;
  }
}
.footer-cta__btn-text--green {
  color: #5CA77F;
  padding-left: 48px;
}
@media (max-width: 1024px) {
  .footer-cta__btn-text--green {
    padding-left: 24px;
  }
}
@media (max-width: 768px) {
  .footer-cta__btn-text--green {
    padding-left: 0;
  }
}
.footer-cta__btn-icon {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 90px;
  height: calc(100% - 10px);
  border-radius: 50%;
  background-color: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .footer-cta__btn-icon {
    width: 48px;
  }
}
.footer-cta__btn-icon svg,
.footer-cta__btn-icon img {
  display: block;
}
@media (max-width: 768px) {
  .footer-cta__btn-icon svg,
  .footer-cta__btn-icon img {
    width: 20px;
    height: 20px;
  }
}

.footer-bg-logo {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  pointer-events: none;
  z-index: 1;
}
.footer-bg-logo__text {
  width: 80%;
  max-width: 980px;
  height: auto;
}
.footer-bg-logo__plus {
  width: 15%;
  max-width: 190px;
  height: auto;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .footer-grid {
    gap: 24px;
    margin-bottom: 50px;
  }
}
@media (max-width: 900px) {
  .footer-grid {
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    gap: 24px;
    margin-bottom: 223px;
    flex-direction: column;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .footer-col--info {
    order: 4;
  }
}
@media (max-width: 768px) {
  .footer-col--services {
    order: 2;
  }
}
@media (max-width: 768px) {
  .footer-col--company {
    order: 3;
  }
}
@media (max-width: 768px) {
  .footer-col--contacts {
    order: 1;
  }
}

.footer-info-text {
  color: var(--txt-tertiary, #929BAC);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 15px;
  max-width: 310px;
}
@media (max-width: 768px) {
  .footer-info-text {
    max-width: 100%;
  }
}

.footer-copyright {
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--txt-tertiary, #929BAC);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: -moz-fit-content;
  width: fit-content;
}

.footer-legal-links {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-col-title {
  color: #929BAC;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
    text-transform: uppercase;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .footer-col-title {
    margin-bottom: 12px;
  }
}

.footer-col-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-list li,
.footer-col-list a {
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1024px) {
  .footer-col-list {
    gap: 9px;
  }
}

.footer-link {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  color: var(--txt-tertiary, #929BAC);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer-col-list .footer-link {
  color: #ffffff;
  font-size: 16px;
  line-height: 130%;
}

.bullet-block {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.footer-contacts-card {
  width: 288px;
  background: rgba(243, 244, 246, 0.05);
  border-radius: 12px;
  padding: 12px;
}

.footer-contacts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contacts-item {
  align-items: flex-start;
  gap: 12px;
}

.footer-contacts-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #F26522;
  flex-shrink: 0;
}

.footer-contacts-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contacts-label {
  color: var(--border-default, #DBDEE4);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
    letter-spacing: 0.24px;
}

.footer-contacts-value {
  color: var(--txt-inverted, #FFF);
  font-family: "Golos Text";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
}

.footer-bg-logo {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  pointer-events: none;
  z-index: 1;
}
.footer-bg-logo__text {
  width: 80%;
  max-width: 980px;
  height: auto;
}
.footer-bg-logo__plus {
  width: 15%;
  max-width: 190px;
  height: auto;
}

.filter-options {
  padding: 50px 0 100px 0;
}
@media (max-width: 1025px) {
  .filter-options {
    padding: 80px 0 80px 0;
  }
}
@media (max-width: 480px) {
  .filter-options {
    padding: 60px 0 60px 0;
  }
}
.filter-options__title {
  color: #2D323B;
  font-family: "Titillium Web", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .filter-options__title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
.filter-options__card {
  border-radius: 16px;
  background: var(--bg-Dubai, #F4F6F8);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) minmax(180px, auto);
  gap: 16px;
  align-items: flex-end;
}
@media (max-width: 1024px) {
  .filter-options__card {
    padding: 24px;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .filter-options__card {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 16px;
    border-radius: 16px;
  }
}

.filter-group {
  display: flex;
  flex-direction: column;
}
.filter-group--btn {
  justify-content: flex-end;
}

.filter-label {
  color: var(--oe-labels-primary, #111827);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 6px;
}

.filter-select-wrapper {
  position: relative;
  width: 100%;
}

.filter-select {
  width: 100%;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--oe-border-default, #E5E7EB);
  background: var(--txt-inverted, #FFF);
  padding: 12px;
  color: var(--oe-labels-tertiary, #9CA3AF);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.filter-select:focus {
  outline: none;
  border-color: #F26522;
  box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.15);
}
.filter-select option {
  background: #FFFFFF;
  color: #2D323B;
}

.filter-select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filter-clear-btn {
  height: 44px;
  width: 100%;
  border-radius: 8px;
  background: var(--border-default, #DBDEE4);
  border: none;
  color: var(--txt-tertiary, #929BAC);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.filter-clear-btn:hover {
  background-color: #D5D9E2;
  color: #2D323B;
}
.filter-clear-btn.is-active {
  background-color: #F26522;
  color: #FFFFFF;
}

.projects-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}
@media (max-width: 1025px) {
  .projects-list {
    gap: 16px;
  }
}

.project-card {
  border-radius: 20px;
  background: #F3F4F6;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}
@media (max-width: 950px) {
  .project-card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .project-card {
    padding: 4px;
  }
}
.project-card__info {
  border-radius: 16px;
  background: var(--bg-primary, #FFF);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .project-card__info {
    padding: 20px;
    border-radius: 12px;
  }
}
.project-card__title {
  color: #2D323B;
  font-family: "Titillium Web", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.24px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #DBDEE4;
  order: 1;
}
@media (max-width: 480px) {
  .project-card__title {
    font-size: 20px;
    margin-bottom: 16px;
    padding-bottom: 12px;
  }
}
.project-card__section {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #DBDEE4;
}
@media (max-width: 768px) {
  .project-card__section {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .project-card__section.project-card__section--solution {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.project-card__section--challenge {
  order: 2;
}
@media (max-width: 768px) {
  .project-card__section--challenge {
    order: 3;
  }
}
.project-card__section--solution {
  order: 3;
}
@media (max-width: 768px) {
  .project-card__section--solution {
    order: 4;
  }
}
.project-card__label {
  color: var(--txt-secondary, #525A6B);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-transform: uppercase;
  display: block;
}
@media (max-width: 480px) {
  .project-card__label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--txt-primary, #2D323B);
  }
  .project-card__label::first-letter {
    text-transform: uppercase;
  }
}
.project-card__text {
  color: var(--txt-primary, #2D323B);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.project-card .metrics_block {
  display: flex;
  align-items: center;
  gap: 16px;
}
.project-card__metrics {
  display: flex;
  align-items: center;
  gap: 71px;
  margin-bottom: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #DBDEE4;
  order: 4;
}
@media (max-width: 768px) {
  .project-card__metrics {
    order: 2;
    margin-top: 0;
    margin-bottom: 16px;
    gap: 16px;
    padding-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .project-card__metrics {
    gap: 32px;
    margin-bottom: 16px;
    padding-bottom: 12px;
  }
}
.project-card__metric {
  display: flex;
  align-items: end;
  gap: 10px;
}
@media (max-width: 768px) {
  .project-card__metric {
    flex-direction: column;
    align-items: start;
    gap: 4px;
  }
}
.project-card__metric-value {
  color: var(--Brand-primary, #F26522);
  font-family: "Titillium Web", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.24px;
  display: block;
}
@media (max-width: 768px) {
  .project-card__metric-value {
    font-size: 20px;
    letter-spacing: -0.2px;
  }
}
.project-card__metric-divider {
  width: 1px;
  height: 26px;
  background-color: #DBDEE4;
}
@media (max-width: 768px) {
  .project-card__metric-divider {
    height: 42px;
  }
}
.project-card__system {
  background-color: #739EC9;
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--txt-inverted, #FFF);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  margin-top: auto;
  order: 5;
}
.project-card__system strong {
  font-weight: 600;
}
@media (max-width: 1025px) {
  .project-card__system {
    margin-top: 16px;
  }
}
@media (max-width: 768px) {
  .project-card__system {
    display: none !important;
  }
}
.project-card__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
}
@media (max-width: 768px) {
  .project-card__media {
    min-height: 340px;
  }
}
.project-card .desktop-only {
  display: inline-block;
}
@media (max-width: 768px) {
  .project-card .desktop-only {
    display: none !important;
  }
}
.project-card .mobile-only {
  display: none !important;
}
@media (max-width: 768px) {
  .project-card .mobile-only {
    display: inline-block !important;
  }
}
.project-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  display: block;
}
.project-card__tags {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  .project-card__tags {
    top: 16px;
    left: 16px;
  }
}

.project-tag {
  border-radius: 143px;
  background: var(--txt-inverted, #FFF);
  padding: 5px 10px;
  color: var(--txt-primary, #2D323B);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  text-transform: uppercase;
  white-space: nowrap;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
@media (max-width: 1025px) {
  .pagination {
    margin-top: 16px;
  }
}
.pagination__middle-numbers {
  display: flex;
  align-items: center;
}
.pagination__item {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1F2937;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.pagination__item:hover:not(.pagination__item--active) {
  background-color: #EBF2FA;
  color: #1F2937;
}
.pagination__item--active {
  background-color: #739EC9;
  color: #FFFFFF;
  cursor: default;
}
.pagination__ellipsis {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1F2937;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.pagination__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease;
}
.pagination__arrow:hover:not(.pagination__arrow--disabled) {
  color: #739EC9;
}
.pagination__arrow--disabled {
  color: #CBD5E1;
  cursor: not-allowed;
  pointer-events: none;
}
@media (max-width: 480px) {
  .pagination__arrow {
    width: 32px;
    height: 32px;
  }
}

.features-section {
  padding-top: 16px;
  background-color: #FFFFFF;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .features-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
.features-grid__left {
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .features-grid__left {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .features-grid__left {
    grid-column: 1/-1;
  }
}
@media (max-width: 480px) {
  .features-grid__left {
    grid-template-columns: 1fr;
  }
}
.features-grid__left--col-flow {
  grid-auto-flow: column;
  grid-template-rows: repeat(2, 1fr);
}
@media (max-width: 480px) {
  .features-grid__left--col-flow {
    grid-auto-flow: row;
    grid-template-rows: none;
  }
}
.features-grid__right {
  display: flex;
  height: 100%;
}
@media (max-width: 768px) {
  .features-grid__right {
    grid-column: 1/-1;
    height: auto;
  }
}

.feature-card {
  border-radius: 16px;
  background: var(--bg-Dubai, #F4F6F8);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .feature-card {
    padding: 20px;
    border-radius: 12px;
  }
}
.feature-card__text {
  color: var(--txt-primary, #2D323B);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin: 0;
}
.feature-card__check {
  width: 20px;
  height: 20px;
}
.feature-card .highlight-orange {
  color: #F26522;
}

.blue-feature-card {
  border-radius: 16px;
  background: #739EC9;
  padding: 24px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .blue-feature-card {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .blue-feature-card {
    padding: 20px;
    border-radius: 12px;
  }
}
.blue-feature-card__text {
  color: var(--txt-inverted, #FFF);
  font-family: "Titillium Web";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.24px;
  text-transform: uppercase;
  margin: 0;
}

.why-dubai {
  padding-top: 0;
  padding-bottom: 100px;
  background-color: #FFFFFF;
}
@media (max-width: 1024px) {
  .why-dubai {
    padding-bottom: 80px;
  }
}
@media (max-width: 480px) {
  .why-dubai {
    padding-bottom: 60px;
  }
}
.why-dubai__grid {
  display: flex;
  gap: 32px;
  align-items: stretch;
}
.why-dubai__grid > * {
  min-width: 0;
}
@media (max-width: 1024px) {
  .why-dubai__grid {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .why-dubai__grid {
    flex-direction: column;
    gap: 24px;
  }
}
.why-dubai__media {
  width: 100%;
  display: flex;
}
@media (max-width: 768px) {
  .why-dubai__media {
    order: 2;
  }
}
.why-dubai__image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 480px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
@media (max-width: 1024px) {
  .why-dubai__image-wrapper {
    min-height: 420px;
  }
}
@media (max-width: 768px) {
  .why-dubai__image-wrapper {
    min-height: 380px;
  }
}
@media (max-width: 480px) {
  .why-dubai__image-wrapper {
    min-height: 320px;
    border-radius: 12px;
  }
}
.why-dubai__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.why-dubai__badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  border-radius: 16px;
  background: var(--bg-primary, #FFF);
  padding: 20px 24px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .why-dubai__badge {
    padding: 16px;
    border-radius: 16px;
  }
}
.why-dubai__badge-text {
  color: var(--txt-primary, #2D323B);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
    margin: 0;
}
@media (max-width: 480px) {
  .why-dubai__badge-text {
    font-size: 15px;
  }
}
.why-dubai__info {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1025px) {
  .why-dubai__info {
    max-width: 425px;
  }
}
@media (max-width: 768px) {
  .why-dubai__info {
    order: 1;
  }
}
.why-dubai__title {
  color: var(--txt-primary, #2D323B);
  font-family: "Titillium Web", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  margin: 0 0 24px 0;
}
@media (max-width: 768px) {
  .why-dubai__title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
.why-dubai__description {
  color: var(--txt-primary, #2D323B);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
    margin: 0 0 20px 0;
}
@media (max-width: 1025px) {
  .why-dubai__description {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .why-dubai__description {
    margin-bottom: 16px;
  }
}
.why-dubai__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #DBDEE4;
}
.why-dubai__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #DBDEE4;
}
@media (max-width: 768px) {
  .why-dubai__item {
    padding: 16px 0;
    gap: 12px;
  }
}
.why-dubai__icon-wrapper {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.why-dubai__icon-wrapper svg {
  display: block;
  width: 20px;
  height: 20px;
}
.why-dubai__item-content {
  display: flex;
  flex-direction: column;
}
.why-dubai__item-title {
  color: var(--txt-primary, #2D323B);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin: 0;
}
.why-dubai__item-text {
  color: var(--txt-primary, #2D323B);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 6px 0 0 0;
}
@media (max-width: 768px) {
  .why-dubai__item-text {
    font-size: 13px;
  }
}

.apply-section {
  background-color: #739EC9;
  padding: 100px 0;
}
@media (max-width: 1025px) {
  .apply-section {
    padding: 80px 0;
  }
}
.apply-section__title {
  color: #FFFFFF;
  font-family: "Titillium Web", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  margin: 0 0 24px 0;
}
@media (max-width: 768px) {
  .apply-section__title {
    font-size: 24px;
    letter-spacing: -0.24px;
  }
}
.apply-section--spf {
  background-color: #F4F6F8;
  border-radius: 30px;
}
@media screen and (max-width: 480px) {
  .apply-section--spf {
    padding: 60px 0;
  }
  .apply-section--spf .apply-card__text {
    font-size: 14px;
    margin-bottom: 0;
  }
  .apply-section--spf .apply-card__title {
    color: var(--txt-primary, #2D323B);
    font-family: "Titillium Web", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: -0.18px;
    text-transform: uppercase;
    margin-bottom: 8px;
    padding-bottom: 8px;
  }
  .apply-section--spf .apply-card__title br {
    display: none;
  }
  .apply-section--spf .apply-grid {
    gap: 12px;
  }
}
.apply-section--spf .apply-section__title {
  color: var(--txt-primary, #2D323B);
}

.apply-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 950px) {
  .apply-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.apply-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}
.apply-card--full {
  grid-column: span 2;
  flex-direction: row;
}
@media (max-width: 950px) {
  .apply-card--full {
    grid-column: span 1;
    flex-direction: column;
  }
}
.apply-card--full .apply-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.apply-card--full .apply-card__media {
  flex: 1;
  height: 100%;
  min-height: 320px;
  max-height: 400px;
  border-radius: 16px;
}
@media (max-width: 950px) {
  .apply-card--full .apply-card__media {
    height: 240px;
    min-height: 200px;
    max-height: 280px;
    border-radius: 16px;
  }
}
.apply-card__info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .apply-card__info {
    padding: 16px;
  }
}
.apply-card__title {
  color: var(--txt-primary, #2D323B);
  font-family: "Titillium Web";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
    letter-spacing: -0.24px;
  text-transform: uppercase;
  margin: 0 0 16px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #DBDEE4;
}
@media (max-width: 768px) {
  .apply-card__title {
    font-size: 20px;
    letter-spacing: -0.2px;
  }
}
.apply-card__text {
  color: var(--txt-primary, #2D323B);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  margin: 0;
  margin-bottom: 16px;
}
.apply-card__text strong {
  font-weight: 600;
}
@media (max-width: 768px) {
  .apply-card__text {
    font-size: 16px;
  }
}
.apply-card__media {
  position: relative;
  width: 100%;
  height: 260px;
  display: flex;
  overflow: hidden;
  border-radius: 16px;
  margin-top: auto;
}
@media (max-width: 950px) {
  .apply-card__media {
    height: 220px;
  }
}
@media (max-width: 480px) {
  .apply-card__media {
    height: 169px;
  }
}
.apply-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.apply-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--txt-secondary, #525A6B);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.apply-card__badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #F26522;
  flex-shrink: 0;
}
.apply-card__footer {
  color: var(--txt-primary, #2D323B);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin: 16px 0 0 0;
  padding-top: 16px;
  border-top: 1px solid #DBDEE4;
}
.apply-card__footer strong {
  font-weight: 500;
}
@media (max-width: 768px) {
  .apply-card__footer {
    font-size: 16px;
    padding-top: 8px;
    margin-top: 8px;
  }
}
.apply-card--spf .apply-card__media {
  height: 234px;
}
@media (max-width: 950px) {
  .apply-card--spf .apply-card__media {
    height: 220px;
  }
}
@media (max-width: 480px) {
  .apply-card--spf .apply-card__media {
    height: 190px;
  }
}
@media (min-width: 951px) {
  .apply-card--spf .apply-card__title {
    min-height: 52.8px;
    box-sizing: content-box;
  }
  .apply-card--spf .apply-card__footer {
    margin-top: auto;
    min-height: 46.8px;
    box-sizing: content-box;
  }
}
.apply-card--overlay {
  grid-column: span 2;
  position: relative;
  display: block;
}
@media (max-width: 950px) {
  .apply-card--overlay {
    grid-column: span 1;
  }
}
.apply-card--overlay .apply-card__media {
  width: 100%;
  height: 390px;
  margin-top: 0;
  border-radius: 16px;
}
@media (max-width: 950px) {
  .apply-card--overlay .apply-card__media {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .apply-card--overlay .apply-card__media {
    height: 200px;
  }
}
.apply-card--overlay .apply-card__info {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 24px;
  width: 584px;
  max-width: calc(100% - 48px);
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 24px;
  justify-content: center;
}
@media (max-width: 768px) {
  .apply-card--overlay .apply-card__media {
    height: 500px;
  }
  .apply-card--overlay .apply-card__info {
    top: auto;
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    max-width: none;
    border-radius: 12px;
    padding: 16px;
  }
}

.apply-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #739EC9;
  color: var(--neutral-white, #FFF);
  font-family: "Titillium Web", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  text-decoration: none;
  border-radius: 99px;
  padding: 15px 32px;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .apply-btn {
    width: 100%;
  }
}
.apply-btn--inline {
  margin-top: 28px;
  align-self: flex-start;
}
.apply-btn--desktop {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 2;
}
@media (max-width: 768px) {
  .apply-btn--desktop {
    display: none !important;
  }
}
.apply-btn--mobile {
  display: none;
  margin-top: 16px;
  width: 100%;
  text-align: center;
}
@media (max-width: 768px) {
  .apply-btn--mobile {
    display: inline-flex;
  }
}

.leaks-section {
  background-color: #F4F6F8;
  padding: 100px 0;
}
@media (max-width: 1024px) {
  .leaks-section {
    padding: 80px 0;
  }
}
@media (max-width: 480px) {
  .leaks-section {
    padding: 60px 0;
  }
}

.leaks-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}
@media (max-width: 1024px) {
  .leaks-grid {
    flex-direction: column;
    gap: 0;
  }
}

.leaks-left {
  display: flex;
  flex-direction: column;
  flex: 0 1 437px;
  min-width: 0;
}
@media (max-width: 1024px) {
  .leaks-left {
    flex: 1 1 auto;
    width: 100%;
  }
}

.leaks-title {
  max-width: 384px;
  color: var(--txt-primary, #2D323B);
  font-family: "Titillium Web", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  margin: 0 0 32px 0;
}
@media (max-width: 1024px) {
  .leaks-title {
    letter-spacing: -0.28px;
    margin-bottom: 24px;
    max-width: unset;
  }
}
@media (max-width: 480px) {
  .leaks-title {
    font-size: 24px;
  }
}

.leaks-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 0 1 573px;
  min-width: 0;
}
@media (max-width: 1024px) {
  .leaks-right {
    flex: 1 1 auto;
    width: 100%;
  }
}

.leaks-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  width: 100%;
}
@media (max-width: 1024px) {
  .leaks-items-grid {
    -moz-column-gap: 32px;
         column-gap: 32px;
    row-gap: 24px;
  }
}
@media (max-width: 480px) {
  .leaks-items-grid {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}

.leaks-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.leaks-item--full, .leaks-item:last-child:nth-child(odd) {
  grid-column: 1/-1;
}
.leaks-item--full .leaks-item__title, .leaks-item:last-child:nth-child(odd) .leaks-item__title {
  max-width: 100%;
}
@media (max-width: 480px) {
  .leaks-item--full, .leaks-item:last-child:nth-child(odd) {
    grid-column: span 1;
  }
}
.leaks-item__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #DBDEE4;
  width: 100%;
  box-sizing: border-box;
}
.leaks-item__dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}
.leaks-item__num {
  color: var(--txt-tertiary, #929BAC);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
.leaks-item__title {
  max-width: 271px;
  color: var(--txt-primary, #2D323B);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin: 0;
}
@media (max-width: 1024px) {
  .leaks-item__title {
    font-size: 18px;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .leaks-item__title {
    font-size: 16px;
  }
}

.leaks-blue-card {
  max-width: 437px;
  background-color: #739EC9;
  border-radius: 16px;
  padding: 24px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .leaks-blue-card {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .leaks-blue-card {
    padding: 16px;
    border-radius: 16px;
  }
}
.leaks-blue-card--desktop {
  margin-top: 64px;
}
@media (max-width: 1024px) {
  .leaks-blue-card--desktop {
    display: none !important;
  }
}
.leaks-blue-card--mobile {
  display: none;
}
@media (max-width: 1024px) {
  .leaks-blue-card--mobile {
    display: flex !important;
    margin-top: 8px;
    flex-direction: column;
  }
}
.leaks-blue-card__title {
  color: var(--txt-inverted, #FFF);
  font-family: "Titillium Web", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
    letter-spacing: -0.24px;
  text-transform: uppercase;
  margin: 0 0 40px 0;
}
@media (max-width: 1024px) {
  .leaks-blue-card__title {
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .leaks-blue-card__title {
    margin-bottom: 26px;
  }
}
.leaks-blue-card__text {
  color: var(--txt-inverted, #FFF);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin: 0;
}

.tech-specs {
  padding: 100px 0;
  background-color: #FFFFFF;
}
@media (max-width: 768px) {
  .tech-specs {
    padding: 60px 0;
  }
}
.tech-specs__title {
  color: var(--txt-primary, #2D323B);
  font-family: "Titillium Web", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}
@media (max-width: 768px) {
  .tech-specs__title {
    font-size: 24px;
    letter-spacing: -0.24px;
    margin-bottom: 16px;
  }
}
.tech-specs__card {
  background-color: #F3F4F6;
  border-radius: 16px;
  padding: 32px;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .tech-specs__card {
    border-radius: 16px;
    background: var(--bg-secondary, #F3F4F6);
    padding: 8px;
  }
}
.tech-specs__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 950px) {
  .tech-specs__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.tech-specs__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
}
@media (max-width: 950px) {
  .tech-specs__left {
    gap: 8px;
  }
}
.tech-specs__right {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  height: 100%;
}
@media (max-width: 768px) {
  .tech-specs__right {
    padding: 24px;
  }
}
.tech-specs__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.tech-specs__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #DBDEE4;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 140%;
  color: var(--txt-secondary, #525A6B);
}
@media (max-width: 768px) {
  .tech-specs__item {
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    padding: 8px 0;
  }
}
.tech-specs__item:first-child {
  padding-top: 0;
}
.tech-specs__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.tech-specs__item strong {
  color: var(--txt-primary, #2D323B);
  font-weight: 600;
}
.tech-specs__dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}

.tech-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-sizing: border-box;
  flex: 1;
}
@media (max-width: 480px) {
  .tech-card {
    padding: 24px;
  }
}
.tech-card__icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tech-card__icon-wrapper svg {
  width: 24px;
  height: 24px;
}
.tech-card__text {
  color: var(--txt-primary, #2D323B);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  margin: 0;
}
.tech-card__text strong {
  font-weight: 600;
}

.process-section {
  padding-bottom: 100px;
  background-color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .process-section .desktop {
    display: none;
  }
}
.process-section .laptop {
  display: none;
}
@media screen and (max-width: 1024px) {
  .process-section .laptop {
    display: block;
  }
}
.process-section--execution {
  padding-top: 0;
}
@media (max-width: 1024px) {
  .process-section--execution {
    padding-top: 40px;
  }
}
@media (max-width: 1024px) {
  .process-section {
    padding-bottom: 80px;
  }
}
@media (max-width: 480px) {
  .process-section {
    padding-bottom: 60px;
  }
}

.process-title {
  color: var(--txt-primary, #2D323B);
  font-family: "Titillium Web", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}
@media (max-width: 1024px) {
  .process-title {
    font-size: 28px;
    letter-spacing: -0.28px;
  }
}
@media (max-width: 480px) {
  .process-title {
    font-size: 24px;
    letter-spacing: -0.24px;
    margin-bottom: 12px;
  }
}

.process-subtitle {
  color: var(--txt-primary, #2D323B);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin: 0 0 40px 0;
  max-width: 800px;
}
@media (max-width: 1024px) {
  .process-subtitle {
    font-size: 15px;
    margin-bottom: 32px;
  }
}
@media (max-width: 480px) {
  .process-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }
}

.timeline-container {
  --tl-circle: 50px;
  --tl-gap: 32px;
  --tl-thickness: 3px;
  --tl-color: #739EC9;
  position: relative;
  width: 100%;
}
@media (max-width: 1024px) {
  .timeline-container {
    --tl-gap: 24px;
  }
}
@media (max-width: 480px) {
  .timeline-container {
    --tl-circle: 40px;
  }
}

.timeline-line {
  position: absolute;
  z-index: 1;
  top: calc(var(--tl-circle) / 2);
  left: calc(var(--tl-circle) / 2);
  right: calc((100% - 3 * var(--tl-gap)) / 4 - var(--tl-circle) / 2);
  height: var(--tl-thickness);
  transform: translateY(-50%);
  background-color: var(--tl-color);
}
@media (max-width: 480px) {
  .timeline-line {
    display: none;
  }
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--tl-gap);
  position: relative;
  z-index: 2;
}
@media (max-width: 480px) {
  .timeline-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.timeline-step {
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .timeline-step {
    position: relative;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 24px;
  }
  .timeline-step::before {
    content: "";
    position: absolute;
    top: var(--tl-circle);
    bottom: 0;
    left: calc(var(--tl-circle) / 2);
    width: var(--tl-thickness);
    transform: translateX(-50%);
    background-color: var(--tl-color);
  }
  .timeline-step:last-child {
    padding-bottom: 0;
  }
  .timeline-step:last-child::before {
    display: none;
  }
}

.timeline-circle {
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--Dubai-blue, #739EC9);
  display: flex;
  width: var(--tl-circle);
  height: var(--tl-circle);
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  color: #FFFFFF;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}
.timeline-circle svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 480px) {
  .timeline-circle {
    margin-bottom: 0;
    font-size: 15px;
  }
}

.timeline-content {
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .timeline-content {
    padding-top: calc((var(--tl-circle) - 24px) / 2);
  }
}

.timeline-step-title {
  color: var(--txt-primary, #2D323B);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin: 0 0 10px 0;
}
@media (max-width: 480px) {
  .timeline-step-title {
    font-size: 16px;
  }
}

.timeline-step-text {
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 130%;
  color: var(--txt-secondary, #2D323B);
  margin: 0;
}
@media (max-width: 480px) {
  .timeline-step-text {
    font-size: 14px;
  }
}

.orders {
  background: #F0F2F5;
  padding: 100px 0;
  margin-bottom: 100px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .orders {
    padding: 80px 0;
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .orders {
    padding: 60px 0;
    margin-bottom: 60px;
  }
}

.orders__eyebrow {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: "Titillium Web", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  color: var(--txt-primary, #2D323B);
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .orders__eyebrow {
    display: inline-flex;
  }
}

.orders__eyebrow-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}

.orders__title {
  margin-bottom: 24px;
}

.orders__title-text--mobile {
  display: none;
}

@media (max-width: 768px) {
  .orders__title-text--desktop {
    display: none;
  }
  .orders__title-text--mobile {
    display: inline;
  }
}
.orders__slider {
  margin-right: calc((100% - 100vw) / 2);
  overflow: hidden;
}

.orders__slide {
  width: 267px;
  height: auto;
}
@media (max-width: 1024px) {
  .orders__slide {
    width: 250px;
  }
}

.orders-card {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.orders-card__img {
  display: block;
  width: 100%;
  height: 345px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .orders-card__img {
    height: 382px;
    border-radius: 12px;
  }
}

.orders-card__caption {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .orders-card__caption {
    margin-top: 12px;
  }
}

.orders-card__dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  margin-top: 6px;
}

.orders-card__label {
  color: var(--txt-primary, #2D323B);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}

.orders-card__label--mobile {
  display: none;
}

@media (max-width: 1024px) {
  .orders-card__label--desktop {
    display: none;
  }
  .orders-card__label--mobile {
    display: inline;
  }
}
.orders--clients {
  margin-bottom: 0;
}
.orders--clients .orders__eyebrow {
  display: inline-flex;
}
.orders--clients .orders__slide {
  width: 260px;
}
@media (max-width: 1024px) {
  .orders--clients .orders__slide {
    width: 260px;
  }
}
@media (max-width: 768px) {
  .orders--clients .orders__slide {
    width: 260px;
  }
}
.orders--clients .orders-card__img {
  height: 345px;
}
@media (max-width: 768px) {
  .orders--clients .orders-card__img {
    height: 345px;
    border-radius: 16px;
  }
}

.local-projects {
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .local-projects {
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .local-projects {
    margin-bottom: 60px;
  }
}

.local-projects__wrap {
  position: relative;
}

.local-projects__slider {
  overflow: hidden;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .local-projects__slider {
    border-radius: 16px;
  }
}

.lp-card {
  display: flex;
  align-items: stretch;
  gap: 12px;
  padding: 12px;
  background: #F4F6F8;
  border-radius: 20px;
  min-height: 393px;
}
@media (max-width: 1024px) {
  .lp-card {
    min-height: 0;
  }
}
@media (max-width: 768px) {
  .lp-card {
    flex-direction: column;
    border-radius: 20px;
    padding: 4px;
    gap: 4px;
  }
}

.lp-card__info {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 24px;
}
@media (max-width: 768px) {
  .lp-card__info {
    flex: 0 0 auto;
    border-radius: 12px;
    padding: 20px 16px;
  }
}

.lp-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--txt-primary, #2D323B);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .lp-card__eyebrow {
    margin-bottom: 12px;
  }
}

.lp-card__dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}

.lp-card__title {
  font-family: "Titillium Web", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.24px;
  text-transform: uppercase;
  color: var(--txt-primary, #2D323B);
  margin: 0;
}
@media (max-width: 768px) {
  .lp-card__title {
    font-size: 20px;
    letter-spacing: -0.2px;
  }
}

.lp-card__divider {
  height: 1px;
  background: #E5E7EB;
  margin: 16px 0;
}
@media (max-width: 768px) {
  .lp-card__divider {
    margin: 12px 0;
  }
}

.lp-card__metrics {
  display: flex;
  align-items: stretch;
  gap: 24px;
}
@media (max-width: 768px) {
  .lp-card__metrics {
    gap: 16px;
  }
}

.lp-card__metric {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lp-card__metric + .lp-card__metric {
  padding-left: 24px;
  border-left: 1px solid #E5E7EB;
}
@media (max-width: 768px) {
  .lp-card__metric + .lp-card__metric {
    padding-left: 16px;
  }
}

.lp-card__metric-label {
  color: var(--txt-primary, #2D323B);
  font-family: "Golos Text";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media screen and (max-width: 480px) {
  .lp-card__metric-label {
    font-size: 12px;
  }
}

.lp-card__metric-value {
  color: var(--Brand-primary, #F26522);
  font-family: "Titillium Web", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.24px;
}
@media (max-width: 768px) {
  .lp-card__metric-value {
    font-size: 20px;
    letter-spacing: -0.2px;
  }
}

.lp-card__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-card__row {
  color: var(--txt-primary, #2D323B);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin: 0;
}
@media (max-width: 768px) {
  .lp-card__row {
    font-size: 14px;
  }
}
.lp-card__row strong {
  font-weight: 600;
}

.lp-card__media {
  flex: 1 1 50%;
  min-width: 0;
}
@media (max-width: 768px) {
  .lp-card__media {
    flex: 0 0 auto;
  }
}

.lp-card__img {
  display: block;
  width: 100%;
  height: 100%;
  height: 373px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
@media (max-width: 1024px) {
  .lp-card__img {
    min-height: 0;
  }
}
@media (max-width: 768px) {
  .lp-card__img {
    height: 208px;
    border-radius: 12px;
  }
}

.local-projects__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .local-projects__controls {
    justify-content: space-between;
  }
}

.lp-nav {
  position: absolute;
  top: 0;
  bottom: 27px;
  margin: auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  padding: 0;
  border: none;
  border-radius: 93px;
  border: 1px solid var(--border-default, #DBDEE4);
  background: var(--bg-secondary, #F3F4F6);
  color: var(--txt-primary, #2D323B);
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
.lp-nav:hover {
  background: #E5E7EB;
}
.lp-nav.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}
.lp-nav--prev {
  left: -56px;
}
.lp-nav--next {
  right: -56px;
}
@media (max-width: 1400px) {
  .lp-nav--prev {
    left: -12px;
  }
  .lp-nav--next {
    right: -12px;
  }
}
@media (max-width: 768px) {
  .lp-nav {
    position: static;
    margin: 0;
  }
  .lp-nav--prev, .lp-nav--next {
    left: auto;
    right: auto;
  }
}

.lp-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
}
.lp-pagination .swiper-pagination-bullet {
  width: 24px;
  height: 4px;
  margin: 0;
  opacity: 0.3;
  background: #2D323B;
  transition: background-color 0.2s ease;
  border-radius: 0;
}
.lp-pagination .swiper-pagination-bullet-active {
  width: 50px;
  height: 5px;
  background: #2D323B;
  opacity: 1;
}

.faq {
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .faq {
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .faq {
    margin-bottom: 60px;
  }
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 1024px) {
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.faq__title {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .faq__title {
    margin-bottom: 24px;
  }
}
@media (max-width: 480px) {
  .faq__title {
    margin-bottom: 20px;
  }
}

@media (max-width: 1024px) {
  .faq__list {
    border-top: 1px solid #E5E7EB;
  }
}

.faq-item + .faq-item {
  border-top: 1px solid #E5E7EB;
}
.faq-item:first-child .faq-item__head {
  padding-top: 0;
}
@media (max-width: 1024px) {
  .faq-item:first-child .faq-item__head {
    padding-top: 18px;
  }
}
@media (max-width: 768px) {
  .faq-item:first-child .faq-item__head {
    padding-top: 16px;
  }
}

.faq-item__head {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}
@media (max-width: 768px) {
  .faq-item__head {
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0;
  }
}

.faq-item__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #F0F2F5;
  transition: background-color 0.25s ease;
}
@media (max-width: 1024px) {
  .faq-item__icon {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 768px) {
  .faq-item__icon {
    width: 32px;
    height: 32px;
  }
}

.faq-item__icon-plus,
.faq-item__icon-close {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
@media (max-width: 768px) {
  .faq-item__icon-plus,
  .faq-item__icon-close {
    width: 20px;
    height: 20px;
  }
}

.faq-item__icon-plus {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__icon-close {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.faq-item.is-open .faq-item__icon,
.faq-item__head:focus-visible .faq-item__icon {
  background: #739EC9;
}

.faq-item.is-open .faq-item__icon-plus,
.faq-item__head:focus-visible .faq-item__icon-plus {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__icon-close,
.faq-item__head:focus-visible .faq-item__icon-close {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg);
}

@media (hover: hover) and (pointer: fine) {
  .faq-item__head:hover .faq-item__icon {
    background: #739EC9;
  }
  .faq-item__head:hover .faq-item__icon-plus {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .faq-item__head:hover .faq-item__icon-close {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
.faq-item__question {
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  color: var(--txt-primary, #2D323B);
}
@media (max-width: 768px) {
  .faq-item__question {
    font-size: 17px;
  }
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.is-open .faq-item__answer {
  grid-template-rows: 1fr;
}

.faq-item__answer-inner {
  overflow: hidden;
}

.faq-item__answer p {
  color: var(--txt-primary, #2D323B);
  font-family: "Golos Text";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin: 0;
  padding-bottom: 18px;
}
@media (max-width: 768px) {
  .faq-item__answer p {
    font-size: 15px;
    padding-bottom: 16px;
  }
}

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  flex-shrink: 0;
}

.local-projects__slider .swiper-slide {
  width: 100%;
}

.solutions {
  margin-bottom: 100px;
  background-color: #739EC9;
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1024px) {
  .solutions {
    padding: 80px 0;
    margin-bottom: 80px;
  }
}
@media (max-width: 480px) {
  .solutions {
    padding-top: 60px;
    padding-bottom: 251px;
    margin-bottom: 60px;
  }
}
.solutions__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .solutions__head {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.solutions__title {
  color: #FFFFFF;
  font-family: "Titillium Web", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 1024px) {
  .solutions__title {
    font-size: 28px;
    letter-spacing: -0.28px;
  }
}
@media (max-width: 480px) {
  .solutions__title {
    font-size: 24px;
    letter-spacing: -0.24px;
  }
}
.solutions__description {
  color: #FFFFFF;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  margin: 0;
}
@media (max-width: 480px) {
  .solutions__description {
    font-size: 15px;
  }
}
.solutions__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 480px) {
  .solutions__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.solution-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 588/287;
  display: block;
}
@media (max-width: 480px) {
  .solution-card {
    border-radius: 12px;
  }
}
.solution-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.solution-card__title {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  color: #FFFFFF;
  font-family: "Titillium Web", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.24px;
  text-transform: uppercase;
  margin: 0;
  padding: 24px;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .solution-card__title {
    font-size: 18px;
    letter-spacing: -0.18px;
    padding: 16px;
  }
}

.one-system {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: end;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .one-system {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 60px;
  }
}
.one-system__content {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .one-system__content {
    padding-bottom: 0;
  }
}
.one-system__title {
  color: #FFFFFF;
  font-family: "Titillium Web", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  margin: 0 0 24px 0;
}
@media (max-width: 1024px) {
  .one-system__title {
    font-size: 28px;
    letter-spacing: -0.28px;
  }
}
@media (max-width: 480px) {
  .one-system__title {
    font-size: 24px;
    letter-spacing: -0.24px;
  }
}
.one-system__lead {
  color: #FFFFFF;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
  margin: 0 0 16px 0;
}
.one-system__text {
  color: #FFFFFF;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  margin: 0 0 16px 0;
}
.one-system__text:last-of-type {
  margin-bottom: 0;
}
.one-system__text strong {
  font-weight: 600;
}
@media (max-width: 480px) {
  .one-system__text {
    font-size: 15px;
  }
}
.one-system__badge {
  width: 620px;
  margin-top: 149px;
  align-self: flex-start;
  border-radius: 16px;
  background-color: #F3F4F6;
  padding: 32px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
@media (max-width: 480px) {
  .one-system__badge {
    width: auto;
    padding: 24px;
    margin-top: 31px;
  }
}
.one-system__badge-text {
  color: var(--Dubai-blue, #739EC9);
  font-family: "Titillium Web";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
    letter-spacing: -0.24px;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 480px) {
  .one-system__badge-text {
    font-size: 19px;
    letter-spacing: -0.19px;
  }
}
.one-system__media {
  align-self: end;
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(975px, 67.7vw);
  aspect-ratio: 975/865;
  height: auto;
}
@media (max-width: 768px) {
  .one-system__media {
    width: auto;
    aspect-ratio: auto;
    bottom: 0;
    height: 442px;
    right: -57px;
  }
}
.one-system__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.heat-roof {
  padding-top: 0;
  padding-bottom: 100px;
  background-color: #FFFFFF;
}
@media (max-width: 1024px) {
  .heat-roof {
    padding-bottom: 80px;
  }
}
@media (max-width: 480px) {
  .heat-roof {
    padding-bottom: 60px;
  }
}
.heat-roof__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.heat-roof__grid > * {
  min-width: 0;
}
@media (max-width: 1024px) {
  .heat-roof__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.heat-roof__info {
  display: flex;
  flex-direction: column;
}
.heat-roof__title {
  color: var(--txt-primary, #2D323B);
  font-family: "Titillium Web", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}
@media (max-width: 768px) {
  .heat-roof__title {
    font-size: 24px;
    letter-spacing: -0.24px;
  }
}
.heat-roof__description {
  color: var(--txt-primary, #2D323B);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin: 0 0 24px 0;
}
@media (max-width: 768px) {
  .heat-roof__description {
    font-size: 15px;
    margin-bottom: 20px;
  }
}
.heat-roof__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #DBDEE4;
}
@media (max-width: 1024px) {
  .heat-roof__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    -moz-column-gap: 32px;
         column-gap: 32px;
    border-top: none;
  }
}
@media (max-width: 480px) {
  .heat-roof__list {
    display: block;
    border-top: 1px solid #DBDEE4;
  }
}
.heat-roof__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #DBDEE4;
}
@media (max-width: 1024px) {
  .heat-roof__item {
    border-top: 1px solid #DBDEE4;
    border-bottom: none;
  }
}
@media (max-width: 480px) {
  .heat-roof__item {
    border-top: none;
    border-bottom: 1px solid #DBDEE4;
  }
}
.heat-roof__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.heat-roof__icon svg {
  display: block;
  width: 20px;
  height: 20px;
}
.heat-roof__item-title {
  color: var(--txt-primary, #2D323B);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
  margin: 0;
}
@media (max-width: 768px) {
  .heat-roof__item-title {
    font-size: 15px;
  }
}
.heat-roof__media {
  width: 100%;
}
.heat-roof__image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 584/440;
}
@media (max-width: 1025px) {
  .heat-roof__image-wrapper {
    aspect-ratio: unset;
    height: 379px;
  }
}
.heat-roof__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.heat-roof__badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  max-width: 380px;
  border-radius: 12px;
  background: var(--bg-primary, #FFF);
  padding: 16px;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .heat-roof__badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}
.heat-roof__badge-text {
  color: var(--txt-primary, #2D323B);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin: 0;
}
@media (max-width: 480px) {
  .heat-roof__badge-text {
    font-size: 15px;
  }
}

.process-title--mobile {
  display: none;
}

@media (max-width: 480px) {
  .process-title--desktop {
    display: none;
  }
  .process-title--mobile {
    display: block;
  }
}
.faq__subtitle {
  display: none;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 140%;
  color: var(--txt-secondary, #525A6B);
  margin: -12px 0 20px 0;
}
@media (max-width: 768px) {
  .faq__subtitle {
    display: block;
  }
}

.hero--main {
  margin-bottom: 16px;
}
.hero--main .hero__card {
  align-items: flex-end;
  background: url("../images/main-page_main-bg.webp");
}
@media (max-width: 1024px) {
  .hero--main .hero__card {
    height: 347.455px;
  }
}
@media (max-width: 480px) {
  .hero--main .hero__card {
    height: 410px;
    background-image: url("../images/main-page_main-bg_mobile.webp");
  }
}
.hero--main .hero__content {
  max-width: 580px;
}
@media (max-width: 1024px) {
  .hero--main .hero__content {
    max-width: 620px;
  }
}
@media (max-width: 480px) {
  .hero--main .hero__content {
    max-width: 100%;
  }
}
.hero--main .hero__title {
  font-size: 44px;
}
@media (max-width: 1024px) {
  .hero--main .hero__title {
    font-size: 38px;
    max-width: none;
  }
}
@media (max-width: 480px) {
  .hero--main .hero__title {
    font-size: 24px;
  }
}
.hero--main .hero__actions {
  display: flex;
}
.hero--main .hero__actions .btn--outline {
  display: inline-flex;
}

.hero-tiles {
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .hero-tiles {
    margin-bottom: 80px;
  }
}
@media (max-width: 480px) {
  .hero-tiles {
    margin-bottom: 60px;
  }
}
.hero-tiles__row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
@media (max-width: 480px) {
  .hero-tiles__row {
    flex-direction: column;
    gap: 20px;
  }
}

.tile-card {
  flex: 0 0 264px;
}
@media (max-width: 1024px) {
  .tile-card {
    flex-basis: 252px;
  }
}
@media (max-width: 480px) {
  .tile-card {
    flex: 1 1 auto;
    width: 100%;
  }
}
.tile-card__media {
  position: relative;
  display: block;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
}
.tile-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
@media (hover: hover) {
  .tile-card__media:hover img {
    transform: scale(1.04);
  }
}
@media (max-width: 1024px) {
  .tile-card__media {
    height: 245px;
  }
}
@media (max-width: 480px) {
  .tile-card__media {
    height: 240px;
  }
}
.tile-card__plus {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFF;
}
.tile-card__plus::before, .tile-card__plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #1E1E1E;
  transform: translate(-50%, -50%);
}
.tile-card__plus::before {
  width: 12px;
  height: 1.5px;
}
.tile-card__plus::after {
  width: 1.5px;
  height: 12px;
}
.tile-card__caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}
.tile-card__name {
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  color: #2D3139;
}
.tile-card__num {
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  color: #A9A9A9;
}

.promo-card {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  gap: 0;
  height: 260px;
  padding: 8px;
  border-radius: 16px;
  background: #739EC9;
}
@media (max-width: 1024px) {
  .promo-card {
    height: 220px;
  }
}
@media (max-width: 480px) {
  .promo-card {
    width: 100%;
  }
}
.promo-card__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}
@media (max-width: 480px) {
  .promo-card__body {
    padding: 16px 0 16px 12px;
  }
}
.promo-card__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.promo-card__eyebrow {
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0.24px;
  color: rgba(255, 255, 255, 0.8);
}
.promo-card__title {
  max-width: 270px;
  font-family: "Titillium Web", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  color: #FFF;
}
@media (max-width: 1024px) {
  .promo-card__title {
    max-width: none;
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .promo-card__title {
    font-size: 16px;
  }
}
.promo-card__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 130%;
  color: #FFF;
}
@media (max-width: 480px) {
  .promo-card__link {
    font-size: 14px;
    gap: 10px;
  }
}
.promo-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFF;
}
.promo-card__arrow img {
  width: 16px;
  height: 16px;
  display: block;
}
.promo-card__media {
  flex: 0 0 317px;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .promo-card__media {
    flex-basis: 213px;
  }
}
@media (max-width: 480px) {
  .promo-card__media {
    flex-basis: 132px;
  }
}
.promo-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.uae-conditions {
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .uae-conditions {
    margin-bottom: 80px;
  }
}
@media (max-width: 480px) {
  .uae-conditions {
    margin-bottom: 60px;
  }
}
.uae-conditions__grid {
  display: flex;
  align-items: stretch;
  gap: 36px;
}
@media (max-width: 1024px) {
  .uae-conditions__grid {
    flex-direction: column;
    gap: 32px;
    padding: 0;
  }
}
@media (max-width: 480px) {
  .uae-conditions__grid {
    gap: 24px;
  }
}
.uae-conditions__info {
  flex: 1 1 auto;
  min-width: 0;
}
@media (max-width: 1024px) {
  .uae-conditions__info {
    width: 100%;
  }
}
.uae-conditions__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px 0;
  color: var(--txt-primary, #2D323B);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0.24px;
}
.uae-conditions__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F26522;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .uae-conditions__eyebrow {
    margin-bottom: 12px;
  }
}
.uae-conditions__title {
  max-width: 570px;
  margin: 0 0 16px 0;
  font-family: "Titillium Web", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  color: var(--txt-primary, #2D323B);
}
@media (max-width: 1024px) {
  .uae-conditions__title {
    max-width: none;
  }
}
@media (max-width: 480px) {
  .uae-conditions__title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
.uae-conditions__description {
  max-width: 640px;
  margin: 0 0 20px 0;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  color: var(--txt-primary, #2D323B);
}
@media (max-width: 1024px) {
  .uae-conditions__description {
    max-width: none;
  }
}
@media (max-width: 480px) {
  .uae-conditions__description {
    margin-bottom: 16px;
  }
}
.uae-conditions__list {
  border-top: 1px solid #DBDEE4;
}
@media (max-width: 1024px) {
  .uae-conditions__list {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(3, auto);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 32px;
         column-gap: 32px;
    border-top: none;
  }
}
@media (max-width: 480px) {
  .uae-conditions__list {
    display: block;
    border-top: 1px solid #DBDEE4;
  }
}
.uae-conditions__item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #DBDEE4;
}
@media (max-width: 1024px) {
  .uae-conditions__item {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 0;
    border-top: 1px solid #DBDEE4;
    border-bottom: none;
  }
}
@media (max-width: 1024px) {
  .uae-conditions__item:nth-child(3), .uae-conditions__item:nth-child(6) {
    border-bottom: 1px solid #DBDEE4;
  }
}
@media (max-width: 480px) {
  .uae-conditions__item {
    border-top: none;
    border-bottom: 1px solid #DBDEE4;
  }
}
.uae-conditions__head {
  flex: 0 0 215px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1024px) {
  .uae-conditions__head {
    flex: 0 0 auto;
  }
}
.uae-conditions__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.uae-conditions__icon svg {
  display: block;
  width: 18px;
  height: 18px;
}
.uae-conditions__label {
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  color: var(--txt-primary, #2D323B);
}
@media (max-width: 480px) {
  .uae-conditions__label {
    font-size: 15px;
  }
}
.uae-conditions__text {
  flex: 1 1 auto;
  min-width: 0;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  color: var(--txt-primary, #2D323B);
}
@media (max-width: 1024px) {
  .uae-conditions__text {
    padding-left: 28px;
  }
}
@media (max-width: 480px) {
  .uae-conditions__text {
    font-size: 15px;
  }
}
.uae-conditions__media {
  flex: 0 0 515px;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1024px) {
  .uae-conditions__media {
    flex: 1 1 auto;
    width: 100%;
    align-items: flex-start;
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .uae-conditions__media {
    gap: 12px;
  }
}
.uae-conditions__photo {
  flex: 1 1 0;
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
}
.uae-conditions__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.uae-conditions__photo--tall {
  align-self: stretch;
}
@media (max-width: 1024px) {
  .uae-conditions__photo--tall {
    align-self: auto;
    height: 415px;
  }
}
@media (max-width: 480px) {
  .uae-conditions__photo--tall {
    height: 258px;
  }
}
.uae-conditions__photo--short {
  height: 83%;
}
@media (max-width: 1024px) {
  .uae-conditions__photo--short {
    height: 385px;
  }
}
@media (max-width: 480px) {
  .uae-conditions__photo--short {
    height: 226px;
  }
}

.roof-problems {
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .roof-problems {
    margin-bottom: 80px;
  }
}
@media (max-width: 480px) {
  .roof-problems {
    margin-bottom: 60px;
  }
}
.roof-problems__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px 0;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0.24px;
  color: var(--txt-primary, #2D323B);
}
.roof-problems__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F26522;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .roof-problems__eyebrow {
    margin-bottom: 12px;
  }
}
.roof-problems__title {
  margin: 0 0 16px 0;
  font-family: "Titillium Web", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  color: var(--txt-primary, #2D323B);
}
@media (max-width: 1024px) {
  .roof-problems__title {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .roof-problems__title {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
.roof-problems__lead {
  max-width: 980px;
  margin: 0 0 24px 0;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  color: var(--txt-primary, #2D323B);
}
@media (max-width: 480px) {
  .roof-problems__lead {
    font-size: 15px;
    margin-bottom: 20px;
  }
}
.roof-problems__grid {
  display: grid;
  grid-template-columns: 572fr 298fr 298fr;
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .roof-problems__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .roof-problems__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
}
.roof-problems__card {
  padding: 24px;
  border-radius: 16px;
  background: #F4F5F7;
}
@media (max-width: 900px) {
  .roof-problems__card {
    grid-column: 1/-1;
  }
}
@media (max-width: 480px) {
  .roof-problems__card {
    padding: 20px;
  }
}
.roof-problems__card-title {
  padding-bottom: 16px;
  border-bottom: 1px solid #DBDEE4;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 130%;
  color: var(--txt-primary, #2D323B);
}
@media (max-width: 480px) {
  .roof-problems__card-title {
    font-size: 16px;
    padding-bottom: 12px;
  }
}
.roof-problems__sign {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #DBDEE4;
}
.roof-problems__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.roof-problems__icon svg {
  display: block;
  width: 20px;
  height: 20px;
}
.roof-problems__sign-text {
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  color: var(--txt-primary, #2D323B);
}
@media (max-width: 480px) {
  .roof-problems__sign-text {
    font-size: 15px;
  }
}
.roof-problems__card-text {
  margin-top: 16px;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  color: #525A6B;
}
@media (max-width: 480px) {
  .roof-problems__card-text {
    font-size: 15px;
  }
}
.roof-problems__photo {
  border-radius: 16px;
  overflow: hidden;
}
.roof-problems__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .roof-problems__photo {
    aspect-ratio: 298/287;
  }
}
@media (max-width: 560px) {
  .roof-problems__photo {
    aspect-ratio: 16/10;
  }
}
.roof-problems__notes {
  display: grid;
  grid-template-columns: 572fr 612fr;
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 900px) {
  .roof-problems__notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}
@media (max-width: 560px) {
  .roof-problems__notes {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    margin-top: 20px;
  }
}
.roof-problems__note {
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  color: var(--txt-primary, #2D323B);
}
@media (max-width: 480px) {
  .roof-problems__note {
    font-size: 15px;
  }
}

.details-matter {
  margin-bottom: 100px;
  border-radius: 30px;
  background: #F4F6F8;
  padding: 100px 0;
}
@media (max-width: 1024px) {
  .details-matter {
    margin-bottom: 80px;
    padding: 60px 0;
    border-radius: 0;
  }
}
@media (max-width: 480px) {
  .details-matter {
    margin-bottom: 60px;
  }
}
.details-matter__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0.24px;
  color: var(--txt-primary, #2D323B);
}
.details-matter__eyebrow::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #F26522;
}
.details-matter .section-title {
  margin-bottom: 16px;
}
.details-matter__text {
  max-width: 1018px;
  margin-bottom: 24px;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  color: #525A6B;
}
@media (max-width: 768px) {
  .details-matter__text {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .details-matter__text {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.details-matter__label {
  margin-bottom: 12px;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  color: var(--txt-primary, #2D323B);
}
.details-matter__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .details-matter__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .details-matter__grid {
    grid-template-columns: 1fr;
  }
}

.risk-card {
  position: relative;
  aspect-ratio: 392/260;
  border-radius: 16px;
  overflow: hidden;
}
.risk-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.risk-card__name {
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 4px;
  padding: 8px 12px;
  border-radius: 13px;
  background: #FFF;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  color: #2D3139;
}
@media (max-width: 1024px) {
  .risk-card__name {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .risk-card__name {
    font-size: 14px;
    padding: 9px 12px;
  }
}

.risk-note {
  display: flex;
  flex-direction: column;
  gap: 20px;
  aspect-ratio: 392/260;
  padding: 24px;
  border-radius: 16px;
  background: #739EC9;
}
@media (max-width: 480px) {
  .risk-note {
    aspect-ratio: auto;
    gap: 16px;
    padding: 20px;
  }
}
.risk-note p {
  color: var(--txt-inverted, #FFF);
  font-family: "Titillium Web", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.24px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .risk-note p {
    font-size: 20px;
  }
}

.core-services {
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .core-services {
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .core-services {
    display: none;
  }
}
.core-services__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px 0;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0.24px;
  color: var(--txt-primary, #2D323B);
}
.core-services__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F26522;
  flex-shrink: 0;
}
.core-services__title {
  margin: 0 0 24px 0;
  font-family: "Titillium Web", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  color: var(--txt-primary, #2D323B);
}
@media (max-width: 1024px) {
  .core-services__title {
    font-size: 32px;
  }
}
.core-services__row {
  display: grid;
  grid-template-columns: 560fr 584fr;
  gap: 56px;
  align-items: stretch;
  padding-top: 24px;
  border-top: 1px solid #E4E7EC;
}
.core-services__row + .core-services__row {
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .core-services__row {
    gap: 32px;
  }
}
.core-services__row--combined {
  grid-template-columns: 536fr 560fr;
  margin-top: 32px;
  padding: 24px;
  border-top: 0;
  border-radius: 16px;
  background: #739EC9;
}
.core-services__row--combined .core-services__name,
.core-services__row--combined .core-services__text,
.core-services__row--combined .core-services__link {
  color: #FFF;
}
.core-services__row--combined .core-services__media img {
  aspect-ratio: 560/287;
}
.core-services__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}
.core-services__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.core-services__name {
  margin: 0;
  font-family: "Titillium Web", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--txt-primary, #2D323B);
}
@media (max-width: 1024px) {
  .core-services__name {
    font-size: 20px;
  }
}
.core-services__text {
  margin: 0;
  color: var(--txt-primary, #2D323B);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 1024px) {
  .core-services__text {
    font-size: 15px;
  }
}
.core-services__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
  color: var(--txt-primary, #2D323B);
}
@media (hover: hover) {
  .core-services__link:hover .core-services__arrow {
    transform: translate(2px, -2px);
  }
}
.core-services__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #F26522;
  transition: transform 0.25s ease;
}
.core-services__arrow svg {
  display: block;
}
.core-services__media {
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
}
.core-services__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 584/287;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.applications {
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .applications {
    margin-bottom: 80px;
  }
}
@media (max-width: 480px) {
  .applications {
    margin-bottom: 60px;
  }
}
.applications__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .applications__grid {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 16px;
  }
}
.applications__intro {
  padding: 24px;
  border: 1px solid #E6E8EC;
  border-radius: 16px;
  background: #FFF;
}
@media (max-width: 480px) {
  .applications__intro {
    padding: 20px;
  }
}
.applications__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px 0;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0.24px;
  color: var(--txt-primary, #2D323B);
}
.applications__eyebrow::before {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F26522;
}
@media (max-width: 480px) {
  .applications__eyebrow {
    margin-bottom: 8px;
  }
}
.applications__title {
  margin: 0;
  font-family: "Titillium Web", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  color: var(--txt-primary, #2D323B);
}
@media (max-width: 480px) {
  .applications__title {
    font-size: 20px;
  }
}

.app-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 16px;
  background: #F4F5F7;
  overflow: hidden;
}
@media (max-width: 480px) {
  .app-card {
    padding: 20px;
  }
}
.app-card__media {
  align-self: flex-end;
  width: 172px;
  max-width: 55%;
  height: auto;
  margin: -24px -24px 15px;
}
@media (max-width: 480px) {
  .app-card__media {
    margin: -20px -20px 15px;
  }
}
.app-card__title {
  margin: 0 0 12px 0;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 130%;
  color: var(--txt-primary, #2D323B);
}
@media (max-width: 480px) {
  .app-card__title {
    font-size: 17px;
    margin-bottom: 10px;
  }
}
.app-card__text {
  margin: 0;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  color: #525A6B;
}
@media (max-width: 480px) {
  .app-card__text {
    font-size: 15px;
  }
}

.advantages {
  background: #739EC9;
  padding: 100px 0;
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .advantages {
    padding: 80px 0;
    margin-bottom: 80px;
  }
}
@media (max-width: 480px) {
  .advantages {
    padding: 60px 0;
    margin-bottom: 60px;
  }
}
.advantages__top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .advantages__top {
    flex-direction: column;
    gap: 24px;
  }
}
.advantages__intro {
  flex: 1 1 0;
  min-width: 0;
}
.advantages__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px 0;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0.24px;
  color: #FFF;
}
.advantages__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFF;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .advantages__eyebrow {
    margin-bottom: 12px;
  }
}
.advantages__title {
  margin: 0 0 24px 0;
  font-family: "Titillium Web", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  color: #FFF;
}
@media (max-width: 480px) {
  .advantages__title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
.advantages__description {
  margin: 0;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 130%;
  color: #FFF;
}
.advantages__stats {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
  .advantages__stats {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .advantages__stats {
    padding: 16px 20px;
  }
}
.advantages__stat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  color: #FFF;
}
@media (max-width: 480px) {
  .advantages__stat {
    font-size: 15px;
  }
}
.advantages__stat-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}
.advantages__stat-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 768px) {
  .advantages__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.advantages__photos {
  display: flex;
  gap: 12px;
  min-width: 0;
}
.advantages__photo {
  flex: 1 1 0;
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
}
.advantages__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .advantages__photo {
    height: 240px;
  }
}
@media (max-width: 480px) {
  .advantages__photo {
    height: 185px;
  }
}
@media (max-width: 480px) {
  .advantages__photo--wide-only {
    display: none;
  }
}

.adv-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 16px;
  background: #F7F8FA;
}
@media (max-width: 480px) {
  .adv-card {
    padding: 20px;
  }
}
.adv-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .adv-card__chips {
    margin-bottom: 16px;
  }
}
.adv-card__chip {
  padding: 4px 12px;
  border-radius: 99px;
  background: #739EC9;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #FFF;
  white-space: nowrap;
}
.adv-card__title {
  margin: 0 0 16px 0;
  color: var(--txt-primary, #2D323B);
  font-family: "Titillium Web", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.24px;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .adv-card__title {
    font-size: 22px;
  }
}
.adv-card__text {
  margin: 0 0 12px 0;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  color: var(--txt-primary, #2D323B);
}
@media (max-width: 480px) {
  .adv-card__text {
    font-size: 15px;
  }
}
.adv-card__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.adv-card__list li {
  position: relative;
  padding-left: 18px;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  color: var(--txt-primary, #2D323B);
}
.adv-card__list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--txt-primary, #2D323B);
}
@media (max-width: 480px) {
  .adv-card__list li {
    font-size: 15px;
  }
}

.client-card {
  flex: 0 0 264px;
  scroll-snap-align: start;
}
@media (max-width: 480px) {
  .client-card {
    flex-basis: 240px;
  }
}
.client-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 12px;
}
.client-card__name {
  display: flex;
  gap: 10px;
  margin: 12px 0 0 0;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  color: var(--txt-primary, #2D323B);
}
.client-card__name::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: #F26522;
}
@media (max-width: 480px) {
  .client-card__name {
    font-size: 15px;
  }
}

section[id],h2[id]{scroll-margin-top:80px}
.legal-section{padding:140px 0 100px}
.legal-content{max-width:820px;margin-top:32px}
.legal-content h2{color:var(--txt-primary, #2D323B);font-family:"Titillium Web", sans-serif;font-size:22px;font-weight:600;line-height:130%;margin:32px 0 12px}
.legal-content h2:first-child{margin-top:0}
.legal-content p{color:var(--txt-primary, #2D323B);font-family:"Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;font-size:15px;line-height:160%;margin:0 0 16px}
@media (max-width: 480px){.legal-section{padding:100px 0 60px}}
.form-error{color:#DC2626;font-family:"Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;font-size:13px;margin-top:8px}
.lead-modal{position:fixed;inset:0;z-index:1000;display:flex;align-items:center;justify-content:center;visibility:hidden;opacity:0;transition:opacity 0.2s ease, visibility 0.2s ease}
.lead-modal.is-open{visibility:visible;opacity:1}
.lead-modal__backdrop{position:absolute;inset:0;background:rgba(45, 50, 59, 0.5)}
.lead-modal__content{position:relative;background:#FFFFFF;border-radius:16px;padding:40px 32px;max-width:400px;width:90%;text-align:center;transform:translateY(12px);transition:transform 0.2s ease}
.lead-modal.is-open .lead-modal__content{transform:translateY(0)}
.lead-modal__close{position:absolute;top:12px;right:16px;background:none;border:none;font-size:24px;line-height:1;color:#9CA3AF;cursor:pointer;padding:4px}
.lead-modal__icon{width:56px;height:56px;margin:0 auto 16px;border-radius:50%;background:rgba(34, 197, 94, 0.12);color:#22C55E;display:flex;align-items:center;justify-content:center}
.lead-modal__title{color:var(--txt-primary, #2D323B);font-family:"Titillium Web", sans-serif;font-size:20px;font-weight:600;margin:0 0 8px}
.lead-modal__text{color:var(--oe-labels-tertiary, #6B7280);font-family:"Golos Text", -apple-system, BlinkMacSystemFont, sans-serif;font-size:14px;line-height:150%;margin:0 0 24px}
.lead-modal__ok{width:100%;justify-content:center}
