@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #111827;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }
}

.section--gray {
  background: #f8fafc;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f6bf5;
  background: #eef3ff;
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 16px;
}
.section-tag--dark {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
}
.section-tag--dot {
  background: transparent;
  padding: 0;
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #111827;
  font-weight: 600;
}
.section-tag--dot::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2f6bf5;
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title--white {
  color: #fff;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }
}

.section-text {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn--primary {
  background: #2f6bf5;
  color: #fff;
}
.btn--primary:hover {
  background: #1a50d4;
  transform: translateY(-1px);
}
.btn--hero {
  background: #2f6bf5;
  color: #fff;
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 12px;
}
.btn--hero svg {
  flex-shrink: 0;
}
.btn--hero:hover {
  background: #1a50d4;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(47, 107, 245, 0.4);
}
.btn--outline {
  background: transparent;
  color: #2f6bf5;
  border: 1.5px solid #2f6bf5;
  padding: 10px 22px;
}
.btn--outline:hover {
  background: #2f6bf5;
  color: #fff;
}
.btn--block {
  width: 100%;
  justify-content: center;
}
.btn .btn__arrow {
  font-size: 18px;
  transition: transform 0.2s;
}
.btn:hover .btn__arrow {
  transform: translateX(4px);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 24px;
  transition: padding 0.3s ease;
}
@media (max-width: 768px) {
  .header {
    padding: 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }
}
.header__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  background: #ffffff;
  border-radius: 100px;
  padding: 10px 12px 10px 28px;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.14);
}
@media (max-width: 768px) {
  .header__card {
    border-radius: 0;
    box-shadow: none;
    padding: 0 20px;
    height: 64px;
  }
}
.header__logo img {
  height: 46px;
  width: auto;
}
@media (max-width: 768px) {
  .header__logo img {
    height: 38px;
  }
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 24px 28px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  }
  .header__nav.is-open {
    display: block;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
@media (max-width: 768px) {
  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
  }
}
.header__nav-list li a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  border-radius: 100px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.header__nav-list li a:hover, .header__nav-list li a.active {
  color: #2f6bf5;
}
@media (max-width: 768px) {
  .header__nav-list li a {
    padding: 13px 0;
    border-bottom: 1px solid #e5e7eb;
    width: 100%;
    border-radius: 0;
    font-size: 15px;
  }
}
.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3rem;
}
@media (max-width: 768px) {
  .header__actions {
    gap: 12px;
  }
}
.header__phone {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  font-size: 18px;
  font-weight: 600;
  color: #2f6bf5;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.header__phone svg {
  color: #2f6bf5;
  flex-shrink: 0;
}
.header__phone:hover {
  opacity: 0.8;
}
@media (max-width: 1024px) {
  .header__phone {
    display: none;
  }
}
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #111827;
  border-radius: 2px;
  transition: all 0.25s ease;
}
@media (max-width: 768px) {
  .header__hamburger {
    display: flex;
  }
}

.btn--pill {
  border-radius: 100px !important;
  padding: 12px 24px !important;
  font-size: 18px !important;
}
@media (max-width: 768px) {
  .btn--pill {
    padding: 6px 15px !important;
    font-size: 12px !important;
  }
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    min-height: 480px;
    height: 100svh;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11, 29, 62, 0.68) 0%, rgba(11, 29, 62, 0.38) 55%, rgba(11, 29, 62, 0.15) 100%);
}
.hero__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-direction: column;
  text-align: center;
  padding: 0 24px;
}
.hero__title {
  font-size: clamp(38px, 5.2vw, 72px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 36px;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 38px;
    margin-bottom: 28px;
  }
}

.btn--hero {
  background: #2f6bf5 !important;
  color: #fff !important;
  border-radius: 100px !important;
  padding: 16px 40px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 20px rgba(47, 107, 245, 0.35);
}
.btn--hero:hover {
  background: #1a50d4 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(47, 107, 245, 0.45) !important;
}
@media (max-width: 768px) {
  .btn--hero {
    padding: 7px 21px !important;
    font-size: 14px !important;
  }
}

.foundation {
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  margin-top: -2rem;
  z-index: 1;
  position: relative;
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  .foundation {
    padding: 0 0px;
    margin-bottom: 3rem;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
  }
}
.foundation__card {
  background: #ffffff;
  border-radius: 24px;
  padding: 72px 72px 0;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .foundation__card {
    padding: 56px 20px 0;
  }
}
@media (max-width: 768px) {
  .foundation__card {
    padding: 40px 20px 0;
    border-radius: 16px;
  }
}
.foundation__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 56px;
}
@media (max-width: 1024px) {
  .foundation__top {
    gap: 36px;
  }
}
@media (max-width: 768px) {
  .foundation__top {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 36px;
  }
}
.foundation__left {
  padding-top: 4px;
}
.foundation__heading {
  font-size: clamp(32px, 3.6vw, 38px);
  font-weight: 600;
  color: #0b1d3e;
  line-height: 1.15;
}
@media (max-width: 768px) {
  .foundation__heading {
    font-size: 26px;
  }
}
.foundation__heading {
  margin-top: 12px;
}
.foundation__right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  flex-direction: column;
}
.foundation__text {
  font-size: 14px;
  line-height: 1.75;
  color: #111827;
  margin-bottom: 28px;
}
.foundation__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .foundation__images {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .foundation__images::-webkit-scrollbar {
    display: none;
  }
}
.foundation__images img {
  width: 100%;
  height: 580px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  display: block;
  transition: transform 0.4s ease;
}
.foundation__images img:hover {
  transform: scale(1.02);
}
@media (max-width: 1024px) {
  .foundation__images img {
    height: 320px;
  }
}
@media (max-width: 768px) {
  .foundation__images img {
    flex: 0 0 78%;
    height: 260px;
    border-radius: 14px;
    scroll-snap-align: start;
  }
}

.hl {
  color: #2f6bf5;
  font-weight: 500;
}

.services {
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  margin-top: -2rem;
  z-index: 1;
  position: relative;
  padding: 0;
  background: #f3f6f7;
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  .services {
    padding: 35px 0;
  }
}
.services__header {
  text-align: center;
  margin-bottom: 48px;
  padding-top: 5rem;
}
@media (max-width: 768px) {
  .services__header {
    padding-top: 1rem;
    margin-bottom: 32px;
  }
}
.services__title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: #0b1d3e;
  line-height: 1.2;
  margin-top: 10px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .services__title {
    font-size: 26px;
  }
}

.svc-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f3f6f7;
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  margin-bottom: 24px;
  border: 10px solid white;
}
.svc-card:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .svc-card {
    grid-template-columns: 1fr;
  }
}
.svc-card__content {
  padding: 48px 52px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .svc-card__content {
    padding: 36px 32px;
  }
}
@media (max-width: 768px) {
  .svc-card__content {
    padding: 28px 24px;
  }
}
.svc-card__heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.svc-card__num {
  font-size: 13px;
  font-weight: 700;
  color: #2f6bf5;
  line-height: 1;
  flex-shrink: 0;
}
.svc-card__title {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  color: #0b1d3e;
  line-height: 1.2;
}
.svc-card__divider {
  width: 100%;
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 0 0 24px;
}
.svc-card__label {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 14px;
}
.svc-card__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  margin-bottom: 32px;
  flex: 1;
}
.svc-card__list ul li {
  font-size: 14px;
  color: #6b7280;
  padding: 5px 0 5px 16px;
  position: relative;
  line-height: 1.4;
}
.svc-card__list ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #111827;
  font-size: 16px;
  line-height: 1.3;
}
.svc-card__cta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  cursor: pointer;
  text-decoration: none;
  margin-top: auto;
}
.svc-card__cta:hover .svc-card__arrow {
  background: #1a50d4;
  transform: translateX(3px);
}
.svc-card__arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #2f6bf5;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.svc-card__image {
  height: 100%;
  min-height: 320px;
}
@media (max-width: 1024px) {
  .svc-card__image {
    min-height: 260px;
  }
}
@media (max-width: 768px) {
  .svc-card__image {
    min-height: 220px;
  }
}
.svc-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.commitment {
  background: #0b1d3e;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  margin-top: -2rem;
  z-index: 2;
  position: relative;
  padding: 80px 0 0;
}
@media (max-width: 768px) {
  .commitment {
    padding: 56px 0 0;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
  }
}
.commitment__header {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px 56px;
}
@media (max-width: 1024px) {
  .commitment__header {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 40px 48px;
  }
}
@media (max-width: 768px) {
  .commitment__header {
    padding: 0 20px 36px;
  }
}
.commitment .section-tag--dot {
  color: rgba(255, 255, 255, 0.75);
}
.commitment__title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .commitment__title {
    font-size: 24px;
  }
}
.commitment__slider-wrap {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 1024px) {
  .commitment__slider-wrap {
    padding: 0 56px;
  }
}
@media (max-width: 768px) {
  .commitment__slider-wrap {
    padding: 0 48px;
  }
}
.commitment__slider {
  display: flex;
  gap: 16px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.commitment__slider::-webkit-scrollbar {
  display: none;
}
.commitment__slider.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}
.commitment__card {
  flex: 0 0 calc((100% - 32px) / 3);
  scroll-snap-align: start;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .commitment__card {
    flex: 0 0 calc((100% - 16px) / 2);
  }
}
@media (max-width: 768px) {
  .commitment__card {
    flex: 0 0 90%;
  }
}
.commitment__card img {
  width: 100%;
  height: 430px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform 0.4s ease;
}
@media (max-width: 1024px) {
  .commitment__card img {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .commitment__card img {
    height: 280px;
  }
}
.commitment__card:hover img {
  transform: scale(1.04);
}
.commitment__card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 56px 20px 20px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.72));
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  pointer-events: none;
}
.commitment__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: #0b1d3e;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.commitment__arrow:hover {
  background: #2f6bf5;
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}
.commitment__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.commitment__arrow:disabled:hover {
  background: #fff;
  color: #0b1d3e;
  transform: translateY(-50%);
}
.commitment__arrow--prev {
  left: 14px;
}
.commitment__arrow--next {
  right: 14px;
}
@media (max-width: 768px) {
  .commitment__arrow {
    width: 36px;
    height: 36px;
  }
}
.commitment__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 28px 0 48px;
}
@media (max-width: 768px) {
  .commitment__dots {
    padding: 20px 0 36px;
  }
}
.commitment__dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.commitment__dot.active {
  background: #fff;
  width: 28px;
}

.delivery {
  padding: 96px 0;
  background: #ffffff;
}
@media (max-width: 768px) {
  .delivery {
    padding: 56px 0;
  }
}
.delivery__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 1024px) {
  .delivery__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.delivery__title {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  color: #0b1d3e;
  line-height: 1.1;
  margin-top: 14px;
  margin-bottom: 36px;
}
@media (max-width: 768px) {
  .delivery__title {
    font-size: 28px;
  }
}
.delivery__checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 48px;
  margin-bottom: 44px;
}
@media (max-width: 480px) {
  .delivery__checklist {
    grid-template-columns: 1fr;
  }
}
.delivery__checklist li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #111827;
  font-weight: 600;
  line-height: 1.3;
}
.delivery__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .delivery__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.delivery__tagline {
  font-size: 17px;
  font-weight: 700;
  color: #0b1d3e;
}
.delivery__card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.16);
}
.delivery__card-image img {
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .delivery__card-image img {
    height: 240px;
  }
}
.delivery__card-footer {
  background: linear-gradient(0deg, #000d3a, #000d3a), linear-gradient(82.14deg, #00071f 70.08%, #0396e8 98.29%);
  padding: 10px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 15px;
}
.delivery__card-info span {
  display: block;
  font-size: 13px;
  color: #ffffff;
  letter-spacing: 0.02em;
}
.delivery__card-info strong {
  font-size: 28px;
  font-weight: 800;
  color: #0396e8;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .delivery__card-info strong {
    font-size: 20px;
  }
}
.delivery__card-wa {
  width: 100px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: #fff;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.delivery__card-info {
  line-height: normal;
}

.check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2f6bf5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(47, 107, 245, 0.35);
}
.check-icon svg {
  display: block;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes scrollDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
.testimonials {
  background: #f5f6f8;
  padding: 25px 0 80px;
}
@media (max-width: 768px) {
  .testimonials {
    padding: 56px 0 56px;
  }
}
.testimonials__header {
  text-align: center;
  margin-bottom: 48px;
}
.testimonials__header .section-tag--dot {
  justify-content: center;
}
.testimonials__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #0b1d3e;
  line-height: 1.2;
  margin-top: 10px;
}
.testimonials__marquee {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  height: 600px;
  overflow: hidden;
  position: relative;
}
.testimonials__marquee::before, .testimonials__marquee::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
  height: 130px;
}
.testimonials__marquee::before {
  top: 0;
  background: linear-gradient(to bottom, #f5f6f8 0%, rgba(245, 246, 248, 0) 100%);
}
.testimonials__marquee::after {
  bottom: 0;
  background: linear-gradient(to top, #f5f6f8 0%, rgba(245, 246, 248, 0) 100%);
}
.testimonials__marquee:hover .testimonials__track {
  animation-play-state: paused;
}
@media (max-width: 1024px) {
  .testimonials__marquee {
    grid-template-columns: repeat(2, 1fr);
    height: 700px;
  }
}
@media (max-width: 768px) {
  .testimonials__marquee {
    grid-template-columns: 1fr;
    height: 700px;
  }
}
.testimonials__col {
  overflow: hidden;
}
@media (max-width: 768px) {
  .testimonials__col {
    display: none;
  }
  .testimonials__col:first-child {
    display: block;
  }
}
.testimonials__track {
  animation: scrollUp 28s linear infinite;
}
.testimonials__track--slow {
  animation-duration: 34s;
}
.testimonials__track--med {
  animation-duration: 26s;
}
.testimonials__track--fast {
  animation-duration: 20s;
}
.testimonials__track--down {
  animation-name: scrollDown;
}

.testimonial-card {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.testimonial-card--featured {
  padding: 28px;
}
.testimonial-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  margin-bottom: 14px;
}
.testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.testimonial-card__avatar-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-shrink: 0;
}
.testimonial-card__avatar-placeholder img {
  width: 26px;
  height: 26px;
  opacity: 0.45;
  -o-object-fit: contain;
     object-fit: contain;
}
.testimonial-card__quote {
  font-size: 44px;
  font-weight: 900;
  color: #0b1d3e;
  line-height: 0.75;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -3px;
  flex-shrink: 0;
  margin-top: -2px;
  opacity: 0.85;
}
.testimonial-card__name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
  line-height: 1.3;
}
.testimonial-card__text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}
.testimonial-card__text strong {
  color: #111827;
  font-weight: 600;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 1024px) {
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.faq__left {
  position: sticky;
  top: 100px;
}
@media (max-width: 1024px) {
  .faq__left {
    position: static;
  }
}
.faq__title {
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 500;
  color: #0b1d3e;
  line-height: 1.2;
  margin-top: 12px;
  margin-bottom: 28px;
}
.faq__image {
  width: 100%;
  border-radius: 18px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  display: block;
}
.faq__right {
  padding-top: 6px;
}

.accordion__item {
  border-bottom: 1px solid #e4e6ea;
}
.accordion__item.active .accordion__body {
  max-height: 300px;
  padding-bottom: 20px;
}
.accordion__item.active .accordion__icon {
  transform: rotate(180deg);
}
.accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: #0b1d3e;
  text-align: left;
  transition: all 0.25s ease;
}
.accordion__header:hover {
  color: #2f6bf5;
}
.accordion__icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #0b1d3e;
  opacity: 0.55;
}
.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.accordion__body p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.75;
  margin: 0;
}

.booking__grid {
  position: relative;
  display: flex;
}
@media (max-width: 1024px) {
  .booking__grid {
    grid-template-columns: 1fr;
  }
}
.booking__form-wrap {
  padding: 80px 265px 80px 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 75%;
  z-index: 1;
  background: linear-gradient(90deg, #00071f 0%, #00071f 79.81%, rgba(0, 7, 31, 0) 100%);
}
.booking__form-wrap .section-tag--dot {
  color: #2f6bf5;
}
@media (max-width: 1024px) {
  .booking__form-wrap {
    padding: 56px 40px;
    width: 100%;
    background: #00071f;
  }
}
@media (max-width: 768px) {
  .booking__form-wrap {
    padding: 48px 24px;
    width: 100%;
  }
}
.booking__image {
  position: absolute;
  right: 0;
  height: 100%;
  width: 40%;
}
.booking__title {
  font-size: clamp(44px, 4.5vw, 66px);
  font-weight: 500;
  color: #fff;
  line-height: 1.05;
  margin-top: 18px;
  margin-bottom: 44px;
}
@media (max-width: 768px) {
  .booking__title {
    font-size: 32px;
    margin-bottom: 32px;
  }
}
.booking__form {
  width: 80%;
}
@media (max-width: 768px) {
  .booking__form {
    width: 100%;
  }
}
.booking__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 28px;
}
@media (max-width: 480px) {
  .booking__form-row {
    grid-template-columns: 1fr;
  }
}
.booking__field {
  position: relative;
  margin-bottom: 28px;
}
.booking__field input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding: 10px 0;
  font-size: 15px;
  color: #ffffff;
  outline: none;
  font-family: "Inter", sans-serif;
  transition: border-color 0.25s ease;
}
.booking__field input::-moz-placeholder {
  color: #ffffff;
}
.booking__field input::placeholder {
  color: #ffffff;
}
.booking__field input:focus {
  border-bottom-color: #2f6bf5;
}
.booking__field--phone input {
  padding-right: 110px;
}
.booking__field:last-of-type {
  margin-bottom: 0;
}
.booking__otp-btn {
  position: absolute;
  right: 0;
  bottom: 8px;
  background: #fff;
  color: #0b1d3e;
  border: none;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: all 0.25s ease;
}
.booking__otp-btn:hover {
  background: rgba(255, 255, 255, 0.85);
}
.booking__next-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #2f6bf5;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 25px 10px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  margin-top: 36px;
  font-family: "Inter", sans-serif;
  transition: all 0.25s ease;
}
.booking__next-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.booking__next-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .booking__image {
    display: none;
  }
}
.booking__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.footer {
  background: #060d1f;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  margin-top: -28px;
  position: relative;
  z-index: 2;
  padding: 56px 0 52px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.footer__logo {
  height: 80px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  display: block;
}
.footer__tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.75;
  margin-bottom: 24px;
}
.footer__socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
.footer__socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.25s ease;
}
.footer__socials a:hover {
  background: #2f6bf5;
  color: #fff;
}
.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 18px;
}
@media (max-width: 768px) {
  .footer__right {
    align-items: flex-start;
    text-align: left;
  }
}
.footer__legal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 36px;
}
@media (max-width: 768px) {
  .footer__legal {
    justify-content: flex-start;
  }
}
.footer__legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
}
.footer__legal a:hover {
  color: #fff;
}
.footer__address {
  font-size: 14px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
}
.footer__email {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  z-index: 99;
  transition: all 0.25s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
}
@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}/*# sourceMappingURL=main.css.map */