:root {
  --ph-white: #ffffff;
  --ph-green: #166534;
  --ph-green-light: #f0fdf4;
  --ph-orange: #f97316;
  --ph-text: #1f2937;
  --ph-text-light: #4b5563;
  --ph-border: #e5e7eb;
}
.site-header {
  background-color: var(--ph-white);
  border-bottom: 1px solid var(--ph-border);
  position: sticky;
  top: 0;
  z-index: 40;
  font-family: system-ui, -apple-system, sans-serif;
}
.site-header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ph-green);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.site-brand svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
.site-nav {
  display: none;
}
@media (min-width: 900px) {
  .site-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
.site-nav__link {
  text-decoration: none;
  color: var(--ph-text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.site-nav__link:hover {
  color: var(--ph-orange);
}
.site-nav__link.activ_link {
  color: var(--ph-orange);
  font-weight: 700;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-cta {
  display: none;
}
@media (min-width: 900px) {
  .site-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ph-green);
    color: var(--ph-white);
    text-decoration: none;
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 3px 3px 0px 0px rgba(22, 101, 52, 0.2);
  }
  .site-cta:hover {
    background-color: var(--ph-orange);
    box-shadow: 3px 3px 0px 0px rgba(249, 115, 22, 0.2);
    transform: translateY(-1px);
  }
}
.site-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}
@media (min-width: 900px) {
  .site-burger {
    display: none;
  }
}
.site-burger__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--ph-text);
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.site-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 50;
  font-family: system-ui, -apple-system, sans-serif;
}
.site-mobile-nav[hidden] {
  display: none;
}
.site-mobile-nav__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(4px);
}
.site-mobile-nav__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 85%;
  max-width: 400px;
  background-color: var(--ph-white);
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 24px rgba(0,0,0,0.1);
}
.site-mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--ph-border);
}
.site-mobile-nav__brand {
  font-weight: 700;
  color: var(--ph-green);
  font-size: 1.125rem;
}
.site-mobile-nav__close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--ph-text-light);
  cursor: pointer;
  padding: 0.25rem;
}
.site-mobile-nav__links {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 1.5rem;
  flex-grow: 1;
}
.site-mobile-nav__link {
  text-decoration: none;
  color: var(--ph-text);
  font-size: 1.25rem;
  font-weight: 600;
  transition: color 0.2s ease;
}
.site-mobile-nav__link:hover {
  color: var(--ph-orange);
}
.site-mobile-nav__link.activ_link {
  color: var(--ph-orange);
  font-weight: 700;
}
.site-mobile-nav__footer {
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--ph-border);
  background-color: var(--ph-green-light);
}
.site-mobile-nav__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ph-green);
  color: var(--ph-white);
  text-decoration: none;
  padding: 1rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.125rem;
  box-shadow: 4px 4px 0px 0px rgba(22, 101, 52, 0.2);
}
.site-footer {
  background-color: var(--ph-green-light);
  color: var(--ph-text);
  font-family: system-ui, -apple-system, sans-serif;
  border-top: 1px solid var(--ph-border);
  padding: 4rem 1.5rem 2rem;
}
.site-footer__main {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 900px) {
  .site-footer__main {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.site-footer__editorial {
  max-width: 480px;
}
.site-footer__closing-line {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ph-green);
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.site-footer__email {
  display: inline-flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ph-orange);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.site-footer__email:hover {
  border-color: var(--ph-orange);
}
.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 900px) {
  .site-footer__nav {
    align-items: flex-end;
  }
}
.site-footer__link {
  text-decoration: none;
  color: var(--ph-text);
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.2s ease;
}
.site-footer__link:hover {
  color: var(--ph-green);
}
.site-footer__legal {
  max-width: 1400px;
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(22, 101, 52, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--ph-text-light);
}
@media (min-width: 900px) {
  .site-footer__legal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.site-footer__legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.site-footer__legal-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer__legal-link:hover {
  color: var(--ph-green);
}
[data-mobile-nav][hidden],[data-mobile-nav].hidden{display:none}
[data-mobile-nav][data-mobile-open="1"]{display:block}
