@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

body .site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  margin: 0;
  padding: 0;
}

body .navbar {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-right: 0px;
  padding: 1rem 1.25rem 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #112A48;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  z-index: 30;
  transition: all 0.2s ease;
}

body .navbar.scrolled {
  background: #112A48;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

body .logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: clamp(1rem, 9vw, 140px);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
}

body .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body .nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

body .nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0 0.5rem;
  border-radius: 0;
  text-decoration: none;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

body .nav-links a:hover {
  color: #41e56e;
  background: transparent;
  transform: none;
}

body .mobile-nav-social {
  display: none;
}

body .mobile-nav-quote {
  display: none;
}

body .menu-toggle {
  display: none;
  width: 2.2rem;
  height: 1rem;
  place-items: center;
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

body .menu-toggle span {
  display: block;
  width: 0.95rem;
  height: 2px;
  margin: 2px auto;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body .navbar.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body .navbar.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body .navbar.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 720px) {
  body .navbar {
    top: 0;
    width: 100%;
    padding: 0.65rem 0.7rem 0.65rem 1rem;
    border-radius: 0;
  }

  body .logo {
    margin-left: 0;
    width: 2.25rem;
    height: 2.25rem;
  }

  body .menu-toggle {
    display: grid;
  }

  body .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 8.6rem minmax(0, 1fr);
    gap: 0.35rem;
    padding: 0.7rem 1rem;
    border: none;
    border-radius: 0;
    background: #112A48;
    backdrop-filter: blur(6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  body .nav-links > li:not(.mobile-nav-quote):not(.mobile-nav-social) {
    grid-column: 1;
  }

  body .navbar.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body .nav-links a {
    width: 100%;
    justify-content: flex-start;
    min-height: 2.85rem;
    padding: 0 0.25rem;
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.95);
  }

  body .mobile-nav-quote {
    display: flex;
    grid-column: 2;
    grid-row: 1 / 6;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    justify-self: stretch;
    min-width: 0;
    padding: 0 0.2rem;
  }

  body .mobile-nav-quote figure {
    margin: 0;
    width: min(100%, 12.6rem);
    text-align: center;
  }

  body .mobile-nav-quote blockquote {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(0.72rem, 2.8vw, 0.88rem);
    font-style: italic;
    font-weight: 800;
    line-height: 1.34;
  }

  body .mobile-nav-quote figcaption {
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.58);
    font-family: 'Oswald', sans-serif;
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  body .mobile-nav-social {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 0 0.25rem;
    margin-top: 0.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  body .mobile-nav-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 2.05rem;
    width: 2.05rem;
    min-width: 2.05rem;
    min-height: 2.05rem;
    height: 2.05rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: #ffffff;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.06);
    line-height: 1;
  }

  body .mobile-nav-social i {
    display: block;
    width: 1em;
    height: 1em;
    line-height: 1;
    text-align: center;
  }

  body .mobile-nav-social .fa-youtube {
    font-size: 0.9em;
  }

  body .mobile-nav-social .fa-linkedin-in,
  body .mobile-nav-social .fa-tiktok {
    font-size: 0.94em;
  }

  body .mobile-nav-social a:hover {
    color: #112A48;
    background: #ffffff;
    border-color: #ffffff;
  }
}

@media (max-width: 360px) {
  body .nav-links {
    grid-template-columns: 1fr;
  }

  body .mobile-nav-quote {
    grid-column: 1;
    grid-row: auto;
    justify-content: flex-start;
    padding: 0.25rem 0.25rem 0.4rem;
  }

  body .mobile-nav-quote blockquote {
    text-align: left;
    font-size: 0.82rem;
  }

  body .mobile-nav-quote figure {
    max-width: 100%;
    text-align: left;
  }
}
