:root {
  /* Breakpoints */
  --bp-desktop: 1440px;
  --bp-tablet: 1024px;
  --bp-mobile: 430px;
}

/* ===================== NAVBAR ===================== */
.main-header {
  width: 100%;
  background: var(--blue-dark);
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.hidden {
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header__container {
  width: 100%;
  max-width: var(--bp-desktop);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.main-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.company-logo {
  height: 32px;
  width: 108px;
  display: block;
}

.main-header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-header__link {
  color: var(--white-neutral);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.2s;
}

.main-header__link--active {
  color: var(--green-medium);
  font-weight: 500;
}

.main-header__divider {
  display: inline-block;
  width: 1px;
  height: 28px;
  background: var(--green-neutral);
  margin: 0 16px;
}

.main-header__start-btn,
.mobile-menu__start-btn {
  background: linear-gradient(106deg, #2BF29F 0%, #09A664 100%);
  color: var(--black-900, #151515);
  font-size: 14px;
  font-family: Inter, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  box-sizing: border-box;
  outline: none;
}

.main-header__start-btn:hover,
.mobile-menu__start-btn:hover {
  box-shadow: 0 2px 16px 0 rgba(43, 242, 159, 0.15);
  transform: translateY(-1px);
}

.main-header__start-btn:focus,
.mobile-menu__start-btn:focus {
  box-shadow: 0 2px 16px 0 rgba(43, 242, 159, 0.15), 0 0 0 2px var(--product-default, #0BCF7D);
  outline: none;
}

.main-header__start-btn:active,
.mobile-menu__start-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 8px 0 rgba(43, 242, 159, 0.2);
}

/* Mobile Menu */
.main-header__burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  margin-left: 16px;
  z-index: 120;
}

.main-header__burger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white-neutral);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  position: fixed;
  top: 10px;
  left: 10px;
  right: 10px;
  width: auto;
  max-width: 400px;
  height: auto;
  background: var(--blue-dark);
  box-shadow: -2px 0 16px rgba(0, 0, 0, 0.18);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
  margin: 0 auto;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

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

.mobile-menu__close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--white-neutral);
  cursor: pointer;
  line-height: 1;
}

.mobile-menu__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white-neutral);
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  padding: 12px 0;
  transition: color 0.2s;
}

.mobile-menu__link svg {
  width: 16px;
  height: 17px;
}

.mobile-menu__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 150;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.open + .mobile-menu__overlay {
  display: block;
  opacity: 1;
}

@media (min-width: 901px) {
  .mobile-menu,
  .mobile-menu__overlay {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .main-header__nav {
    display: none;
  }

  .main-header__burger {
    display: flex;
  }

  .main-header__container {
    padding: 0 var(--container-padding);
  }
}

@media (max-width: 768px) {
  .main-header__container {
    height: 50px;
  }
}

/* ===================== FOOTER ===================== */
.footer {
  width: 100%;
  background: var(--bg-gradient-start);
  color: var(--white-neutral);
}

.footer__container {
  width: 100%;
  max-width: var(--bp-desktop);
  margin: 0 auto;
  padding: 40px var(--container-padding);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.footer__logo img {
  height: 48px;
  margin-bottom: 24px;
}

.footer__links {
  display: flex;
  gap: 80px;
  flex: 1;
  justify-content: flex-end;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 120px;
}

.footer__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white-neutral);
  margin-bottom: 8px;
}

.footer__link {
  color: var(--green-high);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--green-medium);
}

.footer__bottom {
  width: 100%;
  max-width: var(--bp-desktop);
  margin: 0 auto;
  padding: 0 var(--container-padding) 40px;
  display: flex;
  justify-content: flex-start;
  gap: 32px;
  font-size: 15px;
  color: var(--green-neutral);
  flex-wrap: wrap;
  box-sizing: border-box;
}

.footer__bottom-link {
  color: var(--white-neutral);
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
}

.footer__bottom-link:hover {
  color: var(--green-high);
}

@media (max-width: 1024px) {
  .footer__container {
    flex-direction: column;
    gap: 32px;
  }

  .footer__links {
    width: 100%;
    justify-content: flex-start;
    gap: 40px;
  }

  .footer__bottom {
    gap: 16px;
  }

  .footer__logo img {
    height: 40px;
  }
}

@media (max-width: 768px) {
  .footer__links {
    flex-direction: column;
    gap: 24px;
  }
}

.main-header__link.w--current, .footer__link.w--current {
  color: var(--green-high) !important;
  font-weight: 600;
}