.navbar a,
.site-footer a {
  text-decoration: none;
  color: inherit;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  transition: transform 0.35s ease, background 0.3s ease, border-color 0.3s ease, top 0.35s ease;
  border-bottom: 1px solid transparent;
}

.navbar.nav-hidden {
  transform: translateY(-100%);
}

.navbar.nav-scrolled {
  background: rgba(10, 10, 10, 0.97);
  border-bottom-color: #1a1a1a;
}

.navbar.menu-active {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}

/* Mobile / Chromium-on-Android compositor safety.
   On low-end Android GPUs (e.g. Adreno on Redmi Note 8 Pro / Mi Browser),
   the combination of position:fixed + backdrop-filter:blur + transform:translateY
   on the navbar leaves stale tiles in the back-buffer during scroll. This
   smears anything with a tinted background under the navbar (the "ABOUT US"
   pill, the green credentials row) into ghosted trails and rainbow scanline
   static. Drop the blur and use a top-offset hide instead of a transform so
   the navbar no longer needs its own GPU compositor layer. */
@media (max-width: 768px) {
  .navbar {
    background: #0a0a0a;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    will-change: auto;
  }
  .navbar.nav-hidden {
    transform: none;
    top: -120px;
  }
  .navbar.nav-scrolled {
    background: #0a0a0a;
  }
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  padding: 0 28px;
  position: relative;
}

.nav-left {
  display: flex;
  align-items: center;
}

/* ── Premium call card ── */
.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 16px 7px 9px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%),
    #131416;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 1px 2px rgba(0,0,0,0.4),
    0 8px 24px -16px rgba(163,230,53,0.18);
  color: #e5e5e5;
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  position: relative;
}

.nav-call:hover {
  transform: translateY(-1px);
  border-color: rgba(163,230,53,0.35);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%),
    #16181b;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 1px 2px rgba(0,0,0,0.4),
    0 14px 32px -14px rgba(163,230,53,0.35);
}

.nav-call:focus-visible {
  outline: 2px solid #a3e635;
  outline-offset: 3px;
}

.nav-call-icon {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a3e635 0%, #65a30d 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  flex-shrink: 0;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    0 4px 10px -2px rgba(101,163,13,0.45);
}

.nav-call-icon svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.4;
}

.nav-call-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(163,230,53,0.55);
  animation: nav-call-pulse 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  pointer-events: none;
}

@keyframes nav-call-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(163,230,53,0.45); }
  70%  { box-shadow: 0 0 0 10px rgba(163,230,53,0); }
  100% { box-shadow: 0 0 0 0 rgba(163,230,53,0); }
}

.nav-call-body {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
}

.nav-call-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3a0;
  white-space: nowrap;
}

.nav-call-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a3e635;
  box-shadow: 0 0 0 2px rgba(163,230,53,0.18);
  animation: nav-call-dot 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes nav-call-dot {
  0%, 100% { box-shadow: 0 0 0 2px rgba(163,230,53,0.18); }
  50%      { box-shadow: 0 0 0 4px rgba(163,230,53,0.04); }
}

.nav-call-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 21px;
  letter-spacing: 0.06em;
  color: #ffffff;
  line-height: 1;
}

.nav-call-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .nav-call-pulse,
  .nav-call-dot { animation: none; }
}

.nav-logo {
  height: 54px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 500;
  color: #d4d4d4;
  cursor: pointer;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.nav-right:hover { color: #fff; }

.nav-menu-text { }

.hamburger-icon {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease;
  transform-origin: center;
}

.menu-active .hamburger-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-active .hamburger-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-active .hamburger-icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.menu-active .nav-menu-text {
  display: none;
}

.menu-active .nav-right {
  color: #fff;
}

/* ============================
   FULLSCREEN MENU
   ============================ */

.fullscreen-menu {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: #050505;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1), visibility 0s 0.5s;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.fullscreen-menu.menu-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1), visibility 0s 0s;
}

.menu-bg-text {
  position: absolute;
  bottom: -5%;
  right: -3%;
  font-family: 'Anton', sans-serif;
  font-size: clamp(200px, 30vw, 500px);
  text-transform: uppercase;
  color: rgba(163, 230, 53, 0.02);
  line-height: 0.85;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  transition: opacity 0.8s ease 0.2s;
  opacity: 0;
}

.menu-open .menu-bg-text {
  opacity: 1;
}

.menu-inner {
  width: 100%;
  max-width: 900px;
  padding: 80px 40px 40px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  justify-content: center;
}

.menu-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}

.menu-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  text-decoration: none;
  color: #fff;
  position: relative;
  overflow: hidden;
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-open .menu-link {
  transform: translateY(0);
  opacity: 1;
}

.menu-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #a3e635;
  transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-link:hover::before {
  width: 100%;
}

.menu-link:hover {
  border-bottom-color: transparent;
}

.menu-link-num {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #a3e635;
  letter-spacing: 0.08em;
  min-width: 28px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-link:hover .menu-link-num {
  transform: translateX(4px);
}

.menu-link-text {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.15);
  transition: color 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              letter-spacing 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  flex: 1;
}

.menu-link:hover .menu-link-text {
  color: #fff;
  transform: translateX(8px);
  letter-spacing: 0.02em;
}

.menu-link-arrow {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-link-arrow svg {
  width: 28px;
  height: 28px;
  color: #a3e635;
}

.menu-link:hover .menu-link-arrow {
  opacity: 1;
  transform: translateX(0);
}

.menu-phase {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 6px 0;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-open .menu-phase {
  transform: translateY(0);
  opacity: 1;
}

.menu-phase-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(163, 230, 53, 0.15), transparent);
}

.menu-phase-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #a3e635;
  white-space: nowrap;
  padding: 3px 14px;
  border: 1px solid rgba(163, 230, 53, 0.15);
  border-radius: 50px;
  background: rgba(163, 230, 53, 0.04);
}

/* Menu bottom info */
.menu-bottom {
  display: flex;
  gap: 48px;
  align-items: flex-end;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-bottom-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-open .menu-bottom-col {
  transform: translateY(0);
  opacity: 1;
}

.menu-bottom-label {
  font-family: 'Anton', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #a3e635;
  margin-bottom: 6px;
}

.menu-bottom-link {
  font-size: 14px;
  color: #666;
  text-decoration: none;
  transition: color 0.25s ease;
  line-height: 1.6;
}

.menu-bottom-link:hover {
  color: #fff;
}

.menu-bottom-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: #999;
}

.menu-bottom-phone:hover {
  color: #a3e635;
}

.menu-bottom-cta {
  margin-left: auto;
}

.menu-cta-btn {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #a3e635;
  color: #0a0a0a;
  padding: 16px 40px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.menu-cta-btn:hover {
  background: #bef264;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(163, 230, 53, 0.3);
}

/* ============================
   FOOTER
   ============================ */

.site-footer {
  background: #0a0a0a;
  padding: 64px 0 36px;
  border-top: 1px solid #222;
}

.site-footer .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.4fr;
  gap: 56px;
  margin-bottom: 48px;
  align-items: start;
}

.footer-brand p {
  font-size: 14px;
  color: #888;
  line-height: 1.65;
  margin-top: 16px;
}

.footer-col h4 {
  font-family: 'Anton', sans-serif;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #e5e5e5;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 14px;
  color: #888;
  transition: color 0.2s;
}

.footer-col a:hover { color: #a3e635; }

.footer-newsletter p {
  font-size: 14px;
  color: #888;
  margin-bottom: 14px;
  line-height: 1.55;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
}

.footer-newsletter-form input {
  flex: 1;
  background: #161616;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #fff;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.footer-newsletter-form input:focus { border-color: #a3e635; }

.footer-newsletter-form input::placeholder { color: #666; }

.footer-newsletter-form button {
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  letter-spacing: 0.04em;
  background: #a3e635;
  color: #0a0a0a;
  border: none;
  border-radius: 8px;
  padding: 12px 22px;
  cursor: pointer;
  transition: background 0.2s;
}

.footer-newsletter-form button:hover { background: #bef264; }

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 24px;
  font-size: 13px;
  color: #666;
  text-align: center;
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 880px) {
  .nav-call-eyebrow { display: none; }
  .nav-call-number { font-size: 17px; }
  .nav-call { padding: 6px 12px 6px 8px; gap: 9px; }
  .nav-call-icon { width: 28px; height: 28px; }
  .nav-call-icon svg { width: 13px; height: 13px; }
}

@media (max-width: 540px) {
  .nav-call-body { display: none; }
  .nav-call { padding: 6px; gap: 0; }
}

@media (max-width: 768px) {
  .navbar .container { padding: 0 16px; }
  .nav-logo { height: 38px; }
  .nav-menu-text { display: none; }
  .hamburger-icon { width: 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  .menu-inner { padding: 70px 24px 24px; }

  .menu-link { padding: 8px 0; gap: 12px; }

  .menu-link-text {
    font-size: clamp(22px, 6vw, 32px);
  }

  .menu-link-num { font-size: 10px; min-width: 22px; }

  .menu-link-arrow svg { width: 18px; height: 18px; }

  .menu-bottom {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .menu-bottom-cta {
    margin-left: 0;
    width: 100%;
  }

  .menu-cta-btn {
    display: block;
    text-align: center;
    width: 100%;
  }

  .menu-phase { padding: 3px 0; gap: 10px; }
  .menu-phase-label { font-size: 9px; padding: 2px 10px; }

  .menu-links { margin-bottom: 20px; }

  .menu-bg-text {
    font-size: clamp(120px, 25vw, 200px);
    bottom: 2%;
    right: -5%;
  }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-newsletter-form { flex-direction: column; gap: 10px; }
  .footer-newsletter-form input,
  .footer-newsletter-form button { width: 100%; }
}
