:root {
  --green: rgba(0, 160, 59, 1);
  --green-dark: #007d37;
  --blue: rgba(2, 85, 126, 1);
  --lime: #b5d965;
  --pale: #edf5d9;
  --mint: #dff2e7;
  --line: #8bcf9f;
  --text: #20312b;
  --muted: #69766f;
  --white: #fff;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --shadow: 0 8px 24px rgba(2, 85, 126, 0.08), 0 2px 8px rgba(34, 82, 51, 0.08);
  --shadow-hover: 0 16px 36px rgba(2, 85, 126, 0.13), 0 4px 12px rgba(34, 82, 51, 0.1);
  --motion: 280ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.header-burger {
  display: none;
}

.site-header {
  position: sticky;
  inset: 18px 0 auto;
  z-index: 10;
  padding-top: 30px;
  padding-bottom: 20px;
}

.header-inner {
  height: 70px;
  padding: 0 19px;
  display: flex;
  align-items: center;
  gap: 50px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: box-shadow var(--motion), transform var(--motion);
}

.logo {
  width: 80px;
  height: auto;
}

.logo span:nth-child(2) {
  color: var(--green);
}

.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a {
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--green);
}

.button {
  min-height: 42px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 160, 59, 0.08);
  transition: color var(--motion), background-color var(--motion), border-color var(--motion), box-shadow var(--motion), transform var(--motion);
}

.button--outline {
  /* empty */
}

.button--outline:hover {
  color: var(--green);
}

.button--solid {
  color: white;
  background: var(--green);
  box-shadow: 0 8px 18px rgba(0, 160, 59, 0.2);
}

.button--solid:hover {
  color: white;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 160, 59, 0.22);
}

.button:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 12px rgba(0, 160, 59, 0.16);
}

.header-button {
  min-width: 197px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-header {
  top: 0;
}

.header-inner {
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header.is-scrolled .header-inner {
  box-shadow: 0 14px 40px rgba(2, 85, 126, 0.14);
  transform: translateY(-4px);
}

@media (max-width: 1200px) {
  .site-header {
    z-index: 20;
  }
  .header-inner {
    height: 64px;
    padding: 0 18px;
    position: relative;
    gap: 20px;
  }
  .header-inner > .logo {
    position: relative;
    z-index: 22;
  }
  .header-burger {
    width: 42px;
    height: 42px;
    padding: 9px;
    margin-left: auto;
    position: relative;
    z-index: 22;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 0;
    border-radius: 50%;
    background: var(--green);
    cursor: pointer;
  }
  .header-burger span {
    width: 100%;
    height: 2px;
    display: block;
    border-radius: 2px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .header-burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .header-burger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .header-burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .main-nav {
    width: 100%;
    padding: 85px 24px 28px;
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
    font-size: 16px;
    white-space: normal;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .main-nav a {
    width: 100%;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
  }
  .main-nav a:last-child {
    border-bottom: 0;
  }
  .header-button {
    display: none;
  }
}
@media (max-width: 1050px) {
  .header-inner {
    gap: 18px;
  }
  .header-button {
    min-width: 160px;
  }
}
@media (max-width: 900px) {
  .site-header {
    inset: 12px 0 auto;
    height: auto;
  }
  .header-inner {
    height: 62px;
    padding: 0 16px;
  }
  .header-button {
    min-width: 0;
    margin-left: auto;
    padding-inline: 18px;
  }
}
@media (max-width: 769px) {
  .header-button {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 12px;
  }
}

/*# sourceMappingURL=header.css.map */
