.ef-nav-wrap {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-left: auto;
}

.ef-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: #1f2937;
  font-weight: 600;
}

.ef-menu a,
.ef-menu button {
  color: inherit;
  font: inherit;
  line-height: 1;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
}

.ef-menu a:hover,
.ef-menu button:hover {
  color: #16a34a;
}

.ef-dropdown {
  position: relative;
}

.ef-dropdown-panel {
  position: absolute;
  top: 1.65rem;
  left: 50%;
  width: 260px;
  transform: translateX(-50%);
  display: none;
  padding: 0.55rem;
  border: 1px solid rgba(22, 163, 74, 0.16);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
}

.ef-dropdown:hover .ef-dropdown-panel,
.ef-dropdown:focus-within .ef-dropdown-panel {
  display: grid;
}

.ef-dropdown-panel a {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: 0.5rem;
  line-height: 1.15;
  color: #111827;
  white-space: normal;
}

.ef-dropdown-panel a:hover {
  background: #ecfdf5;
  color: #047857;
}

.ef-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 1rem;
  border-radius: 999px;
  background: #16a34a;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.22);
}

.ef-header-cta:hover {
  background: #15803d;
  color: #fff;
}

.ef-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  background: #052e16;
  box-shadow: 0 -12px 28px rgba(15, 23, 42, 0.18);
}

.ef-mobile-cta a {
  min-height: 56px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.86rem;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
}

.ef-mobile-cta a:last-child {
  border-right: 0;
}

.ef-internal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.5rem auto 0;
  justify-content: center;
}

.ef-internal-nav a {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(22, 163, 74, 0.22);
  border-radius: 999px;
  background: #f0fdf4;
  color: #166534;
  font-weight: 700;
  text-decoration: none;
}

.ef-internal-nav a:hover {
  background: #dcfce7;
}

@media (max-width: 900px) {
  body {
    padding-bottom: 56px;
  }

  .ef-nav-wrap {
    gap: 0.7rem;
  }

  .ef-menu {
    display: none;
  }

  .ef-header-cta {
    min-height: 36px;
    padding: 0 0.8rem;
    font-size: 0.82rem;
  }

  .ef-mobile-cta {
    display: grid;
  }
}
