.vg-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: #18181b;
  border-bottom: 1px solid #27272a;
  font-family: system-ui, sans-serif;
}

.vg-header__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.vg-header__brand {
  flex: 1;
  display: flex;
}

.vg-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vg-brand svg {
  width: 2rem;
  height: 2rem;
  fill: #39FF14;
}

.vg-header__nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.vg-nav-link {
  color: #f5efe5;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.vg-nav-link:hover {
  color: #39FF14;
}

.vg-header__actions {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.vg-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: #39FF14;
  color: #18181b;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.25rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.vg-btn-primary:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
}

.vg-btn-primary--full {
  width: 100%;
}

.vg-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.375rem;
  width: 3rem;
  height: 3rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.vg-burger__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: background-color 0.2s ease;
}

.vg-burger:hover .vg-burger__line {
  background-color: #39FF14;
}

.vg-footer {
  background-color: #000000;
  color: #f5efe5;
  padding: 4rem 1.5rem 0;
  font-family: system-ui, sans-serif;
  border-top: 1px solid #27272a;
}

.vg-footer__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

.vg-footer__brand-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vg-footer__logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.vg-footer__desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #a1a1aa;
  max-width: 24rem;
  margin: 0;
}

.vg-footer__heading {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 1.5rem;
  display: block;
}

.vg-footer__contact-list,
.vg-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vg-footer__link {
  color: #a1a1aa;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.vg-footer__link:hover {
  color: #39FF14;
}

.vg-footer__bottom {
  border-top: 1px solid #27272a;
  padding: 1.5rem 0;
}

.vg-footer__bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.vg-footer__copy {
  color: #71717a;
  font-size: 0.875rem;
}

.vg-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  justify-content: flex-end;
  font-family: system-ui, sans-serif;
}

.vg-mobile-nav[hidden] {
  display: none;
}

.vg-mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.vg-mobile-nav__drawer {
  position: relative;
  width: 100%;
  max-width: 24rem;
  background-color: #18181b;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.vg-mobile-nav.is-open .vg-mobile-nav__drawer {
  transform: translateX(0);
}

.vg-mobile-nav__header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #27272a;
}

.vg-mobile-nav__title {
  font-weight: 800;
  font-size: 1.25rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vg-mobile-nav__close {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.vg-mobile-nav__close:hover {
  color: #39FF14;
}

.vg-mobile-nav__links {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
  overflow-y: auto;
}

.vg-mobile-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.vg-mobile-link:hover {
  color: #39FF14;
}

.vg-mobile-nav__footer {
  padding: 1.5rem;
  border-top: 1px solid #27272a;
}

@media (min-width: 768px) {
  .vg-footer__container {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .vg-footer__bottom-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .vg-header__nav {
    display: flex;
  }

  .vg-burger {
    display: none;
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .vg-header__actions .vg-btn-primary {
    display: none;
  }
}

[data-mobile-nav][hidden],
[data-mobile-nav].hidden {
  display: none
}

[data-mobile-nav][data-mobile-open="1"] {
  display: block
}

.flex-wrap {
  flex-wrap: wrap;
}
