.urgency-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  background: #6b8ca3;
  color: #fff;
  text-align: center;
  padding: 5px 10px;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.2;
  height: 34px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.banner-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #6b8ca3;
  min-height: 22px;
  padding: 0 10px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.banner-button:hover {
  background: #f8f8f8;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.banner-button:active {
  transform: translateY(0);
  background: #e8e8e8;
}

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

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, 34px) + var(--topbar-height, 78px));
}

/* Universal Bottom Bar - Always Visible */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: white;
  border-top: none;
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.06);
  padding: 4px 6px;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.bottom-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.bottom-bar-btn {
  flex: 1;
  text-align: center;
  padding: 5px 8px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}

.bottom-bar-btn-primary {
  background: var(--green-800, #006847);
  color: white;
}

.bottom-bar-btn-primary:hover {
  background: var(--green-900, #004D35);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 104, 71, 0.3);
}

.bottom-bar-btn-secondary {
  background: var(--surface, #ffffff);
  color: var(--green-800, #006847);
  border: none;
}

.bottom-bar-btn-secondary:hover {
  background: var(--green-50, #f0f9f6);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 104, 71, 0.2);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .bottom-bar {
    padding: 3px 5px;
  }
  
  .bottom-bar-container {
    gap: 3px;
  }
  
  .bottom-bar-btn {
    padding: 4px 6px;
    font-size: 14px;
  }
  
  .bottom-bar-btn span {
    font-size: 13px;
  }
  
  /* Allow text to wrap slightly on very small screens for long text */
  .bottom-bar-btn {
    white-space: normal;
    line-height: 1.2;
    min-height: 32px;
  }
}

/* Desktop: Show as centered bar */
@media (min-width: 769px) {
  .bottom-bar-container {
    max-width: 800px;
  }
  
  .bottom-bar-btn {
    max-width: 250px;
  }
}

/* Ensure body has padding for bottom bar - always applied */
body {
  padding-bottom: 30px;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 28px;
  }
}
/* Website Footer Styles - Conecta Brand Integration */

.website-footer {
  background: #f6f3ec;
  position: relative;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  margin-top: 64px;
  overflow: hidden;
}


.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 28px 28px;
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

/* Brand Section */
.footer-brand {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 14px;
  align-items: center;
  padding: 20px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}


.footer-logo .logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px 7px 9px;
  border-radius: var(--radius-md);
  background: rgba(232, 245, 240, 0.92);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

.footer-logo .logo {
  color: var(--aguacate-900);
  font-family: 'Epilogue', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.34rem;
  letter-spacing: -0.02em;
}

.footer-logo .logo-img {
  height: 38px;
  width: auto;
}

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

.footer-tagline {
  grid-column: 1 / -1;
  color: rgba(74, 19, 16, 0.9);
  font-size: 0.98rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
  max-width: 34ch;
}

.footer-social {
  display: flex;
  grid-column: 2;
  grid-row: 1;
  gap: 6px;
  margin: 0;
  justify-content: flex-end;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(0, 104, 71, 0.08);
  color: var(--aguacate-900);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.social-link img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

.footer-hub-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-width: 360px;
  padding: 18px 20px;
  border: 1px solid rgba(0, 104, 71, 0.16);
  border-radius: var(--radius-md);
  background: rgba(232, 245, 240, 0.92);
  color: var(--aguacate-900);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

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

.footer-hub-card:hover {
  border-color: rgba(0, 104, 71, 0.32);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.footer-hub-kicker {
  color: #006847;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-hub-title {
  color: var(--aguacate-900);
  font-family: 'Epilogue', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.1;
}

.footer-hub-copy {
  max-width: 290px;
  color: rgba(74, 19, 16, 0.78);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.42;
}


/* Navigation Section */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

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

.footer-heading {
  color: var(--aguacate-900);
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  margin: 0;
  letter-spacing: -0.01em;
}

.footer-heading a {
  color: inherit;
  text-decoration: none;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-links a {
  color: rgba(74, 19, 16, 0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.3;
  padding: 2px 0;
  border-radius: var(--radius-sm);
  display: block;
}

/* Bottom Bar */
.footer-bottom {
  background: #fbfaf7;
  padding: 18px 0;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: #1a1a1a;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 38px 24px 26px;
  }

  .footer-nav {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
  }

  .footer-brand {
    max-width: none;
    padding: 20px;
  }

  .footer-tagline {
    max-width: 58ch;
  }

  .footer-column {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 34px 20px 24px;
    gap: 26px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 24px;
  }

  .footer-column {
    text-align: left;
    padding: 0;
  }

  .footer-links a:hover {
    transform: none;
  }

  .footer-bottom-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 0 20px;
  }

  .footer-social {
    justify-content: flex-end;
  }

  .footer-tagline {
    font-size: 1rem;
  }

  .footer-logo .logo {
    font-size: 1.28rem;
  }

  .footer-logo .logo-img {
    height: 36px;
  }

  .footer-brand {
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .website-footer {
    margin-top: 48px;
  }

  .footer-container {
    padding: 28px 16px 18px;
  }

  .footer-nav {
    gap: 18px 16px;
  }

  .footer-heading {
    font-size: 1rem;
  }

  .footer-links a {
    font-size: 0.86rem;
    padding: 2px 0;
  }

  .social-link {
    width: 32px;
    height: 32px;
  }

  .social-link img {
    width: 17px;
    height: 17px;
  }

  .footer-brand {
    padding: 16px;
  }

  .footer-column {
    padding: 0;
  }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  .website-footer * {
    transition: none !important;
    animation: none !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .website-footer {
    background: var(--surface);
  }

  .footer-logo .logo-link,
  .social-link,
  .footer-links a {
    border: none;
  }

}



: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);
}

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;
  transition: height 0.2s ease, max-width 0.2s ease;
}

.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: 5px solid currentColor;
  opacity: 0.5;
  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;
}

.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: 30px;
  padding: 0 7px;
  border-radius: 8px;
  color: var(--ink-muted, #737373);
  font-size: 0.72rem;
  font-weight: 600;
  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-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);
  transition: top 0.2s ease, max-height 0.2s ease;
  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: #f8fafc;
  color: #18212f;
  font-weight: 750;
}

.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);
}

.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 6px;
    font-size: 0.7rem;
  }

  .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));
  }
}

@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;
  }
}

/* Exit Intent Popup Modal */
.exit-intent-overlay {
  display: none !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.58) !important;
  z-index: 10000 !important;
  animation: exitIntentFadeIn 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.exit-intent-overlay.show {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
}

.exit-intent-modal {
  background: #ffffff;
  border: 1px solid rgba(0, 104, 71, 0.16);
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow:
    0 18px 48px rgba(16, 42, 32, 0.18),
    0 4px 12px rgba(16, 42, 32, 0.08);
  position: relative;
  animation: exitIntentSlideUp 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.exit-intent-modal-header {
  padding: 28px 28px 18px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 104, 71, 0.12);
  position: relative;
}

.exit-intent-modal-header img {
  display: block;
  margin: 0 auto 16px;
  object-fit: contain;
}

.exit-intent-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f5f8f7;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #15231e;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition:
    color 180ms cubic-bezier(0.16, 1, 0.3, 1),
    background 180ms cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
}

.exit-intent-close:hover {
  background: #006847;
  color: #ffffff;
}

.exit-intent-close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 104, 71, 0.26);
}

.exit-intent-modal-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: #15231e;
  margin: 0 0 12px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-wrap: balance;
}

.exit-intent-modal-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.0625rem);
  color: #4b5d56;
  margin: 0;
  line-height: 1.6;
}

.exit-intent-modal-body {
  padding: 24px 28px 28px;
}

.exit-intent-form-container {
  background: #f5f8f7;
  border: 1px solid rgba(0, 104, 71, 0.12);
  border-radius: 14px;
  padding: 18px;
  box-shadow: none;
}

.exit-intent-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: end;
}

@media (min-width: 640px) {
  .exit-intent-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.exit-intent-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.exit-intent-form-label {
  font-size: 0.9rem;
  font-weight: 650;
  color: #15231e;
  margin: 0 0 6px;
}

.exit-intent-form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0, 104, 71, 0.16);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition:
    border-color 180ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 180ms cubic-bezier(0.16, 1, 0.3, 1);
  background: #ffffff;
  box-sizing: border-box;
  color: #15231e;
}

.exit-intent-form-input::placeholder {
  color: rgba(75, 93, 86, 0.72);
}

.exit-intent-form-input:hover {
  border-color: rgba(0, 104, 71, 0.28);
}

.exit-intent-form-input:focus {
  outline: none;
  border-color: #006847;
  box-shadow: 0 0 0 3px rgba(0, 104, 71, 0.2);
}

.exit-intent-form-submit-wrapper {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.exit-intent-form-submit {
  background: #006847;
  color: #ffffff;
  border: 2px solid #006847;
  border-radius: 10px;
  padding: 13px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 180ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 180ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 180ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 3px 8px rgba(16, 42, 32, 0.08);
  width: 100%;
  max-width: 280px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.exit-intent-form-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  background: #004f36;
  border-color: #004f36;
  box-shadow: 0 8px 20px rgba(16, 42, 32, 0.12);
  color: #ffffff;
  text-decoration: none;
}

.exit-intent-form-submit:active:not(:disabled) {
  transform: translateY(0);
}

.exit-intent-form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.exit-intent-form-message {
  margin-top: 16px;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  font-size: 0.9rem;
  display: none;
}

.exit-intent-form-message.success {
  background: rgba(0, 104, 71, 0.08);
  color: #004f36;
  border: 1px solid rgba(0, 104, 71, 0.2);
}

.exit-intent-form-message.error {
  background: rgba(220, 38, 38, 0.08);
  color: #b42318;
  border: 1px solid rgba(220, 38, 38, 0.24);
}

/* Funnel CTA layout - body stacks: primary button, subtitle, secondary link */
.exit-intent-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.exit-intent-secondary-cta {
  font-size: 0.9rem;
  font-weight: 650;
  color: #4b5d56;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  transition: color 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.exit-intent-secondary-cta:hover {
  color: #006847;
}

/* Homepage exit intent */
.exit-intent-modal--home {
  --exit-intent-brand: #006847;
  --exit-intent-brand-dark: #004f36;
  --exit-intent-accent: #f4c95d;
  --exit-intent-surface: #ffffff;
  --exit-intent-surface-soft: #f5f8f7;
  --exit-intent-border: rgba(0, 104, 71, 0.16);
  --exit-intent-focus-ring: 0 0 0 3px rgba(0, 104, 71, 0.26);
  --exit-intent-shadow:
    0 20px 52px rgba(16, 42, 32, 0.2),
    0 6px 16px rgba(16, 42, 32, 0.08);
  --exit-intent-radius: 18px;
  --exit-intent-transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  display: grid;
  grid-template-columns: minmax(240px, 0.88fr) minmax(0, 1.12fr);
  width: min(800px, 100%);
  max-width: 800px;
  min-height: 480px;
  max-height: min(88vh, 660px);
  overflow: hidden;
  border: 1px solid var(--exit-intent-border);
  border-radius: var(--exit-intent-radius);
  background: var(--exit-intent-surface);
  box-shadow: var(--exit-intent-shadow);
}

.exit-intent-home__visual {
  min-width: 0;
  overflow: hidden;
  background: #000000;
}

.exit-intent-home__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}

.exit-intent-home__content {
  position: relative;
  display: flex;
  min-width: 0;
  padding: clamp(30px, 4.5vw, 44px);
  flex-direction: column;
  justify-content: center;
  color: #15231e;
  background: var(--exit-intent-surface);
  text-align: left;
}

.exit-intent-home__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(30px, 4.5vw, 44px);
  width: 32px;
  height: 3px;
  border-radius: 0 0 2px 2px;
  background: var(--exit-intent-accent);
}

.exit-intent-modal--home .exit-intent-close {
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: #15231e;
  background: var(--exit-intent-surface-soft);
  font-size: 22px;
  transition:
    color var(--exit-intent-transition),
    background var(--exit-intent-transition);
}

.exit-intent-modal--home .exit-intent-close:hover {
  color: #ffffff;
  background: var(--exit-intent-brand);
}

.exit-intent-modal--home .exit-intent-close:focus-visible,
.exit-intent-home__primary:focus-visible,
.exit-intent-home__pricing:focus-visible,
.exit-intent-home__dismiss:focus-visible {
  outline: none;
  box-shadow: var(--exit-intent-focus-ring);
}

.exit-intent-home__lead-in {
  margin: 8px 48px 10px 0;
  color: #4b5d56;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.exit-intent-home__title {
  margin: 0 48px 12px 0;
  color: #15231e;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.85rem, 3.6vw, 2.45rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.exit-intent-home__summary {
  max-width: 52ch;
  margin: 0;
  color: #4b5d56;
  font-size: 0.98rem;
  line-height: 1.62;
  text-wrap: pretty;
}

.exit-intent-home__benefits {
  display: grid;
  gap: 0;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.exit-intent-home__benefits li {
  position: relative;
  padding: 10px 0 10px 34px;
  border-top: 1px solid var(--exit-intent-border);
  color: #21372f;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.45;
}

.exit-intent-home__benefits li::before {
  content: '\2713';
  position: absolute;
  top: 9px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 6px;
  background: var(--exit-intent-accent);
  color: var(--exit-intent-brand-dark);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
}

.exit-intent-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.exit-intent-home__primary,
.exit-intent-home__pricing {
  display: inline-flex;
  min-height: 46px;
  padding: 11px 20px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform var(--exit-intent-transition),
    color var(--exit-intent-transition),
    background var(--exit-intent-transition),
    border-color var(--exit-intent-transition);
}

.exit-intent-home__primary {
  min-width: 148px;
  border: 2px solid var(--exit-intent-brand);
  color: #ffffff;
  background: var(--exit-intent-brand);
}

.exit-intent-home__primary:hover {
  border-color: var(--exit-intent-brand-dark);
  color: #ffffff;
  background: var(--exit-intent-brand-dark);
  transform: translateY(-1px);
}

.exit-intent-home__pricing {
  border: 2px solid var(--exit-intent-border);
  color: var(--exit-intent-brand-dark);
  background: var(--exit-intent-surface);
}

.exit-intent-home__pricing:hover {
  border-color: var(--exit-intent-brand);
  color: var(--exit-intent-brand-dark);
  background: var(--exit-intent-surface-soft);
  transform: translateY(-1px);
}

.exit-intent-home__dismiss {
  width: fit-content;
  min-height: 44px;
  margin: 10px 0 -6px;
  padding: 8px 2px;
  border: 0;
  color: #4b5d56;
  background: transparent;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color var(--exit-intent-transition);
}

.exit-intent-home__dismiss:hover {
  color: var(--exit-intent-brand);
}

@keyframes exitIntentFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes exitIntentSlideUp {
  from {
    transform: translateY(16px);
    opacity: 0.88;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .exit-intent-modal {
    max-width: 100%;
    border-radius: 16px;
    max-height: 85vh;
  }

  .exit-intent-modal-header {
    padding: 22px 22px 14px;
  }

  .exit-intent-modal-body {
    padding: 20px 22px 24px;
  }

  .exit-intent-form-container {
    padding: 16px;
  }
}

@media (max-width: 720px) {
  .exit-intent-overlay.show {
    align-items: flex-end !important;
    padding: 12px !important;
  }

  .exit-intent-modal--home {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: 0;
    max-height: calc(100dvh - 24px);
    border-radius: 16px;
    overflow-y: auto;
  }

  .exit-intent-home__visual {
    height: clamp(140px, 24vh, 180px);
    flex: 0 0 auto;
  }

  .exit-intent-home__visual img {
    object-position: 65% 34%;
  }

  .exit-intent-home__content {
    padding: 26px 22px 22px;
  }

  .exit-intent-home__content::before {
    left: 22px;
  }

  .exit-intent-home__title {
    margin-right: 40px;
    font-size: clamp(1.75rem, 7.5vw, 2.15rem);
  }

  .exit-intent-home__benefits {
    margin-block: 14px 18px;
  }

  .exit-intent-home__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .exit-intent-home__primary,
  .exit-intent-home__pricing {
    width: 100%;
  }

  .exit-intent-home__dismiss {
    margin-inline: auto;
  }
}

@media (max-height: 640px) and (max-width: 720px) {
  .exit-intent-home__visual {
    height: 112px;
  }

  .exit-intent-home__content {
    padding-top: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .exit-intent-overlay,
  .exit-intent-modal {
    animation: none;
  }

  .exit-intent-home__primary,
  .exit-intent-home__pricing,
  .exit-intent-home__dismiss,
  .exit-intent-modal--home .exit-intent-close,
  .exit-intent-close,
  .exit-intent-form-submit,
  .exit-intent-form-input {
    transition: none;
  }
}
