/* ======= Global ======= */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght,SOFT,WONK@0,9..144,100..900,0..100,0..1;1,9..144,100..900,0..100,0..1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wdth,wght@0,75..100,300..800;1,75..100,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* @import "tailwindcss"; */
/* @import "choices.js/public/assets/styles/choices.css"; */

:root {
  --font-display: 'Fraunces', serif;
  --font-body: 'Tajawal', sans-serif;
  --font-footer: 'Open Sans', sans-serif;
  --font-copyright: 'Inter', sans-serif;
  --features-image-offset: 36px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #1D1518;
  background-color: #FFFFFF;
}

* a{
  transition: all 0.35s ease;
}
button:focus,
button:focus-visible {
    outline: none;
}
/* ======= Header ======= */
.site-header {
  padding: 20px 15px;
  background-color: #FFFFFF;
  border-bottom: 1.5px solid #EEF0F3;
  height: 88px;
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
}

.site-header__container {
  width: 100%;
  max-width: 1415px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-header__logo {
  width: 38px;
  height: 33px;
  flex-shrink: 0;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 48px;
}

.site-header__nav-link,
.site-header__mobile-link,
.site-header__action-link {
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  color: #1D1518;
  transition: color 0.3s ease;
}

.site-header__nav-link:hover,
.site-header__nav-link:focus-visible,
.site-header__mobile-link:hover,
.site-header__mobile-link:focus-visible,
.site-header__action-link:hover,
.site-header__action-link:focus-visible {
  color: #EF4109;
}

.site-header__nav-link.is-active,
.site-header__nav-link.is-active:hover,
.site-header__nav-link.is-active:focus-visible,
.site-header__mobile-link.is-active,
.site-header__mobile-link.is-active:hover,
.site-header__mobile-link.is-active:focus-visible {
  color: #EF4109;
}

.site-header__nav-link:focus-visible,
.site-header__mobile-link:focus-visible,
.site-header__action-link:focus-visible {
  outline: 2px solid #1C66CB;
  outline-offset: 2px;
  border-radius: 2px;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header__actions .btn-orange {
  margin-inline-start: 10px;
}

/* ======= Buttons ======= */
.btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 226px;
  padding: 12px 28px;
  background-color: #EF4109;
  border-radius: 8px;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

.btn-orange:hover,
.btn-orange:focus-visible {
  background-color: #1C65CB;
}

.btn-orange:focus-visible {
  outline: 0px solid #1D1518;
  outline-offset: 0px;
  border-radius: 8px;
}

.site-header__menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #1D1518;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  outline: none;
}

.site-header__menu-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #1C65CB;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header.is-open .site-header__menu-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .site-header__menu-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .site-header__menu-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header__mobile-menu {
  position: absolute;
  top: calc(100% + 1px);
  inset-inline: 15px;
  background: #FFFFFF;
  border-bottom: 1px solid #EEF0F3;
  padding: 16px 0px;
  margin: 0px -15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.site-header.is-open .site-header__mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.site-header__mobile-link {
  display: block;
  padding: 10px 15px;
}

.site-header__mobile-cta {
  display: flex;
  width: 260px;
  margin-inline-start: 15px;
  margin-top: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-orange--sm {
  width: 118px;
  transition: all 0.35s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-sizing: border-box;
  transition: all 0.35s ease;
}

.btn-white {
  height: 40px;
  padding-inline: 24px;
  background-color: #FFFFFF;
  border-radius: 8px;
  color: #1C65CB;
  line-height: 19px;
  transition: all 0.35s ease;
}

.btn-white:hover,
.btn-white:focus-visible {
  background-color: #EF4109;
  color: #FFFFFF;
}

.btn-blue {
  border-radius: 8px;
  background-color: #1C65CB;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  transition: all 0.35s ease;
}

.btn-blue:hover,
.btn-blue:focus-visible {
  background-color: #EF4109;
  color: #FFFFFF;
}

.home-hero__actions .btn-blue {
  height: 40px;
  padding-inline: 16px;
  line-height: 24px;
}

.home-what__actions .btn-blue {
  height: 48px;
  padding-inline: 24px;
  line-height: 19px;
}

.home-hero__actions .btn-blue:hover,
.home-hero__actions .btn-blue:focus-visible {
  background-color: #FFFFFF;
  color: #1C65CB;
}

.home-what__actions .btn-blue:hover,
.home-what__actions .btn-blue:focus-visible,
.home-performance__actions .btn-blue:hover,
.home-performance__actions .btn-blue:focus-visible {
  background-color: #EF4109;
  color: #FFFFFF;
}

.home-what__actions .btn-blue:focus-visible {
  outline: 2px solid #1C66CB;
  outline-offset: 2px;
  border-radius: 8px;
}

.home-performance__actions .btn-blue {
  width: 134px;
  flex-shrink: 0;
}

.btn-outline-blue {
  height: 48px;
  padding-inline: 24px;
  background-color: transparent;
  border: 1.5px solid #1C65CB;
  border-radius: 8px;
  color: #1C65CB;
  line-height: 19px;
  white-space: nowrap;
}

.btn-outline-blue:hover,
.btn-outline-blue:focus-visible {
  background-color: #1C65CB;
  color: #FFFFFF;
}

.btn-outline-blue:focus-visible {
  outline: 2px solid #1C66CB;
  outline-offset: 2px;
  border-radius: 8px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 226px;
  padding: 12px 28px;
  background-color: #EAECF0;
  border-radius: 8px;
  color: #1D2939;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}

@media (max-width: 1440px) and (min-width: 1025px) {
  .site-header .btn-orange {
    width: auto;
    white-space: nowrap;
    padding-inline: 20px;
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  .site-header__nav {
    display: none;
  }

  .site-header__actions .btn-orange {
    display: none;
  }

  .site-header__menu-toggle {
    display: flex;
  }

  .site-header__mobile-cta.text-link-md,
  .site-header__mobile-cta:hover{
    color: #FFFFFF;
  }
}

@media (min-width: 1024.5px) {
  .site-header__mobile-menu,
  .site-header__menu-toggle {
    display: none;
  }
}

/* ======= Home Hero ======= */
.home-hero {
  position: relative;
  background-image: url('../assets/images/home-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 702px;
  padding-inline: 15px;
  overflow: hidden;
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1424px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 702px;
  padding-block: 60px;
  inset-inline-start: var(--hero-alignment-offset, 0px);
}

.home-hero__content {
  flex: 0 0 auto;
  max-width: 680px;
  color: #FFFFFF;
}

.home-hero__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 48px;
  line-height: 110%;
  color: #FFFFFF;
  margin: 0;
}

.home-hero__description {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 160%;
  color: #E9E9E9;
  margin-top: 30px;
  margin-bottom: 0;
}

.home-hero__description.home-arabic__description{
  margin-top: 0px;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 45px;
}

.home-hero__line-break {
  display: inline;
}

@media (max-width: 1260px) {
  .home-hero__line-break {
    display: none;
  }
}

.home-hero__visual {
  flex: 0 0 auto;
  max-width: calc(100% - 680px - 40px);
}

.home-hero__visual img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 620px;
}

@media (max-width: 1366px) and (min-width: 1025px) {
  .home-hero__inner {
    max-width: 1424px;
    gap: 30px;
  }

  .home-hero__content {
    flex-basis: 48%;
    max-width: none;
  }

  .home-hero__visual {
    flex-basis: 52%;
    max-width: none;
  }

  .home-hero__title {
    font-size: 42px;
  }

  .home-hero__visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 1024px) {
  .home-hero__inner {
    flex-direction: column;
    align-items: normal;
    padding-block: 40px;
  }

  .home-hero__visual {
    order: -1;
    max-width: 100%;
    margin-top: 0;
  }

  .home-hero__visual img {
    width: auto;
    height: auto;
  }

  .home-hero__content {
    order: 0;
    max-width: 100%;
  }

  .home-hero__actions {
    justify-content: normal;
  }
}

@media (max-width: 768px) {
  .home-hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .home-hero__actions .btn {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 640px) {
  .home-hero {
    min-height: auto;
  }

  .home-hero__title {
    font-size: 32px;
  }

  .home-hero__description {
    font-size: 16px;
  }

  .home-hero__actions{
    align-items: normal;
  }
}

html[lang="ar"] .home-hero__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-style: normal;
  text-align: right;
}

html[lang="ar"] .home-hero__description {
  font-weight: 400;
  text-align: right;
  margin-top: 20px;
}

html[lang="ar"] .home-hero__content {
  text-align: right;
}
[dir="rtl"] .home-hero__description.home-arabic__description{
  text-align: center;
  margin-top: 5px;
}

html[lang="ar"] .home-hero__actions .btn-white {
  height: 48px;
}

html[lang="ar"] .home-hero__actions .btn-blue {
  height: 48px;
  padding-inline: 32px;
  font-size: 15.5px;
  line-height: 24px;
}

/* ======= Inner Hero ======= */
.inner-hero {
  position: relative;
  background-image: url('../assets/images/inner-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 15px;
  overflow: hidden;
}

.inner-hero__container {
  max-width: 960px;
  margin-inline: auto;
}

.inner-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
}

.inner-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 54px;
  line-height: 110%;
  color: #FFFFFF;
  text-align: center;
  margin: 0;
}

.inner-hero__description {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 160%;
  color: #EAECF0;
  text-align: center;
  max-width: 768px;
  margin: 0;
}

[dir="rtl"] .inner-hero__title {
  font-family: var(--font-body);
  font-weight: 700;
}

[dir="rtl"] .inner-hero__description {
  font-weight: 400;
}

@media (max-width: 1024px) {
  .inner-hero {
    min-height: 320px;
  }

  .inner-hero__content {
    gap: 20px;
  }

  .inner-hero__title {
    font-size: 46px;
  }

  .inner-hero--feat .inner-hero__actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .inner-hero {
    min-height: 280px;
  }

  .inner-hero__content {
    gap: 18px;
  }

  .inner-hero__title {
    font-size: 40px;
  }

  .inner-hero__description {
    font-size: 16px;
  }

  .inner-hero--feat .inner-hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
    align-items: center;
  }

  .inner-hero--feat .inner-hero__actions .btn-white,
  .inner-hero--feat .inner-hero__actions .btn-outline-blue {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .inner-hero {
    min-height: 240px;
    padding-inline: 15px;
  }

  .inner-hero__content {
    gap: 16px;
  }

  .inner-hero__title {
    font-size: 32px;
  }

  .inner-hero__description {
    font-size: 15px;
    line-height: 150%;
  }
}

.inner-hero--v2 {
  background-image: url('../assets/images/inner-hero-v2-bg.jpg');
}

.inner-hero--feat .inner-hero__description {
  max-width: 640px;
}

.inner-hero--feat .inner-hero__actions {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  justify-content: center;
}

.inner-hero--feat .btn-white {
  width: 134px;
  height: 44px;
  padding: 0 24px;
}

.inner-hero--feat .btn-outline-blue {
  width: 214px;
  height: 44px;
  padding: 0 24px;
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.inner-hero--feat .btn-outline-blue:hover{
  color: #1C65CB;
  background: #FFFFFF;
}

[dir="rtl"] .inner-hero--feat .btn-white {
  width: 110px;
}

[dir="rtl"] .inner-hero--feat .btn-outline-blue {
  width: 260px;
}

/* ======= Contact ======= */
.contact-section {
  max-width: 100%;
  padding-block: 70px 120px;
  padding-inline: 15px;
}

.contact-form__card {
  width: 100%;
  max-width: 760px;
  background-color: #FFFFFF;
  border: 1px solid #ECE5E3;
  border-radius: 16px;
  padding: 32px;
  margin-inline: auto;
}

.contact-form__row {
  display: flex;
  gap: 24px;
}

.contact-form__field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.apply-modal .contact-form .contact-form__field{
  padding-bottom: 20px;
}

.contact-form__row{
  margin-bottom: 24px;
}

.contact-form__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13.5px;
  line-height: 16px;
  color: #1D1518;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12.5px;
  line-height: 15px;
  color: #1D1518;
  background-color: #FCFBFA;
  border: 1px solid #ECE5E3;
  border-radius: 9px;
  height: 44px;
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.2s ease;
}

.contact-form__input::placeholder,
.contact-form__select::placeholder,
.contact-form__textarea::placeholder {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12.5px;
  line-height: 15px;
  color: #B5ADB0;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  border-color: #1C66CB;
}

.contact-form__textarea {
  width: 100%;
  height: 120px;
  resize: vertical;
}

.contact-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231D1518' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.contact-form__input.is-invalid,
.contact-form__select.is-invalid,
.contact-form__textarea.is-invalid {
  border-color: #EF4109;
}

.contact-form__field .choices.is-invalid .choices__inner {
  border-color: #EF4109;
}

.contact-form__input.is-invalid:focus,
.contact-form__select.is-invalid:focus,
.contact-form__textarea.is-invalid:focus {
  border-color: #EF4109;
}

/* Minimal Choices.js overrides for Contact page select */
.contact-form__field .choices{
  margin: 0;
}
.contact-form__field .choices .choices__inner{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12.5px;
  line-height: 15px;
  color: #1D1518;
  background-color: #FCFBFA;
  border: 1px solid #ECE5E3;
  border-radius: 9px;
  height: 44px;
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.2s ease;
}
.contact-form__field .choices .choices__inner .choices__list{
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.contact-form__field .choices::after{
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  margin-top: -4px;
  transform: rotate(0deg);
  width: 12px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231D1518' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  transition: all 0.2s ease;
  border: none;
}
.contact-form__field .choices.is-open::after{
  transform: rotate(180deg);
}
.contact-form__field .choices.is-focused .choices__inner{
  border-color: #1C66CB;
}
.contact-form__field .choices .choices__list.choices__list--dropdown{
  margin-top: 1px;
  background-color: #FCFBFA;
  border: 1px solid #ECE5E3;
  border-radius: 9px;
}
.contact-form__field .choices .choices__list.choices__list--dropdown .choices__list .choices__item.choices__item--disabled,
.contact-form__field .choices .choices__list.choices__list--dropdown .choices__list .choices__item.choices__item--disabled:hover,
.contact-form__field .choices .choices__list.choices__list--dropdown .choices__list .choices__item.choices__item--disabled.is-highlighted{
  color: #B5ADB0;
  background-color: #FCFBFA;
  opacity: 1;
}
.contact-form__field .choices .choices__list--single .choices__item[data-value=""] {
  color: #B5ADB0;
}
.contact-form__field .choices .choices__list.choices__list--dropdown .choices__list .choices__item{
  color: #1D1518;
  background-color: #FCFBFA;
  transition: all 0.3s ease;
}
.contact-form__field .choices .choices__list.choices__list--dropdown .choices__list .choices__item:hover,
.contact-form__field .choices .choices__list.choices__list--dropdown .choices__list .choices__item.is-highlighted {
  background-color: #1C66CB;
  color: #FFFFFF;
}
.contact-form__bottom {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}

.contact-form__submit {
  width: 190px;
  height: 48px;
  background-color: #1C65CB;
  border: 1px solid #FFFFFF;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  color: #FFFFFF;
  cursor: pointer;
}

.contact-form__helper {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #8A7F83;
  margin: 0;
}

.contact-form__error {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  line-height: 160%;
  color: #EF4109;
  min-height: 16px;
}

.contact-form__success {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
  color: #1C66CB;
  margin-bottom: 24px;
  padding: 20px 15px;
  background: rgb(28 101 203 / 5%);
  border-radius: 9px;
}

.contact-form__server-error {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
  color: #EF4109;
  min-height: 20px;
}

@media (max-width: 768px) {
  .contact-form__row {
    flex-direction: column;
    gap: 16px;
  }

  .contact-form__submit {
    width: 170px;
  }
}

@media (max-width: 640px) {
  .contact-section {
    padding-block: 60px 60px;
  }

  .contact-form__card {
    padding: 20px 15px;
  }

  .contact-form__row {
    gap: 16px;
    margin-bottom: 16px;
  }

  .contact-form__field {
    gap: 6px;
  }

  .contact-form__bottom {
    gap: 16px;
    margin-top: 16px;
  }
  .contact-form__submit{
    width: 150px;
  }
}

[dir="rtl"] .contact-form__select {
  background-position: left 12px center;
  padding-right: 12px;
  padding-left: 36px;
}

[dir="rtl"] .contact-form__field .choices::after {
  right: auto;
  left: 12px;
}

[dir="rtl"] .contact-info {
  text-align: right;
}

.contact-info {
  width: 100%;
  max-width: 760px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-info__heading {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13.5px;
  line-height: 16px;
  color: #1D1518;
  margin: 0;
}

.contact-info__heading a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info__heading a:hover {
  color: #1C66CB;
}

.contact-info__note {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12.5px;
  line-height: 15px;
  color: #8A7F83;
  margin: 0;
}

/* ======= About ======= */
.about-content {
  width: 100%;
  padding: 105px 15px 85px;
}

.about-content__inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-content__group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 1366px) {
  .about-content {
    padding: 95px 15px 85px;
  }
}

@media (max-width: 992px) {
  .about-content {
    padding: 85px 15px;
  }
}

@media (max-width: 640px) {
  .about-content {
    padding: 60px 15px;
  }
}

.about-content__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  line-height: 110%;
  color: #1C65CB;
  margin: 0;
}

.about-content__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15.5px;
  line-height: 175%;
  color: #5A5350;
  margin: 0;
}

[dir="rtl"] .about-content__heading {
  font-family: var(--font-body);
  font-weight: 700;
  text-align: right;
}

[dir="rtl"] .about-content__text {
  text-align: right;
}

/* ======= Home Intro ======= */
.home-intro {
  background-color: #FFFFFF;
  padding-block: 60px;
  text-align: center;
}

@media (max-width: 1024px) {
  .home-intro {
    padding-block: 40px;
  }
}

@media (max-width: 640px) {
  .home-intro {
    padding-block: 24px;
  }
}

.home-intro__text {
  font-size: 21px;
  line-height: 142%;
  color: #5C606B;
  margin: 0;
}

html[lang="en"] .home-intro__text {
  font-weight: 500;
}

html[lang="ar"] .home-intro__text {
  font-weight: 400;
}

/* ======= Home What ======= */
.home-what {
  background-color: #FAFBFC;
  padding-top: 50px;
  padding-bottom: 100px;
  padding-inline: 20px;
}

.home-what__container {
  width: 100%;
  max-width: 1116px;
  margin-inline: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.home-what__content {
  flex: 0 0 auto;
  max-width: 519px;
  padding-top: 20px;
}

.home-what__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 42px;
  line-height: 110%;
  color: #202127;
  margin: 0;
}

.home-what__description {
  margin: 24px 0 0;
}

.home-what__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.home-what__list li {
  padding-inline-start: 16px;
  position: relative;
}

.home-what__list li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: #5C606B;
  border-radius: 50%;
}

.home-what__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.home-what__visual {
  flex: 0 0 637px;
  width: 637px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-what__visual img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1440px) and (min-width: 1025px) {
  .home-what__container {
    max-width: none;
    gap: 40px;
  }

  .home-what__content {
    flex: 1 1 45%;
    min-width: 0;
    max-width: none;
  }

  .home-what__visual {
    flex: 1 1 55%;
    min-width: 0;
    width: auto;
    max-width: none;
  }

  .home-what__visual img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 1366px) and (min-width: 1025px) {
  .home-what__container {
    gap: 24px;
  }
}

@media (max-width: 1024px) {
  .home-what__container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .home-what__content {
    flex: 0 0 auto;
    max-width: 100%;
    padding-top: 0;
  }

  .home-what__visual {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    order: -1;
    justify-content: left;
  }
  html[lang="ar"] .home-what__visual,
  html[dir="rtl"] .home-what__visual{
    justify-content: right;
  }

  .home-what__visual img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 640px) {
  .home-what {
    padding-block: 32px 60px;
  }

  .home-what__container {
    gap: 35px;
  }

  .home-what__content {
    max-width: 100%;
    padding-top: 0;
  }

  .home-what__title {
    font-size: 28px;
  }

  .home-what__visual {
    max-width: 100%;
    width: auto;
  }

  .home-what__actions {
    flex-direction: column;
    align-items: normal;
    gap: 12px;
  }

  .home-what__actions .btn{
    max-width: 250px;
  }
}

/* ======= Home Audience ======= */
.home-audience {
  background-color: #FFFFFF;
  padding-block: 70px 70px;
  padding-inline: 20px;
}

.home-audience__container {
  width: 100%;
  max-width: 1420px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px;
  align-items: start;
}

.home-audience__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-audience__icon {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-audience__icon img {
  max-height: 100px;
  width: auto;
  height: auto;
}

.home-audience__title {
  margin-top: 24px;
  margin-bottom: 0;
}

.home-audience__description {
  margin-top: 42px;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .home-audience__container {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 15px;
  }

  .home-audience__icon {
    height: 110px;
  }

  .home-audience__icon img {
    max-height: 80px;
  }

  .home-audience {
    padding-block: 56px;
  }

  .home-audience__title {
    margin-top: 20px;
  }

  .home-audience__description {
    margin-top: 32px;
  }
}

@media (max-width: 768px) {
  .home-audience__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .home-audience__icon {
    height: 80px;
  }

  .home-audience__icon img {
    max-height: 60px;
  }

  .home-audience {
    padding-block: 48px;
  }

  .home-audience__title {
    margin-top: 12px;
  }

  .home-audience__description {
    margin-top: 18px;
  }
}

[dir="rtl"] .text-title-md {
  font-weight: 400;
}

/* ======= Typography ======= */
.text-title-md {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #000000;
  text-align: center;
}

.text-body-md {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  text-align: center;
}

.text-link-md {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #242424;
}

.text-body-sm {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
  color: #41434A;
}

/* ======= Home Steps ======= */
.home-steps {
  padding-block: 0 100px;
}

.home-steps__container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 20px;
}

.home-steps__title {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  margin-block: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  color: #1D1518;
}

.home-steps__list {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding: 0;
  list-style: none;
}

.home-steps__item {
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.home-steps__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #EAF2FC;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  color: #1C65CB;
}

/* ======= Legal ======= */
.legal-section {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 55px 15px;
}

.legal-section__meta {
   font-family: var(--font-body);
   font-size: 13px;
   font-weight: 400;
   line-height: 16px;
   color: #8A7F83;
   margin-bottom: 34px;
}

.legal-section__meta a {
   color: inherit;
   text-decoration: none;
}

.legal-section__meta a:hover {
   color: #1C66CB;
}

.legal-accordion__heading {
  margin: 0;
  padding: 0px 0px;
  cursor: pointer;
}

.legal-section__heading {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  color: #8A7F83;
  margin: 0 0 17px;
}

.legal-section__heading--privacy {
  padding-top: 38px;
}

.legal-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-accordion__item {
  background: #FFFFFF;
  border: 1px solid #ECE5E3;
  border-radius: 12px;
  overflow: hidden;
  transition: all .3s ease;
  padding: 0px 0px;
}

.legal-accordion__title {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 17px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  color: #1D1518;
  text-align: start;
  flex-shrink: 0;
}

.legal-accordion__body {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .25s ease;
  padding: 0px 28px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 16px;
  color: #8A7F83;
  height: 0;
}

.legal-accordion__item.is-open .legal-accordion__body {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  height: auto;
  padding-bottom: 20px;
}

.legal-accordion__body p {
  margin: 0;
}

.legal-accordion__title svg {
  transform-origin: center;
  transition: all 0.3s ease;
}

.legal-accordion__item.is-open .legal-accordion__title svg {
  transform: rotate(180deg);
}

@media (max-width: 1024px) {
  .home-steps {
    padding-block: 0 80px;
    padding-top: 20px;
  }

  .home-steps__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 32px;
  }

  .home-steps__item {
    width: 300px;
    gap: 12px;
  }

  .home-steps__bottom {
    margin-top: 32px;
  }
}

@media (max-width: 768px) {
  .home-steps__list {
    flex-direction: column;
    align-items: center;
  }

  .home-steps__item {
    width: 100%;
    max-width: 320px;
  }

  .legal-accordion {
    width: 100%;
  }

  .legal-accordion__title {
    padding: 14px 20px;
    overflow-wrap: break-word;
  }

  .legal-accordion__body {
    padding: 0px 20px;
  }
}

@media (max-width: 640px) {
  .home-steps {
    padding-block: 0 60px;
  }

  .home-steps__list {
    gap: 40px;
    margin-top: 24px;
  }

  .home-steps__item {
    gap: 12px;
  }

  .home-steps__number {
    width: 40px;
    height: 40px;
  }

  .home-steps__bottom {
    margin-top: 24px;
  }

  .legal-section__heading {
    margin-bottom: 12px;
  }

  .legal-section__meta {
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 24px;
  }

  .legal-accordion__title {
    font-size: 15px;
    line-height: 18px;
    padding: 12px 16px;
    word-break: break-word;
  }

  .legal-accordion__body {
    font-size: 12.5px;
    line-height: 15px;
    padding: 0px 16px;
  }

  .legal-accordion__title svg {
    flex-shrink: 0;
  }
}

.home-steps__text {
  font-weight: 400;
  font-size: 15.5px;
  line-height: 165%;
  color: #1D1518;
  text-align: center;
}

.home-steps__bottom {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
  margin-top: 40px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: #8A7F83;
}

[dir="rtl"] .home-steps__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 34px;
  line-height: 41px;
}

[dir="rtl"] .home-steps__number {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 24px;
}

[dir="rtl"] .home-steps__text {
  line-height: 170%;
}

[dir="rtl"] .home-steps__bottom {
  font-family: var(--font-body);
  font-weight: 700;
  font-style: normal;
}

/* ======= Home Performance ======= */
.home-performance {
  background-color: #FAFBFC;
  padding-block: 100px;
  padding-inline: 20px;
}

.home-performance__container {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 100px;
}

.home-performance__visual {
  flex: 0 0 auto;
  width: 407px;
}

.home-performance__visual img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.home-performance__content {
  flex: 0 0 auto;
  width: 493px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.home-performance__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 42px;
  line-height: 110%;
  color: #202127;
  margin: 0;
}

.home-performance__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #1D1518;
  margin: 0;
}

.home-performance__subheading {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #1D1518;
  margin: 0;
}

.home-performance__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-performance__list-item {
  font-weight: 400;
  font-size: 15.5px;
  line-height: 165%;
  color: #1D1518;
  padding-inline-start: 16px;
  position: relative;
}

.home-performance__list-item::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: #1D1518;
  border-radius: 50%;
}

.home-performance__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.home-performance__actions .btn-blue {
  width: 134px;
  flex-shrink: 0;
  white-space: nowrap;
}

.home-performance__actions .btn-outline-blue {
  width: 260px;
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .home-performance {
    padding-block: 80px;
  }

  .home-performance__container {
    gap: 40px;
  }

  .home-performance__visual {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    max-width: 407px;
  }

  .home-performance__content {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    max-width: 493px;
    gap: 20px;
  }

  .home-performance__title {
    font-size: 36px;
  }

  .home-performance__description {
    font-size: 15.5px;
  }

  .home-performance__subheading {
    font-size: 15.5px;
  }

  .home-performance__list-item {
    font-size: 15px;
  }

  .home-performance__actions {
    margin-top: 20px;
  }

  .home-performance__actions {
    gap: 12px;
  }

  [dir="rtl"] .home-performance__title {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .home-performance__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  [dir="rtl"] .home-performance__container {
    flex-direction: column;
  }

  .home-performance__visual {
    width: 100%;
    max-width: 100%;
  }

  .home-performance__content {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .home-performance__actions {
    gap: 12px;
    justify-content: normal;
  }

  .home-performance {
    padding-block: 60px;
  }

  .home-performance__content {
    gap: 16px;
  }

  .home-performance__title {
    font-size: 32px;
  }

  .home-performance__description {
    font-size: 15px;
  }

  .home-performance__subheading {
    font-size: 15px;
  }

  .home-performance__list-item {
    font-size: 14.5px;
  }

  .home-performance__actions {
    margin-top: 16px;
    flex-direction: column;
  }

  .home-performance__actions .btn{
    width: 100%;
    max-width: 250px;
    height: 48px;
  }

  [dir="rtl"] .home-performance__title {
    font-size: 30px;
  }
}

[dir="rtl"] .home-performance__content {
  order: 2;
}

[dir="rtl"] .home-performance__visual {
  order: 1;
}

[dir="rtl"] .home-performance__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-style: normal;
  font-size: 42px;
  line-height: 110%;
}

[dir="rtl"] .home-performance__actions .btn-blue {
  width: 110px;
  height: 48px;
  flex-shrink: 0;
}

@media (max-width: 640px) { 
  [dir="rtl"] .home-performance__actions .btn-blue {
    width: 100%;
  }
}

[dir="rtl"] .home-performance__actions .btn-outline-blue {
  width: 260px;
  height: 48px;
  padding: 0 24px;
  white-space: nowrap;
  flex-shrink: 0;
}

[dir="rtl"] .home-performance__description,
[dir="rtl"] .home-performance__subheading,
[dir="rtl"] .home-performance__list-item {
  text-align: right;
}

/* ======= Home Arabic ======= */
.home-arabic {
  background: linear-gradient(237.02deg, #4897FF -10.6%, #0454D8 80.93%);
  padding-block: 120px;
  padding-inline: 20px;
}

.home-arabic__container {
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.home-arabic__heading {
  width: 820px;
  max-width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.home-arabic__description-wrapper {
  width: 820px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-arabic__title {
  color: #FFFFFF;
}

.home-arabic__description {
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

.home-arabic__cards {
  width: 100%;
  max-width: 1040px;
  height: 418px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-inline: 40px;
  gap: 30px;
  background: linear-gradient(237.02deg, #1977F3 -10.6%, #0258E6 80.93%);
  border-radius: 4px;
  box-shadow: 2px 12px 180px rgba(37, 41, 46, 0.25);
}

.home-arabic__card {
  flex: 1;
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding-block: 60px;
  text-align: center;
  border: none;
  outline: none;
  box-shadow: none;
}

.home-arabic__card-divider {
  width: 1px;
  flex-shrink: 0;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.1);
}

.home-arabic__card-title {
  width: 280px;
  font-size: 21px;
  font-weight: 500;
  line-height: 142%;
  color: #FFFFFF;
}

.home-arabic__card-text {
  width: 280px;
  color: #F1F2F2;
}

/* ======= Home Features Grid ======= */
.home-features-grid {
  background-color: #FFFFFF;
  padding-block: 96px;
  padding-inline: 32px;
}

.home-features-grid__container {
  width: 100%;
  max-width: 1414px;
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.home-features-grid__intro {
  flex: 0 1 384px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 32px;
  gap: 20px;
}

.home-features-grid__intro-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.home-features-grid__intro-icon {
  width: 66px;
  height: 66px;
  background-color: #EEF5FB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.home-features-grid__intro-icon .home-features-grid__intro-icon-bg{
    width: 46px;
    height: 46px;
    background-color: #1977F3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.home-features-grid__intro-icon img {
  width: auto;
  max-width: 100%;
}

.home-features-grid__intro-title {
  max-width: 100%;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 42px;
  line-height: 52px;
  letter-spacing: -0.02em;
  color: #101828;
}

.home-features-grid__intro-description {
  max-width: 100%;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #475467;
  text-align: left;
}

.home-features-grid__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-features-grid__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  column-gap: 32px;
  row-gap: 32px;
  align-items: stretch;
}

.home-feature-card {
  background: rgba(25, 119, 243, 0.11);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  box-sizing: border-box;
}

.home-feature-card__icon {
  width: 48px;
  height: 48px;
  background-color: #1977F3;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-feature-card__icon img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.home-feature-card__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.home-feature-card__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-feature-card__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: #101828;
  margin: 0;
}

.home-feature-card__description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #475467;
  margin: 0;
}

.home-feature-card__description strong {
  font-weight: 700;
}

.home-feature-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #0258E6;
  text-decoration: none;
  margin-top: auto;
  transition: color 0.3s ease;
}

.home-feature-card__link:hover,
.home-feature-card__link:focus-visible {
  color: #EF4109;
}

.home-feature-card__link:focus-visible {
  outline: 2px solid #1C66CB;
  outline-offset: 2px;
  border-radius: 4px;
}

.home-feature-card__link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.home-features-grid__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin-top: 32px;
}

.home-features-grid__cta .btn-blue {
  height: 48px;
  width: 134px;
  flex-shrink: 0;
}

.home-features-grid__cta .btn-outline-blue {
  width: 214px;
  min-width: 214px;
  flex-shrink: 0;
}

.features-intro {
  padding: 70px 15px 60px;
  background: #FFFFFF;
}

.features-showcase {
  padding: 60px 15px 15px;
}

.features-showcase--warm {
  background: #FCFBFA;
}

.features-intro__container {
  max-width: 1242px;
  width: 100%;
  margin: 0 auto;
}

.features-intro__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
}

.features-intro__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 42px;
  line-height: 52px;
  color: #1C65CB;
  text-align: center;
  margin: 0;
}

.features-intro__description {
  max-width: 700px;
  margin-top: 12px;
  font-size: 15px;
  line-height: 18px;
  color: #8A7F83;
  text-align: center;
  margin: 12px 0 0;
}

.features-row {
  display: flex;
  align-items: flex-start;
  gap: 64px;
  justify-content: space-between;
  overflow: hidden;
}

.features-row--reverse {
  flex-direction: row-reverse;
}

.features-row--reverse .features-row__visual {
  padding: 0;
  transform: translateX(var(--features-image-offset));
}

[dir="rtl"]  .features-row--reverse .features-row__visual {
  transform: translateX(calc(var(--features-image-offset) * -1));
}

.features-row:not(.features-row--reverse) .features-row__visual {
  flex: 0 0 auto;
  width: auto;
  padding: 0px;
  transform: translateX(calc(var(--features-image-offset) * -1));
}

[dir="rtl"] .features-row:not(.features-row--reverse) .features-row__visual{
  transform: translateX(var(--features-image-offset));
}

.features-row__visual img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.features-row__content {
  width: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 50px 0px 0px 0px;
}

.features-row__icon {
  width: 46px;
  height: 46px;
  background: #EAF2FC;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-row__icon img {
  width: auto;
  height: auto;
}

.features-row .pricing-table__title {
  text-align: start;
  max-width: 430px;
  font-size: 30px;
  line-height: 125%;
  color: #1C65CB;
  margin-top: 24px;
}

.features-row .pricing-table__description {
  text-align: start;
  max-width: 420px;
  width: auto;
  align-self: flex-start;
  font-size: 15.5px;
  line-height: 172%;
  color: #8A7F83;
  margin-top: 22px;
}

.features-row__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 28px;
}

.features-row__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 17px;
  color: #1D1518;
}

.features-row__list-item::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #EA7317;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

[dir="rtl"] .features-row .pricing-table__title {
  text-align: right;
}

[dir="rtl"] .features-row .pricing-table__description {
  text-align: right;
}

[dir="rtl"] .features-row__list-item {
  text-align: right;
}

.features-cta {
  padding: 70px 15px 0px;
  background: #FFFFFF;
}

.features-cta.features-final_cta{
  padding: 40px 15px 70px;
}

.features-cta__wrapper {
  max-width: 401px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-cta__heading {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #1D1518;
  text-align: center;
  margin: 0;
}

.features-final_cta .features-cta__heading {
  font-family: Fraunces, serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 39px;
  color: #1C65CB;
  text-align: center;
}

[dir="rtl"] .features-final_cta .features-cta__heading {
  text-align: center;
}

.features-cta__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.features-cta__actions .btn-blue {
  width: 134px;
  height: 48px;
  flex: 0 0 auto;
  flex-shrink: 0;
  white-space: nowrap;
}

.features-cta__actions .btn-outline-blue {
  width: 214px;
  height: 48px;
  flex: 0 0 auto;
  flex-shrink: 0;
  white-space: nowrap;
}

[dir="rtl"] .features-cta__actions .btn-outline-blue {
  width: 260px;
}

[dir="rtl"] .home-features-grid__intro {
  padding-right: 0;
  padding-left: 32px;
}

[dir="rtl"] .home-features-grid__intro-heading {
  align-items: flex-start;
}

[dir="rtl"] .home-features-grid__intro-title {
  text-align: right;
  width: 384px;
  font-family: var(--font-body);
  line-height: 50px;
}

[dir="rtl"] .home-features-grid__intro-description {
  text-align: right;
  width: 352px;
}

[dir="rtl"] .home-feature-card__content {
  align-items: flex-start;
}

[dir="rtl"] .home-feature-card__title {
  text-align: right;
  font-weight: 400;
}

[dir="rtl"] .home-feature-card__description {
  text-align: right;
}

[dir="rtl"] .home-feature-card__link {
  font-weight: 400;
  justify-content: flex-end;
  width: auto;
  direction: ltr;
}

[dir="rtl"] .home-feature-card__link svg {
  width: 14px;
  height: 14px;
}

[dir="rtl"] .home-feature-card__link:hover,
[dir="rtl"] .home-feature-card__link:focus-visible {
  color: #EF4109;
}

[dir="rtl"] .home-features-grid__cta .btn-blue {
  width: 110px;
}

[dir="rtl"] .home-features-grid__cta .btn-outline-blue {
  width: 260px;
  min-width: 260px;
}

@media (max-width: 768px) {
  [dir="rtl"] .home-features-grid__container {
    flex-direction: column;
  }

  [dir="rtl"] .home-features-grid__intro {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  [dir="rtl"] .home-features-grid__intro-title {
    width: 100%;
  }

  [dir="rtl"] .home-features-grid__intro-description {
    width: 100%;
  }

  [dir="rtl"] .home-features-grid__cards {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-auto-flow: row;
  }

  [dir="rtl"] .home-feature-card {
    width: 100%;
  }

  [dir="rtl"] .home-features-grid__cta {
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }

  [dir="rtl"] .home-features-grid__cta .btn-blue,
  [dir="rtl"] .home-features-grid__cta .btn-outline-blue {
    width: 100%;
    height: 48px;
  }
}

@media (max-width: 640px) {
  [dir="rtl"] .home-features-grid {
    padding-block: 48px;
    padding-inline: 16px;
  }

  [dir="rtl"] .home-features-grid__intro-title {
    font-size: 32px;
    line-height: 40px;
  }

  [dir="rtl"] .home-features-grid__intro-description {
    font-size: 16px;
    line-height: 24px;
  }

  [dir="rtl"] .home-feature-card {
    padding: 20px;
    gap: 48px;
  }

  [dir="rtl"] .home-feature-card__title {
    font-size: 18px;
    line-height: 26px;
  }

  [dir="rtl"] .home-feature-card__description {
    font-size: 14px;
    line-height: 20px;
  }

  [dir="rtl"] .home-feature-card__icon {
    width: 40px;
    height: 40px;
  }

  [dir="rtl"] .home-feature-card__icon img {
    max-width: 24px;
    max-height: 24px;
  }

  [dir="rtl"] .home-features-grid__cta {
    gap: 12px;
  }
}

[dir="rtl"] .home-arabic__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-style: normal;
  font-size: 42px;
  line-height: 110%;
}

[dir="rtl"] .home-arabic__description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
}

[dir="rtl"] .home-arabic__cards {
  height: 352px;
}

[dir="rtl"] .home-arabic__card-title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 21px;
  line-height: 142%;
}

[dir="rtl"] .home-arabic__card-text {
  font-weight: 400;
}

@media (max-width: 768px) {
  :not([dir="rtl"]) .home-features-grid__container {
    flex-direction: column;
  }

  :not([dir="rtl"]) .home-features-grid__intro {
    width: 100%;
    padding-right: 0;
  }

  :not([dir="rtl"]) .home-features-grid__intro-title {
    width: 100%;
  }

  :not([dir="rtl"]) .home-features-grid__intro-description {
    width: 100%;
  }

  :not([dir="rtl"]) .home-features-grid__cards {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-auto-flow: row;
  }

  :not([dir="rtl"]) .home-feature-card {
    width: 100%;
  }

  :not([dir="rtl"]) .home-features-grid__cta {
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }

  :not([dir="rtl"]) .home-features-grid__cta .btn-blue,
  :not([dir="rtl"]) .home-features-grid__cta .btn-outline-blue {
    width: 100%;
    height: 48px;
  }
}

@media (max-width: 640px) {
  :not([dir="rtl"]) .home-features-grid {
    padding-block: 48px;
    padding-inline: 16px;
  }

  :not([dir="rtl"]) .home-features-grid__intro-title {
    font-size: 32px;
    line-height: 40px;
  }

  :not([dir="rtl"]) .home-features-grid__intro-description {
    font-size: 16px;
    line-height: 24px;
  }

  :not([dir="rtl"]) .home-feature-card,
  [dir="rtl"] .home-feature-card {
    padding: 20px;
    gap: 30px;
  }

  :not([dir="rtl"]) .home-feature-card__title {
    font-size: 18px;
    line-height: 26px;
  }

  :not([dir="rtl"]) .home-feature-card__description {
    font-size: 14px;
    line-height: 20px;
  }

  :not([dir="rtl"]) .home-feature-card__icon {
    width: 40px;
    height: 40px;
  }

  :not([dir="rtl"]) .home-feature-card__icon img {
    max-width: 24px;
    max-height: 24px;
  }

  :not([dir="rtl"]) .home-features-grid__cta {
    gap: 12px;
  }
}

@media (max-width: 1134px) {
  .home-features-grid__container{
    gap: 20px;
  }
  .home-features-grid__intro{
    flex: 0 1 360px;
    padding-right: 0px;
  }
  .home-features-grid__cards{
    column-gap: 20px;
    row-gap: 20px;
    grid-auto-flow: row;
    grid-template-columns: repeat(1, 1fr);
  }
  .home-feature-card{
    gap: 40px;
  }
  .home-feature-card__link{
    margin-top: 15px;
  }
  [dir="rtl"] .home-features-grid__intro{
    padding-right: 0;
    padding-left: 0px;
  }
}

@media (max-width: 1024px) {
  .home-arabic {
    padding-block: 80px;
  }

  .home-arabic__container {
    gap: 40px;
  }

  .home-arabic__heading {
    gap: 20px;
  }

  .home-arabic__title {
    font-size: 36px;
  }

  .home-arabic__description {
    font-size: 15.5px;
  }

  .home-arabic__description-wrapper {
    gap: 16px;
  }

  .home-arabic__cards{
    height: 380px;
    max-width: 100%;
    gap: 20px;
  }

  .home-arabic__card {
    padding-block: 48px;
    padding-left: 15px;
    padding-right: 15px;
    gap: 16px;
  }

  .home-arabic__card-icon {
    width: 72px;
    height: 72px;
  }

  .home-arabic__card-title {
    font-size: 18px;
  }

  .home-arabic__card-text {
    font-size: 13px;
  }

  [dir="rtl"] .home-arabic__title {
    font-size: 34px;
  }

  [dir="rtl"] .home-arabic__description {
    font-size: 15px;
  }

  [dir="rtl"] .home-arabic__card-title {
    font-size: 17px;
  }

  [dir="rtl"] .home-arabic__card-text {
    font-size: 12px;
  }

  [dir="rtl"] .home-arabic__cards{
    height: auto;
  }
}

@media (max-width: 992px) {
  .home-arabic__card{
    padding-block: 40px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
  }
  .home-arabic__cards{
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    padding-inline: 0px;
    gap: 0px;
  }
  .home-arabic__card-divider{
    height: 1px;
    width: 100%;
  }
  .home-performance__actions .btn-blue{
    height: 48px;
  }
  .home-features-grid__intro{
    flex: 0 1 290px;
  }
  [dir="rtl"] .home-features-grid__intro-title,
  [dir="rtl"] .home-features-grid__intro-description{
    width: 100%;
  }
}

@media (max-width: 768px) {
  .home-arabic {
    padding-block: 60px;
  }

  .home-arabic__container {
    gap: 32px;
  }

  .home-arabic__heading {
    gap: 16px;
  }

  .home-arabic__title {
    font-size: 32px;
  }

  .home-arabic__description {
    font-size: 15px;
  }

  .home-arabic__description-wrapper {
    gap: 12px;
  }

  [dir="rtl"] .home-arabic__cards {
    height: auto;
  }

  .home-arabic__card {
    width: 100%;
    padding-block: 40px;
    gap: 14px;
  }

  .home-arabic__card-icon {
    width: 64px;
    height: 64px;
  }

  .home-arabic__card-title {
    font-size: 16px;
  }

  .home-arabic__card-text {
    font-size: 12px;
  }

  [dir="rtl"] .home-arabic__title {
    font-size: 30px;
  }

  [dir="rtl"] .home-arabic__description {
    font-size: 14px;
  }

  [dir="rtl"] .home-arabic__card-title {
    font-size: 15px;
  }

  [dir="rtl"] .home-arabic__card-text {
    font-size: 11px;
  }

  .home-features-grid__intro{
    flex: 0 1 auto;
    padding-bottom: 30px;
  }
  .home-features-grid__cta .btn{
    max-width: 220px;
  }
  [dir="rtl"] .home-features-grid__intro-title br{
    display: none;
  }
}

@media (max-width: 640px) {
  .home-arabic {
    padding-block: 48px;
  }

  .home-arabic__container {
    gap: 24px;
  }

  .home-arabic__heading {
    gap: 12px;
  }

  .home-arabic__title {
    font-size: 28px;
  }

  .home-arabic__description {
    font-size: 14px;
  }

  .home-arabic__description-wrapper {
    gap: 10px;
  }

  [dir="rtl"] .home-arabic__cards {
    height: auto;
  }

  .home-arabic__card {
    padding-block: 32px;
    gap: 12px;
  }

  .home-arabic__card-icon {
    width: 56px;
    height: 56px;
  }

  .home-arabic__card-title {
    font-size: 14px;
  }

  .home-arabic__card-text {
    font-size: 11px;
  }

  [dir="rtl"] .home-arabic__title {
    font-size: 26px;
  }

  [dir="rtl"] .home-arabic__description {
    font-size: 13px;
  }

  [dir="rtl"] .home-arabic__card-title {
    font-size: 13px;
  }

  [dir="rtl"] .home-arabic__card-text {
    font-size: 10px;
  }
}

@media (max-width: 350px) {
  .home-arabic__cards{
    margin: 0;
    width: 100%;
    max-width: 100%;
  }
}

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: none;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

[dir="rtl"] .back-to-top {
  right: auto;
  left: 30px;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top__icon {
  width: 18px;
  height: auto;
  fill: currentColor;
  transform: rotate(180deg);
  pointer-events: none;
}

.home-pricing {
  background-color: #FFFFFF;
  padding-block: 27px;
  padding-inline: 15px;
}

.home-pricing__container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
}

.home-pricing__cards {
  display: flex;
  gap: 17px;
  justify-content: center;
}

.home-pricing__card {
  flex: 0 0 402px;
  width: 402px;
  height: auto;
  background-color: #FFFFFF;
  border: 1px solid #ECE5E3;
  border-radius: 12px;
  padding: 22px 24px 21px;
  display: flex;
  flex-direction: column;
}

.home-pricing__card-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #1D1518;
  margin: 0 0 10px;
}

.home-pricing__card-description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #8A7F83;
  margin: 0 0 21px;
}

.home-pricing__card-cta {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #1C65CB;
  text-decoration: none;
}

.home-pricing__card-cta:hover,
.home-pricing__card-cta:focus-visible {
  color: #EF4109;
}

.home-pricing__card-cta:focus-visible {
  outline: 2px solid #1C66CB;
  outline-offset: 2px;
  border-radius: 2px;
}

[dir="rtl"] .home-pricing__card-title {
  text-align: right;
}

[dir="rtl"] .home-pricing__card-description {
  text-align: right;
}

[dir="rtl"] .home-pricing__card-cta {
  text-align: right;
}

@media (max-width: 1024px) {
  .home-pricing {
    padding-inline: 15px;
  }

  .home-pricing__cards {
    gap: 12px;
  }

  .home-pricing__card {
    flex: 1 1 0;
    max-width: 402px;
  }

  [dir="rtl"] .home-pricing__card-title {
    text-align: right;
  }

  [dir="rtl"] .home-pricing__card-description {
    text-align: right;
  }

  [dir="rtl"] .home-pricing__card-cta {
    text-align: right;
  }
}

@media (max-width: 768px) {
  .home-pricing {
    padding-block: 27px;
    padding-inline: 15px;
  }

  .home-pricing__cards {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .home-pricing__card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 402px;
    height: auto;
  }

  [dir="rtl"] .home-pricing__card-title {
    text-align: right;
  }

  [dir="rtl"] .home-pricing__card-description {
    text-align: right;
  }

  [dir="rtl"] .home-pricing__card-cta {
    text-align: right;
  }
}

@media (max-width: 640px) {
  .home-pricing {
    padding-inline: 15px;
  }

  .home-pricing__card {
    padding: 16px 18px 14px;
    border-radius: 8px;
  }

  .home-pricing__card-title {
    font-size: 16px;
    line-height: 20px;
  }

  .home-pricing__card-description {
    font-size: 13px;
    line-height: 15px;
  }

  .home-pricing__card-cta {
    font-size: 13px;
    line-height: 15px;
  }

  [dir="rtl"] .home-pricing__card-title {
    text-align: right;
  }

  [dir="rtl"] .home-pricing__card-description {
    text-align: right;
  }

  [dir="rtl"] .home-pricing__card-cta {
    text-align: right;
  }
}

.pricing-table {
  background: #FFFFFF;
  width: 100%;
  padding: 90px 20px;
}

.pricing-table__container {
  width: 1040px;
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.pricing-table__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.pricing-table__title {
  width: auto;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 42px;
  line-height: 110%;
  letter-spacing: 0;
  color: #1849A9;
  text-align: center;
  margin: 0;
}

.pricing-table__description {
  width: 820px;
  align-self: stretch;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 160%;
  color: #2B2B2F;
  text-align: center;
  margin: 0;
}

.pricing-table__wrapper {
  width: 1040px;
  background: #FCFCFD;
  border: 1px solid #EAECF0;
}

.pricing-table__grid {
  display: grid;
  grid-template-columns: repeat(4, 260px);
}

.pricing-table__column {
  background: #FCFCFD;
  transition: all 0.35s ease;
}

.pricing-table__column:hover {
  background: #FFFFFF;
  box-shadow: 0px 4px 30px 17px rgba(113,116,117,0.10);
  cursor: pointer;
}

.pricing-table__column:hover .pricing-table__cta .btn {
  background-color: #EF4109;
  color: #FFFFFF;
}

.pricing-table__header {
  padding: 30px 10px 20px 20px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.pricing-table__badge {
  background: #D1E9FF;
  border-radius: 8px;
  padding: 6px 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  color: #101828;
}

.pricing-table__price {
  padding: 0 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  line-height: 115%;
  color: #101828;
}

.pricing-table__plan-desc {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
  color: #5E606C;
  margin: 0;
  padding: 0 20px;
  padding-top: 5px;
  padding-bottom: 20px;
}

.pricing-table__divider {
  border-top: 1px solid #D0D5DD;
}

.pricing-table__features {
  display: flex;
  flex-direction: column;
}

.pricing-table__feature {
  height: 52px;
  padding: 0 20px 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #EAECF0;
}

.pricing-table__feature svg {
  flex-shrink: 0;
}

.pricing-table__feature span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  color: #101828;
}

.pricing-table__cta {
  height: 128px;
  padding: 30px 30px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-table__cta .btn {
  width: 100%;
}

.pricing-plans {
  background: #FFFFFF;
  width: 100%;
  padding: 35px 15px;
}

.pricing-plans__container {
  max-width: 1240px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-plans__card {
  background: #FFFFFF;
  border: 1px solid #ECE5E3;
  border-radius: 16px;
  padding: 36px 48px;
  height: 290px;
}

.pricing-plans__card--addons {
  height: 120px;
  padding: 26px 48px;
}

.pricing-plans__card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  color: #1C65CB;
  margin: 0 0 10px;
}

.pricing-plans__card-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #8A7F83;
  margin: 0 0 27px;
}

.pricing-plans__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-plans__chip {
  background: #EAF2FC;
  border-radius: 999px;
  padding: 7px 14px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  color: #1A3C6E;
}

.pricing-plans__action {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
}

.pricing-plans__card:nth-of-type(1) .pricing-plans__action .btn-orange {
  width: 201px;
  padding: 12px 12px;
}

.pricing-plans__card:nth-of-type(2) .pricing-plans__action .btn-orange {
  width: 211px;
  padding: 12px 12px;
}

.pricing-plans__helper {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #8A7F83;
}

.pricing-plans__card--addons .pricing-plans__card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #1C65CB;
  margin: 0 0 12px;
}

.pricing-plans__card--addons .pricing-plans__card-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: #8A7F83;
  margin: 0;
}

[dir="rtl"] .pricing-plans__card-title,
[dir="rtl"] .pricing-plans__card-desc {
  text-align: right;
}

@media (max-width: 1024px) {
  .pricing-plans__card {
    padding: 24px 32px;
    height: auto;
  }

  .pricing-plans__card--addons {
    padding: 20px 32px;
    height: auto;
  }

  .pricing-plans__card-desc {
    margin-bottom: 20px;
  }

  .pricing-plans__chips {
    margin-bottom: 20px;
  }

  .pricing-plans__action {
    margin-top: 24px;
  }
}

@media (max-width: 768px) {
  .pricing-plans {
    padding: 24px 15px;
  }

  .pricing-plans__card {
    padding: 20px 24px;
    height: auto;
  }

  .pricing-plans__card--addons {
    padding: 16px 24px;
    height: auto;
  }

  .pricing-plans__card-title {
    font-size: 20px;
    line-height: 26px;
  }

  .pricing-plans__card-desc {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 16px;
  }

  .pricing-plans__chips {
    gap: 8px;
    margin-bottom: 16px;
  }

  .pricing-plans__chip {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 14px;
  }

  .pricing-plans__action {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 20px;
  }

  .pricing-plans__card--addons .pricing-plans__card-title {
    font-size: 16px;
    line-height: 20px;
  }

  .pricing-plans__card--addons .pricing-plans__card-desc {
    font-size: 14px;
    line-height: 17px;
  }
}

@media (max-width: 992px) {
  .pricing-table__description{
    width: 100%;
    max-width: 100%;
  }
  .pricing-table{
    padding: 80px 15px;
  }
  .pricing-table__container{
    padding-inline: 0px;
  }
}

@media (max-width: 768px) {
  .pricing-table__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1280px) {
  .pricing-table {
    padding-inline: 15px;
  }

  .pricing-table__container {
    width: 100%;
    max-width: 100%;
  }

  .pricing-table__wrapper {
    width: 100%;
  }

  .home-pricing__card {
    flex: 1 1 0;
    max-width: 402px;
  }
}

@media (max-width: 1134px) {
  .pricing-table__wrapper{
    width: 100%;
  }
  .pricing-table__grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 0px;
  }
  .pricing-table__container{
    width: 100%;
  }
}

@media (max-width: 992px) {
  .home-pricing__cards{
    flex-direction: column;
    align-items: center;
  }
  .home-pricing__card{
    padding: 20px;
    max-width: 100%;
  }
  .pricing-table__title{
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .pricing-table {
    padding: 70px 15px;
  }
  .pricing-table__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .pricing-table__title{
    font-size: 38px;
  }
}

@media (max-width: 640px) {
  .pricing-table {
    padding: 60px 15px;
  }
  .pricing-table__title{
    font-size: 34px;
  }
}

@media (max-width: 420px) {
  .pricing-table {
    padding: 50px 15px;
  }
  .pricing-table__title{
    font-size: 28px;
  }
}

.home-faq {
  background-color: rgba(230, 240, 254, 0.37);
  padding-block: 50px 100px;
  padding-inline: 20px;
}

.home-faq__container {
  max-width: 1240px;
  width: 100%;
  margin-inline: auto;
}

.home-faq__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  color: #1D1518;
  text-align: center;
  margin-bottom: 60px;
  font-style: italic;
}

.home-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 120px;
  row-gap: 70px;
}

.home-faq__item {
  display: flex;
  flex-direction: column;
}

.home-faq__question {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #1D1518;
  margin: 0 0 12px;
}

.home-faq__answer {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #8A7F83;
  max-width: 560px;
  margin: 0;
}

[dir="rtl"] .home-faq {
  background-color: #F6F9FF;
  padding-inline: 20px;
}

[dir="rtl"] .home-faq__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 34px;
  line-height: 41px;
}

[dir="rtl"] .home-faq__item {
  max-width: 560px;
  text-align: right;
}

[dir="rtl"] .home-faq__question {
  text-align: right;
}

[dir="rtl"] .home-faq__answer {
  text-align: right;
}

@media (max-width: 768px) {
  :not([dir="rtl"]) .home-faq__grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 48px;
  }

  :not([dir="rtl"]) .home-faq__item {
    max-width: none;
  }

  :not([dir="rtl"]) .home-faq__answer {
    max-width: none;
  }

  :not([dir="rtl"]) .home-faq__title {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 48px;
  }
}

@media (max-width: 768px) {
  [dir="rtl"] .home-faq__grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 48px;
  }

  [dir="rtl"] .home-faq__item {
    max-width: none;
  }

  [dir="rtl"] .home-faq__answer {
    max-width: none;
  }

  [dir="rtl"] .home-faq__title {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 40px;
  }
}

@media (max-width: 640px) {
  :not([dir="rtl"]) .home-faq {
    padding-block: 40px 60px;
  }

  :not([dir="rtl"]) .home-faq__title {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 40px;
  }

  :not([dir="rtl"]) .home-faq__grid {
    row-gap: 40px;
  }
}

@media (max-width: 640px) {
  [dir="rtl"] .home-faq {
    padding-block: 40px 60px;
  }

  [dir="rtl"] .home-faq__title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 36px;
  }

  [dir="rtl"] .home-faq__grid {
    row-gap: 36px;
  }
}

@media (max-width: 480px) {
  .home-faq {
    padding-inline: 16px;
  }

  :not([dir="rtl"]) .home-faq__title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 32px;
  }

  :not([dir="rtl"]) .home-faq__grid {
    row-gap: 32px;
  }

  [dir="rtl"] .home-faq__title {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 28px;
  }

  [dir="rtl"] .home-faq__grid {
    row-gap: 28px;
  }
}

@media (max-width: 390px) {
  .home-faq {
    padding-inline: 12px;
  }

  :not([dir="rtl"]) .home-faq__title {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 28px;
  }

  :not([dir="rtl"]) .home-faq__grid {
    row-gap: 28px;
  }

  [dir="rtl"] .home-faq__title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 24px;
  }

  [dir="rtl"] .home-faq__grid {
    row-gap: 24px;
  }
}

@media (max-width: 320px) {
  .home-faq {
    padding-inline: 8px;
  }

  :not([dir="rtl"]) .home-faq__title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 24px;
  }

  :not([dir="rtl"]) .home-faq__grid {
    row-gap: 24px;
  }

  [dir="rtl"] .home-faq__title {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  [dir="rtl"] .home-faq__grid {
    row-gap: 20px;
  }
}

/* ======= Footer ======= */
.site-footer {
  background-color: #1C65CB;
}

.site-footer__content {
  max-width: 1302.42px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 97.9261px;
  padding-bottom: 104.98px;
}

.site-footer__container {
  width: 100%;
  max-width: 1302.42px;
  margin-inline: auto;
}

.site-footer__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.site-footer__logo {
  display: block;
  width: auto;
  height: auto;
}

.site-footer__tagline {
  font-family: var(--font-footer);
  font-weight: 600;
  font-size: 17.6267px;
  line-height: 24px;
  color: #D9DBE1;
  margin: 0;
}

.site-footer__right {
  display: flex;
  align-items: flex-start;
  gap: 88.13px;
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 23.5px;
}

.site-footer__heading {
  font-family: var(--font-footer);
  font-weight: 700;
  font-size: 15.6682px;
  line-height: 22px;
  color: #FFFFFF;
  margin: 0;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 11.75px;
}

.site-footer__link {
  font-family: var(--font-footer);
  font-weight: 400;
  font-size: 15.6682px;
  line-height: 22px;
  color: #E8EBFA;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  color: #EF4109;
}

.site-footer__link:focus-visible {
  outline: 2px solid #1C66CB;
  outline-offset: 2px;
  border-radius: 2px;
}

.site-footer__contact-text {
  font-family: var(--font-footer);
  font-weight: 400;
  font-size: 15.6682px;
  line-height: 22px;
  color: #FFFFFF;
  margin: 0;
}

.site-footer__contact-text a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer__contact-text a:hover,
.site-footer__contact-text a:focus-visible {
  color: #EF4109;
}

.site-footer__contact-text a:focus-visible {
  outline: 2px solid #1C66CB;
  outline-offset: 2px;
  border-radius: 2px;
}

.site-footer__copyright {
  width: 100%;
  background: rgba(5,5,5,.4);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 29.3778px 15px;
}

.site-footer__copyright .site-footer__container {
  display: flex;
  justify-content: space-between;
}

.site-footer__copyright p {
  font-family: var(--font-copyright);
  font-weight: 400;
  font-size: 13.7097px;
  line-height: 24px;
  color: #FFFFFF;
  margin: 0;
}

.site-footer__copyright-links {
  display: flex;
  align-items: center;
  gap: 29.38px;
}

.site-footer__copyright-link {
  font-family: var(--font-copyright);
  font-weight: 400;
  font-size: 13.7097px;
  line-height: 24px;
  color: #D9DBE1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer__copyright-link:hover,
.site-footer__copyright-link:focus-visible {
  color: #EF4109;
}

.site-footer__copyright-link:focus-visible {
  outline: 2px solid #1C66CB;
  outline-offset: 2px;
  border-radius: 2px;
}

.site-footer__copyright-separator {
  font-family: var(--font-copyright);
  font-weight: 400;
  font-size: 13.7097px;
  line-height: 24px;
  color: #D9DBE1;
}

[dir="rtl"] .site-footer__tagline {
  font-family: var(--font-body);
  font-weight: 400;
  text-align: right;
}

[dir="rtl"] .site-footer__heading {
  font-family: var(--font-body);
}

[dir="rtl"] .site-footer__link {
  text-align: right;
  font-family: var(--font-body);
}

[dir="rtl"] .site-footer__contact-text {
  text-align: right;
  font-family: var(--font-body);
}

[dir="rtl"] .site-footer__copyright p {
  font-family: var(--font-body);
}

[dir="rtl"] .site-footer__copyright-link {
  font-family: var(--font-body);
}

@media (max-width: 1370px) {
  .back-to-top{
    right: 20px;
    bottom: 20px;
  }

  [dir="rtl"] .back-to-top{
    left: 20px;
    bottom: 20px;
  }
}

@media (max-width: 1024px) {
  .site-footer__content {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .site-footer__right {
    gap: 48px;
  }

  .site-footer__column {
    gap: 18px;
  }

  .site-footer__nav {
    gap: 9px;
  }

  .site-footer__left {
    gap: 8px;
  }
}

@media (max-width: 992px) {
  .back-to-top{
    right: 15px;
    bottom: 15px;
    width: 35px;
    height: 35px;
  }

  [dir="rtl"] .back-to-top{
    left: 15px;
    bottom: 15px;
  }

  .back-to-top__icon {
    width: 15px;
  }
  .site-footer__right {
    gap: 30px;
  }
  .site-footer__copyright-links{
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .site-footer__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  [dir="rtl"] .site-footer__content {
    align-items: flex-end;
    text-align: right;
  }

  .site-footer__left {
    align-items: center;
    gap: 12px;
  }

  [dir="rtl"] .site-footer__left {
    align-items: center;
    width: 100%;
  }

  [dir="rtl"] .site-footer__nav{
    width: 100%;
    align-items: center;
  }

  .site-footer__right {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    padding-top: 50px;
  }

  [dir="rtl"] .site-footer__right {
    align-items: flex-end;
  }

  .site-footer__column {
    align-items: center;
    width: 100%;
  }

  [dir="rtl"] .site-footer__column {
    align-items: center;
  }

  .site-footer__copyright .site-footer__container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  [dir="rtl"] .site-footer__copyright .site-footer__container {
    text-align: right;
  }

  .site-footer__copyright-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  [dir="rtl"] .site-footer__copyright-links {
    justify-content: center;
  }

  .site-footer__copyright {
    padding: 24px 15px;
  }
  [dir="rtl"] .site-footer__heading,
  [dir="rtl"] .site-footer__copyright p{
    text-align: center;
  }
}

@media (max-width: 640px) {
  .site-footer__content {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .site-footer__logo {
    width: 180px;
    height: auto;
  }

  .site-footer__tagline {
    font-size: 14px;
    line-height: 20px;
  }

  .site-footer__heading {
    font-size: 14px;
    line-height: 20px;
  }

  .site-footer__link {
    font-size: 14px;
    line-height: 20px;
  }

  .site-footer__contact-text {
    font-size: 14px;
    line-height: 20px;
  }

  .site-footer__right {
    gap: 32px;
    padding-top: 40px;
  }

  .site-footer__column {
    gap: 14px;
  }

  .site-footer__nav {
    gap: 8px;
  }

  .site-footer__left {
    gap: 8px;
  }

  .site-footer__copyright {
    padding: 20px 15px;
  }

  .site-footer__copyright p,
  .site-footer__copyright-link,
  .site-footer__copyright-separator {
    font-size: 12px;
    line-height: 20px;
  }

  .site-footer__copyright-links {
    gap: 14px;
  }
  .site-footer__copyright-links{
    gap: 20px;
  }
}

@media (max-width: 420px) {
  .site-footer__copyright-links{
    gap: 15px;
  }
}

/* ===== Shared Modal Base ===== */
.apply-modal {
  position: fixed;
  inset: 0;
  display: block;
  justify-content: center;
  overflow-y: auto;
  padding: 0 15px;
  scrollbar-width: thin;
  scrollbar-color: #D9D1CE transparent;
}

.apply-modal::-webkit-scrollbar {
  width: 5px;
}

.apply-modal::-webkit-scrollbar-track {
  background: transparent;
}

.apply-modal::-webkit-scrollbar-thumb {
  background: #D9D1CE;
  border-radius: 999px;
  min-height: 40px;
}

.apply-modal::-webkit-scrollbar-thumb:hover {
  background: #C4BBB8;
}

.apply-modal::-webkit-scrollbar-thumb:active {
  background: #1C65CB;
}

.apply-modal[hidden] {
  display: none;
}

/* ===== Apply Modal ===== */
.apply-modal {
  z-index: 1000;
  background: rgb(252 251 250);
}

.apply-modal__dialog {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #ECE5E3;
  width: 100%;
  max-width: 640px;
  padding: 48px 56px 40px;
  position: relative;
  margin: 80px auto;
}

/* ===== Shared Close Button ===== */
.apply-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  width: 24px;
  height: 24px;
  color: #8A7F83;
  cursor: pointer;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.apply-modal__close:hover {
  color: #1C65CB;
}

[dir="rtl"] .apply-modal__close {
  right: auto;
  left: 16px;
}

.apply-modal__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 30px;
  line-height: 37px;
  color: #1D1518;
  margin: 0 0 15px 0;
}

.apply-modal__description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  color: #8A7F83;
  margin: 0 0 24px 0;
}

.apply-modal__body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15.5px;
  line-height: 175%;
  color: #5A5350;
}

.apply-form__note {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  line-height: 160%;
  color: #8A7F83;
  text-align: center;
  margin: 0;
}

.apply-modal .contact-form__bottom {
  flex-direction: column;
  align-items: center;
  margin-top: 0px;
  padding-top: 8px;
}

.apply-modal .contact-form {
  max-width: 528px;
}

.apply-modal .contact-form__label {
  font-size: 14px;
  font-weight: 500;
}

.apply-modal .contact-form__input,
.apply-modal .contact-form__textarea {
  border-radius: 8px;
}

.apply-modal .contact-form__textarea {
  height: 72px;
}

.apply-modal .contact-form__submit {
  width: 100%;
  height: 52px;
}

/* ===== Exit Intent Modal Variant ===== */
.apply-modal__dialog--exit-intent {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 560px;
  height: 333px;
  padding: 64px 48px 40px;
  position: relative;
  margin: 80px auto;
}

.apply-modal__dialog--exit-intent .apply-modal__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  line-height: 35px;
  color: #1D1518;
  margin: 0 0 20px 0;
  max-width: 464px;
  text-align: center;
}

.apply-modal__dialog--exit-intent .apply-modal__description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 165%;
  color: #8A7F83;
  margin: 0 0 32px 0;
  max-width: 440px;
  text-align: center;
}

.apply-modal__dialog--exit-intent .apply-modal__actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 20px 0;
}

.apply-modal__dialog--exit-intent .apply-modal__primary {
  width: 100%;
  max-width: 440px;
  height: 52px;
}

.apply-modal__dialog--exit-intent .apply-modal__secondary {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 160%;
  color: #8A7F83;
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
  align-self: center;
  justify-self: center;
  display: flex;
  transition: color 0.2s ease;
}

.apply-modal__dialog--exit-intent .apply-modal__secondary:hover {
  color: #1C65CB;
}

@media (max-width: 1024px) {
  .apply-modal__dialog {
    padding: 44px 48px 36px;
    margin: 70px auto;
  }
}

@media (max-width: 768px) {
  .apply-modal__dialog {
    width: calc(100% - 32px);
    padding: 32px 24px 24px;
    margin: 40px auto;
  }
}

@media (max-width: 480px) {
  .apply-modal__dialog {
    width: calc(100% - 24px);
    padding: 24px 20px 20px;
    margin: 20px auto;
  }

  .apply-modal__close {
    top: 10px;
    right: 10px;
  }

  [dir="rtl"] .apply-modal__close {
    right: auto;
    left: 10px;
  }

  .apply-modal__title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 12px;
  }

  .apply-modal__description {
    font-size: 14px;
    line-height: 155%;
    margin-bottom: 20px;
  }

  .apply-modal .contact-form__field {
    margin-bottom: 16px;
  }

  .apply-form__note {
    font-size: 12px;
  }
}

@media (max-width: 320px) {
  .apply-modal__dialog {
    width: calc(100% - 16px);
    padding: 16px 12px 12px;
    margin: 10px auto;
  }

  .apply-modal__close {
    top: 10px;
    right: 10px;
  }

  [dir="rtl"] .apply-modal__close {
    right: auto;
    left: 10px;
  }

  .apply-modal__title {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 8px;
  }

  .apply-modal__description {
    font-size: 12px;
    line-height: 145%;
    margin-bottom: 12px;
  }

  .apply-modal .contact-form__label {
    font-size: 12px;
  }

  .apply-modal .contact-form__input,
  .apply-modal .contact-form__textarea {
    font-size: 14px;
    height: 44px;
  }

  .apply-modal .contact-form__textarea {
    height: 56px;
  }

  .apply-modal .contact-form__submit {
    height: 44px;
  }
}

/* ===== Exit Intent Modal Responsive ===== */
@media (max-width: 1024px) {
  .apply-modal__dialog--exit-intent {
    padding: 56px 40px 36px;
    margin: 70px auto;
    max-width: 520px;
  }

  .apply-modal__dialog--exit-intent .apply-modal__title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 18px;
    max-width: 100%;
  }

  .apply-modal__dialog--exit-intent .apply-modal__description {
    font-size: 16px;
    margin-bottom: 28px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .apply-modal__dialog--exit-intent {
    width: calc(100% - 30px);
    padding: 44px 24px 24px;
    margin: 40px auto;
    height: auto;
    min-height: 260px;
    max-width: none;
  }

  .apply-modal__dialog--exit-intent .apply-modal__title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 16px;
    max-width: 100%;
  }

  .apply-modal__dialog--exit-intent .apply-modal__description {
    font-size: 15px;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .apply-modal__dialog--exit-intent .apply-modal__primary {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .apply-modal__dialog--exit-intent .apply-modal__title {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 14px;
  }

  .apply-modal__dialog--exit-intent .apply-modal__description {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .apply-modal__dialog--exit-intent {
    width: calc(100% - 24px);
    padding: 32px 20px 20px;
    margin: 40px auto;
  }

  .apply-modal__dialog--exit-intent .apply-modal__title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 12px;
  }

  .apply-modal__dialog--exit-intent .apply-modal__description {
    font-size: 13px;
    line-height: 150%;
    margin-bottom: 16px;
  }

  .apply-modal__dialog--exit-intent .apply-modal__primary {
    height: 48px;
  }
}

@media (max-width: 320px) {
  .apply-modal__dialog--exit-intent {
    width: calc(100% - 16px);
    padding: 24px 16px 16px;
    margin: 20px auto;
  }

  .apply-modal__dialog--exit-intent .apply-modal__title {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
  }

  .apply-modal__dialog--exit-intent .apply-modal__description {
    font-size: 12px;
    line-height: 145%;
    margin-bottom: 12px;
  }

  .apply-modal__dialog--exit-intent .apply-modal__primary {
    height: 44px;
  }
}

@media (max-width: 1280px) {
  .features-row{
    gap: 30px;
  }
  .features-row__content{
    padding: 10px 0px 0px 0px;
  }
}

@media (max-width: 1024px) {
  .features-row,
  .features-row--reverse {
    flex-direction: column;
    gap: 40px;
  }

  .features-row__visual,
  .features-row--reverse .features-row__visual {
    width: 100%;
    padding: 0;
    transform: none;
  }

  .features-row__content {
    width: 100%;
    padding: 0;
  }

  .features-row .pricing-table__title {
    max-width: 100%;
    font-size: 26px;
  }

  .features-row .pricing-table__description {
    max-width: 100%;
  }

  .features-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .features-cta__actions .btn-blue {
    width: 100%;
    max-width: 260px;
  }

  .features-cta__actions .btn-outline-blue {
    width: 100%;
    max-width: 300px;
  }
  [dir="rtl"] .features-row--reverse .features-row__visual {
    transform: translateX(calc(var(--features-image-offset) * +1));
  }
  .features-row__visual, .features-row--reverse .features-row__visual{
    transform: translateX(calc(var(--features-image-offset) * -1));
  }
}

@media (max-width: 768px) {
  .features-intro,
  .features-showcase {
    padding: 50px 15px;
  }

  .features-intro__title {
    font-size: 32px;
    line-height: 40px;
  }

  .features-intro__description {
    font-size: 14px;
  }

  .features-row,
  .features-row--reverse {
    gap: 30px;
  }

  .features-row .pricing-table__title {
    font-size: 24px;
    line-height: 120%;
  }

  .features-row .pricing-table__description {
    font-size: 14px;
    line-height: 170%;
  }

  .features-row__list-item {
    font-size: 14px;
    line-height: 17px;
  }

  .features-cta__heading {
    font-size: 16px;
    line-height: 20px;
  }

  .features-cta__actions {
    gap: 12px;
    margin-top: 24px;
  }

  .features-cta__actions .btn-blue {
    max-width: 240px;
  }

  .features-cta__actions .btn-outline-blue {
    max-width: 280px;
  }
  .inner-hero--feat .inner-hero__actions .btn-white, 
  .inner-hero--feat .inner-hero__actions .btn-outline-blue,
  .inner-hero--feat .btn-outline-blue,
  .inner-hero--feat .btn-white,
  [dir="rtl"] .inner-hero--feat .btn-white {
    width: 260px;
  }

  .inner-hero.inner-hero--feat{
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .features-intro__title {
    font-size: 28px;
    line-height: 36px;
  }
  .features-row .pricing-table__title {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  :root {
    --features-image-offset: 26px;
  }
}

@media (max-width: 430px) {
  :root {
    --features-image-offset: 20px;
  }
}

@media (max-width: 370px) {
  :root {
    --features-image-offset: 15px;
  }
}