:root {
  --topbar-banner-offset: 34px;
  --topbar-height: 78px;
  --topbar-height-scrolled: 64px;
  --green-900: #004d35;
  --green-800: #006847;
  --green-50: #f0fdf7;
  --ink: #1a1a1a;
  --ink-muted: #737373;
  --surface: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.04), 0 8px 20px rgba(42, 103, 55, 0.05);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
  --focus-ring: 0 0 0 3px rgba(0, 104, 71, 0.26);
}

#topbar-container {
  display: contents;
}

body:has(#topbar-container),
body:has(.topbar) {
  padding-top: var(--topbar-height);
}

body:has(#banner-container):has(#topbar-container),
body:has(.urgency-banner):has(.topbar),
body:has(.urgency-banner):has(#topbar-container) {
  padding-top: calc(var(--topbar-banner-offset) + var(--topbar-height));
}

body:has(#topbar-container):has(.topbar.is-scrolled),
body:has(.urgency-banner):has(.topbar.is-scrolled) {
  --topbar-height: var(--topbar-height-scrolled);
}

.topbar {
  position: fixed;
  top: var(--topbar-banner-offset);
  left: 0;
  right: 0;
  height: var(--topbar-height);
  padding: 0 20px;
  background: var(--surface, #ffffff);
  z-index: 2000;
  box-sizing: border-box;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: visible;
  border-bottom: 1px solid color-mix(in srgb, var(--ink-muted, #737373) 18%, transparent);
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.04));
  transition:
    height 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.topbar.is-scrolled {
  height: var(--topbar-height-scrolled);
  background: var(--surface, #ffffff);
  border-bottom-color: color-mix(in srgb, var(--ink-muted, #737373) 22%, transparent);
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.04));
}

.topbar-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.logo-link,
.nav-center,
.nav-actions,
.nav-right-mobile {
  display: flex;
  align-items: center;
}

.logo-link {
  flex: 0 0 auto;
  gap: 8px;
  padding: 0;
  color: var(--green-800, #006847);
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.16s ease, color 0.16s ease;
}

.logo-link.is-active {
  color: var(--green-800, #006847);
}

.logo-img {
  width: auto;
  height: 42px;
  max-width: 48px;
  object-fit: contain;
}

.topbar.is-scrolled .logo-img {
  height: 36px;
  max-width: 42px;
}

.logo-link > .logo-img {
  pointer-events: none;
}

.logo {
  color: var(--green-800, #006847);
  font-size: 1.38rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  transition: font-size 0.2s ease;
}

.topbar.is-scrolled .logo {
  font-size: 1.22rem;
}

.nav-center {
  position: absolute;
  left: 50%;
  gap: 6px;
  width: max-content;
  max-width: calc(100% - 500px);
  overflow: visible;
  white-space: nowrap;
  transform: translateX(-50%);
}

.nav-actions {
  display: flex;
  flex: 0 0 auto;
  flex-shrink: 0;
  gap: 10px;
  margin-left: auto;
  align-items: center;
  min-width: 0;
}

.nav-link,
.nav-dropdown-toggle,
.nav-dropdown-link,
.topbar-secondary-button,
.topbar-button-primary,
.topbar-button-secondary,
.topbar-utility-link,
.translate-icon-mobile,
.mobile-nav-link {
  font-size: 0.9rem;
  line-height: 1;
  text-decoration: none;
}

.nav-link,
.nav-dropdown-toggle,
.nav-dropdown-link,
.mobile-nav-link {
  color: var(--ink, #1a1a1a);
}

.nav-link {
  font-weight: 600;
  transition: color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--green-800, #006847);
}

.nav-link.is-active,
.nav-dropdown-toggle.is-active {
  background: var(--green-50, #f0fdf7);
}

.nav-dropdown {
  position: relative;
  margin-bottom: -10px;
  padding-bottom: 10px;
}

.nav-dropdown summary {
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker,
.mobile-nav-accordion > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 10px;
  border-radius: 10px;
  border: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-weight: 600;
  transition: all 0.14s ease;
  -webkit-appearance: none;
  appearance: none;
}

.nav-dropdown-toggle::after {
  content: '';
  flex: 0 0 auto;
  width: 0;
  height: 0;
  margin-top: 2px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid currentColor;
  opacity: 0.85;
  transition: transform 0.16s ease, opacity 0.16s ease;
}

.nav-dropdown[open] .nav-dropdown-toggle::after,
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after {
  transform: rotate(180deg);
  opacity: 0.85;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 2100;
  display: none;
  flex-direction: column;
  gap: 6px;
  min-width: 282px;
  padding: 12px;
  border: 1px solid rgba(0, 104, 71, 0.16);
  border-radius: 16px;
  background: #fbf9f4;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown[open] .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #18212f;
  font-weight: 650;
  white-space: normal;
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.nav-dropdown-link:hover,
.nav-dropdown-link.is-active {
  border-color: rgba(0, 104, 71, 0.18);
  color: var(--green-900, #004d35);
  background: #edf7f2;
  transform: translateY(-1px);
}

.nav-dropdown-link.is-active {
  font-weight: 700;
}

.nav-dropdown-link-featured {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 4px;
  padding: 14px 42px 14px 14px;
  border: 1px solid rgba(0, 104, 71, 0.16);
  border-radius: 14px;
  background: #f4faf7;
  color: #0f3f2f;
  white-space: normal;
}

.nav-dropdown-link-featured::after {
  content: '->';
  position: absolute;
  top: 14px;
  right: 14px;
  color: #006847;
  font-size: 0.8rem;
  font-weight: 900;
  transition: transform 0.18s ease;
}

.nav-dropdown-link-featured:hover {
  border-color: rgba(0, 104, 71, 0.34);
  background: #edf7f2;
}

.nav-dropdown-link-featured:hover::after {
  transform: translateX(2px);
}

.nav-dropdown-link-kicker {
  color: #6b7280;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.nav-dropdown-link-title {
  color: #10221b;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.16;
}

.nav-dropdown-link-copy {
  max-width: 230px;
  color: #51645d;
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.25;
}

.nav-link:focus-visible,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown-link:focus-visible,
.topbar-utility-link:focus-visible,
.topbar-button-primary:focus-visible,
.topbar-button-secondary:focus-visible,
.mobile-nav-link:focus-visible,
.mobile-nav-accordion > summary:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.topbar-secondary-button,
.topbar-button-primary,
.topbar-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 10px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.topbar-utilities {
  display: flex;
  align-items: center;
  gap: 2px;
  order: 3;
  margin-right: 4px;
  padding-right: 12px;
  border-right: 1px solid color-mix(in srgb, var(--ink-muted, #737373) 20%, transparent);
}

.topbar-utility-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--ink, #1a1a1a);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.16s ease, color 0.16s ease;
}

.topbar-utility-link:hover {
  color: var(--green-800, #006847);
  background: var(--green-50, #f0fdf7);
}

.topbar-secondary-button {
  background: #6b8ca3;
  box-shadow: 0 10px 22px rgba(107, 140, 163, 0.16);
}

.topbar-button-primary {
  min-height: 40px;
  padding: 0 18px;
  background: var(--green-800, #006847);
  box-shadow: var(--shadow-md, 0 4px 12px rgba(0, 0, 0, 0.04), 0 8px 20px rgba(42, 103, 55, 0.05));
  font-weight: 700;
  white-space: nowrap;
}

.topbar-button-secondary {
  min-height: 38px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  color: var(--green-800, #006847);
  box-shadow: none;
  font-weight: 600;
  white-space: nowrap;
}

.topbar-button-secondary:hover {
  background: var(--green-50, #f0fdf7);
  transform: none;
}

.topbar-button-primary:hover,
.topbar-button-primary.is-active {
  transform: translateY(-1px);
  background: var(--green-900, #004d35);
}

.topbar-button-secondary.is-active {
  background: var(--green-50, #f0fdf7);
}

.nav-mega-menu {
  display: none;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  grid-auto-rows: max-content;
  align-items: start;
  gap: 12px;
  min-width: 650px;
  padding: 14px;
}

.nav-mega-menu-wide {
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  min-width: min(1040px, calc(100vw - 48px));
}

.nav-mega-menu-features {
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  min-width: min(960px, calc(100vw - 48px));
}

.nav-mega-menu-partners {
  grid-template-columns: minmax(190px, 1fr) repeat(2, minmax(170px, 1fr));
  min-width: min(720px, calc(100vw - 48px));
}

.nav-mega-menu-resources {
  grid-template-columns: repeat(3, minmax(170px, 1fr));
  min-width: min(680px, calc(100vw - 48px));
}

.nav-mega-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.nav-dropdown-mega .nav-dropdown-menu {
  left: 50%;
  max-height: calc(100dvh - var(--topbar-banner-offset) - var(--topbar-height) - 20px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(-50%);
  -webkit-overflow-scrolling: touch;
}

.nav-dropdown:hover .nav-mega-menu,
.nav-dropdown:focus-within .nav-mega-menu,
.nav-dropdown[open] .nav-mega-menu {
  display: grid;
}

.nav-menu-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(0, 104, 71, 0.12);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.nav-menu-section-featured {
  border-color: rgba(0, 104, 71, 0.18);
  background: #f4faf7;
}

.nav-menu-heading,
.mobile-nav-section-label {
  color: #6b7280;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.nav-menu-heading {
  padding: 3px 4px 8px;
  color: var(--green-900, #004d35);
  border-bottom: 1px solid rgba(0, 104, 71, 0.12);
}

.nav-menu-section:not(.is-disclosure-expanded) .nav-disclosure-item {
  display: none;
}

.nav-disclosure-toggle,
.mobile-nav-disclosure-toggle {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 2px;
  padding: 6px 8px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--green-800, #006847);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease;
}

.nav-disclosure-toggle:hover,
.mobile-nav-disclosure-toggle:hover {
  background: var(--green-50, #f0fdf7);
}

.nav-disclosure-toggle:focus-visible,
.mobile-nav-disclosure-toggle:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--green-800, #006847) 35%, transparent);
  outline-offset: 2px;
}

.mobile-nav-link.is-disclosure-hidden {
  display: none;
}

.mobile-nav-disclosure-toggle {
  width: 100%;
  justify-content: flex-start;
  padding: 9px 12px;
  border: 1px dashed rgba(0, 104, 71, 0.22);
  border-radius: 10px;
  background: #f8fcfa;
}

.nav-right-mobile {
  display: none;
  gap: 12px;
}

.translate-icon-mobile {
  padding: 10px 13px;
  border: 1px solid rgba(0, 104, 71, 0.12);
  border-radius: 10px;
  color: #0f3f2f;
  font-weight: 800;
  background: #f6faf8;
}

.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 0 auto;
  background: #1f2937;
}

.mobile-nav-backdrop,
.mobile-nav-sheet {
  display: none;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: calc(var(--topbar-banner-offset) + var(--topbar-height)) 0 0;
  z-index: 1998;
  background: rgba(17, 24, 39, 0.34);
  transition: inset 0.2s ease;
}

.mobile-nav-sheet {
  position: fixed;
  top: calc(var(--topbar-banner-offset) + var(--topbar-height) + 4px);
  left: 12px;
  right: 12px;
  z-index: 1999;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: auto;
  height: auto;
  max-height: calc(100vh - var(--topbar-banner-offset) - var(--topbar-height) - 16px);
  padding: 18px;
  overflow-y: auto;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.16);
}

.mobile-nav-backdrop.open {
  display: block;
}

.mobile-nav-sheet.open {
  display: flex;
}

.mobile-nav-header {
  position: sticky;
  top: -18px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: -18px -18px 0;
  padding: 16px 18px 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  background: #fff;
}

.mobile-nav-title {
  margin: 0;
  color: #1f2937;
  font-size: 1.1rem;
  font-weight: 700;
}

.mobile-nav-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.mobile-nav-featured {
  padding-top: 8px;
  border-top: 0;
}

.mobile-hub-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(0, 104, 71, 0.16);
  border-radius: 18px;
  background: #f4faf7;
  color: #0f3f2f;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
  overflow: hidden;
}

.mobile-hub-card::after {
  content: '->';
  position: absolute;
  top: 18px;
  right: 18px;
  color: #006847;
  font-weight: 900;
}

.mobile-hub-eyebrow {
  color: #006847;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-hub-title {
  color: #0f3f2f;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.1;
}

.mobile-hub-copy {
  max-width: 28rem;
  color: #4b5563;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}

.mobile-nav-accordion {
  gap: 0;
}

.mobile-nav-group-title {
  color: #334155;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mobile-nav-accordion > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 0;
  list-style: none;
  cursor: pointer;
}

.mobile-nav-accordion > summary::after {
  content: '+';
  color: #6b7280;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.16s ease, color 0.16s ease;
}

.mobile-nav-accordion[open] > summary::after {
  content: '\2212';
  color: #006847;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 10px;
}

.mobile-nav-link {
  padding: 11px 12px;
  border: 1px solid rgba(226, 232, 240, 0.78);
  border-radius: 10px;
  background: #ffffff;
  color: #18212f;
  font-weight: 750;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease,
    transform 0.16s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  border-color: color-mix(in srgb, var(--green-800, #006847) 16%, transparent);
  color: var(--green-800, #006847);
  background: var(--green-50, #f0fdf7);
  transform: translateY(-1px);
}

.mobile-nav-link.is-active {
  font-weight: 700;
}

.mobile-nav-link-primary {
  background: #006847;
  border-color: #006847;
  color: #ffffff;
  text-align: center;
}

.mobile-nav-cta-group {
  padding-top: 0;
  border-top: 0;
}

.mobile-nav-section-label {
  padding: 10px 4px 0;
}

.mobile-nav-button {
  display: inline-flex;
  justify-content: center;
  margin-top: 10px;
}

.mobile-nav-header .mobile-nav-button {
  flex: 0 0 auto;
  margin-top: 0;
  padding: 10px 16px;
}

.floating-phone-link {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 1800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0, 104, 71, 0.14);
  border-radius: 50%;
  background: #ffffff;
  color: #006847;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
  opacity: 0.72;
  transition:
    width 0.2s ease,
    opacity 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.floating-phone-link:hover,
.floating-phone-link:focus-visible {
  width: 154px;
  border-color: rgba(0, 104, 71, 0.28);
  box-shadow: 0 16px 34px rgba(0, 104, 71, 0.14);
  opacity: 1;
  transform: translateY(-1px);
}

.floating-phone-link svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  stroke-width: 2.2;
}

.floating-phone-text {
  max-width: 0;
  overflow: hidden;
  color: #0f3f2f;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  transition:
    max-width 0.2s ease,
    opacity 0.16s ease;
}

.floating-phone-link:hover .floating-phone-text,
.floating-phone-link:focus-visible .floating-phone-text {
  max-width: 96px;
  opacity: 1;
}

@media (min-width: 1101px) {
  .topbar-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
  }

  .logo-link {
    align-self: center;
    grid-column: 1;
    grid-row: 1;
  }

  .nav-center {
    position: static;
    left: auto;
    width: auto;
    max-width: none;
    min-width: 0;
    gap: 6px;
    padding: 0;
    justify-self: center;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    flex-wrap: nowrap;
  }

  .nav-actions {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    justify-self: end;
  }

  .nav-link,
  .nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 11px;
    border-radius: 10px;
  }

  .nav-link:hover,
  .nav-dropdown-toggle:hover,
  .nav-dropdown[open] .nav-dropdown-toggle,
  .nav-link.is-active,
  .nav-dropdown-toggle.is-active {
    color: var(--green-800, #006847);
    background: var(--green-50, #f0fdf7);
  }

  .nav-actions {
    margin-left: 0;
  }
}

@media (min-width: 1101px) and (max-width: 1280px) {
  .topbar {
    padding: 0 14px;
  }

  .topbar-inner {
    gap: 12px;
    padding: 0 8px;
  }

  .logo-img {
    height: 38px;
    max-width: 44px;
  }

  .logo {
    font-size: 1.15rem;
  }

  .nav-link,
  .nav-dropdown-toggle {
    min-height: 34px;
    padding: 0 8px;
    font-size: 0.8rem;
  }

  .nav-dropdown {
    margin-bottom: -8px;
    padding-bottom: 8px;
  }

  .nav-dropdown-menu {
    min-width: 220px;
  }

  .nav-actions {
    gap: 6px;
  }

  .topbar-utilities {
    gap: 2px;
    margin-right: 2px;
    padding-right: 8px;
  }

  .topbar-utility-link {
    padding: 0 8px;
    font-size: 0.78rem;
  }

  .topbar-button-primary,
  .topbar-button-secondary {
    min-height: 34px;
    padding: 0 11px;
    font-size: 0.78rem;
  }

  .nav-mega-menu,
  .nav-mega-menu-wide,
  .nav-mega-menu-features,
  .nav-mega-menu-partners,
  .nav-mega-menu-resources {
    min-width: min(680px, calc(100vw - 36px));
  }

  .nav-mega-menu-wide {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }

  .nav-dropdown-link {
    padding: 8px 10px;
  }

  .nav-dropdown-link-copy {
    font-size: 0.68rem;
  }
}

@media (max-width: 1100px) {
  .topbar {
    padding: 0 16px;
  }

  .nav-center,
  .nav-actions {
    display: none;
  }

  .nav-right-mobile {
    display: flex;
    margin-left: auto;
  }

  .topbar-inner {
    padding: 0 14px;
  }

  .logo-link {
    padding: 0;
  }

  .logo-img {
    height: 46px;
    max-width: 52px;
  }

  .logo {
    font-size: 1.15rem;
  }
}

@media (max-width: 520px) {
  .floating-phone-link {
    left: 14px;
    bottom: 82px;
    width: 42px;
    height: 42px;
  }

  .floating-phone-link:hover,
  .floating-phone-link:focus-visible {
    width: 42px;
  }

  .floating-phone-link:hover .floating-phone-text,
  .floating-phone-link:focus-visible .floating-phone-text {
    max-width: 0;
    opacity: 0;
  }

  .logo-img {
    height: 42px;
    max-width: 48px;
  }

  .logo {
    font-size: 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .topbar,
  body:has(.urgency-banner):has(.topbar),
  .logo-img,
  .logo,
  .mobile-nav-backdrop,
  .mobile-nav-sheet,
  .nav-dropdown-toggle::after {
    transition: none;
  }
}
