@import url('./header.css');

:root {
  --white: #fff;
  --gold-1: #FFD963;
  --gold-2: #B08301;
  --text: #1F1F1F;
  --subTitle: #1A1A1A;
  --muted: #6B7280;

  /* FIX */
  --bg: var(--white);

  --page-bg: #F5F6F7;
  --footer-border: #ECECEC;
  --contact-title: #8B8B8B;
  --header-h: 80px;

  --fz-mobile-bg: #eeeeee;
  --fz-dark: #111111;
  --fz-black: #050505;
  --fz-gold: #FFD963;
  --fz-gold-dark: #B08301;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--page-bg);
}

/* ===================== Hero ===================== */
.hero-main {
  position: relative;
  min-height: 700px;
  padding: calc(var(--header-h) + 30px) 0 38px;
  overflow: hidden;
  background-image: url("../images/hero_bg.png");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: 70% 5%;
  display: flex;
  align-items: center;
}

.hero-main.change_bg {
  background-image: url("../images/business_setup_bg.png");
}

.hero-main.change_bg .hero-main__title {
  font-size: clamp(34px, 4vw, 54px);
}

.hero-main__inner {
  padding-top: 80px;
  position: relative;
  z-index: 2;
  max-width: 560px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.hero-main__title {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
}

.hero-main__title-mark {
  color: var(--gold-2);
}

.hero-main__text {
  margin: 0 0 18px;
  max-width: 52ch;
  font-size: 12px;
  line-height: 1.6;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
}

.hero-main__btn {
  transition: 0.52s;
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 46px;
  border-radius: 12px;
  position: relative;
  padding-right: 46px;
  background: var(--gold-1);
  color: var(--text);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  border: 3px solid transparent;
  transition: transform .5s ease, box-shadow .5s ease, background .22s ease;
}

@keyframes heroBorderFlow {
  0% {
    background-position: 0 0, 0% 90%;
  }

  100% {
    background-position: 0 0, 100% 50%;
  }
}

.hero-main__btn::after {
  content: "→";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  opacity: 0;
  color: var(--gold-2);
  font-size: 14px;
  visibility: hidden;
  font-weight: 700;
  line-height: 1;
  transition: opacity .5s ease, transform .22s ease;
}

.hero-main__btn:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
  transition-delay: 0s;
}

.hero-main__btn>span {
  display: inline-block;
  transition: transform .22s ease;
  font-size: 16px;
}

.hero-main__btn:hover>span {
  transform: translateX(-10px);
}

/* Trusted by */
.hero-main__trusted {
  margin-top: 22px;
  color: rgba(255, 255, 255, .8);
  position: relative;
  z-index: 2;
}

.hero-main__trusted-label {
  font-size: 13px;
  margin-bottom: 8px;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
}

.hero-main__trusted-logos {
  display: flex;
  align-items: center;
  gap: 29px;
  flex-wrap: wrap;
}

.hero-main__trusted-logos img {
  height: 22px;
  width: auto;
  opacity: .9;
  display: block;
}

.hero-main__trusted-more {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  font-family: "Montserrat", sans-serif;
}

.hero-main__trusted-sep {
  font-family: "Montserrat", sans-serif;
  font-size: 8px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  transform: translateY(-1px);
  user-select: none;
  pointer-events: none;
}

/* ===================== Solutions ===================== */
.solutions {
  padding: 50px 0 0 0;
}

.solutions-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 0;
  border-radius: 36px;
  background: var(--white);
  border: 1px solid #EDEDED;
  overflow: visible;
}

.solutions-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 36px;
  z-index: 0;
  background-image: url("../images/solution_bg_image.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.solutions-card__left,
.solutions-card__right {
  position: relative;
  z-index: 2;
}

.solutions-card__left {
  padding: 56px 0 56px 56px;
}

.solutions-card__title {
  margin: 0 0 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--text);
}

.u-underline {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.u-underline::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 4px;
  height: 15px;
  border-radius: 16px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-1));
  z-index: -1;
}

.solutions-card__p {
  margin: 0 0 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 48ch;
}

.solutions-card__right {
  position: relative;
  min-height: 490px;
}

.solutions-card__img {
  position: absolute;
  right: 22px;
  top: -40px;
  height: calc(100% + 40px);
  width: auto;
  object-fit: contain;
  z-index: 3;
  pointer-events: none;
}

/* ===================== Video ===================== */
.fz-video {
  padding: 56px 0;
}

.fz-video__wrap {
  position: relative;
  border-radius: 60px;
  overflow: hidden;
  background: #000;
  height: 742px;
}

.fz-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fz-video__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 28, 45, 0.00) 40%, rgba(11, 28, 45, 0.70) 100%),
    rgba(11, 28, 45, 0.18);
}

.fz-video__content {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  width: min(920px, calc(100% - 48px));
  z-index: 2;
}

.fz-video__title {
  margin: 0 0 8px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(22px, 2.3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.fz-video__text {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 1.6;
  opacity: .92;
  max-width: 70ch;
  margin-inline: auto;
}

/* ===================== Benefits ===================== */
.benefits {
  padding: 72px 0 56px;
}

.benefits__title {
  margin: 0 0 28px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--text);
}

.benefits__mark {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.benefits__mark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-1));
  z-index: -1;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  align-items: start;
}

/* Card */
.benefit-card {
  align-items: start;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .70);
  border: 1px solid #EFEFEF;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 26px rgba(223, 223, 223, .35);
}

.benefit-card__body {
  margin-top: 15px;
}

.benefit-card__icon {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.benefit-card__icon img {
  width: 20px;
  height: 20px;
  display: block;
}

.benefit-card__h {
  margin: 0 0 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.benefit-card__p {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: #6B7280;
}

/* Responsive */
@media (max-width: 992px) {
  .benefits {
    padding: 56px 0 44px;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}


/* ===================== Process ===================== */
.process {
  padding: 72px 0;
}

.process__header {
  margin-bottom: 34px;
}

.process__title {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 64px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-family: "Montserrat", sans-serif;
}

.process__title-mark {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.process__title-mark::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 3px;
  height: 15px;
  border-radius: 16px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-1));
  z-index: -1;
}

.process__title-mark::before {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  bottom: 6px;
  height: 30px;
  border-radius: 18px;
  filter: blur(30px);
  z-index: -2;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 40px;
  align-items: start;
}

.process-card {
  display: flex;
  gap: 49px;
  padding: 14px 0;
}

.process-card__no {
  width: 120px;
  height: 120px;
  flex: 0 0 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-card__no-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.process-card__title {
  margin: 10px 0 8px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-family: "Montserrat", sans-serif;
}

.process-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--subTitle);
  max-width: 48ch;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

/* ===================== First Step ===================== */
.first_step {
  padding: 72px 0;
  background-color: transparent;
}

.first_step .hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1000 / 500;
  overflow: visible;
  background-color: transparent;
  background-image: url("../images/dubai_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: 64px;
  box-shadow:
    0 -18px 40px rgba(223, 223, 223, 0.50),
    18px 0 40px rgba(223, 223, 223, 0.50),
    -18px 0 40px rgba(223, 223, 223, 0.50);
}

.hero__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding-top: 72px;
  padding-left: 80px;
}

.hero__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 25ch;
}

.hero__mark {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.hero__mark::after {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: 6px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-1));
  z-index: -1;
}

/* ===================== Features ===================== */
.features {
  padding: 56px 0 72px;
  --feature-card-min-h: 110px;
  --feature-bar-w: 42px;
  --feature-bar-left: -18px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 70px 34px;
  overflow: visible;
}

.feature-card {
  position: relative;
  border-radius: 16px;
  padding: 16px 16px 16px 20px;
  min-height: var(--feature-card-min-h);
  overflow: visible;
  border: none;
  box-shadow: none;
  background: transparent;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 28px rgba(223, 223, 223, 0.35);
  z-index: 3;
}

.feature-card::after {
  content: "";
  position: absolute;
  left: var(--feature-bar-left);
  top: -10px;
  left: -10px;
  width: var(--feature-bar-w);
  height: calc(100% + 28px);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold-1));
  z-index: 1;
}

.feature-card__title,
.feature-card__text {
  position: relative;
  z-index: 4;
}

.feature-card__accent {
  display: none;
}

.feature-card__title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
}

.feature-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #2B2B2B;
  font-family: "Montserrat", sans-serif;
  max-width: 48ch;
  font-weight: 400;
}

.features--compact .feature-card {
  height: 110px;
}

.features--compact .feature-card .feature-card__text {
  font-size: 14px;
}

.features--compact .feature-card .feature-card__title {
  font-size: 17px;
}

.features--compact .feature-card::after {
  top: -6px;
  height: calc(100% + 16px);
}

.features.grid-two .features__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* ===================== Services Card (Accordion) ===================== */
.services-card {
  padding: 56px 0;
}

.services-card__box {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 0;
  border-radius: 60px;
  background: var(--white);
  border: 1px solid #EDEDED;
  overflow: hidden;
}

.services-card__box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;

  background-image: url("../images/business_service_bg.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;

  z-index: 0;
  pointer-events: none;
}


.services-card__left,
.services-card__right {
  position: relative;
  z-index: 1;
}

.services-card__left {
  padding: 54px 44px 0 54px;
  display: grid;
  gap: 18px;
  align-content: start;
}

.services-card__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--text);
}

.services-card__img {
  width: min(440px, 100%);
  height: auto;
  display: block;
  margin-top: 18px;
  border-radius: 18px;
  object-fit: cover;
}

.services-card__right {
  padding: 44px 44px 44px 20px;
  display: flex;
  align-items: center;
}

/* Accordion */
.services-accordion {
  width: 100%;
  display: grid;
  gap: 10px;
}

.services-accordion__item {
  border: 0;
  border-bottom: 1px solid #ECECEC;
  padding: 10px 0;
}

.services-accordion__item:last-child {
  border-bottom: 0;
}

.services-accordion__summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 28px 1fr 18px;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  user-select: none;
}

.services-accordion__summary::-webkit-details-marker {
  display: none;
}

.services-accordion__icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold-1));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.services-accordion__icon img {
  width: 20px;
  height: 20px;
  display: block;
}

.services-accordion__name {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
}

.services-accordion__chev {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  opacity: .9;
  transform: rotate(0deg);
  transition: transform 1.05s cubic-bezier(.2, .9, .2, 1);
}

.services-accordion__chev img {
  width: 12px;
  height: 6px;
  display: block;
}

.services-accordion__item[open] .services-accordion__chev {
  transform: rotate(180deg);
}

.services-accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 1.15s cubic-bezier(.2, .9, .2, 1);
  will-change: grid-template-rows;
}

.services-accordion__item[open] .services-accordion__body {
  grid-template-rows: 1fr;
}

.services-accordion__content {
  padding: 0 0 12px 40px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted);

  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 1.15s cubic-bezier(.2, .9, .2, 1),
    transform 1.15s cubic-bezier(.2, .9, .2, 1);
  will-change: opacity, transform;
}

.services-accordion__item[open] .services-accordion__content {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== Contact ===================== */
.contact {
  padding: 72px 0;
}

.contact__card {
  background: var(--white);
  border-radius: 64px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(223, 223, 223, .55);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.contact__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.contact__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact__form {
  padding: 56px 64px;
}

.contact__title {
  margin: 0 0 8px;
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.03em;
  font-family: "Montserrat", sans-serif;
}

.contact__title-mark {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.contact__title-mark::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 6px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-1));
  z-index: -1;
}

.contact__sub {
  margin: 0 0 18px;
  color: var(--subTitle);
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

.contact__fields {
  display: grid;
  gap: 18px;
  max-width: 424px;
}

.contact__input,
.contact__textarea {
  width: 100%;
  height: 56px;
  border: 1px solid #ECECEC;
  background: var(--bg);
  border-radius: 16px;
  padding: 16px 14px;
  font-weight: 400;
  font-size: 16px;
  outline: none;
  color: var(--contact-title);
  font-family: "Montserrat", sans-serif;
}

.contact__textarea {
  resize: none;
  min-height: 92px;
}

.contact__input:focus,
.contact__textarea:focus {
  border-color: #D6D6D6;
  background: var(--white);
}

.contact__btn {
  margin-top: 8px;
  height: 56px;
  border: 0;
  border-radius: 16px;
  background: var(--gold-1);
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}

.contact__btn:hover {
  filter: brightness(0.98);
}

/* ===================== Packages ===================== */
.packages {
  padding: 72px 0;
}

.packages__title {
  margin: 0 0 28px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  padding: 30px 50px 30px 50px;
}

.pkg-card {
  position: relative;
  display: block;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;

  height: 230px;
  grid-column: span 4;
  box-shadow: 0 18px 40px rgba(223, 223, 223, .6);
  transition: transform .25s ease, box-shadow .25s ease;

  --g1: #eaeef2;
  --g2: #9aa0a6;
  --bg-img: none;
  --img-pos: 75% 55%;
  --img-size: cover;

  background:
    linear-gradient(135deg, var(--g1), var(--g2)),
    var(--bg-img);
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, var(--img-pos);
  background-size: 100% 100%, var(--img-size);
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(200, 200, 200, .75);
}

.pkg-card:nth-child(4) {
  grid-column: 3 / span 4;
}

.pkg-card:nth-child(5) {
  grid-column: 7 / span 4;
}

/* Top label */
.pkg-card__top {
  position: relative;
  z-index: 3;
  padding: 14px 16px 0;
}

.pkg-card__name {
  font-size: 20px;
  letter-spacing: .16em;
  font-weight: 500;
  color: rgba(0, 0, 0, .45);
  font-family: "Montserrat", sans-serif;
}

/* Price */
.pkg-card__price {
  position: absolute;
  left: 16px;
  bottom: -6px;
  z-index: 3;
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: rgba(0, 0, 0, .35);
}

.pkg-card__price-value {
  font-size: 56px;
}

.pkg-card__price-currency {
  font-size: 16px;
}

/* overlay */
/* .pkg-card::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  background: rgba(255,255,255,.22);
} */

/* watermark */
.pkg-card__watermark {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.pkg-card__watermark::before {
  content: "";
  position: absolute;
  right: -12px;
  top: -8px;
  width: 115%;
  height: 115%;
  -webkit-mask-image: url("/assets/images/z.svg");
  mask-image: url("/assets/images/z.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: right top;
  mask-position: right top;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: var(--z-color, rgba(0, 0, 0, .08));
}

/* Background presets */
.pkg-bg--silver {
  --g1: #828589;
  --g2: #E3E8EF;
  --bg-img: url("/assets/images/z.svg");
  --z-color: rgba(0, 0, 0, .10);
}

.pkg-bg--gold {
  --g1: #8E846B;
  --g2: #F4E2B8;

  --bg-img: url("/assets/images/gold.png");
  --z-color: #B1A486;
}

.pkg-bg--platinum {
  --g1: #868686;
  --g2: #ECECEC;
  --bg-img: url("/assets/images/platinum.png");
  --z-color: #A7A7A7;
}

.pkg-bg--diamond {
  --g1: #8B9399;
  --g2: #E7F5FF;
  --bg-img: url("/assets/images/diamond.png");
  --z-color: #AAB4BB;
}

.pkg-bg--titanium {
  --g1: #76797C;
  --g2: #D7DDE2;
  --bg-img: url("/assets/images/titanium.png");
  --z-color: rgba(0, 0, 0, .12);
}

@media (max-width: 992px) {
  .packages__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pkg-card {
    grid-column: auto / span 1;
    height: 180px;
  }
}

@media (max-width: 600px) {
  .packages__grid {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}


/* ===================== Footer ===================== */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--footer-border);
  padding: 30px 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.site-footer__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
}

.site-footer__copy {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  color: #8A8A8A;
  padding-top: 15px;
}

.site-footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.site-footer__col {
  display: grid;
  gap: 10px;
}

.site-footer__col a {
  font-size: 13px;
  color: var(--text);
  font-weight: 400;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  transition: color .22s ease, transform .22s ease, opacity .22s ease;
  will-change: transform;
}

.site-footer__col a:hover {
  color: var(--gold-2);
  transform: translateX(3px);
}

.site-footer__meta {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.site-footer__line {
  margin: 0;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
}

.site-footer__mail {
  font-size: 13px;
  color: var(--gold-2);
  text-decoration: none;
}

.site-footer__mail:hover {
  text-decoration: underline;
}

.site-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.site-footer__social-btn {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #F3F3F3;
  text-decoration: none;
}

.site-footer__social-btn img {
  width: 14px;
  height: 14px;
  display: block;
}


/* ===================== Why to Choose the UAE ===================== */
.uae-why {
  padding: 56px 0;
}

.uae-why__card {
  border-radius: 64px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}

.uae-why__media {
  position: relative;
}

.uae-why__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 36px;
  object-fit: cover;
}

.uae-why__title {
  margin: 0 0 22px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
}

.uae-why__list {
  list-style: none;
  padding: 0;
  margin-top: 60px;
  display: grid;
  gap: 45px;
}

.uae-why__item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: center;
}

.uae-why__tick {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(180deg, var(--gold-2), var(--gold-1));
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;

  box-shadow: 0 10px 20px rgba(176, 131, 1, .18);
}

.uae-why__tick img {
  width: 10px;
  height: 10px;
  display: block;
  object-fit: contain;
}

.uae-why__text {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
  color: #2B2B2B;
}


/* ===================== Complete Business Support ===================== */
.biz-support {
  padding: 50px 0px;
}

.biz-support__title {
  margin: 0 0 26px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
}

.biz-support__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px 30px;
  align-items: stretch;
  margin-top: 65px;
}

.support-pill {
  position: relative;
  border-radius: 14px;
  padding: 16px 18px;
  text-align: center;

  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  line-height: 1.25;

  overflow: visible;
  transition: transform .22s ease, box-shadow .22s ease;

  isolation: isolate;
}

.support-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(255, 255, 255, .65);

  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(5px);

  box-shadow: 0 10px 26px rgba(223, 223, 223, .22);
  z-index: -1;
}

.support-pill::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 47%;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-1));
  box-shadow: 0 12px 24px rgba(176, 131, 1, .22);
  z-index: -2;
}

.support-pill {
  z-index: 1;
}

.support-pill>* {
  position: relative;
  z-index: 1;
}

.support-pill {
  position: relative;
}

/* ===================== Business Setup ===================== */
.biz-setup {
  padding: 34px 0 72px;
}

.biz-setup__title {
  margin: 0 0 26px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
}

.biz-setup__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 22px;
  align-items: stretch;
  margin-top: 60px;
}

/* Card */
.setup-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(176, 131, 1, .45);
  border-radius: 14px;
  padding: 22px 18px 20px;
  min-height: 120px;

  box-shadow: 0 10px 26px rgba(223, 223, 223, .25);
}

.setup-card__no {
  width: 28px;
  height: 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #111;
  color: var(--gold-1);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

.setup-card__text {
  margin: 14px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
  color: #1F1F1F;
}

@media (min-width: 993px) {
  .biz-setup__grid .setup-card:nth-child(5) {
    grid-column: 2 / span 1;
  }

  .biz-setup__grid .setup-card:nth-child(6) {
    grid-column: 3 / span 1;
  }

  .biz-setup__grid .setup-card:nth-child(7) {
    grid-column: 4 / span 1;
  }
}

/* ===================== Responsive ===================== */
@media (max-width: 992px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero__title {
    max-width: none;
  }

  .hero-main {
    min-height: 560px;
    background-size: cover;
    background-position: center 20%;
  }

  .hero-main__btn>span {

    font-size: 14px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact__media {
    min-height: 280px;
  }

  .contact__form {
    padding: 32px 22px;
  }

  .contact__fields {
    max-width: 100%;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__links {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .solutions-card {
    grid-template-columns: 1fr;
  }

  .solutions-card__left {
    padding: 36px 24px;
  }

  .solutions-card__title {
    font-size: 34px;
  }

  .solutions-card__right {
    min-height: 360px;
  }

  .solutions-card__img {
    right: 10px;
    height: 90%;
  }

  .services-card__box {
    grid-template-columns: 1fr;
  }

  .services-card__right {
    padding: 18px 22px 32px;
  }

  .services-card__left {
    padding: 32px 22px 0;
  }

  .services-card__img {
    width: min(320px, 100%);
    margin-bottom: 16px;
  }

  .services-accordion__content {
    padding-left: 40px;
  }

  .uae-why__card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 8px;
    border-radius: 44px;
  }

  .uae-why__media img {
    border-radius: 28px;
  }

  .biz-support__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .biz-setup__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .features__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__links {
    grid-template-columns: 1fr;
  }

  .biz-support__grid {
    grid-template-columns: 1fr;
  }

  .biz-setup__grid {
    grid-template-columns: 1fr;
  }
}

.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.auth-wrapper {
  width: 100%;
  max-width: 1250px;
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.auth-image-card {
  height: 820px;
  border-radius: 32px;
  overflow: hidden;
}

.auth-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 32px;
}

/* Right card */

.auth-card {
  min-height: 690px;
  background: #ffffff;
  border-radius: 32px;
  padding: 121px 56px 56px;
  border: 1px solid #eeeeee;
}

.auth-card h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 145%;
  color: #222222;
  margin-bottom: 32px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Input gradient border system */

.fz-input-wrapper {
  position: relative;
  width: 100%;
  height: 56px;
  border-radius: 14px;
  padding: 1px;
  background: #e5e5e5;
  transition: 0.25s ease;
}

.fz-input-wrapper:focus-within,
.fz-input-wrapper.filled {
  background: linear-gradient(180deg, #FFD963 0%, #B08301 100%);
}

.fz-input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  border-radius: 13px;
  background: #ffffff;
  padding: 4px 16px;
  font-size: 16px;
  font-weight: 400;
  color: #222222;
  font-family: 'Montserrat', sans-serif;
}

.fz-input::placeholder {
  color: #a8a8a8;
}

.input-icon {
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.date-input {
  padding-right: 46px;
}

.date-input::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}

/* Phone */

.phone-wrapper {
  display: flex;
  align-items: center;
  overflow: visible;
  background: #e5e5e5;
}

.phone-wrapper .fz-input {
  background: #ffffff;
}

.phone-country-select {
  position: relative;
  height: 100%;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 13px 0 0 13px;
  z-index: 20;
}

.phone-country-btn {
  height: 100%;
  min-width: 100px;
  border: none;
  outline: none;
  background: transparent;
  padding: 0 16px 0 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #8b8b8b;
}

.country-flag {
  font-size: 22px;
  line-height: 1;
}

.country-name,
.country-code-text {
  white-space: nowrap;
}

.phone-divider {
  width: 1px;
  height: 31px;
  background: #dedede;
  flex-shrink: 0;
  z-index: 3;
}

.phone-input {
  border-radius: 0 13px 13px 0;
  padding-left: 18px;
  font-size: 16px;
  color: #8b8b8b;
  font-weight: 400;
}

.phone-input::placeholder {
  color: #8b8b8b;
}

.country-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  width: 270px;
  max-height: 260px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  padding: 8px;
  display: none;
  z-index: 999;
}

.phone-country-select.open .country-dropdown {
  display: block !important;
}

.country-option {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  padding: 11px 12px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #747474;
}

.country-option:hover {
  background: #f5f5f5;
}

.country-option strong {
  font-weight: 500;
  color: #222222;
}

@media (max-width: 576px) {
  .phone-country-btn {
    min-width: 150px;
    padding: 0 10px 0 12px;
    gap: 5px;
    font-size: 12px;
  }

  .country-flag {
    font-size: 16px;
  }

  .phone-input {
    font-size: 12px;
    padding-left: 10px;
  }

  .country-dropdown {
    width: 240px;
  }
}

/* Password */

.password-wrapper {
  margin-bottom: 4px;
}

.password-input {
  padding-right: 48px;
}

.eye-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: none;
  outline: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.eye-btn .eye-closed {
  display: none;
}

.eye-btn.active .eye-open {
  display: none;
}

.eye-btn.active .eye-closed {
  display: block;
}

.password-helper {
  max-width: 460px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  color: #8B8B8B;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding-left: 5px;
}

.terms-head {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 21px;
  letter-spacing: -0.31%;

}

/* Checkbox */

.terms-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
  color: #9b9b9b;
  cursor: pointer;
  user-select: none;
}

.terms-row a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 21px;
  letter-spacing: -0.31%;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-offset: 0%;
  text-decoration-thickness: 0%;
  color: var(--text);

}

.terms-checkbox {
  display: none;
}

.custom-checkbox {
  width: 14px;
  min-width: 14px;
  height: 14px;
  margin-top: 1px;
  border-radius: 3px;
  border: 1px solid #bdbdbd;
  background: #ffffff;
  position: relative;
}

.terms-checkbox:checked+.custom-checkbox {
  border: none;
  background: linear-gradient(180deg, #FFD963 0%, #B08301 100%);
}

.terms-checkbox:checked+.custom-checkbox::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1.5px;
  width: 5px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

/* Button */

.submit-btn {
  height: 56px;
  margin-top: 10px;
  border: none;
  outline: none;
  border-radius: 12px;
  background: linear-gradient(180deg, #292929 0%, #050505 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.25s ease;
}


/* Responsive */

@media (max-width: 992px) {
  .auth-wrapper {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .auth-image-card {
    height: 420px;
  }

  .auth-card {
    max-width: 100%;
    min-height: auto;
    padding: 56px 36px 40px;
  }
}

@media (max-width: 576px) {
  .auth-page {
    padding: 24px 16px;
  }

  .auth-image-card {
    height: 300px;
  }

  .auth-card {
    padding: 40px 22px 30px;
    border-radius: 18px;
  }

  .auth-card h1 {
    font-size: 25px;
  }

  .country-code {
    min-width: 113px;
    font-size: 10px;
  }

  .fz-input {
    font-size: 14px;
  }

  .auth-back-icon {
    width: 28px;
    height: 28px;
  }
}

.auth-row {
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.otp-page {
  padding: 28px 24px 72px;
}

.otp-page .auth-image-card {
  height: 700px;
  border-radius: 28px;
  overflow: hidden;
  padding: 0;
}

.otp-page .auth-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 28px;
}

.otp-card {
  min-height: 700px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.otp-card__content {
  width: 100%;
  max-width: 480px;
  text-align: center;
}

.otp-card h1 {
  margin: 0 0 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #222222;
}

.otp-subtitle {
  max-width: 450px;
  margin: 0 auto 32px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 400;
  color: #9D9D9D;
}

.otp-form {
  width: 100%;
}

.otp-inputs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.otp-input {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  border: 1px solid #FFD963;
  outline: none;
  background: #ffffff;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #222222;
  transition: 0.25s ease;
}

.otp-input::placeholder {
  color: #9D9D9D;
  font-size: 24px;
  transform: translateY(-1px);
}

.otp-resend {
  margin: 0 0 32px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #9D9D9D;
}

.otp-resend a {
  color: #B08301;
  font-weight: 500;
  text-decoration: underline;
}

.otp-submit-btn {
  width: 100%;
  height: 56px;
  margin: 0 0 16px;
  border-radius: 12px;
  font-size: 16px;
}

.go-back-btn {
  width: 100%;
  height: 56px;
  border-radius: 16px;
  border: 1px solid #222222;
  background: transparent;
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

@media (max-width: 992px) {
  .auth-row {
    gap: 18px;
  }

  .otp-page .auth-image-card {
    height: 420px;
    margin-bottom: 20px;
  }

  .otp-card {
    min-height: auto;
    padding: 70px 36px;
  }
}

@media (max-width: 576px) {
  .otp-page {
    padding: 20px 16px 40px;
  }

  .otp-page .auth-image-card {
    height: 300px;
    border-radius: 20px;
  }

  .otp-page .auth-image {
    border-radius: 20px;
  }

  .otp-card {
    border-radius: 20px;
    padding: 48px 20px;
  }

  .otp-card h1 {
    font-size: 27px;
  }

  .otp-subtitle {
    font-size: 12px;
  }

  .otp-inputs {
    gap: 10px;
  }

  .otp-input {
    width: 58px;
    height: 58px;
    font-size: 23px;
  }
}

/* ===================== OTP Page ===================== */

.auth-row {
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.otp-page {
  padding: 28px 24px 72px;
}

.otp-page .auth-image-card {
  height: 700px;
  border-radius: 28px;
  overflow: hidden;
  padding: 0;
}

.otp-page .auth-image {
  width: 97%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 28px;
}

.otp-card {
  min-height: 700px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.otp-card__content {
  width: 100%;
  max-width: 480px;
  text-align: center;
}

.otp-card h1 {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  line-height: 145%;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
}

.otp-subtitle {
  max-width: 450px;
  margin: 0 auto 26px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 400;
  color: #9D9D9D;
}

.otp-form {
  width: 100%;
}

.otp-inputs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.otp-input {
  width: 86px;
  height: 86px;
  border-radius: 14px;

  border: 1px solid transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(180deg, #FFD963 0%, #B08301 100%) border-box;

  outline: none;
  text-align: center;

  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #222222;

  padding: 20px 0 0;
  box-sizing: border-box;

  transition: 0.25s ease;
}

.otp-input::placeholder {
  color: #8B8B8B;
  font-size: 16px;
  font-weight: 500;
}

.otp-input:not(:placeholder-shown) {
  color: var(--text);
  padding: 0;
}

.otp-resend {
  margin: 0 0 26px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #8B8B8B;
}

.otp-resend a {
  font-weight: 400;
  text-decoration: none;

  background: linear-gradient(180deg, #FFD963 0%, #B08301 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.otp-submit-btn {
  width: 100%;
  height: 56px;
  margin: 0 0 16px;
  border-radius: 12px;
  font-size: 16px;
  line-height: 145%;
}

.go-back-btn {
  width: 100%;
  height: 56px;
  border-radius: 12px;
  border: 1px solid var(--text);
  background: transparent;
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.go-back-btn:hover {
  background: #222222;
  color: #ffffff;
}

@media (max-width: 992px) {
  .auth-row {
    gap: 18px;
  }

  .otp-page .auth-image-card {
    height: 420px;
    margin-bottom: 20px;
  }

  .otp-card {
    min-height: auto;
    padding: 70px 36px;
  }
}

@media (max-width: 576px) {
  .otp-page {
    padding: 20px 16px 40px;
  }

  .otp-page .auth-image-card {
    height: 300px;
    border-radius: 20px;
  }

  .otp-page .auth-image {
    border-radius: 20px;
  }

  .otp-card {
    border-radius: 20px;
    padding: 48px 20px;
  }

  .otp-card h1 {
    font-size: 27px;
  }

  .otp-subtitle {
    font-size: 12px;
  }

  .otp-inputs {
    gap: 10px;
  }

  .otp-input {
    width: 58px;
    height: 58px;
    font-size: 23px;
    padding: 10px 0 0;
  }

  .otp-input::placeholder {
    font-size: 22px;
  }
}

.login-button {
  background: linear-gradient(180deg, #333333 0%, #070707 100%);
  backdrop-filter: blur(30px);
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-button img {
  width: 24px;
  height: 24px;
}

.gap-16 {
  gap: 16px;
}

.go-back-btn {
  margin-top: 16px;
}

/* ===================== Register Auth Fix + Responsive ===================== */


.auth-page .row {
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.auth-page .auth-image-card {
  height: 920px;
  max-width: 550px;
  border-radius: 28px;
  padding: 0;
}

.auth-page .auth-card {
  max-width: 630px;
  min-height: 690px;
  height: 920px;
  border-radius: 28px;
  padding: 56px;
}

.auth-form {
  gap: 16px;
}

/* ===================== Custom Date Modal ===================== */

.date-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.date-modal.is-open {
  display: flex;
}

.date-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(3px);
}

.date-modal__card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 425px;
  max-height: 605px;
  overflow-y: auto;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #030303;
  color: #ffffff;
  padding: 24px;
}

.date-modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.date-modal__top h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.date-modal__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #2d2d2d;
  background: transparent;
  color: #5f5f5f;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.date-modal__month-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.date-modal__month-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: #9d9d9d;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 400;
}

.date-modal__divider {
  width: 1px;
  height: 50px;
  background: #2d2d2d;
}

.date-nav-btn {
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  color: #777777;
  font-size: 42px;
  cursor: pointer;
}

.date-modal__weekdays,
.date-modal__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.date-modal__weekdays {
  margin-bottom: 28px;
}

.date-modal__weekdays span {
  text-align: center;
  color: #8b8b8b;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 400;
}

.date-modal__days {
  row-gap: 28px;
  margin-bottom: 42px;
}

.date-day {
  width: 20px;
  height: 20px;
  margin: 0 auto;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #8b8b8b;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}

.date-day.is-muted {
  color: #333333;
}

.date-day.is-selected {
  color: #ffffff;
  background: linear-gradient(180deg, #FFD963 0%, #B08301 100%);
}

.date-confirm-btn,
.date-back-btn {
  width: 100%;
  height: 48px;
  border-radius: 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.date-confirm-btn {
  border: none;
  background: #FFD963;
  color: #111111;
  margin-bottom: 16px;
}

.date-back-btn {
  border: 1px solid #2d2d2d;
  background: transparent;
  color: #ffffff;
}

/* ===================== Mobile Register Like Screenshot ===================== */

@media (max-width: 576px) {

  header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
  }

  header .container {
    padding-left: 22px;
  }

  .site-header__brand img {
    width: 24px;
    height: auto;
  }

  .auth-page {
    padding: 0;
    min-height: 100vh;
    align-items: flex-start;
  }

  .auth-page>.container {
    max-width: 100%;
    padding: 0;
  }

  .auth-page .row {
    display: block;
    margin: 0;
  }

  .auth-page .auth-image-card {
    width: 100%;
    max-width: 100%;
    height: 335px;
    border: none;
    border-radius: 0;
    padding: 0;
  }

  .auth-page .auth-image {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    object-position: center top;
  }

  .auth-page .auth-card {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 100%;
    height: 70vh;
    height: auto;
    min-height: auto;
    margin-top: -18px;
    border-radius: 24px 24px 0 0;
    border: none;
    padding: 24px;
  }

  .login-type-btn>span:first-child {
    font-size: 14px !important;
  }

  .auth-signin-btn {
    font-size: 13px !important;
  }

  .auth-card h1 {
    font-size: 24px;
    margin-bottom: 24px;
  }


  .fz-input-wrapper {
    height: 48px;
  }

  .fz-input {
    padding: 0 12px;
    font-size: 14px;
  }

  .fz-input::placeholder {
    font-size: 14px;
  }

  .country-code {
    min-width: 96px;
    padding-left: 10px;
    font-size: 9px;
    border-radius: 9px 0 0 9px;
  }

  .flag {
    font-size: 12px;
  }

  .phone-input {
    border-radius: 0 9px 9px 0;
  }

  .input-icon {
    right: 12px;
    width: 13px;
    height: 13px;
  }

  .eye-btn {
    right: 8px;
    width: 24px;
    height: 24px;
  }

  .eye-btn svg {
    width: 14px;
    height: 14px;
  }

  .password-helper {
    font-size: 10px;
    line-height: 1.45;
    padding-left: 2px;
  }

  .terms-row {
    gap: 7px;
    margin-top: 4px;
  }

  .custom-checkbox {
    width: 10px;
    min-width: 10px;
    height: 10px;
  }

  .terms-head,
  .terms-row a {
    font-size: 10px;
    line-height: 14px;
  }

  .submit-btn,
  .auth-go-back-btn {
    height: 48px;
  }

  .submit-btn {
    margin-top: 15px !important;
  }

  .date-modal {
    padding: 18px;
  }

  .date-modal__card {
    border-radius: 32px;
    padding: 30px 22px 26px;
  }

  .date-modal__top {
    margin-bottom: 32px;
  }

  .date-modal__top h2 {
    font-size: 26px;
  }

  .date-modal__close {
    width: 44px;
    height: 44px;
    font-size: 36px;
  }

  .date-modal__month-row {
    margin-bottom: 30px;
  }

  .date-modal__month-title {
    gap: 18px;
    font-size: 30px;
  }

  .date-modal__divider {
    height: 36px;
  }

  .date-nav-btn {
    width: 32px;
    height: 32px;
    font-size: 30px;
  }

  .date-modal__weekdays span {
    font-size: 14px;
  }

  .date-modal__days {
    row-gap: 14px;
    margin-bottom: 32px;
  }

  .date-day {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .date-confirm-btn,
  .date-back-btn {
    height: 58px;
    border-radius: 18px;
    font-size: 20px;
  }

  .date-confirm-btn {
    margin-bottom: 18px;
  }
}

.auth-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 32px;
  text-decoration: none;
  color: #222222;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.auth-back-icon {
  width: 32px;
  height: 32px;
  border: 1px solid #e1e1e1;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.auth-back-icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
}

.auth-signin-btn {
  width: 100%;
  height: 56px;
  border-radius: 12px;
  border: 1px solid #9d9d9d;
  background: transparent;
  color: #222222;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -6px;
  transition: 0.25s ease;
}

/* ===================== Login Page Extra ===================== */

.login-type-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.login-type-btn {
  width: 100%;
  height: 56px;
  border: none;
  outline: none;
  border-radius: 14px;
  padding: 1px;
  background: #e5e5e5;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  color: #9b9b9b;
  font-size: 16px;
  font-weight: 400;
  transition: 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.login-type-btn.active {
  background: linear-gradient(180deg, #FFD963 0%, #B08301 100%);
}

.login-type-btn>span:first-child {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 13px 0 0 13px;
  display: flex;
  align-items: center;
  padding-left: 18px;
  font-size: 16px;
}

.login-type-radio {
  width: 42px;
  height: 100%;
  background: #ffffff;
  border-radius: 0 13px 13px 0;
  position: relative;
  flex-shrink: 0;
}

.login-type-radio::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #9d9d9d;
  transform: translateY(-50%);
  background: #ffffff;
}

.login-type-btn.active .login-type-radio::before {
  border-color: #FFD963;
}

.login-type-btn.active .login-type-radio::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 21px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FFD963 0%, #FFD963 100%);
  transform: translateY(-50%);
}

.login-panel {
  display: none;
  flex-direction: column;
  gap: 22px;
}

.login-panel.active {
  display: flex;
}

.auth-back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: #222222;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 26px;
}


.auth-signin-btn {
  height: 56px;
  border-radius: 12px;
  border: 1px solid #1f1f1f;
  color: #1f1f1f;
  background: #ffffff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

@media (max-width: 576px) {
  .login-type-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .login-type-btn {
    height: 52px;
    font-size: 14px;
  }

  .auth-signin-btn {
    font-size: 13px;
  }
}

.phone-wrapper {
  overflow: visible !important;
  position: relative;
  z-index: 1000;
}

.phone-country-select {
  position: relative;
  height: 100%;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 13px 0 0 13px;
  z-index: 1001;
}


.country-dropdown.is-open {
  display: block !important;
}

.auth-card,
.auth-form,
.login-panel,
#phoneLoginPanel {
  overflow: visible !important;
}

.auth-card {
  display: flex;
  flex-direction: column;
}

.auth-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.submit-btn {
  margin-top: auto;
}

.auth-signin-btn {
  height: 56px;
  border-radius: 12px;
  border: 1px solid #E5E5E5;
  background: #ffffff;
  color: #222222;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.auth-signin-btn:hover {
  border-color: #B08301;
  color: #B08301;
}

/* ===================== Account Created Successfully Page ===================== */

.success-page {
  padding: 28px 24px 72px;
}

.success-row {
  align-items: stretch;
}

.success-image-card {
  height: 700px;
  border-radius: 28px;
  overflow: hidden;
  padding: 0;
}

.success-image-card .auth-image {
  width: 97%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 28px;
}

.success-card {
  min-height: 700px;
  border-radius: 28px;
  height: 920px;
  border: 1.43px solid transparent;
  background:
    white;

  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-card__content {
  width: 100%;
  max-width: 520px;
  text-align: center;
}

.success-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 16px;

  border: 1.43px solid transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(180deg, #FFD963 0%, #B08301 100%) border-box;

  display: flex;
  align-items: center;
  justify-content: center;
}

.success-card__icon img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  display: block;
}

.success-card h1 {
  margin: 0 0 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
}

.success-card p {
  max-width: 520px;
  margin: 0 auto 32px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
  color: #8B8B8B;
}

.success-card__btn {
  width: 100%;
  max-width: 520px;
  height: 56px;
  border: none;
  outline: none;
  border-radius: 12px;
  background: linear-gradient(180deg, #292929 0%, #050505 100%);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition: 0.25s ease;
}

.success-card__btn:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.16);
}

/* Tablet */
@media (max-width: 992px) {
  .success-image-card {
    height: 420px;
    margin-bottom: 20px;
  }

  .success-card {
    min-height: auto;
    padding: 70px 36px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .success-page {
    padding: 20px 16px 40px;
  }

  .success-image-card {
    height: 345px;
    border-radius: 0;
    margin-bottom: 0;
  }

  .success-image-card .auth-image {
    width: 100%;
    border-radius: 0;
  }

  .success-card {
    min-height: 380px;
    border-radius: 28px 28px 0 0;
    padding: 24px 18px 30px;
    margin-top: -26px;
    position: relative;
    z-index: 2;
    align-items: flex-start;
  }

  .success-card__content {
    text-align: left;
    max-width: 100%;
  }

  .success-card__icon {
    width: 49px;
    height: 49px;
    margin: 0 0 18px;
    border-radius: 8px;
  }

  .success-card__icon img {
    width: 24px;
    height: 24px;
  }

  .success-card h1 {
    font-size: 22px;
    line-height: 1.35;
    margin-bottom: 10px;
  }

  .success-card p {
    font-size: 12px;
    line-height: 1.55;
    margin: 0 0 120px;
    max-width: 310px;
  }

  .success-card__btn {
    max-width: 100%;
    height: 43px;
    font-size: 13px;
    border-radius: 8px;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, .42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header__row {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-header-btn {
  display: none;
}

/* =========================
   Mobile drawer menu
========================= */

.fz-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, .55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

.fz-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.fz-mobile-menu__panel {
  width: min(100%, 430px);
  height: 100vh;
  margin-left: auto;
  color: #fff;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, .04), transparent 34%),
    linear-gradient(180deg, #171717 0%, #050505 100%);
  padding: 72px 28px 34px;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.2, .9, .2, 1);
  display: flex;
  flex-direction: column;
}

.fz-mobile-menu.is-open .fz-mobile-menu__panel {
  transform: translateX(0);
}

.fz-mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fz-mobile-menu__logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.fz-mobile-menu__close {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: #1E1E1E;
  color: #fff;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.fz-mobile-menu__nav {
  margin-top: 46px;
  display: grid;
  gap: 16px;
}

.fz-mobile-menu__nav a {
  min-height: 68px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .13);
  color: #fff;
  text-decoration: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  font-size: 19px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

.fz-mobile-menu__account-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fz-mobile-menu__account-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.fz-mobile-menu__arrow {
  font-size: 27px;
  line-height: 1;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  opacity: .95;
}

.f-16 {
  font-size: 16px;
}

.fz-mobile-menu__affiliate {
  margin-top: 40px;
  width: 100%;
  height: 60px;
  border: 0;
  border-radius: 14px;
  background: var(--fz-gold);
  color: #111;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.fz-mobile-menu__bottom {
  margin-top: auto;
  display: grid;
  gap: 24px;
  padding-bottom: 14px;
}

.fz-mobile-menu__bottom>a {
  color: #BEC7D0;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Montserrat", sans-serif;
}

.fz-mobile-menu__bottom>a span {
  color: #fff;
  font-size: 23px;
}

.fz-mobile-menu__socials {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 16px;
}

.fz-mobile-menu__socials a {
  width: 18px;
  height: 18px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.fz-mobile-menu__socials img {
  width: 17px;
  height: 17px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.fz-mobile-menu__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
}

body.fz-menu-open,
body.mobile-menu-opened {
  overflow: hidden;
}

/* =========================================================
   TABLET + MOBILE
========================================================= */

@media (max-width: 992px) {

  .site-header {
    backdrop-filter: blur(0px);
    border: none;
  }

  .container-lg {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Header */
  .site-header__nav,
  .site-header__btn,
  .login-button {
    display: none !important;
  }

  .site-header .container-lg {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header__row {
    min-height: 78px;
  }

  .site-header__brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
  }

  .mobile-header-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .85);
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    padding: 0;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .mobile-menu-lines {
    display: grid;
    gap: 4px;
  }

  .mobile-menu-lines span {
    width: 18px;
    height: 1.5px;
    border-radius: 99px;
    background: #fff;
    display: block;
  }

  .mobile-support-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }

  /* Hero */
  .hero-main {
    min-height: 728px;
    padding: 96px 0 0;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-size: cover;
    background-position: center top;
  }

  .hero-main::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(180deg,
        rgba(0, 0, 0, .02) 0%,
        rgba(0, 0, 0, .10) 34%,
        rgba(0, 0, 0, .52) 68%,
        rgba(0, 0, 0, .86) 100%);
  }

  .hero-main .container-lg {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    z-index: 2;
  }

  .hero-main__inner {
    max-width: 100%;
    min-height: 635px;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-main__title {
    font-size: 40px;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin: 0 0 14px;
    color: #fff;
  }

  .hero-main__title-mark {
    color: var(--fz-gold-dark);
  }

  .hero-main__text {
    font-size: 16px;
    line-height: 1.38;
    max-width: 35ch;
    margin: 0 0 18px;
    color: #fff;
  }

  .hero-main__btn {
    width: 290px;
    max-width: 260px;
    height: 48px;
    border-radius: 12px;
    margin-top: 10px;
    padding: 0 24px;
    background: var(--fz-gold);
    color: #111;
  }

  .hero-main__trusted {
    margin-top: 36px;
    padding-bottom: 22px;
  }

  .hero-main__trusted-label {
    font-size: 12px;
    margin-bottom: 12px;
    color: #fff;
  }

  .hero-main__trusted-logos {
    gap: 18px;
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .hero-main__trusted-logos img {
    max-width: 105px;
    height: 22px;
    object-fit: contain;
  }

  .hero-main__trusted-sep {
    font-size: 9px;
    color: #fff;
  }

  .hero-main__trusted-more {
    display: none;
  }

  /* White page frame after hero */
  .solutions,
  .fz-video,
  .benefits,
  .first_step,
  .features,
  .services-card,
  .contact {
    background: var(--fz-mobile-bg);
  }

  /* Solutions */
  .solutions {
    padding: 0;
  }

  .solutions .container-lg {
    padding-left: 24px;
    padding-right: 24px;
  }

  .solutions-card {
    display: flex;
    flex-direction: column-reverse;
    border: 0;
    border-radius: 0 0 22px 22px;
    background: #fff;
    overflow: hidden;
  }

  .solutions-card::before {
    display: none;
  }

  .solutions-card__right {
    min-height: 350px;
    background-image: url("../images/solution_bg_image.png");
    background-repeat: no-repeat;
    background-size: 86% auto;
    background-position: center 30px;
  }

  .solutions-card__img {
    position: absolute;
    top: 15px;
    right: 50%;
    transform: translateX(50%);
    width: min(280px, 82%);
    height: auto;
    max-height: 340px;
    object-fit: contain;
  }

  .solutions-card__left {
    padding: 18px 20px 28px;
  }

  .solutions-card__title {
    font-size: 24px;
    line-height: 1.12;
    margin-bottom: 16px;
  }

  .solutions-card__p {
    font-size: 12px;
    line-height: 1.45;
    color: #444;
    margin-bottom: 16px;
  }

  .u-underline::after,
  .benefits__mark::after,
  .hero__mark::after,
  .contact__title-mark::after {
    height: 7px;
    bottom: 2px;
  }

  /* Video */
  .fz-video {
    padding: 54px 0 30px;
  }

  .fz-video .container-lg {
    padding-left: 20px;
    padding-right: 20px;
  }

  .fz-video__wrap {
    height: 330px;
    border-radius: 18px;
    overflow: hidden;
  }

  .fz-video__content {
    position: static;
    transform: none;
    width: 100%;
    color: #1F1F1F;
    text-align: left;
    padding: 18px 8px 0;
  }

  .fz-video__title {
    color: #1F1F1F;
    font-size: 24px;
    line-height: 1.22;
    margin: 0 0 14px;
  }

  .fz-video__text {
    color: #333;
    font-size: 12px;
    line-height: 1.45;
    margin: 0;
    max-width: 100%;
  }

  /* Benefits */
  .benefits {
    padding: 40px 0 42px;
  }

  .benefits .container-lg {
    padding-left: 20px;
    padding-right: 20px;
  }

  .benefits__title {
    font-size: 24px;
    line-height: 1.1;
    margin-bottom: 26px;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .benefit-card {
    border-radius: 10px;
    padding: 12px 14px 14px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 8px 18px rgba(210, 210, 210, .32);
    border: 1px solid #EFEFEF;
  }

  .benefit-card__icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
  }

  .benefit-card__icon img {
    width: 17px;
    height: 17px;
  }

  .benefit-card__body {
    margin-top: 14px;
  }

  .benefit-card__h {
    font-size: 13px;
    line-height: 1.3;
  }

  .benefit-card__p {
    font-size: 11px;
    line-height: 1.35;
  }

  /* First step */
  .first_step {
    padding: 56px 0 32px;
  }

  .first_step .container-lg {
    padding-left: 24px;
    padding-right: 24px;
  }

  .first_step .hero {
    aspect-ratio: auto;
    min-height: 360px;
    border-radius: 26px;
    background-color: #fff;
    background-size: 108% auto;
    background-position: center bottom;
    box-shadow: none;
  }

  .hero__inner {
    padding: 24px 16px 0;
  }

  .hero__title {
    font-size: 22px;
    line-height: 1.13;
    max-width: 15ch;
  }

  /* Features */
  .features {
    padding: 42px 0 68px;
  }

  .features .container-lg {
    padding-left: 24px;
    padding-right: 24px;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .feature-card {
    min-height: 120px;
    padding: 17px 15px 17px 22px;
  }

  .feature-card::before {
    border: 1px solid rgba(220, 220, 220, .7);
    box-shadow: 0 8px 20px rgba(210, 210, 210, .26);
    background: rgba(255, 255, 255, .55);
  }

  .feature-card::after {
    left: -8px;
    top: -8px;
    width: 18px;
    height: calc(100% + 16px);
  }

  .feature-card__title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .feature-card__text {
    font-size: 12px;
    line-height: 1.45;
  }

  .features__grid .feature-card:nth-child(1) {
    order: 1;
  }

  .features__grid .feature-card:nth-child(4) {
    order: 2;
  }

  .features__grid .feature-card:nth-child(2) {
    order: 3;
  }

  .features__grid .feature-card:nth-child(5) {
    order: 4;
  }

  .features__grid .feature-card:nth-child(6) {
    order: 5;
  }

  .features__grid .feature-card:nth-child(3) {
    order: 6;
  }

  /* Services */
  .services-card {
    padding: 0 0 58px;
  }

  .services-card .container-lg {
    padding-left: 24px;
    padding-right: 24px;
  }

  .services-card__box {
    display: flex;
    flex-direction: column;
    border-radius: 0;
    border: 0;
    background: transparent;
    overflow: visible;
  }

  .services-card__box::before {
    display: none;
  }

  .services-card__left {
    padding: 0;
    display: flex;
    flex-direction: column-reverse;
    gap: 16px;
  }

  .services-card__img {
    width: 100%;
    max-height: 370px;
    object-fit: contain;
    margin: 0;
    border-radius: 20px;
    background-image: url("../images/business_service_bg.png");
    background-size: cover;
    background-position: center;
  }

  .services-card__title {
    font-size: 32px;
    line-height: 1.12;
    padding: 0;
  }

  .services-card__right {
    padding: 18px 0 0;
  }

  .services-accordion {
    gap: 0;
  }

  .services-accordion__item {
    padding: 7px 0;
    border-bottom: 1px solid #D9D9D9;
  }

  .services-accordion__summary {
    grid-template-columns: 26px 1fr 18px;
    gap: 10px;
    padding: 10px 0;
  }

  .services-accordion__icon {
    width: 26px;
    height: 26px;
    border-radius: 6px;
  }

  .services-accordion__icon img {
    width: 16px;
    height: 16px;
  }

  .services-accordion__name {
    font-size: 15px;
  }

  .d-none-res {
    display: none !important;
  }

  .services-accordion__content {
    padding: 0 0 14px 36px;
    font-size: 12px;
    line-height: 1.45;
  }

  /* Contact */
  .contact {
    padding: 56px 0 60px;
  }

  .contact .container-lg {
    padding-left: 24px;
    padding-right: 24px;
  }

  .contact__card {
    border-radius: 22px;
    box-shadow: none;
    border: 1px solid #E9E9E9;
    background: #fff;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact__media {
    display: none;
  }

  .contact__form {
    padding: 24px 16px 16px;
  }

  .contact__title {
    font-size: 23px;
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .contact__sub {
    font-size: 12px;
    line-height: 1.45;
    margin-bottom: 22px;
  }

  .contact__fields {
    gap: 12px;
    max-width: 100%;
  }

  .contact__input,
  .contact__textarea {
    min-height: 42px;
    font-size: 14px;
    background: #fff;
  }

  .contact__textarea {
    min-height: 122px;
  }

  .contact__btn {
    height: 48px;
    border-radius: 10px;
    margin-top: 6px;
  }

  /* Footer */
  .site-footer {
    padding: 36px 0 34px;
    background: #fff;
    border-top: 0;
  }

  .site-footer__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }

  .site-footer__brand {
    display: contents;
  }

  .site-footer__logo {
    width: 42px;
    height: 42px;
    margin: 0 0 6px;
    order: 1;
  }

  .site-footer__meta {
    order: 2;
    justify-items: center;
    gap: 10px;
  }

  .site-footer__line,
  .site-footer__mail {
    font-size: 11px;
  }

  .site-footer__links {
    order: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer__col:first-child {
    display: none;
  }

  .site-footer__col {
    gap: 8px;
  }

  .site-footer__col a {
    font-size: 11px;
  }

  .site-footer__social {
    justify-content: center;
    margin-top: 18px;
  }

  .site-footer__social-btn {
    width: 20px;
    height: 20px;
    background: transparent;
  }

  .site-footer__social-btn img {
    width: 13px;
    height: 13px;
  }

  .site-footer__copy {
    order: 4;
    padding-top: 8px;
    font-size: 9px;
  }
}

/* =========================================================
   EXACT SMALL PHONE WIDTH
========================================================= */

@media (max-width: 576px) {
  :root {
    --header-h: 78px;
  }

  .hero-main {
    min-height: 728px;
  }

  .hero-main__title {
    font-size: 40px;
  }

  .hero-main__text {
    font-size: 16px;
  }

  .hero-main__btn {
    max-width: 100%;
  }

  .solutions-card__right {
    min-height: 350px;
  }

  .fz-video__wrap {
    height: 322px;
  }

  .first_step .hero {
    min-height: 360px;
  }

  .fz-mobile-menu__panel {
    width: 100%;
    padding: 40px 28px 34px;
  }

  .fz-mobile-menu__nav a {
    min-height: 56px;
    font-size: 15px;
    padding: 0 18px;
  }

  .fz-mobile-menu__affiliate {
    height: 48px;
    font-size: 14px;
    border-radius: 12px;
    margin-top: 32px;
  }

  .fz-mobile-menu__bottom>a {
    font-size: 15px;
  }

  .fz-mobile-menu__bottom p {
    font-size: 10px;
  }
}

/* =========================================================
   EXTRA SMALL FIX
========================================================= */

@media (max-width: 380px) {
  .hero-main__title {
    font-size: 30px;
  }

  .hero-main__text {
    font-size: 14px;
  }

  .solutions-card__right {
    min-height: 315px;
  }

  .services-card__title,
  .benefits__title,
  .fz-video__title,
  .hero__title,
  .contact__title {
    font-size: 22px;
  }
}

.fz-input:-webkit-autofill,
.fz-input:-webkit-autofill:hover,
.fz-input:-webkit-autofill:focus,
.fz-input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  box-shadow: 0 0 0 1000px #ffffff inset !important;
  -webkit-text-fill-color: #222222 !important;
  caret-color: #222222;
  transition: background-color 9999s ease-in-out 0s;
}

/* ===================== White Custom Date Picker ===================== */

.date-wrapper {
  cursor: pointer;
}

.date-wrapper .date-input {
  cursor: pointer;
  padding-right: 46px;
}

.date-wrapper .input-icon {
  pointer-events: none;
}

body.date-modal-open {
  overflow: hidden;
}

.date-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  font-family: "Montserrat", sans-serif;
}

.date-modal.is-open {
  display: flex;
}

.date-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(2px);
}

.date-modal__card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 430px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border-radius: 28px;
  border: 1px solid #eeeeee;
  background: #ffffff;
  color: #222222;
  padding: 24px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.date-modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.date-modal__top h2 {
  margin: 0;
  color: #222222;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.date-modal__close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #e1e1e1;
  background: #ffffff;
  color: #9d9d9d;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.22s ease;
}

.date-modal__close:hover {
  border-color: #d2d2d2;
  color: #222222;
}

.date-modal__view.is-hidden {
  display: none;
}

.date-modal__month-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.date-modal__month-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #222222;
}

.date-title-btn {
  border: none;
  outline: none;
  background: transparent;
  color: #222222;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 400;
  cursor: pointer;
  padding: 0;
  transition: 0.22s ease;
}

.date-title-btn:hover {
  color: #B08301;
}

.date-modal__divider {
  width: 1px;
  height: 28px;
  background: #e2e2e2;
  display: inline-block;
}

.date-nav-btn {
  width: 32px;
  height: 32px;
  border: none;
  outline: none;
  background: transparent;
  color: #777777;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.22s ease;
}

.date-nav-btn:hover {
  color: #B08301;
}

.date-modal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 14px;
}

.date-modal__weekdays span {
  text-align: center;
  color: #8b8b8b;
  font-size: 12px;
  font-weight: 400;
}

.date-modal__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  row-gap: 12px;
  margin-bottom: 32px;
}

.date-day-btn {
  width: 34px;
  height: 34px;
  margin: 0 auto;
  border: none;
  outline: none;
  border-radius: 50%;
  background: transparent;
  color: #555555;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  transition: 0.22s ease;
}

.date-day-btn:hover {
  background: #f4f4f4;
  color: #222222;
}

.date-day-btn.is-muted {
  color: #c5c5c5;
}

.date-day-btn.is-selected {
  background: linear-gradient(180deg, #FFD963 0%, #B08301 100%);
  color: #ffffff;
}

.date-confirm-btn,
.date-back-btn {
  width: 100%;
  height: 46px;
  border-radius: 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.22s ease;
}

.date-confirm-btn {
  border: none;
  outline: none;
  background: #FFD963;
  color: #111111;
  margin-bottom: 12px;
}

.date-confirm-btn:hover {
  filter: brightness(0.97);
}

.date-back-btn {
  border: 1px solid #e1e1e1;
  outline: none;
  background: #ffffff;
  color: #222222;
}

.date-back-btn:hover {
  border-color: #222222;
}

.date-modal__selector-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.date-modal__selector-grid--months {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.date-modal__selector-grid--years {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.date-selector-btn {
  width: 100%;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #e1e1e1;
  outline: none;
  background: #ffffff;
  color: #666666;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: 0.22s ease;
}

.date-selector-btn:hover {
  border-color: #B08301;
  color: #222222;
}

.date-selector-btn.is-active {
  border-color: #FFD963;
  background: #FFF7D6;
  color: #222222;
}

.date-modal__year-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.date-modal__year-head span {
  color: #222222;
  font-size: 22px;
  font-weight: 400;
}

.date-modal__days--shake {
  animation: dateShake 0.25s ease;
}

@keyframes dateShake {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  50% {
    transform: translateX(5px);
  }

  75% {
    transform: translateX(-3px);
  }

  100% {
    transform: translateX(0);
  }
}

@media (max-width: 576px) {
  .date-modal {
    padding: 16px;
  }

  .date-modal__card {
    border-radius: 22px;
    padding: 20px;
  }

  .date-modal__top {
    margin-bottom: 22px;
  }

  .date-modal__top h2 {
    font-size: 17px;
  }

  .date-title-btn {
    font-size: 20px;
  }

  .date-modal__weekdays span {
    font-size: 11px;
  }

  .date-day-btn {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .date-confirm-btn,
  .date-back-btn {
    height: 44px;
  }
}

.contact-phone-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 52px;
  border: 1px solid #ECECEC;
  background: var(--bg);
  border-radius: 16px;
  z-index: 10;
}

.contact-phone-wrapper:focus-within {
  border-color: #D6D6D6;
  background: var(--white);
}

.contact-country-select {
  position: relative;
  height: 100%;
  flex-shrink: 0;
  z-index: 30;
}

.contact-country-btn {
  height: 100%;
  min-height: 56px;
  border: 0;
  outline: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px 0 14px;
  color: var(--contact-title);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  cursor: pointer;
}


.contact-country-select.open .contact-country-btn::after {
  transform: rotate(-90deg);
}

.contact-phone-divider {
  width: 1px;
  height: 24px;
  background: #E2E2E2;
  flex-shrink: 0;
}

.contact-phone-input {
  border: 0 !important;
  background: transparent !important;
  border-radius: 0 10px 10px 0 !important;
  padding-left: 12px !important;
  color: var(--contact-title);
}

.contact-phone-input:focus {
  border: 0 !important;
  background: transparent !important;
}

.contact-country-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  width: 255px;
  max-height: 240px;
  overflow-y: auto;
  padding: 8px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #ECECEC;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: .2s ease;
  z-index: 999;
}

.contact-country-select.open .contact-country-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-country-option {
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: 10px;
  padding: 10px;
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 8px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #1F1F1F;
}

.contact-country-option:hover {
  background: #F6F6F6;
}

.contact-country-option strong {
  font-size: 12px;
  font-weight: 500;
}

.contact__error {
  margin-top: -10px;
  color: #dc3545;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
}

.contact__success {
  max-width: 360px;
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #ecfdf3;
  color: #027a48;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
}

.contact__input,
.contact__textarea,
.contact-phone-input {
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
}

.contact__input:focus,
.contact__textarea:focus,
.contact-phone-input:focus {
  outline: none !important;
  box-shadow: none !important;
  background: var(--bg) !important;
  border-color: #D6D6D6 !important;
}

.contact__input:-webkit-autofill,
.contact__input:-webkit-autofill:hover,
.contact__input:-webkit-autofill:focus,
.contact__textarea:-webkit-autofill,
.contact__textarea:-webkit-autofill:hover,
.contact__textarea:-webkit-autofill:focus,
.contact-phone-input:-webkit-autofill,
.contact-phone-input:-webkit-autofill:hover,
.contact-phone-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--bg) inset !important;
  box-shadow: 0 0 0 1000px var(--bg) inset !important;
  -webkit-text-fill-color: var(--contact-title) !important;
  caret-color: var(--contact-title) !important;
  transition: background-color 9999s ease-in-out 0s !important;
}

.contact-phone-wrapper:focus-within {
  outline: none !important;
  box-shadow: none !important;
  background: var(--bg) !important;
  border-color: #D6D6D6 !important;
}

@media (max-width: 600px) {
  .contact-country-btn {
    padding: 0 9px;
    gap: 4px;
    font-size: 13px;
  }

  .contact-country-dropdown {
    width: 230px;
  }

  .contact-phone-input {
    padding-left: 8px !important;
  }
}