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

body,
html {
  overflow-x: hidden;
}

body {
  background: #fbfbfb;
}
main {
  overflow: hidden;
}

.logo-wrapper {
  padding: 0 0 0 64px;
  width: 138px;
  height: 40px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}

.logo-wrapper h4 {
  color: #101f33;
}

.logo {
}

.nav-bar {
  background: rgba(240, 240, 242, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  min-height: 95px;
  width: 100%;
  max-width: 100vw;
  left: 0;
  right: 0;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 56px 0 56px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 3;
  position: fixed;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-trigger {
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  color: black;
  text-decoration: none;
}

.dropdown-trigger .icon {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 208px;
  padding: 8px 0;
  background: #ffffff;
  border-radius: 8px;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.22),
    0 2px 8px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  z-index: 1000;
}

.dropdown-menu::before {
  display: none;
}

.navigation .dropdown-menu a {
  height: auto;
  min-height: 40px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  color: #262626;
  border-radius: 0;
  background: transparent;
  transform: none;
}

.navigation .dropdown-menu a::after {
  display: none;
}

.navigation .dropdown-menu a:hover {
  background: transparent;
  color: #262626;
  -webkit-text-fill-color: #262626;
  transform: none;
}

.navigation .dropdown-menu a span {
  font-size: 16px;
  font-weight: 400;
  color: #262626;
  line-height: 1;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .dropdown-trigger .icon,
.nav-dropdown:focus-within .dropdown-trigger .icon {
  transform: rotate(180deg);
}

.navigation a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100px;
  text-decoration: none;
  color: black;
  cursor: pointer;
}

.navigation a:hover {
  background: linear-gradient(to right, #b82760, #fb1053, #fe5e3a, #f69c01);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #b82760, #fb1053, #fe5e3a, #f69c01);
  transform: scaleX(0);
}

.navigation a:hover::after {
  transform: scaleX(1);
}

.active {
  position: relative;
  background: linear-gradient(to right, #b82760, #fb1053, #fe5e3a, #f69c01);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #b82760, #fb1053, #fe5e3a, #f69c01);
  transform: scaleX(1) !important;
}

.icon {
  margin-left: 8px;
  font-size: 12px;
  color: black;
  -webkit-text-fill-color: black;
}

.login-btn {
  width: 81px;
  height: 56px;
  position: relative;
  padding: 8px 20px;
  border-radius: 12px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: black;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.login-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(to right, #b82760, #fb1053, #fe5e3a, #f69c01);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.login-btn:hover {
  background: linear-gradient(to right, #b82760, #fb1053, #fe5e3a, #f69c01);
  color: white;
}

.cta-btn {
  padding: 8px 20px;
  width: 183px;
  height: 56px;
  border-radius: 12px;
  border: none;
  background-image: linear-gradient(
    to right,
    #b82760,
    #fb1053,
    #fe5e3a,
    #f69c01
  );
  color: white;
  cursor: pointer;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.cta-btn:hover {
  opacity: 0.9;
}

.button-wrapper {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  padding: 0 64px 0 0;
}

.secondary-btn {
  padding: 8px 20px;
  width: 192px;
  height: 56px;
  position: relative;
  padding: 8px 20px;
  border-radius: 12px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: black;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.secondary-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(to right, #b82760, #fb1053, #fe5e3a, #f69c01);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.secondary-btn:hover {
  background: linear-gradient(to right, #b82760, #fb1053, #fe5e3a, #f69c01);
  color: white;
}

footer {
  z-index: 1;
  background-color: #181d2c;
  width: 100%;
  padding: 56px 0 0 0;
  box-sizing: border-box;
}

.footer-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-description {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  margin: 0 0 24px 0;
  color: #ffffff;
}

.insta-icon-bg {
  width: 51px;
  height: 51px;
  border-radius: 12px;
  background: #ffffff0d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.insta-icon-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(to right, #b82760, #fb1053, #fe5e3a, #f69c01);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.insta-icon-bg:hover::before {
  opacity: 1;
}

.footer-icon {
  position: relative;
  z-index: 1;
  font-size: 24px;
  font-weight: 400;
  background: linear-gradient(to right, #b82760, #fb1053, #fe5e3a, #f69c01);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: -webkit-text-fill-color 0.3s ease-in-out;
}

.insta-icon-bg:hover .footer-icon {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: white;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: #ffffff;
  opacity: 0.8;
}

.footer-col a {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
  max-width: 180px;
  line-height: 140%;
}

.footer-col a:hover {
  background: linear-gradient(to right, #b82760, #fb1053, #fe5e3a, #f69c01);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.footer-bottom {
  margin: 48px auto auto auto;
  box-sizing: border-box;
  border-top: 1px solid #ffffff14;
  padding: 24px 56px;
  text-align: center;
  max-width: 1280px;
}

.footer-bottom p {
  color: #ffffff;
  margin: 0;
}

.footer-icon-wrapper {
  display: flex;
  flex-direction: row;
  color: #ffffff;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding-bottom: 32px;
}

.hamburger-btn {
  display: none;
}

.mobile-menu {
  display: none;
}

.ui_inner_container {
  max-width: 836px;
  margin: 0 auto;
}
.form-error {
  color: #b82760;
  font-size: 14px;
}

@media (max-width: 1400px) {
  .logo-wrapper {
    padding: 0;
  }

  .navigation {
    display: none;
  }

  .hamburger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 24px;
  }

  .button-wrapper {
    display: none;
  }

  .nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
  }

  .mobile-menu {
    position: fixed;
    top: 95px;
    left: 0;
    width: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    z-index: 999;
    transform: translateY(-150%);
    transition: 0.3s ease;
  }

  .mobile-menu.open {
    transform: translateY(0);
  }

  .mobile-menu a {
    text-decoration: none;
    color: black;
    font-weight: 600;
  }

  .footer-wrapper {
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
  }

  .footer-links {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .footer-wrapper {
    padding: 0 24px;
  }

  .footer-links {
    flex-direction: column;
    gap: 32px;
    width: 100%;
  }

  .footer-col {
    width: 100%;
  }

  .footer-bottom {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .footer-description br {
    display: none;
  }

  .footer-description {
    max-width: 100%;
  }

  .footer-bottom p {
    text-align: center;
    line-height: 1.5;
  }
}
