:root {
  --chrome-bg: #022c22;
  --chrome-surface: #053d2e;
  --chrome-surface-soft: rgba(6, 78, 59, 0.82);
  --chrome-text: #f0fdf4;
  --chrome-muted: #a7d8b8;
  --chrome-accent: #16a34a;
  --chrome-highlight: #f9a8d4;
  --chrome-line: rgba(134, 239, 172, 0.2);
  --chrome-shadow: rgba(0, 20, 14, 0.28);
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  padding: 0.7rem clamp(1rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 12% 0%, rgba(249, 168, 212, 0.1), transparent 28%),
    linear-gradient(120deg, rgba(2, 44, 34, 0.97), rgba(5, 61, 46, 0.94) 58%, rgba(6, 78, 59, 0.92));
  border-bottom: 1px solid var(--chrome-line);
  box-shadow: 0 14px 30px var(--chrome-shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.navbar > .container {
  max-width: 1280px;
}
.navbar-brand {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.4rem;
  border: 1px solid transparent;
  border-radius: 14px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.navbar-brand:hover {
  transform: translateY(-1px);
  background: rgba(249, 168, 212, 0.08);
  border-color: rgba(249, 168, 212, 0.22);
}
.navbar-brand img {
  width: auto;
  height: 44px;
  max-width: min(180px, 30vw);
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.3));
}
.navbar-nav {
  align-items: center;
  gap: 0.35rem;
}
.navbar-nav .nav-item {
  margin-bottom: 0;
}
.navbar-nav .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.5rem 0.9rem !important;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--chrome-text) !important;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  transform: translateY(-1px);
  color: #ffffff !important;
  background: linear-gradient(90deg, rgba(22, 163, 74, 0.3), rgba(249, 168, 212, 0.22));
  border-color: rgba(249, 168, 212, 0.28);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}
.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  right: 0.8rem;
  bottom: 3px;
  left: 0.8rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--chrome-accent), var(--chrome-highlight));
}
.navbar-toggler {
  padding: 0.48rem 0.62rem;
  border: 1px solid rgba(134, 239, 172, 0.35) !important;
  border-radius: 12px;
  background: rgba(2, 44, 34, 0.46);
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.14);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.navbar-toggler:hover,
.navbar-toggler:focus {
  background: rgba(249, 168, 212, 0.12);
  border-color: rgba(249, 168, 212, 0.42) !important;
  transform: translateY(-1px);
  box-shadow: 0 0 0 0.18rem rgba(249, 168, 212, 0.1);
}
.navbar-collapse {
  border-radius: 18px;
}
footer.site-footer,
body > footer:not(.site-footer) {
  position: relative;
  overflow: hidden;
  margin-top: clamp(40px, 5vw, 60px);
  padding: clamp(48px, 6vw, 72px) 0 clamp(20px, 3vw, 32px);
  border-top: 1px solid var(--chrome-line);
  background:
    radial-gradient(circle at 86% 0%, rgba(249, 168, 212, 0.1), transparent 30%),
    linear-gradient(145deg, #022c22, #053d2e 55%, #064e3b);
}
footer.site-footer::before,
body > footer:not(.site-footer)::before {
  content: '';
  position: absolute;
  top: -110px;
  left: 8%;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(134, 239, 172, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(134, 239, 172, 0.035), 0 0 0 56px rgba(134, 239, 172, 0.02);
  pointer-events: none;
}
footer.site-footer > .container,
body > footer:not(.site-footer) > .container {
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid !important;
  grid-template-columns: minmax(250px, 1.35fr) repeat(3, minmax(130px, 0.8fr)) minmax(190px, 1fr);
  gap: 28px 32px;
  align-items: start;
}
.footer-brand {
  margin-bottom: 1rem;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.4rem;
  border-radius: 14px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.footer-logo:hover {
  transform: translateY(-1px);
  background: rgba(249, 168, 212, 0.08);
}
.footer-logo img {
  width: auto !important;
  height: 44px !important;
  max-width: 180px;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.28));
}
.footer-desc {
  max-width: 360px;
  margin: 0 0 18px;
  color: var(--chrome-muted);
  font-size: 0.92rem;
  line-height: 1.8;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(249, 168, 212, 0.2);
  border-radius: 999px;
  background: rgba(249, 168, 212, 0.08);
  color: var(--chrome-highlight);
  font-size: 0.8rem;
  font-weight: 700;
}
.footer-title,
.footer-heading {
  margin-bottom: 16px;
  color: var(--chrome-text);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.footer-link-group,
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-link,
.footer-links a,
.footer-contact a,
.footer-contact p {
  color: var(--chrome-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-link,
.footer-links a {
  margin: 0;
}
.footer-link:hover,
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--chrome-highlight);
  transform: translateX(3px);
}
.footer-contact p {
  margin: 0;
}
.footer-divider {
  display: none;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--chrome-line);
  color: var(--chrome-muted);
  font-size: 0.82rem;
}
.footer-copy {
  color: var(--chrome-muted) !important;
  font-size: 0.82rem;
}
@media (max-width: 1180px) {
  .navbar-nav .nav-link {
    padding-right: 0.72rem !important;
    padding-left: 0.72rem !important;
    font-size: 0.86rem;
  }
  .footer-grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }
}
@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 0.7rem;
    padding: 0.75rem;
    border: 1px solid var(--chrome-line);
    background: rgba(2, 44, 34, 0.9);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  }
  .navbar-nav {
    align-items: stretch;
  }
  .navbar-nav .nav-link {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}