/* Hero slider */
.hero-slider-simple {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  /* margin: 24px 0 40px; */
  background:
    linear-gradient(135deg, rgba(7, 23, 43, 0.78), rgba(0, 0, 0, 0.3)), #0d2033;
  box-shadow: 0 24px 60px rgba(10, 24, 40, 0.18);
}
.hero-slider-wrapper {
  position: relative;
  min-height: 620px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding: 72px 64px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.04);
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease,
    transform 6s ease;
}
.hero-slide-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 16, 29, 0.82) 0%,
    rgba(5, 16, 29, 0.56) 45%,
    rgba(5, 16, 29, 0.14) 100%
  );
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}
.hero-slide-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  color: #ffffff;
}
.hero-slide-title {
  display: block;
  font-size: clamp(2.4rem, 5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}
.hero-slide-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-slider-simple .btn-primary,
.hero-slider-simple .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 56px;
  padding: 0px 15px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}
.hero-slider-simple .btn-primary {
  color: #ffffff;
  background: #00a4e4;
  box-shadow: 0 18px 35px rgba(244, 197, 66, 0.28);
}
.hero-slider-simple .btn-primary:hover,
.hero-slider-simple .btn-primary:focus-visible {
  transform: translateY(-2px);
  background: #ffd867;
  box-shadow: 0 22px 38px rgba(244, 197, 66, 0.35);
}
.hero-slider-simple .btn-outline {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}
.hero-slider-simple .btn-outline:hover,
.hero-slider-simple .btn-outline:focus-visible {
  transform: translateY(-2px);
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}
.slider-nav-arrows {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
}
.slider-arrow.prev {
  left: 28px;
}
.slider-arrow.next {
  right: 28px;
}
.slider-arrow:hover,
.slider-arrow:focus-visible {
  transform: translateY(-50%) scale(1.05);
}
.slider-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  backdrop-filter: blur(10px);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}
.slider-arrow:hover,
.slider-arrow:focus-visible {
  outline: none;
  /* transform: translateY(-2px); */
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.22);
}
.hid {
  display: none;
}
@media (max-width: 991px) {
  .hero-slider-simple,
  .hero-slider-wrapper {
    min-height: 520px;
  }
  .hero-slide {
    padding: 56px 40px 100px;
  }
  .hero-slide-title {
    max-width: 540px;
  }
}
@media (max-width: 767px) {
  .hero-slider-simple {
    min-height: 460px;
    margin: 16px 0 28px;
  }
  .hero-slider-wrapper {
    min-height: 460px;
  }
  .hero-slide {
    align-items: flex-end;
    padding: 32px 20px 92px;
  }
  .hero-slide::before {
    background: linear-gradient(
      180deg,
      rgba(5, 16, 29, 0.18) 0%,
      rgba(5, 16, 29, 0.82) 72%,
      rgba(5, 16, 29, 0.94) 100%
    );
  }
  .hero-slide-content {
    gap: 18px;
    max-width: 100%;
  }
  .hero-slide-title {
    font-size: clamp(1.9rem, 9vw, 3rem);
    line-height: 1.08;
  }
  .hero-slide-actions {
    /* width: 100%; */
  }
  .hero-slider-simple .btn-primary,
  .hero-slider-simple .btn-outline {
    width: 100%;
    min-width: 0;
    min-height: 52px;
  }
  .slider-arrow.prev {
    left: 12px;
  }
  .slider-arrow.next {
    right: 12px;
  }
  .slider-arrow {
    width: 48px;
    height: 48px;
    font-size: 1.7rem;
  }
}
.hero-contact-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 28px;
  /* margin: 0 0 32px; */
  background: #f5f5f5;
  box-shadow: 0 8px 24px rgba(18, 23, 30, 0.06);
}
.hero-contact-bar__text {
  color: #000000;
  font-size: 1.05rem;
  line-height: 1.5;
}
.hero-contact-bar__text strong {
  font-weight: 800;
}
.hero-contact-bar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.hero-contact-bar__call,
.hero-contact-bar__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 2px 16px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}
.hero-contact-bar__call {
  color: #ffffff;
  background: #44c7c7;
}
.hero-contact-bar__call:hover,
.hero-contact-bar__call:focus-visible {
  color: #ffffff;
  background: #31b6b6;
}
.hero-contact-bar__contact {
  color: #111111;
  background: #ffffff;
  border: 1px solid #d9d9d9;
}
.hero-contact-bar__contact:hover,
.hero-contact-bar__contact:focus-visible {
  color: #111111;
  background: #f7f7f7;
  border-color: #c6c6c6;
}
@media (max-width: 991px) {
  .hero-contact-bar {
    padding: 16px 20px;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-contact-bar__actions {
    width: 100%;
  }
  .hero-contact-bar__call,
  .hero-contact-bar__contact {
    flex: 1 1 0;
  }
}
@media (max-width: 767px) {
  .hero-contact-bar {
    gap: 16px;
    padding: 14px 16px;
    margin-bottom: 24px;
  }
  .hero-contact-bar__text {
    font-size: 0.98rem;
  }
  .hero-contact-bar__actions {
    flex-direction: column;
  }
  .hero-contact-bar__call,
  .hero-contact-bar__contact {
    width: 100%;
  }
}
.home-services-grid {
  display: none;
}
.home-services-tabs {
  margin: 0 0 40px;
  background: linear-gradient(180deg, #38c5d3 0%, #4aa8dd 100%);
  overflow: hidden;
}
.home-services-tabs__nav {
  display: flex;
  justify-content: center;
  align-items: stretch;
  background: #36c6d1;
}
.home-services-tabs__tab {
  position: relative;
  min-width: 170px;
  padding: 18px 26px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}
.home-services-tabs__tab + .home-services-tabs__tab::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: rgba(7, 39, 71, 0.55);
  transform: skewX(-28deg);
}
.home-services-tabs__tab span {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}
.home-services-tabs__tab.is-active {
  background: #343434;
}
.home-services-tabs__tab.is-active span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: #74d8ec;
}
.home-services-tabs__panels {
  padding: 14px 0 22px;
}
.home-services-tabs__panel {
  display: none;
}
.home-services-tabs__panel.is-active {
  display: block;
}
.home-services-tabs__grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.home-service-tile {
  position: relative;
  display: block;
  aspect-ratio: 2.08 / 1;
  overflow: hidden;
  border-radius: 4px;
  background: #b6d6e6;
  text-decoration: none;
}
.home-service-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.45s ease,
    opacity 0.35s ease;
}
.home-service-tile__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px;
  background: rgba(49, 49, 49, 0.92);
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
}
.home-service-tile__overlay h3 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.15;
}
.home-service-tile__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 18px;
  background: #66d0e3;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.home-service-tile:hover img,
.home-service-tile:focus-visible img {
  transform: scale(1.05);
}
.home-service-tile:hover .home-service-tile__overlay,
.home-service-tile:focus-visible .home-service-tile__overlay {
  opacity: 1;
}
.home-services-tabs__empty {
  grid-column: 1 / -1;
  padding: 28px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-align: center;
  font-weight: 700;
}
@media (max-width: 991px) {
  .home-services-tabs__nav {
    flex-wrap: wrap;
  }
  .home-services-tabs__tab {
    flex: 1 1 33.333%;
    min-width: 0;
  }
  .home-services-tabs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .home-service-tile__overlay h3 {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .home-services-tabs {
    margin-bottom: 28px;
  }
  .home-services-tabs__nav {
    flex-direction: column;
  }
  .home-services-tabs__tab {
    width: 100%;
    padding: 16px 18px;
  }
  .home-services-tabs__tab + .home-services-tabs__tab::before {
    display: none;
  }
  .home-services-tabs__grid {
    width: calc(100% - 20px);
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .home-service-tile__overlay {
    opacity: 1;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(49, 49, 49, 0.88) 100%
    );
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
  }
  .home-service-tile__overlay h3 {
    font-size: 1.05rem;
  }
  .home-service-tile__button {
    min-height: 36px;
    padding: 9px 14px;
  }
}
.home-about-highlight {
  padding: 36px 0 52px;
  background:
    radial-gradient(
      circle at top left,
      rgba(64, 198, 218, 0.12),
      transparent 32%
    ),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}
.home-about-highlight__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}
.home-about-highlight__column {
  position: relative;
  padding: 8px 0 0;
}
.home-about-highlight__eyebrow {
  position: relative;
  margin-bottom: 18px;
  padding-bottom: 14px;
  color: #000000;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
  border-bottom: 1px solid #dfe7ee;
}
.home-about-highlight__eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 54px;
  height: 3px;
  background: #27bce3;
}
.home-about-highlight__column h2 {
  margin: 0 0 18px;
  color: #0d2033;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
}
.home-about-highlight__column p {
  margin: 0 0 16px;
  color: #000000;
  font-size: 1rem;
  line-height: 1.8;
}
.home-about-highlight__points {
  display: grid;
  gap: 24px;
}
.home-about-highlight__point {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(13, 32, 51, 0.08);
}
.home-about-highlight__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: 3px;
  border-radius: 50%;
  background: rgba(39, 188, 227, 0.12);
  color: #27bce3;
  font-size: 0.9rem;
  font-weight: 900;
}
.home-about-highlight__point h3 {
  margin: 0 0 8px;
  color: #000000;
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.4;
}
.home-about-highlight__point p {
  margin: 0;
}
.home-about-highlight__column--story {
  padding: 30px 28px;
  background: #ffffff;
  border: 1px solid rgba(39, 188, 227, 0.14);
  box-shadow: 0 18px 40px rgba(14, 38, 61, 0.08);
}
.home-about-highlight__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.home-about-highlight__stat {
  padding: 18px 16px;
  background: linear-gradient(180deg, #f4fbff 0%, #ebf7ff 100%);
  border: 1px solid rgba(39, 188, 227, 0.14);
  text-align: center;
}
.home-about-highlight__stat strong {
  display: block;
  margin-bottom: 6px;
  color: #0d2033;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}
.home-about-highlight__stat span {
  display: block;
  color: #406076;
  font-size: 0.88rem;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .home-about-highlight__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .home-about-highlight__column--story {
    padding: 24px 22px;
  }
}
@media (max-width: 767px) {
  .home-about-highlight {
    padding: 28px 0 36px;
  }
  .home-about-highlight__inner {
    width: calc(100% - 20px);
    gap: 22px;
  }
  .home-about-highlight__eyebrow {
    font-size: 1.7rem;
    margin-bottom: 14px;
    padding-bottom: 12px;
  }
  .home-about-highlight__column h2 {
    margin-bottom: 14px;
  }
  .home-about-highlight__column p {
    font-size: 0.96rem;
    line-height: 1.7;
  }
  .home-about-highlight__point {
    gap: 12px;
    padding-bottom: 16px;
  }
  .home-about-highlight__stats {
    grid-template-columns: 1fr;
  }
}
.home-latest-blogs {
  padding: 40px 0 54px;
  background:
    radial-gradient(
      circle at top center,
      rgba(39, 188, 227, 0.08),
      transparent 30%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}
.home-latest-blogs__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.home-latest-blogs__header {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}
.home-latest-blogs__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(39, 188, 227, 0.1);
  color: #169fc4;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.home-latest-blogs__header h2 {
  margin: 0 0 12px;
  color: #000000;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
}
.home-latest-blogs__header p {
  margin: 0;
  color: #4b5e70;
  font-size: 1rem;
  line-height: 1.75;
}
.home-latest-blogs__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.home-latest-blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #ffffff;
  border: 1px solid rgba(13, 32, 51, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(12, 34, 56, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.home-latest-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(12, 34, 56, 0.12);
}
.home-latest-blog-card__image {
  display: block;
  aspect-ratio: 1.55 / 1;
  overflow: hidden;
}
.home-latest-blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.home-latest-blog-card:hover .home-latest-blog-card__image img {
  transform: scale(1.05);
}
.home-latest-blog-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 22px 22px 24px;
}
.home-latest-blog-card__body h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.35;
}
.home-latest-blog-card__body h3 a {
  color: #000000;
  text-decoration: none;
}
.home-latest-blog-card__body h3 a:hover {
  color: #169fc4;
}
.home-latest-blog-card__body p {
  margin: 0 0 18px;
  color: #000000;
  font-size: 0.98rem;
  line-height: 1.75;
}
.home-latest-blog-card__link {
  margin-top: auto;
  color: #169fc4;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.home-latest-blog-card__link:hover {
  color: #0d2033;
}
.home-latest-blogs__footer {
  margin-top: 28px;
  text-align: center;
}
.home-latest-blogs__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 2px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #149fd7 0%, #1ec7de 100%);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 16px 30px rgba(22, 159, 196, 0.2);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.home-latest-blogs__button:hover,
.home-latest-blogs__button:focus-visible {
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 20px 34px rgba(22, 159, 196, 0.28);
}
@media (max-width: 991px) {
  .home-latest-blogs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .home-latest-blogs {
    padding: 30px 0 40px;
  }
  .home-latest-blogs__inner {
    width: calc(100% - 20px);
  }
  .home-latest-blogs__header {
    margin-bottom: 22px;
  }
  .home-latest-blogs__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .home-latest-blog-card__body {
    padding: 18px 16px 20px;
  }
  .home-latest-blog-card__body h3 {
    font-size: 1.12rem;
  }
}
.home-testimonials {
  padding: 38px 0 56px;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}
.home-testimonials__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.home-testimonials__header {
  max-width: 820px;
  margin: 0 auto 24px;
  text-align: center;
}
.home-testimonials__header h2 {
  margin: 0 0 12px;
  color: #000000;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
}
.home-testimonials__header h2 span {
  color: #1faff0;
}
.home-testimonials__header p {
  margin: 0;
  color: #000000;
  font-size: 1rem;
  font-weight: 600;
}
.home-testimonials__stars {
  color: #ffb400;
  letter-spacing: 0.14em;
}
.home-testimonials__viewport {
  position: relative;
  overflow: hidden;
}
.home-testimonials__page {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  animation: testimonialsFade 0.45s ease;
}
.home-testimonials__page.is-active {
  display: grid;
}
.home-testimonial-card {
  position: relative;
  padding: 28px 28px 22px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 36, 0.06);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(15, 23, 36, 0.08);
}
.home-testimonial-card__quote-mark {
  color: #1faff0;
  font-size: 3rem;
  line-height: 1;
}
.home-testimonial-card__rating {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #ffb400;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
}
.home-testimonial-card p {
  margin: 18px 0 24px;
  color: #000000;
  font-size: 1.03rem;
  line-height: 1.9;
}
.home-testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 36, 0.08);
}
.home-testimonial-card__footer img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.home-testimonial-card__footer strong {
  display: block;
  color: #000000;
  font-size: 0.96rem;
  font-weight: 800;
}
.home-testimonial-card__footer span {
  display: block;
  color: #000000;
  font-size: 0.92rem;
}
.home-testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.home-testimonials__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d7dde4;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}
.home-testimonials__dot.is-active {
  background: #1faff0;
  transform: scale(1.15);
}
@keyframes testimonialsFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .home-testimonials {
    padding: 28px 0 40px;
  }
  .home-testimonials__inner {
    width: calc(100% - 20px);
  }
  .home-testimonials__page {
    grid-template-columns: 1fr;
  }
  .home-testimonial-card {
    padding: 22px 18px 18px;
  }
  .home-testimonial-card__rating {
    position: static;
    margin-top: 6px;
  }
  .home-testimonial-card p {
    font-size: 0.98rem;
    line-height: 1.75;
  }
}
.site-contact-banner {
  position: relative;
  overflow: hidden;
  background: none;
}
.site-contact-banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.site-contact-banner__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.site-contact-banner__overlay {
  position: relative;
  z-index: 1;
  padding: 52px 0 0;
}
.site-contact-banner__inner {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}
.site-contact-banner__form-wrap {
  position: relative;
  width: min(420px, 100%);
  padding: 0 0 18px;
}
.site-contact-banner__form-wrap h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.05;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}
.site-contact-banner__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-contact-banner__form input,
.site-contact-banner__form textarea {
  border: 1px solid rgba(10, 22, 34, 0.9);
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  color: #111111;
  font-size: 14px;
  padding: 12px 14px;
}
.site-contact-banner__form textarea {
  min-height: 120px;
  resize: vertical;
}
.site-contact-banner__form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-start;
  min-height: 46px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #1296d2 0%, #16b9e7 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(18, 150, 210, 0.24);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.site-contact-banner__form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(18, 150, 210, 0.3);
}
.site-promo-marquee {
  position: relative;
  overflow: hidden;
  padding: 14px 0 18px;
  background: #ffffff;
  border-top: 1px solid rgba(30, 159, 215, 0.12);
  border-bottom: 1px solid rgba(30, 159, 215, 0.12);
}
.site-promo-marquee__viewport {
  overflow: hidden;
  width: 100%;
}
.site-promo-marquee__track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: sitePromoMarquee 24s linear infinite;
  will-change: transform;
}
.site-promo-marquee__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid #9fd7ff;
  border-radius: 999px;
  background: linear-gradient(180deg, #f7fcff 0%, #eef8ff 100%);
  color: #2187c7;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(31, 175, 240, 0.08);
}
@keyframes sitePromoMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 11px));
  }
}
@media (max-width: 767px) {
  .site-contact-banner__overlay {
    padding-top: 28px;
  }
  .site-contact-banner__inner {
    width: calc(100% - 20px);
    justify-content: center;
  }
  .site-contact-banner__form-wrap {
    width: 100%;
    padding-bottom: 14px;
  }
  .site-contact-banner__form-wrap h2 {
    font-size: 2rem;
  }
  .site-contact-banner__form button {
    width: 100%;
  }
  .site-promo-marquee {
    padding: 12px 0 14px;
  }
  .site-promo-marquee__track {
    gap: 14px;
    animation-duration: 18s;
  }
  .site-promo-marquee__item {
    min-height: 38px;
    padding: 9px 14px;
    font-size: 13px;
  }
}
