:root {
  --bg: #f3f4f4;
  --bg-2: #ebeded;
  --bg-3: #f8f9f9;
  --surface: #ffffff;
  --surface-soft: #f0f2f2;
  --text: #2e3331;
  --text-2: #525a57;
  --text-3: #7d8581;
  --line: #cfd5d2;
  --line-2: #bfc7c3;
  --green: #2f8a4a;
  --green-dark: #23693a;
  --green-soft: rgba(47, 138, 74, 0.10);
  --graphite: #3b403e;
  --graphite-dark: #252a28;
  --shadow: 0 18px 48px rgba(49, 56, 53, 0.10);
  --shadow-soft: 0 12px 28px rgba(49, 56, 53, 0.08);
  --radius: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(47, 138, 74, 0.05), transparent 24%),
    linear-gradient(180deg, #f8f9f9 0%, #f1f3f2 100%);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-wrap {
  overflow: hidden;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section--soft {
  background: linear-gradient(180deg, var(--bg-2) 0%, #f5f6f6 100%);
}

.section--texture {
  position: relative;
  background:
    linear-gradient(180deg, #eef1f0 0%, #f5f7f6 100%);
}

.section--texture::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 51, 49, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 51, 49, 0.018) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.section--contact {
  background:
    linear-gradient(180deg, #f7f8f8 0%, #ecefef 100%);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(1.67rem, 3.60vw, 3.33rem);
  line-height: 0.98;
  color: var(--graphite);
}

h1 span {
  color: var(--green);
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 3.25rem);
  line-height: 1.04;
  color: var(--graphite);
}

h3 {
  font-size: 1.18rem;
  line-height: 1.2;
  color: var(--graphite);
}

p {
  margin: 0;
  color: var(--text-2);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-head {
  max-width: 880px;
  margin-bottom: 42px;
  position: relative;
  z-index: 1;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p {
  margin-top: 14px;
  font-size: 1.03rem;
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(241, 243, 243, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(191, 199, 195, 0.9);
  box-shadow: 0 8px 24px rgba(49, 56, 53, 0.05);
}

.header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.logo__mark {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbf8 0%, #e4ebe6 100%);
  border: 1px solid rgba(47, 138, 74, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 10px 22px rgba(49, 56, 53, 0.08);
}

.logo__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  border-radius: 14px;
}

.logo__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.08;
}

.logo__text strong {
  font-size: 1rem;
  color: var(--graphite);
}

.logo__text small {
  font-size: 0.74rem;
  color: var(--text-3);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}

.nav a {
  position: relative;
  padding: 0 18px;
  color: var(--text-2);
  font-size: 0.97rem;
  transition: color 0.25s ease;
}

.nav a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 16px;
  transform: translateY(-50%);
  background: var(--line-2);
}

.nav a:hover,
.mobile-menu a:hover {
  color: var(--green);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  font-weight: 700;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--graphite-dark) 0%, var(--green) 100%);
  box-shadow: 0 14px 32px rgba(47, 138, 74, 0.24);
}

.btn--primary:hover {
  box-shadow: 0 18px 36px rgba(47, 138, 74, 0.3);
}

.btn--hero {
  min-height: 58px;
  padding: 0 30px;
  color: var(--graphite);
  border: 2px solid var(--green);
  background: linear-gradient(180deg, #f2f4f4 0%, #ffffff 100%);
  box-shadow: 0 12px 28px rgba(49, 56, 53, 0.08);
}

.btn--hero:hover {
  background: linear-gradient(180deg, #eef4ef 0%, #ffffff 100%);
}

.btn--outline {
  border-color: rgba(47, 138, 74, 0.3);
  color: var(--green);
  background: #fff;
}

.btn--outline:hover {
  border-color: var(--green);
  background: #f5faf6;
}

.btn--submit {
  color: #fff;
  background: var(--green);
  box-shadow: 0 16px 32px rgba(47, 138, 74, 0.22);
}

.btn--submit:hover {
  background: linear-gradient(135deg, var(--green) 0%, #4aaa66 100%);
}

.btn--wide {
  width: 100%;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--graphite);
}

.mobile-menu {
  display: none;
  padding: 14px 16px 18px;
  border-top: 1px solid var(--line);
  background: rgba(243, 245, 245, 0.98);
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-menu a {
  color: var(--text-2);
}

.hero {
  position: relative;
  padding-top: 166px;
  padding-bottom: 88px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(47, 138, 74, 0.07), transparent 24%),
    linear-gradient(90deg, rgba(47, 138, 74, 0.04) 0, rgba(47, 138, 74, 0.04) 1px, transparent 1px, transparent 100%);
  background-size: auto, 28px 28px;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 38px;
  align-items: center;
}

.hero__content {
  max-width: 760px;
}

.hero__line {
  width: min(220px, 38vw);
  height: 6px;
  margin: 26px 0 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green) 0%, rgba(47, 138, 74, 0.38) 100%);
}

.hero__text {
  max-width: 700px;
  font-size: 1.08rem;
  color: var(--text-3);
}

.hero__actions {
  margin-top: 34px;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.hero-meta-card {
  padding: 18px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(191, 199, 195, 0.75);
  box-shadow: var(--shadow-soft);
}

.hero-meta-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--graphite);
  font-weight: 800;
}

.hero-meta-card span {
  color: var(--text-2);
  font-size: 0.95rem;
}

.hero-panel {
  position: relative;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(242,244,244,0.95) 100%);
  border: 1px solid rgba(191, 199, 195, 0.95);
  box-shadow: var(--shadow);
}

.hero-panel__label {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-panel h3 {
  font-size: 1.42rem;
  margin-bottom: 16px;
}

.hero-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: var(--text);
}

.hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 2px;
  background: var(--green);
}

.hero-panel__note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #eef2ef;
  border: 1px solid rgba(47, 138, 74, 0.14);
  color: var(--text-2);
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.52);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-item {
  padding: 20px 18px;
  text-align: center;
  color: var(--graphite);
  font-weight: 600;
  font-size: 0.96rem;
  position: relative;
}

.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: var(--line);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
}

.service-card {
  position: relative;
  padding: 34px 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f5f4 100%);
  border-top: 1px solid rgba(207, 213, 210, 0.9);
  border-bottom: 1px solid rgba(207, 213, 210, 0.9);
  box-shadow: var(--shadow-soft);
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.service-card:not(:last-child) {
  border-right: 1px solid var(--line);
}

.service-card__icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7ece8;
  margin-bottom: 22px;
}

.service-card__icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--green);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-2);
}

.service-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(180deg, #4b514e 0%, #3a3f3d 100%);
  border-color: rgba(47, 138, 74, 0.38);
  z-index: 1;
  box-shadow: 0 22px 38px rgba(49, 56, 53, 0.18);
  outline: 1px solid rgba(47, 138, 74, 0.42);
}

.service-card:hover h3,
.service-card:hover p {
  color: #f1f5f2;
}

.service-card:hover .service-card__icon {
  background: rgba(255,255,255,0.1);
}

.service-card--featured {
  z-index: 1;
}

.advantage-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.advantage-card {
  padding: 28px 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(207, 213, 210, 0.9);
  box-shadow: var(--shadow-soft);
}

.advantage-card__number {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3.6rem, 6vw, 4.8rem);
  line-height: 0.9;
  font-weight: 800;
  color: rgba(47, 138, 74, 0.78);
  margin-bottom: 18px;
}

.advantage-card__line {
  width: 72px;
  height: 1px;
  background: var(--line-2);
  margin-bottom: 18px;
}

.advantage-card h3 {
  margin-bottom: 10px;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: start;
}

.process-step {
  position: relative;
  text-align: center;
  padding-top: 8px;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(50% + 34px);
  width: calc(100% - 68px);
  height: 2px;
  background: linear-gradient(90deg, rgba(47, 138, 74, 0.85) 0%, rgba(47, 138, 74, 0.3) 100%);
}

.process-step__circle {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #404543 0%, #d7dcda 100%);
  border: 1px solid rgba(47, 138, 74, 0.18);
  box-shadow: 0 16px 26px rgba(49, 56, 53, 0.12);
  color: var(--green);
  font-family: "Montserrat", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
}

.process-step h3 {
  margin-bottom: 8px;
}

.process-step p {
  max-width: 240px;
  margin: 0 auto;
  color: var(--text-3);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr 0.96fr;
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  padding: 30px 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f6f5 100%);
  border: 1px solid rgba(207, 213, 210, 0.95);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.pricing-card h3 {
  margin-bottom: 14px;
}

.pricing-card__price {
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1;
  color: var(--green);
  font-weight: 800;
}

.pricing-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.pricing-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-2);
}

.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--green);
  font-weight: 800;
}

.pricing-card--popular {
  background: linear-gradient(180deg, #414644 0%, #2f3432 100%);
  border-color: rgba(47, 138, 74, 0.28);
  transform: translateY(-8px);
  box-shadow: 0 26px 46px rgba(49, 56, 53, 0.18);
}

.pricing-card--popular h3,
.pricing-card--popular .pricing-list li,
.pricing-card--popular p {
  color: #f0f5f1;
}

.pricing-card--popular .btn--primary {
  background: linear-gradient(135deg, var(--green) 0%, #5bb875 100%);
}

.pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Carousel Section Styles */
.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius);
  padding: 8px 0;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
  flex: 0 0 calc(25% - 18px);
  min-width: 0;
}

.certificate-card {
  background: var(--surface);
  border: 1px solid rgba(207, 213, 210, 0.85);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  aspect-ratio: 1 / 1.414;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.certificate-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: transform 0.5s ease;
}

.certificate-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--green);
}

.certificate-card:hover img {
  transform: scale(1.03);
}

.carousel-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--surface);
  color: var(--graphite);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(49, 56, 53, 0.08);
  position: relative;
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 10px 22px rgba(47, 138, 74, 0.28);
  transform: scale(1.06);
}

.carousel-btn:active {
  transform: scale(0.94);
}

.carousel-btn svg {
  width: 22px;
  height: 22px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line-2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.carousel-dot--active {
  background: var(--green);
  width: 26px;
  border-radius: 6px;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(37, 42, 40, 0.96);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 24px;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 46px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.25s ease, transform 0.25s ease;
}

.lightbox__close:hover {
  color: var(--green);
  transform: scale(1.1);
}

.lightbox__content {
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox__content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  transform: scale(0.94);
  transition: transform 0.3s ease;
}

.lightbox.active .lightbox__content img {
  transform: scale(1);
}

/* Form Styles */
.contact-form-box {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
  padding: 34px;
  border-radius: 30px;
  border: 2px solid rgba(47, 138, 74, 0.5);
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(243,245,245,0.98) 100%);
  box-shadow: var(--shadow);
}

.contact-form-box__intro p {
  margin-top: 14px;
  max-width: 520px;
}

.lead-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field span {
  color: var(--graphite);
  font-size: 0.94rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid var(--line-2);
  background: var(--surface-soft);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8b918e;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border: 2px solid var(--green);
  padding: 14px 15px;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(47, 138, 74, 0.08);
}

.field--full {
  grid-column: 1 / -1;
}

.form-actions {
  margin-top: 22px;
}

.form-note {
  margin-top: 12px;
  color: var(--text-3);
  font-size: 0.92rem;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 24px;
}

.contacts-panel,
.contacts-cta {
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f6f5 100%);
  border: 1px solid rgba(207, 213, 210, 0.95);
  box-shadow: var(--shadow-soft);
}

.contacts-panel {
  padding: 18px;
}

.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 18px;
}

.contact-row:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.contact-row__icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf2ee;
}

.contact-row__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-row strong {
  display: block;
  margin-bottom: 4px;
  color: var(--graphite);
}

.contact-row span {
  color: var(--text-2);
}

.contacts-cta {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, #3d4240 0%, #2d312f 100%);
}

.contacts-cta h3,
.contacts-cta p {
  color: #edf3ef;
}

.contacts-cta p {
  margin: 10px 0 22px;
}

.footer {
  background: #2b302e;
  color: #d6ddda;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.footer__brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(47, 138, 74, 0.28);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10);
}

.footer__brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
  border-radius: 12px;
}

.footer__brand strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.footer__brand small {
  color: #aeb7b3;
}

.footer__brand-block p {
  max-width: 360px;
  color: #b8c0bc;
}

.footer__nav,
.footer__contacts {
  display: grid;
  gap: 12px;
}

.footer__nav a {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: #d6ddda;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer__nav a:hover {
  color: var(--green);
  border-color: rgba(47, 138, 74, 0.4);
}

.footer-contact {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-contact__icon {
  color: var(--green);
  font-size: 1rem;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(43, 48, 46, 0.96);
  color: #eef2f0;
  border: 1px solid rgba(47, 138, 74, 0.2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner__text {
  font-size: 0.94rem;
}

.cookie-banner__text a {
  color: #74c58a;
  text-decoration: underline;
}

.cookie-banner__btn {
  flex-shrink: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card--popular {
    transform: none;
  }

  .contact-form-box,
  .hero__grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .hero__aside {
    max-width: 720px;
  }

  .trust-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .carousel-slide {
    flex: 0 0 calc(33.333% - 16px);
  }
}

@media (max-width: 920px) {
  .nav,
  .header__cta,
  .header__phone {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    padding-top: 132px;
    padding-bottom: 70px;
  }

  .services-grid,
  .process-timeline,
  .form-grid,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .service-card:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .process-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .carousel-slide {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .header__inner {
    min-height: 74px;
  }

  .logo {
    gap: 11px;
  }

  .logo__mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 15px;
  }

  .logo__mark img {
    padding: 5px;
    border-radius: 12px;
  }

  .logo__text small {
    display: none;
  }

  .hero {
    padding-top: 118px;
  }

  .hero__line {
    width: 160px;
    height: 5px;
    margin: 22px 0 20px;
  }

  .hero__meta,
  .advantage-grid,
  .trust-strip__inner {
    grid-template-columns: 1fr;
  }

  .contact-form-box,
  .hero-panel,
  .contacts-cta,
  .pricing-card,
  .advantage-card,
  .service-card {
    padding: 24px;
  }

  .btn,
  .btn--hero,
  .btn--primary,
  .btn--submit,
  .btn--outline {
    width: 100%;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  
  .carousel-container {
    gap: 8px;
  }

  .carousel-btn {
    width: 42px;
    height: 42px;
  }
  
  .carousel-btn svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .carousel-slide {
    flex: 0 0 100%;
  }
}

.header__phone {
  color: var(--text-2);
  font-size: 0.97rem;
  font-weight: 600;
  transition: color 0.25s ease;
  margin-left: auto;
  margin-right: 12px;
}

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

.mobile-menu__phone,
.mobile-menu__email {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-2);
  transition: color 0.25s ease;
}

.mobile-menu__phone:hover,
.mobile-menu__email:hover {
  color: var(--green);
}

.footer-contact a {
  color: inherit;
  transition: color 0.25s ease;
}

.footer-contact a:hover {
  color: var(--green);
}

.contact-row a {
  color: inherit;
  transition: color 0.25s ease;
}

.contact-row a:hover {
  color: var(--green);
}

/* Visual editor additions: source CSS above is preserved. */
*, ::before, ::after {
  box-sizing: border-box;
}

body {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  font-family: Inter, sans-serif;
  background-image: radial-gradient(circle at left top, rgba(47, 138, 74, 0.05), transparent 24%), linear-gradient(rgb(248, 249, 249) 0%, rgb(241, 243, 242) 100%);
  background-position-x: initial, initial;
  background-position-y: initial, initial;
  background-size: initial, initial;
  background-repeat: initial, initial;
  background-attachment: initial, initial;
  background-origin: initial, initial;
  background-clip: initial, initial;
  background-color: initial;
}

body.menu-open {
  overflow-x: hidden;
  overflow-y: hidden;
}

a {
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

button, input, select, textarea {
  font-style: inherit;
  font-variant-ligatures: inherit;
  font-variant-caps: inherit;
  font-variant-numeric: inherit;
  font-variant-east-asian: inherit;
  font-variant-alternates: inherit;
  font-variant-position: inherit;
  font-variant-emoji: inherit;
  font-weight: inherit;
  font-stretch: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  font-optical-sizing: inherit;
  font-size-adjust: inherit;
  font-kerning: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-language-override: inherit;
}

.site-wrap {
  overflow-x: hidden;
  overflow-y: hidden;
}

.container {
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}

.section {
  padding-top: 96px;
  padding-right: 0px;
  padding-bottom: 96px;
  padding-left: 0px;
}

.section--texture {
  background-image: linear-gradient(rgb(238, 241, 240) 0%, rgb(245, 247, 246) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

.section--texture::before {
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: linear-gradient(rgba(46, 51, 49, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(46, 51, 49, 0.02) 1px, transparent 1px);
}

h1, h2, h3 {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  font-family: Montserrat, sans-serif;
}

h1 {
  font-size: clamp(1.67rem, 3.6vw, 3.33rem);
}

p {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.eyebrow {
  row-gap: 10px;
  column-gap: 10px;
}

.header {
  top: 0px;
  right: 0px;
  bottom: auto;
  left: 0px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(241, 243, 243, 0.92);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(191, 199, 195, 0.9);
  box-shadow: rgba(49, 56, 53, 0.05) 0px 8px 24px;
}

.header__inner {
  row-gap: 24px;
  column-gap: 24px;
}

.logo {
  row-gap: 14px;
  column-gap: 14px;
  min-width: 0px;
}

.logo__mark {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 58px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 18px;
  align-items: center;
  justify-items: center;
  overflow-x: hidden;
  overflow-y: hidden;
  background-image: linear-gradient(rgb(248, 251, 248) 0%, rgb(228, 235, 230) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(47, 138, 74, 0.18);
  border-right-color: rgba(47, 138, 74, 0.18);
  border-bottom-color: rgba(47, 138, 74, 0.18);
  border-left-color: rgba(47, 138, 74, 0.18);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  box-shadow: rgba(255, 255, 255, 0.7) 0px 1px 0px inset, rgba(49, 56, 53, 0.08) 0px 10px 22px;
}

.logo__mark img {
  padding-top: 6px;
  padding-right: 6px;
  padding-bottom: 6px;
  padding-left: 6px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
}

.logo__text {
  row-gap: 2px;
  column-gap: 2px;
}

.nav {
  row-gap: 0px;
  column-gap: 0px;
}

.nav a {
  padding-top: 0px;
  padding-right: 18px;
  padding-bottom: 0px;
  padding-left: 18px;
  transition-behavior: normal;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: color;
}

.nav a:not(:last-child)::after {
  right: 0px;
}

.btn {
  padding-top: 0px;
  padding-right: 24px;
  padding-bottom: 0px;
  padding-left: 24px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  transition-behavior: normal, normal, normal, normal, normal;
  transition-duration: 0.25s, 0.25s, 0.25s, 0.25s, 0.25s;
  transition-timing-function: ease, ease, ease, ease, ease;
  transition-delay: 0s, 0s, 0s, 0s, 0s;
  transition-property: transform, box-shadow, background, border-color, color;
}

.btn--primary {
  color: rgb(255, 255, 255);
  box-shadow: rgba(47, 138, 74, 0.24) 0px 14px 32px;
}

.btn--primary:hover {
  box-shadow: rgba(47, 138, 74, 0.3) 0px 18px 36px;
}

.btn--hero {
  padding-top: 0px;
  padding-right: 30px;
  padding-bottom: 0px;
  padding-left: 30px;
  background-image: linear-gradient(rgb(242, 244, 244) 0%, rgb(255, 255, 255) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  box-shadow: rgba(49, 56, 53, 0.08) 0px 12px 28px;
}

.btn--hero:hover {
  background-image: linear-gradient(rgb(238, 244, 239) 0%, rgb(255, 255, 255) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

.btn--outline {
  border-top-color: rgba(47, 138, 74, 0.3);
  border-right-color: rgba(47, 138, 74, 0.3);
  border-bottom-color: rgba(47, 138, 74, 0.3);
  border-left-color: rgba(47, 138, 74, 0.3);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
}

.btn--outline:hover {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(245, 250, 246);
}

.btn--submit {
  color: rgb(255, 255, 255);
  box-shadow: rgba(47, 138, 74, 0.22) 0px 16px 32px;
}

.burger {
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  row-gap: 5px;
  column-gap: 5px;
}

.burger span {
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
}

.mobile-menu {
  padding-top: 14px;
  padding-right: 16px;
  padding-bottom: 18px;
  padding-left: 16px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(243, 245, 245, 0.98);
}

.mobile-menu.active {
  row-gap: 14px;
  column-gap: 14px;
}

.hero::before {
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: radial-gradient(circle at 18% 18%, rgba(47, 138, 74, 0.07), transparent 24%), linear-gradient(90deg, rgba(47, 138, 74, 0.04) 0px, rgba(47, 138, 74, 0.04) 1px, transparent 1px, transparent 100%);
  background-position-x: initial, initial;
  background-position-y: initial, initial;
  background-repeat: initial, initial;
  background-attachment: initial, initial;
  background-origin: initial, initial;
  background-clip: initial, initial;
  background-color: initial;
}

.hero__grid {
  grid-template-columns: minmax(0px, 1.15fr) minmax(340px, 0.85fr);
  row-gap: 38px;
  column-gap: 38px;
}

.hero__line {
  margin-top: 26px;
  margin-right: 0px;
  margin-bottom: 24px;
  margin-left: 0px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
}

.hero__meta {
  grid-template-columns: repeat(2, minmax(0px, 1fr));
  row-gap: 14px;
  column-gap: 14px;
}

.hero-meta-card {
  padding-top: 18px;
  padding-right: 18px;
  padding-bottom: 18px;
  padding-left: 18px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 18px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.66);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(191, 199, 195, 0.75);
  border-right-color: rgba(191, 199, 195, 0.75);
  border-bottom-color: rgba(191, 199, 195, 0.75);
  border-left-color: rgba(191, 199, 195, 0.75);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
}

.hero-panel {
  padding-top: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  border-bottom-right-radius: 28px;
  border-bottom-left-radius: 28px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.92) 0%, rgba(242, 244, 244, 0.95) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(191, 199, 195, 0.95);
  border-right-color: rgba(191, 199, 195, 0.95);
  border-bottom-color: rgba(191, 199, 195, 0.95);
  border-left-color: rgba(191, 199, 195, 0.95);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
}

.hero-panel__label {
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
}

.hero-list {
  list-style-position: initial;
  list-style-image: initial;
  list-style-type: none;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.hero-list li::before {
  left: 0px;
}

.hero-panel__note {
  padding-top: 16px;
  padding-right: 18px;
  padding-bottom: 16px;
  padding-left: 18px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(238, 242, 239);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(47, 138, 74, 0.14);
  border-right-color: rgba(47, 138, 74, 0.14);
  border-bottom-color: rgba(47, 138, 74, 0.14);
  border-left-color: rgba(47, 138, 74, 0.14);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
}

.trust-strip {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.52);
}

.trust-strip__inner {
  row-gap: 0px;
  column-gap: 0px;
}

.trust-item {
  padding-top: 20px;
  padding-right: 18px;
  padding-bottom: 20px;
  padding-left: 18px;
}

.trust-item:not(:last-child)::after {
  right: 0px;
}

.services-grid {
  row-gap: 0px;
  column-gap: 0px;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  border-bottom-right-radius: 28px;
  border-bottom-left-radius: 28px;
  overflow-x: hidden;
  overflow-y: hidden;
}

.service-card {
  padding-top: 34px;
  padding-right: 28px;
  padding-bottom: 34px;
  padding-left: 28px;
  background-image: linear-gradient(rgb(255, 255, 255) 0%, rgb(243, 245, 244) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(207, 213, 210, 0.9);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(207, 213, 210, 0.9);
  transition-behavior: normal, normal, normal;
  transition-duration: 0.3s, 0.3s, 0.3s;
  transition-timing-function: ease, ease, ease;
  transition-delay: 0s, 0s, 0s;
  transition-property: background, transform, border-color;
}

.service-card__icon {
  align-items: center;
  justify-items: center;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(231, 236, 232);
}

.service-card:hover {
  background-image: linear-gradient(rgb(75, 81, 78) 0%, rgb(58, 63, 61) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-color: rgba(47, 138, 74, 0.38);
  border-right-color: rgba(47, 138, 74, 0.38);
  border-bottom-color: rgba(47, 138, 74, 0.38);
  border-left-color: rgba(47, 138, 74, 0.38);
  box-shadow: rgba(49, 56, 53, 0.18) 0px 22px 38px;
  outline-color: rgba(47, 138, 74, 0.42);
  outline-style: solid;
  outline-width: 1px;
}

.service-card:hover h3, .service-card:hover p {
  color: rgb(241, 245, 242);
}

.service-card:hover .service-card__icon {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.1);
}

.advantage-grid {
  row-gap: 20px;
  column-gap: 20px;
}

.advantage-card {
  padding-top: 28px;
  padding-right: 24px;
  padding-bottom: 28px;
  padding-left: 24px;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
  border-bottom-left-radius: 22px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.58);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(207, 213, 210, 0.9);
  border-right-color: rgba(207, 213, 210, 0.9);
  border-bottom-color: rgba(207, 213, 210, 0.9);
  border-left-color: rgba(207, 213, 210, 0.9);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
}

.advantage-card__number {
  font-family: Montserrat, sans-serif;
}

.process-timeline {
  row-gap: 22px;
  column-gap: 22px;
}

.process-step:not(:last-child)::after {
  background-image: linear-gradient(90deg, rgba(47, 138, 74, 0.85) 0%, rgba(47, 138, 74, 0.3) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

.process-step__circle {
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 18px;
  margin-left: auto;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  align-items: center;
  justify-items: center;
  background-image: linear-gradient(rgb(64, 69, 67) 0%, rgb(215, 220, 218) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(47, 138, 74, 0.18);
  border-right-color: rgba(47, 138, 74, 0.18);
  border-bottom-color: rgba(47, 138, 74, 0.18);
  border-left-color: rgba(47, 138, 74, 0.18);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  box-shadow: rgba(49, 56, 53, 0.12) 0px 16px 26px;
  font-family: Montserrat, sans-serif;
}

.process-step p {
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}

.pricing-grid {
  row-gap: 22px;
  column-gap: 22px;
}

.pricing-card {
  padding-top: 30px;
  padding-right: 28px;
  padding-bottom: 30px;
  padding-left: 28px;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  border-bottom-right-radius: 26px;
  border-bottom-left-radius: 26px;
  background-image: linear-gradient(rgb(255, 255, 255) 0%, rgb(244, 246, 245) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(207, 213, 210, 0.95);
  border-right-color: rgba(207, 213, 210, 0.95);
  border-bottom-color: rgba(207, 213, 210, 0.95);
  border-left-color: rgba(207, 213, 210, 0.95);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
}

.pricing-card__price {
  font-family: Montserrat, sans-serif;
}

.pricing-list {
  list-style-position: initial;
  list-style-image: initial;
  list-style-type: none;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 24px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  row-gap: 12px;
  column-gap: 12px;
}

.pricing-list li::before {
  left: 0px;
}

.pricing-card--popular {
  background-image: linear-gradient(rgb(65, 70, 68) 0%, rgb(47, 52, 50) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-color: rgba(47, 138, 74, 0.28);
  border-right-color: rgba(47, 138, 74, 0.28);
  border-bottom-color: rgba(47, 138, 74, 0.28);
  border-left-color: rgba(47, 138, 74, 0.28);
  box-shadow: rgba(49, 56, 53, 0.18) 0px 26px 46px;
}

.pricing-card--popular h3, .pricing-card--popular .pricing-list li, .pricing-card--popular p {
  color: rgb(240, 245, 241);
}

.pricing-badge {
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  color: rgb(255, 255, 255);
}

.carousel-container {
  row-gap: 16px;
  column-gap: 16px;
}

.carousel-track-wrapper {
  overflow-x: hidden;
  overflow-y: hidden;
  padding-top: 8px;
  padding-right: 0px;
  padding-bottom: 8px;
  padding-left: 0px;
}

.carousel-track {
  row-gap: 24px;
  column-gap: 24px;
  transition-behavior: normal;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0s;
  transition-property: transform;
}

.carousel-slide {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(25% - 18px);
  min-width: 0px;
}

.certificate-card {
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(207, 213, 210, 0.85);
  border-right-color: rgba(207, 213, 210, 0.85);
  border-bottom-color: rgba(207, 213, 210, 0.85);
  border-left-color: rgba(207, 213, 210, 0.85);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  transition-behavior: normal, normal, normal;
  transition-duration: 0.3s, 0.3s, 0.3s;
  transition-timing-function: ease, ease, ease;
  transition-delay: 0s, 0s, 0s;
  transition-property: transform, box-shadow, border-color;
  overflow-x: hidden;
  overflow-y: hidden;
}

.certificate-card img {
  transition-behavior: normal;
  transition-duration: 0.5s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: transform;
}

.carousel-btn {
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  align-items: center;
  justify-items: center;
  transition-behavior: normal;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
  box-shadow: rgba(49, 56, 53, 0.08) 0px 6px 16px;
}

.carousel-btn:hover {
  color: rgb(255, 255, 255);
  box-shadow: rgba(47, 138, 74, 0.28) 0px 10px 22px;
}

.carousel-dots {
  row-gap: 8px;
  column-gap: 8px;
}

.lightbox {
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(37, 42, 40, 0.96);
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}

.lightbox__close {
  background-image: none;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  color: rgb(255, 255, 255);
  transition-behavior: normal, normal;
  transition-duration: 0.25s, 0.25s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: color, transform;
}

.lightbox__content img {
  box-shadow: rgba(0, 0, 0, 0.6) 0px 24px 60px;
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: transform;
}

.contact-form-box {
  row-gap: 28px;
  column-gap: 28px;
  padding-top: 34px;
  padding-right: 34px;
  padding-bottom: 34px;
  padding-left: 34px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(47, 138, 74, 0.5);
  border-right-color: rgba(47, 138, 74, 0.5);
  border-bottom-color: rgba(47, 138, 74, 0.5);
  border-left-color: rgba(47, 138, 74, 0.5);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  background-image: linear-gradient(rgba(255, 255, 255, 0.92) 0%, rgba(243, 245, 245, 0.98) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

.form-grid {
  row-gap: 18px;
  column-gap: 18px;
}

.field {
  row-gap: 8px;
  column-gap: 8px;
}

.field input, .field select, .field textarea {
  padding-top: 15px;
  padding-right: 16px;
  padding-bottom: 15px;
  padding-left: 16px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
  outline-color: initial;
  outline-style: none;
  outline-width: initial;
  transition-behavior: normal, normal, normal;
  transition-duration: 0.2s, 0.2s, 0.2s;
  transition-timing-function: ease, ease, ease;
  transition-delay: 0s, 0s, 0s;
  transition-property: border-color, box-shadow, background;
}

.field input::placeholder, .field textarea::placeholder {
  color: rgb(139, 145, 142);
}

.field input:focus, .field select:focus, .field textarea:focus {
  padding-top: 14px;
  padding-right: 15px;
  padding-bottom: 14px;
  padding-left: 15px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(47, 138, 74, 0.08) 0px 0px 0px 5px;
}

.field--full {
  grid-column-start: 1;
  grid-column-end: -1;
}

.contacts-grid {
  row-gap: 24px;
  column-gap: 24px;
}

.contacts-panel {
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  border-bottom-right-radius: 26px;
  border-bottom-left-radius: 26px;
  background-image: linear-gradient(rgb(255, 255, 255) 0%, rgb(244, 246, 245) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(207, 213, 210, 0.95);
  border-right-color: rgba(207, 213, 210, 0.95);
  border-bottom-color: rgba(207, 213, 210, 0.95);
  border-left-color: rgba(207, 213, 210, 0.95);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  box-shadow: var(--shadow-soft);
}

.contacts-cta {
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  border-bottom-right-radius: 26px;
  border-bottom-left-radius: 26px;
  background-image: linear-gradient(rgb(255, 255, 255) 0%, rgb(244, 246, 245) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(207, 213, 210, 0.95);
  border-right-color: rgba(207, 213, 210, 0.95);
  border-bottom-color: rgba(207, 213, 210, 0.95);
  border-left-color: rgba(207, 213, 210, 0.95);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  box-shadow: var(--shadow-soft);
}

.contacts-panel {
  padding-top: 18px;
  padding-right: 18px;
  padding-bottom: 18px;
  padding-left: 18px;
}

.contact-row {
  row-gap: 16px;
  column-gap: 16px;
  padding-top: 18px;
  padding-right: 18px;
  padding-bottom: 18px;
  padding-left: 18px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 18px;
}

.contact-row__icon {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 46px;
  align-items: center;
  justify-items: center;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(237, 242, 238);
}

.contacts-cta {
  padding-top: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  background-image: linear-gradient(rgb(61, 66, 64) 0%, rgb(45, 49, 47) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

.contacts-cta h3, .contacts-cta p {
  color: rgb(237, 243, 239);
}

.contacts-cta p {
  margin-top: 10px;
  margin-right: 0px;
  margin-bottom: 22px;
  margin-left: 0px;
}

.footer {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(43, 48, 46);
  color: rgb(214, 221, 218);
  padding-top: 36px;
  padding-right: 0px;
  padding-bottom: 36px;
  padding-left: 0px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(255, 255, 255, 0.06);
}

.footer__inner {
  row-gap: 28px;
  column-gap: 28px;
}

.footer__brand {
  row-gap: 14px;
  column-gap: 14px;
}

.footer__brand-mark {
  align-items: center;
  justify-items: center;
  overflow-x: hidden;
  overflow-y: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(47, 138, 74, 0.28);
  border-right-color: rgba(47, 138, 74, 0.28);
  border-bottom-color: rgba(47, 138, 74, 0.28);
  border-left-color: rgba(47, 138, 74, 0.28);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 22px;
}

.footer__brand-mark img {
  padding-top: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.footer__brand strong {
  color: rgb(255, 255, 255);
}

.footer__brand small {
  color: rgb(174, 183, 179);
}

.footer__brand-block p {
  color: rgb(184, 192, 188);
}

.footer__nav {
  display: grid;
  row-gap: 12px;
  column-gap: 12px;
}

.footer__contacts {
  display: grid;
  row-gap: 12px;
  column-gap: 12px;
}

.footer__nav a {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.12);
  color: rgb(214, 221, 218);
  transition-behavior: normal, normal;
  transition-duration: 0.2s, 0.2s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: color, border-color;
}

.footer__nav a:hover {
  border-top-color: rgba(47, 138, 74, 0.4);
  border-right-color: rgba(47, 138, 74, 0.4);
  border-bottom-color: rgba(47, 138, 74, 0.4);
  border-left-color: rgba(47, 138, 74, 0.4);
}

.footer-contact {
  row-gap: 12px;
  column-gap: 12px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.cookie-banner {
  row-gap: 16px;
  column-gap: 16px;
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 18px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(43, 48, 46, 0.96);
  color: rgb(238, 242, 240);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(47, 138, 74, 0.2);
  border-right-color: rgba(47, 138, 74, 0.2);
  border-bottom-color: rgba(47, 138, 74, 0.2);
  border-left-color: rgba(47, 138, 74, 0.2);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 18px 40px;
}

.cookie-banner__text a {
  color: rgb(116, 197, 138);
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.header__phone {
  transition-behavior: normal;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: color;
}

.mobile-menu__phone {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-2);
  transition-behavior: normal;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: color;
}

.mobile-menu__email {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-2);
  transition-behavior: normal;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: color;
}

.mobile-menu__phone:hover {
  color: var(--green);
}

.mobile-menu__email:hover {
  color: var(--green);
}

.footer-contact a {
  transition-behavior: normal;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: color;
}

.contact-row a {
  transition-behavior: normal;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: color;
}

@media (max-width: 1440px) {
  #contacts {
    padding: 50px 0px 50px 0px;
  }
}

#contacts {
  padding: 50px 0px 50px 0px;
}

@media (max-width: 1440px) {
  #lead-form {
    padding: 50px 0px 50px 0px;
  }
}

#lead-form {
  padding: 50px 0px 50px 0px;
}

@media (max-width: 1440px) {
  #certificates {
    padding: 50px 0px 50px 0px;
  }
}

#certificates {
  padding: 50px 0px 50px 0px;
}

@media (max-width: 1440px) {
  #pricing {
    padding: 50px 0px 50px 0px;
  }
}

#pricing {
  padding: 50px 0px 50px 0px;
}

@media (max-width: 1440px) {
  #process {
    padding: 50px 0px 60px 0px;
  }
}

#process {
  padding: 50px 0px 60px 0px;
}

@media (max-width: 1440px) {
  #advantages {
    padding: 50px 0px 60px 0px;
  }
}

#advantages {
  padding: 50px 0px 60px 0px;
}

@media (max-width: 1440px) {
  #services {
    padding: 50px 0px 50px 0px;
  }
}

#services {
  padding: 50px 0px 50px 0px;
}

@media (max-width: 1440px) {
  #ii9xr {
    padding: 120px 0px 50px 0px;
  }
}

#ii9xr {
  padding: 120px 0px 50px 0px;
}

@media (max-width: 1180px) {
  .contact-form-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .carousel-slide {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(33.333% - 16px);
  }
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }
}

@media (max-width: 920px) {
  .header__cta {
    display: none;
  }
}

@media (max-width: 920px) {
  .header__phone {
    display: none;
  }
}

@media (max-width: 920px) {
  .section {
    padding-top: 78px;
    padding-right: 0px;
    padding-bottom: 78px;
    padding-left: 0px;
  }
}

@media (max-width: 920px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .process-timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .service-card:not(:last-child) {
    border-right-width: medium;
    border-right-style: none;
    border-right-color: currentcolor;
  }
}

@media (max-width: 768px) {
  .carousel-slide {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(50% - 12px);
  }
}

@media (max-width: 640px) {
  .logo {
    row-gap: 11px;
    column-gap: 11px;
  }
}

@media (max-width: 640px) {
  .logo__mark {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
  }
}

@media (max-width: 640px) {
  .logo__mark img {
    padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
  }
}

@media (max-width: 640px) {
  .hero__line {
    margin-top: 22px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
  }
}

@media (max-width: 640px) {
  .hero__meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .advantage-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .trust-strip__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-form-box {
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
  }
}

@media (max-width: 640px) {
  .hero-panel {
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
  }
}

@media (max-width: 640px) {
  .contacts-cta {
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
  }
}

@media (max-width: 640px) {
  .pricing-card {
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
  }
}

@media (max-width: 640px) {
  .advantage-card {
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
  }
}

@media (max-width: 640px) {
  .service-card {
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
  }
}

@media (max-width: 640px) {
  .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .btn--hero {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .btn--primary {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .btn--submit {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .btn--outline {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .carousel-container {
    row-gap: 8px;
    column-gap: 8px;
  }
}

@media (max-width: 480px) {
  .carousel-slide {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 100%;
  }
}

.contact-messengers {
  padding: 18px;
  margin-top: 10px;
  border-top: 1px solid var(--line);
}

.contact-messengers__title {
  display: block;
  font-weight: 700;
  color: var(--graphite);
  margin-bottom: 12px;
  font-size: 0.94rem;
}

.contact-messengers__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.btn--messenger {
  min-height: 48px;
  padding: 0 16px;
  font-size: 0.92rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  box-shadow: none;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.btn--max {
  background: #f0f4f8;
  color: #0056b3;
  border: 1px solid rgba(0, 86, 179, 0.2);
}

.btn--max:hover {
  background: #e1eaf5;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.btn--telegram {
  background: #e8f5fd;
  color: #229ed9;
  border: 1px solid rgba(34, 158, 217, 0.2);
}

.btn--telegram:hover {
  background: #d4eefa;
  border-color: #229ed9;
  transform: translateY(-2px);
}

.messenger-svg {
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .contact-messengers__buttons {
    grid-template-columns: 1fr;
  }
}

/* Visual editor additions: source CSS above is preserved. */
@media (max-width: 1440px) {
  #iqg6q {
    float: none;
    position: relative;
    margin: 0px 2px 0px 0px;
    flex-shrink: 0;
  }
}

#iqg6q {
  float: none;
  position: relative;
  margin: 0px 2px 0px 0px;
  flex-shrink: 0;
}

/* Visual editor additions: source CSS above is preserved. */
@media (max-width: 1440px) {
  #iqg6q {
    align-self: center;
  }
}

#iqg6q {
  align-self: center;
}