:root {
  --c-primary: #0B7A32;
  --c-primary-dark: #063D18;
  --c-primary-light: #18B845;
  --c-accent: #E8820A;
  --c-accent-dark: #C06A08;
  --c-bg: #FFFFFF;
  --c-bg-alt: #F0F9F3;
  --c-bg-dark: #063D18;
  --c-text: #1A2B1C;
  --c-text-light: #4E6B52;
  --c-white: #FFFFFF;
  --c-border: #C0DDCA;
  --c-success: #27AE60;
  --c-error: #E53E3E;
  --font: IBM Plex Sans, system-ui, -apple-system, sans-serif;
  --transition: 200ms ease;
  --transition-slow: 400ms ease;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow: 0 2px 12px rgba(26, 59, 110, 0.1);
  --shadow-md: 0 4px 20px rgba(26, 59, 110, 0.12);
  --shadow-lg: 0 8px 32px rgba(26, 59, 110, 0.16);
  --section-pad: clamp(3rem, 8vw, 6rem);
  --container: 1200px;
  --container-pad: clamp(1rem, 4vw, 2rem);
  --gap: 1.5rem;
  --gap-lg: 2.5rem;
  --header-h: 72px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #1A2B1C;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #0B7A32;
  transition: color 200ms ease;
}

a:hover {
  color: #E8820A;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.2;
}

p {
  margin: 0;
}

button {
  cursor: pointer;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
  cursor: pointer;
}
.btn:focus-visible {
  outline: 3px solid #E8820A;
  outline-offset: 2px;
}
.btn--primary {
  background: #E8820A;
  color: #FFFFFF;
  border-color: #E8820A;
}
.btn--primary:hover {
  background: #C06A08;
  border-color: #C06A08;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 130, 10, 0.35);
}
.btn--outline {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #FFFFFF;
  color: #FFFFFF;
  transform: translateY(-1px);
}
.btn--outline-primary {
  background: transparent;
  color: #0B7A32;
  border-color: #0B7A32;
}
.btn--outline-primary:hover {
  background: #0B7A32;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(11, 122, 50, 0.25);
}
.btn--wide {
  width: 100%;
  justify-content: center;
}
.btn__icon {
  flex-shrink: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  background: #063D18;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 200ms ease, box-shadow 200ms ease;
}
.header.is-scrolled {
  background: rgba(6, 61, 24, 0.82);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  max-width: 320px;
}
.header__logo-img {
  height: auto;
  width: 60%;
  display: block;
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 8px;
}
.header__burger:focus-visible {
  outline: 2px solid #E8820A;
}
.header__burger.is-open .header__burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__burger.is-open .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger.is-open .header__burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.header__burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 0.25rem 0;
  position: relative;
  transition: color 200ms ease;
}
.header__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #E8820A;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 200ms ease;
  transform-origin: left;
}
.header__link:hover, .header__link.is-active {
  color: #FFFFFF;
}
.header__link:hover::after, .header__link.is-active::after {
  transform: scaleX(1);
}
.header__link--cta {
  padding: 0.5rem 1.25rem;
  background: #E8820A;
  color: #FFFFFF !important;
  border-radius: 8px;
  font-weight: 600;
}
.header__link--cta::after {
  display: none;
}
.header__link--cta:hover {
  background: #C06A08;
  color: #FFFFFF;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: linear-gradient(to right, #063D18 0%, rgb(6.7819548872, 75.2180451128, 30.8270676692) 40%, #18B845 100%);
  overflow: hidden;
}
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 60%, rgba(24, 184, 69, 0.18) 0%, transparent 50%), radial-gradient(circle at 85% 15%, rgba(6, 61, 24, 0.5) 0%, transparent 45%), radial-gradient(circle at 65% 85%, rgba(11, 122, 50, 0.22) 0%, transparent 50%);
  pointer-events: none;
}
.hero__bg-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 61, 24, 0.45) 0%, rgba(11, 122, 50, 0.25) 50%, rgba(6, 61, 24, 0.55) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding-block: 5rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}
.hero__content {
  flex: 0 0 50%;
  min-width: 0;
}
.hero__visual {
  flex: 1;
  position: relative;
  min-height: 420px;
  pointer-events: none;
}
.hero__deco {
  position: absolute;
}
.hero__deco--tower {
  width: 100%;
  bottom: -2rem;
  right: 0;
  z-index: 1;
}
.hero__deco--tower img {
  width: 100%;
  height: auto;
  display: block;
  transform: scaleX(-1);
  mask-image: linear-gradient(to left, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 94%, transparent 100%);
}
.hero__deco--man {
  width: 30%;
  bottom: 0;
  left: 110px;
  z-index: 2;
}
.hero__deco--man img {
  width: 100%;
  height: auto;
  display: block;
  transform: scaleX(-1);
}
.hero__logo-img {
  width: 380px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 2.5rem;
}
.hero__slogan {
  margin-top: 0;
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.hero__desc {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  max-width: 600px;
}
.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero__actions .btn {
  flex: 1 1 0;
  justify-content: center;
}
.hero__badge {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(24, 184, 69, 0.18);
  border: 1px solid rgba(24, 184, 69, 0.4);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}
.hero__badge-icon {
  flex-shrink: 0;
  color: #E8820A;
}

.section {
  padding-block: clamp(3rem, 8vw, 6rem);
  background: radial-gradient(ellipse at 15% 75%, rgba(11, 122, 50, 0.07) 0%, transparent 55%), radial-gradient(ellipse at 85% 20%, rgba(24, 184, 69, 0.06) 0%, transparent 50%), #FFFFFF;
}
.section--alt {
  background: radial-gradient(ellipse at 10% 35%, rgba(24, 184, 69, 0.18) 0%, transparent 50%), radial-gradient(ellipse at 90% 65%, rgba(11, 122, 50, 0.14) 0%, transparent 50%), radial-gradient(ellipse at 55% 95%, rgba(24, 184, 69, 0.1) 0%, transparent 40%), #F0F9F3;
}
.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section__title {
  font-size: clamp(1.625rem, 3.5vw, 2.375rem);
  font-weight: 700;
  color: #063D18;
  letter-spacing: -0.02em;
  display: inline-block;
}
.section__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: #E8820A;
  border-radius: 2px;
  margin: 0.75rem auto 0;
}
.section__subtitle {
  margin-top: 1rem;
  font-size: 1.0625rem;
  color: #4E6B52;
  max-width: 560px;
  margin-inline: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(11, 122, 50, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), background 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 48px rgba(11, 122, 50, 0.15), 0 0 32px rgba(24, 184, 69, 0.22), 0 0 8px rgba(24, 184, 69, 0.18), inset 0 1px 0 rgb(255, 255, 255);
  border-color: rgba(24, 184, 69, 0.55);
}
.service-card:hover .service-card__icon {
  background: #0B7A32;
  color: #FFFFFF;
}
.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(11, 122, 50, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B7A32;
  margin-bottom: 1.25rem;
  transition: background 200ms ease, color 200ms ease;
}
.service-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #063D18;
  margin-bottom: 0.75rem;
}
.service-card__desc {
  font-size: 0.9375rem;
  color: #4E6B52;
  line-height: 1.7;
}

.tariffs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.tariff-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(11, 122, 50, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
}
.tariff-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.tariff-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #063D18;
}
.tariff-card__badge {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: #E8820A;
  border-radius: 8px;
  padding: 0.25rem 0.625rem;
  line-height: 1.4;
}
.tariff-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}
.tariff-card__amount {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #063D18;
  line-height: 1;
}
.tariff-card__unit {
  font-size: 1rem;
  color: #4E6B52;
  font-weight: 400;
}
.tariff-card__divider {
  border: none;
  border-top: 1px solid #C0DDCA;
  margin: 0 0 1.25rem;
}
.tariff-card__desc {
  font-size: 0.9375rem;
  color: #4E6B52;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.75rem;
}
.tariff-card__features {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}
.tariff-card__features li {
  font-size: 0.9375rem;
  color: #4E6B52;
  line-height: 1.5;
  padding-left: 1.375rem;
  position: relative;
}
.tariff-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #18B845;
}
.tariff-card--featured {
  border-color: #0B7A32;
  box-shadow: 0 8px 32px rgba(11, 122, 50, 0.15), 0 0 0 1px #0B7A32, inset 0 1px 0 rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.72);
}

.disclosure-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.disclosure-category {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(11, 122, 50, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.disclosure-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(11, 122, 50, 0.13), 0 0 28px rgba(24, 184, 69, 0.2), 0 0 8px rgba(24, 184, 69, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(24, 184, 69, 0.5);
}
.disclosure-category__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #C0DDCA;
}
.disclosure-category__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(11, 122, 50, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B7A32;
}
.disclosure-category__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #063D18;
  line-height: 1.4;
}

.disclosure-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.disclosure-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #F0F9F3;
  border-radius: 8px;
  text-decoration: none;
  color: #1A2B1C;
  font-size: 0.9375rem;
  transition: background 200ms ease, color 200ms ease;
  cursor: pointer;
}
.disclosure-link:hover {
  background: rgba(11, 122, 50, 0.07);
  color: #0B7A32;
}
.disclosure-link:hover .disclosure-link__icon {
  color: #E8820A;
}
.disclosure-link__icon {
  flex-shrink: 0;
  color: #18B845;
  transition: color 200ms ease;
}
.disclosure-link span:nth-child(2) {
  flex: 1;
}
.disclosure-link__badge {
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: rgba(232, 130, 10, 0.12);
  color: #C06A08;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.disclosure-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(39, 174, 96, 0.06);
  border: 1px solid rgba(39, 174, 96, 0.2);
  border-radius: 8px;
  font-size: 0.9375rem;
  color: #1A2B1C;
  line-height: 1.6;
}
.disclosure-notice__icon {
  flex-shrink: 0;
  color: #27AE60;
  margin-top: 0.1rem;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.contacts-info__title,
.contacts-form-wrap__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #063D18;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #E8820A;
  display: inline-block;
}

.contacts-requisites {
  display: flex;
  flex-direction: column;
}
.contacts-requisites__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0.75rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid #C0DDCA;
  font-size: 0.9375rem;
}
.contacts-requisites__row:last-child {
  border-bottom: none;
}
.contacts-requisites__row dt {
  color: #4E6B52;
  font-weight: 500;
}
.contacts-requisites__row dd {
  color: #1A2B1C;
  font-weight: 400;
}

.contacts-link {
  color: #0B7A32;
  text-decoration: none;
  font-weight: 500;
}
.contacts-link:hover {
  color: #E8820A;
}

.contacts-form-wrap, .contacts-info {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(11, 122, 50, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.contacts-form-wrap {
  display: flex;
  flex-direction: column;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group--captcha {
  margin-top: 0.5rem;
  max-width: 100%;
  overflow: hidden;
}

.CaptchaSlider .Thumb {
  background-color: #E8820A;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1A2B1C;
}
.form-label span {
  color: #E53E3E;
}

.form-input {
  padding: 0.75rem 1rem;
  border: 1.5px solid #C0DDCA;
  border-radius: 8px;
  font-family: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  font-size: 0.9375rem;
  color: #1A2B1C;
  background: #FFFFFF;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  width: 100%;
  appearance: none;
}
.form-input:focus {
  outline: none;
  border-color: #18B845;
  box-shadow: 0 0 0 3px rgba(11, 122, 50, 0.1);
}
.form-input.is-invalid {
  border-color: #E53E3E;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}
.form-input::placeholder {
  color: rgba(26, 43, 28, 0.4);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  font-size: 0.8125rem;
  color: #E53E3E;
  min-height: 1rem;
}

.form-footer {
  margin-top: auto;
  padding-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-privacy {
  font-size: 0.8125rem;
  color: #4E6B52;
  line-height: 1.5;
}

.form-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  text-align: center;
  display: none;
}
.form-status.is-success {
  display: block;
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.3);
  color: rgb(29.661971831, 132.338028169, 73.014084507);
}
.form-status.is-error {
  display: block;
  background: rgba(229, 62, 62, 0.1);
  border: 1px solid rgba(229, 62, 62, 0.3);
  color: #E53E3E;
}

.footer {
  background: #063D18;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 3rem;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__logo {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer__tagline {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  text-align: right;
}
.footer__link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 200ms ease;
}
.footer__link:hover {
  color: #FFFFFF;
}
.footer__bottom {
  padding-block: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__copy, .footer__legal {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal--delay-1 {
  transition-delay: 0.1s;
}
.reveal--delay-2 {
  transition-delay: 0.2s;
}
.reveal--delay-3 {
  transition-delay: 0.3s;
}
.reveal--delay-4 {
  transition-delay: 0.45s;
}
.reveal--delay-5 {
  transition-delay: 0.6s;
}
.reveal--from-right {
  transform: translateX(48px);
}
.reveal--from-right.is-visible {
  transform: none;
}
.reveal--delay-4 {
  transition-delay: 0.4s;
}
.reveal--delay-5 {
  transition-delay: 0.5s;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tariffs-grid {
    grid-template-columns: 1fr;
  }
  .disclosure-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }
  .header {
    transform: translateY(-100%);
    transition: transform 400ms ease, background 200ms ease, box-shadow 200ms ease;
  }
  .header.is-scrolled {
    transform: translateY(0);
  }
  .header__logo {
    flex-shrink: 1;
    min-width: 0;
    max-width: calc(100% - 60px);
  }
  .header__logo-img {
    height: auto;
    width: 60%;
  }
  .header__burger {
    display: flex;
    flex-shrink: 0;
    background: none;
    border: none;
    border-radius: 6px;
    gap: 6px;
  }
  .header__burger-line {
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
  }
  .header__nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #063D18;
    padding: 0 clamp(1rem, 4vw, 2rem);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 400ms ease, padding 400ms ease;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }
  .header__nav.is-open {
    max-height: 500px;
    padding: 1.5rem clamp(1rem, 4vw, 2rem);
  }
  .header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .header__link {
    display: block;
    padding: 0.875rem 0;
    font-size: 1rem;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .header__link--cta {
    display: block;
    width: 100%;
    margin-top: 1rem;
    padding: 0.875rem 1.25rem;
    border-radius: 8px;
    text-align: center;
    border-bottom: none;
  }
  .hero__inner {
    padding-block: 3.5rem 3rem;
    flex-direction: column;
  }
  .hero__content {
    flex: 1 1 auto;
  }
  .hero__visual {
    display: none;
  }
  .hero__logo-img {
    width: 90%;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .contacts-grid {
    grid-template-columns: 1fr;
  }
  .contacts-requisites__row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .footer__inner {
    flex-direction: column;
  }
  .footer__menu {
    text-align: left;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .disclosure-category {
    padding: 1.25rem;
  }
  .contact-form {
    padding: 1.25rem;
  }
  .tariff-card {
    padding: 1.25rem;
  }
}

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