:root {
  --green-dark:    #026b00;
  --green-deepest: #014800;
  --green-main:    #028e00;
  --green-mid:     #039600;
  --green-light:   #03a800; 
  --green-pale:    #e5f5e5; 
  --green-bg:      #eef6ee;

  --gold-dark:     #9c7a2e;
  --gold-main:     #b8923f;
  --gold-light:    #c9a55a;
  --gold-pale:     #f5ecd8;

  --gold-light-rgb: 201, 165, 90;
  --white-rgb: 255, 255, 255;

  --navbar-dark:   #13150f;

  --white:         #ffffff;
  --text-dark:     #1a2a1a;
  --text-body:     #2d3d2d;
  --text-muted:    #557055;
  --border:        #c8e6c9;

  --shadow-sm:     0 2px 8px rgba(46,125,50,0.10);
  --shadow-md:     0 4px 20px rgba(46,125,50,0.15);
  --shadow-lg:     0 8px 40px rgba(46,125,50,0.20);

  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --radius-full:   9999px;

  --transition:    0.2s ease;
  --navbar-h:      120px;
  --container:     1140px;

  --font:          'Inter', system-ui, sans-serif;
  --fw-reg:        400;
  --fw-med:        500;
  --fw-semi:       600;
  --fw-bold:       700;
  --fw-black:      800;

  --fs-xs:    0.8125rem; 
  --fs-sm:    0.9375rem; 
  --fs-base:  1.0625rem; 
  --fs-md:    1.1875rem; 
  --fs-lg:    1.3125rem; 
  --fs-xl:    1.625rem;  
  --fs-2xl:   2.125rem;  
  --fs-hero: clamp(2.2rem, 10vw, 6rem);

  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2rem;
  --sp-xl:  3rem;
  --sp-2xl: 5rem;

  --section-pt: 2.5rem;
  --section-pb: 2.5rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-h);
  font-size: 16px;
  overflow-x: hidden;
}
[id] { scroll-margin-top: calc(var(--navbar-h) + 8px); }
body {
  font-family: var(--font);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }


.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

.reviews__slider-wrap {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-sm);
}
@media (min-width: 768px) { .container { padding-inline: var(--sp-lg); } }

.section {
  padding-top: var(--section-pt);
  padding-bottom: var(--section-pb);
}
@media (min-width: 768px) {
  .section {
    padding-top: var(--section-pt);
    padding-bottom: var(--section-pb);
  }
}.section--green { background: var(--green-main); }

.section-title {
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  font-weight: var(--fw-black);
  color: var(--text-dark);
  text-align: center;
  line-height: 1.2;
  margin-bottom: var(--sp-lg);
  overflow-wrap: break-word;
  word-break: break-word;
}

@media (max-width: 767px) {
  .section-title {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }
}
.section-title--light { color: var(--white); }
.section-title--left  { text-align: left; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition);
  white-space: nowrap;
  max-width: 100%;
}

@media (max-width: 380px) {
  .btn {
    white-space: normal;
    padding: .5rem 1rem;
    font-size: var(--fs-sm);
  }
}

.btn:active { transform: scale(.97); }
.btn:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--gold-main);
  color: var(--white);
  border-color: var(--gold-main);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  outline-color: var(--gold-pale);
}

.btn--lg {
  padding: 1rem clamp(1.5rem, 7vw, 2rem);
  font-size: var(--fs-md);
  line-height: 1.25;
}

@media (max-width: 440px) {
  .btn--lg.btn--full {
    white-space: normal;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 840px) {
  .contact__form-box .btn--lg.btn--full {
    white-space: normal;
    text-align: center;
  }
}
.btn--full { width: 100%; }

.btn__loading { display: none; }
.form--loading .btn__text { display: none; }
.form--loading .btn__loading { display: inline; }

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: var(--sp-sm) var(--sp-sm) 0;
  background: transparent;
}
@media (min-width: 768px) {
  .navbar { padding: var(--sp-sm) var(--sp-lg) 0; }
}

.navbar__capsule {
  max-width: var(--container);
  margin-inline: auto;
  background: rgba(19, 21, 15, 0.45);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 165, 90, 0.15);
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  min-height: 80px;
  padding-block: 6px;
  padding-inline: var(--sp-sm);
}
@media (min-width: 480px) {
  .navbar__inner { padding-inline: var(--sp-md); }
}

.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  margin-block: -6px;
}
.navbar__logo:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}
.navbar__logo-img {
  height: 64px;
  width: auto;
  display: block;
  border-radius: inherit;
}
@media (min-width: 400px) {
  .navbar__logo-img { height: 76px; }
}
@media (min-width: 768px) {
  .navbar__logo-img { height: 84px; }
}

.navbar__divider {
  width: 1px;
  height: 40px;
  background: rgba(var(--gold-light-rgb), .25);
  flex-shrink: 0;
}

.navbar__center {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--sp-md);
  flex: 1;
  justify-content: center;
}

.navbar__messengers {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}
@media (max-width: 399px) {
  .navbar__icon-link {
    width: 22px;
    height: 22px;
    font-size: 13px;
  }
  .navbar__messengers {
    gap: 3px;
  }
}

.navbar__icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: var(--gold-light);
  font-size: 19px;
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.navbar__icon-link:hover   { background: rgba(var(--gold-light-rgb), .15); color: var(--gold-pale); }
.navbar__icon-link:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

.navbar__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: var(--fw-semi);
  font-size: var(--fs-sm);
  color: var(--gold-light);
  transition: color var(--transition);
  white-space: nowrap;
  line-height: 1;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 480px) {
  .navbar__phone { font-size: var(--fs-lg); }
}
@media (min-width: 768px) {
  .navbar__phone { font-size: 1.4rem; }
}
.navbar__phone i { color: var(--gold-light); font-size: 13px; }
.navbar__phone:hover { color: var(--gold-pale); }
.navbar__phone span { display: inline; }
.navbar__phone:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (min-width: 1200px) {
  .navbar__icon-link {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
  .navbar__messengers {
    gap: 6px;
  }
  .navbar__phone {
    font-size: 1.6rem;
  }
  .navbar__phone i {
    font-size: 15px;
  }
}

.navbar__cta-wrap {
  display: none;
  align-items: center;
  gap: var(--sp-sm);
  flex-shrink: 0;
}
@media (min-width: 768px) { .navbar__cta-wrap { display: flex; } }

.navbar__burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px; height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: 6px;
  padding: 4px;
}
.navbar__burger span {
  display: block;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.navbar__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.navbar__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navbar__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
@media (min-width: 768px) { .navbar__burger { display: none; } }
.navbar__burger:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.navbar__menu {
  display: none;
  background: rgba(19, 21, 15, 0.80);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  margin-top: 8px;
  padding: var(--sp-sm);
  max-width: var(--container);
  margin-inline: auto;
  box-shadow: var(--shadow-md);
}
.navbar__menu.is-open { display: block; }
.navbar__menu ul { display: flex; flex-direction: column; gap: 2px; }
.navbar__menu-cta {
  margin-top: var(--sp-sm);
}
.nav-link {
  display: block;
  padding: 12px var(--sp-sm);
  font-weight: var(--fw-med);
  color: var(--gold-pale);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.nav-link:hover { background: rgba(var(--gold-light-rgb), .15); color: var(--gold-light); }
.nav-link:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 2px; }

.navbar.scrolled .navbar__capsule { box-shadow: var(--shadow-lg); }

@media (min-width: 768px) and (max-width: 991px) {
  .navbar__phone { font-size: var(--fs-base); }
  .navbar__icon-link { width: 26px; height: 26px; font-size: 14px; }
  .navbar__messengers { gap: 3px; }
  .navbar__divider { display: none; }
  .navbar__cta { padding: .55rem .9rem; font-size: var(--fs-xs); }
  .navbar__logo-img { height: 60px; }
}

@media (max-width: 767px) {
  .navbar__center {
    flex-direction: column;
    gap: 2px;
  }

  .navbar__divider {
    display: none;
  }

  .navbar__logo-img {
    height: 60px;
  }

  .navbar__inner {
    padding-inline: 16px;
    gap: 12px;
  }

  .navbar__phone {
    order: -1;
  }

  .navbar__messengers {
    order: 1;
  }
}

@media (max-width: 359px) {
  .navbar__phone i {
    display: none;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .navbar__phone {
    font-size: var(--fs-base);
  }
}

@media (max-width: 439px) {
  .navbar__logo-img {
    height: 52px;
  }

  .navbar__inner {
    padding-inline: 12px;
    gap: 8px;
  }

  .navbar__icon-link {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }

  .navbar__messengers {
    gap: 3px;
  }
}


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-color: var(--green-dark);
  text-align: center;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
    .hero {
        min-height: 55vh;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 38vh;
    }
}

@media (max-width: 447px) {
    .hero {
        min-height: 42vh;
    }
}

@media (max-width: 416px) {
    .hero {
        min-height: 37vh;
    }
}

@media (max-width: 370px) {
    .hero {
        min-height: 35vh;
    }
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.40);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding-top: calc(var(--navbar-h) + var(--sp-lg));
  padding-bottom: var(--sp-2xl);
  width: 100%;
  max-width: 100vw;
  padding-inline: 0.75rem;
  container-type: normal;
  box-sizing: border-box;
}
@media (min-width: 440px) {
  .hero__content { padding-inline: 1.5rem; }
}

@media (max-width: 480px) {
  .hero__content {
    padding-top: calc(var(--navbar-h) + var(--sp-sm));
    padding-bottom: var(--sp-xs);
  }
}

.hero__title {
  font-size: clamp(1rem, calc(4.9vw - 0.09rem), 99rem);
  font-weight: var(--fw-black);
  line-height: 1.15;
  margin-bottom: var(--sp-lg);
  color: rgba(201, 165, 90, 0.88);
  text-shadow: 0 2px 24px rgba(0,0,0,0.50);
  text-transform: uppercase;
  letter-spacing: -0.3px;
}

@media (max-width: 767px) {
  .hero__title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }
}

.hero__title-line {
  display: block;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .hero__title-line {
    white-space: normal;
  }
}

@media (max-width: 360px) {
  .hero__title { letter-spacing: -1px; }
}

.hero__title-accent {
  color: var(--gold-main);
}

.btn--hero {
  margin-top: var(--sp-xl);
  padding: clamp(1.15rem, 4.4vw, 1.65rem) clamp(2rem, 9.5vw, 4.8rem);
  font-size: clamp(1.15rem, 3.5vw, 1.6rem);
  background: rgba(184, 146, 63, 0.35);
  color: rgba(255, 255, 255, 0.90);
  border-color: rgba(184, 146, 63, 0.70);
  border-width: 2px;
  font-weight: var(--fw-semi);
  letter-spacing: 0.3px;
  white-space: normal;
  backdrop-filter: blur(4px);
}
.btn--hero:hover {
  background: rgba(184, 146, 63, 0.60);
  border-color: var(--gold-light);
  color: var(--white);
}
@media (max-width: 480px) {
  .btn--hero {
    margin-top: var(--sp-sm);
    padding: 0.7rem 1.75rem;
    font-size: var(--fs-sm);
    white-space: nowrap;
  }
}

#pricing .container {
  overflow: visible;
}

.pricing__card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pricing__card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

#pricing .section-title {
  color: var(--green-dark);
}

.pricing__tag {
  background: var(--gold-main);
  color: var(--white);
  font-weight: var(--fw-bold);
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  letter-spacing: .3px;
  padding: 18px 0;
}

.pricing__body {
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  flex: 1;
}

.pricing__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  flex-grow: 1;
}

.pricing__features li {
  font-size: var(--fs-base);
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.pricing__features li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--green-main);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.pricing__amount {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: var(--fw-black);
  color: var(--green-main);
  line-height: 1.2;
}
.pricing__amount--text {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: var(--fw-black);
  color: var(--green-main);
  line-height: 1.2;
}
.pricing__currency {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--green-main);
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
  margin-top: var(--sp-lg);
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.pricing__card--featured {
  border-color: var(--gold-main);
  border-width: 3px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
@media (min-width: 768px) {
  .pricing__card--featured {
    margin-top: -12px;
    margin-bottom: -12px;
  }
}

@media (min-width: 1127px) {
.steps__road {
    transform: translateX(30px);
  }
}


.steps__road {
  position: relative;
  padding-top: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 8px;

}

.steps__row {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  position: relative;
  padding-left: calc(72px + var(--sp-md));
}

.steps__figure {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  position: absolute;
  left: 0;
  top: 32px;
  transform: translateY(-50%);
  z-index: 2;
}
.steps__figure--start { justify-content: center; }
.steps__figure--end   { justify-content: center; }

.steps.section--green {
  background: var(--green-deepest);
}

.qa.section--green {
  background: var(--green-deepest);
}

@media (max-width: 380px) {
  #steps .section-title {
    font-size: clamp(2rem, 8vw, 2.4rem);
  }
}

.steps__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 1;
  gap: var(--sp-xs);
}

.steps__list--bottom {
  flex-direction: row-reverse;
}

.steps__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
  flex: 1;
  min-width: 0;
}

.steps__circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: var(--fw-black);
  border: 3px solid var(--gold-main);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.steps__label {
  font-size: var(--fs-sm);
  color: rgba(var(--white-rgb), .92);
  font-weight: var(--fw-semi);
  text-align: center;
  line-height: 1.3;
  max-width: 120px;
}
@media (min-width: 480px) { .steps__label { max-width: none; font-size: var(--fs-base); } }

.steps__row--top::before,
.steps__row--bottom::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 36px;
  right: calc((100% - 72px - var(--sp-md)) / 6);
  height: 3px;
  background: repeating-linear-gradient(
    to right,
    rgba(var(--white-rgb), .35) 0 14px,
    transparent 14px 24px
  );
  z-index: 0;
}

.steps__list--top .steps__item:last-child,
.steps__list--bottom .steps__item:first-child {
  position: relative;
}
.steps__list--top .steps__item:last-child::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  width: 3px;
  height: 20px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(var(--white-rgb), .35) 0 8px,
    transparent 8px 14px
  );
  transform: translate(-50%, 0);
}
.steps__list--bottom .steps__item:first-child::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 3px;
  height: 20px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(var(--white-rgb), .35) 0 8px,
    transparent 8px 14px
  );
  transform: translate(-50%, 0);
}

@media (max-width: 767px) {
  .steps__road {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
  }
  .steps__row,
  .steps__row--top,
  .steps__row--bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    padding-left: 0;
  }

  .steps__row--bottom {
    display: flex;
  }
  .steps__row--bottom .steps__list--bottom {
    order: 1;
  }
  .steps__row--bottom .steps__figure--end {
    order: 2;
  }

  .steps__figure {
    position: relative;
    align-self: center;
    width: auto;
    padding-bottom: 0;
    margin: 24px 0;
    z-index: 1;
  }
  .steps__figure--start,
  .steps__figure--end {
    justify-content: center;
  }

  .steps__figure--start::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 3px;
    height: 60px;
    background: repeating-linear-gradient(
      to bottom,
      rgba(var(--white-rgb), .4) 0 10px,
      transparent 10px 18px
    );
    transform: translateX(-50%);
    z-index: 0;
  }
  .steps__figure--end::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 50%;
    width: 3px;
    height: 48px;
    background: repeating-linear-gradient(
      to bottom,
      rgba(var(--white-rgb), .4) 0 10px,
      transparent 10px 18px
    );
    transform: translateX(-50%);
    z-index: 0;
  }

  .steps__list {
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    gap: 32px;
    position: relative;
  }
  .steps__list--bottom {
    flex-direction: column;
  }

  .steps__item {
    flex: none;
    width: 100%;
    position: relative;
  }

  .steps__row--top::before,
  .steps__row--bottom::before {
    display: none;
  }
  .steps__list--top .steps__item:last-child::after,
  .steps__list--bottom .steps__item:first-child::after {
    display: none;
  }

  .steps__list--top::before,
  .steps__list--bottom::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: repeating-linear-gradient(
      to bottom,
      rgba(var(--white-rgb), .4) 0 10px,
      transparent 10px 18px
    );
    transform: translateX(-50%);
    z-index: 0;
  }

  .steps__row--top {
    position: relative;
  }
  .steps__row--top::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    width: 3px;
    height: 32px;
    background: repeating-linear-gradient(
      to bottom,
      rgba(var(--white-rgb), .4) 0 10px,
      transparent 10px 18px
    );
    transform: translateX(-50%);
    z-index: 1;
  }

  .steps__road {
    gap: 32px;
  }

}


.why__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-md);
  margin-top: var(--sp-lg);
  margin-bottom: -25px;
}

#why .section-title {
  color: var(--green-dark);
}

#reviews .section-title {
  color: var(--green-dark);
}

.why__card {
  background: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  padding: var(--sp-lg) var(--sp-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: default;
  flex: 1 1 240px;
  max-width: 260px;
  min-width: 140px;
}
.why__card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.why__icon {
  width: 76px;
  height: 76px;
  background: var(--green-dark);
  border: 3px solid var(--gold-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why__icon i {
  font-size: 30px;
  color: var(--white);
}

.why__label {
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  color: var(--text-dark);
  line-height: 1.3;
}

.qa__slider {
  max-width: 720px;
  margin-inline: auto;
  min-height: 220px;
  position: relative;
}
.qa__slide {
  display: none;
  flex-direction: column;
  gap: var(--sp-md);
}
.qa__slide.active { display: flex; }

.qa__bubble {
  display: flex;
  align-items: flex-end;
  gap: var(--sp-sm);
  width: 100%;
}

.qa__bubble--answer {
  justify-content: flex-end;
  flex-direction: row;
}

.qa__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.qa__avatar--user {
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 18px;
  border: 2px solid var(--green-dark);
}
.qa__avatar--school {
  background: var(--white);
  border: 2px solid var(--gold-main);
  padding: 6px;
}
.qa__avatar--school img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.qa__avatar--user img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.qa__text {
  max-width: 75%;
  padding: var(--sp-sm) var(--sp-md);
  border-radius: 18px;
  line-height: 1.6;
  font-size: var(--fs-base);
  box-shadow: var(--shadow-sm);
  background-clip: padding-box;
  transform: translateZ(0);
  will-change: transform;
}
.qa__text--question {
  background: var(--green-dark);
  color: var(--white);
  border-bottom-left-radius: 4px;
}
.qa__text--answer {
  background: var(--gold-main);
  color: var(--white);
  border-bottom-right-radius: 4px;
  font-weight: var(--fw-med);
}

.qa__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  margin-top: var(--sp-lg);
  margin-bottom: 11px;
}
.qa__nav-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--green-main);
  background: transparent;
  color: var(--green-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.qa__nav-btn:hover { background: var(--green-main); color: var(--white); }
.qa__nav-btn:disabled { opacity: .3; cursor: not-allowed; }
.qa__nav-btn:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.qa__dots { display: flex; gap: 8px; }
.qa__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.qa__dot.active { background: var(--green-main); transform: scale(1.2); }
.qa__dot:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

.reviews__slider-wrap {
  position: relative;
  max-width: 760px;
  margin-inline: auto;
}
.reviews__track {
  display: flex;
  gap: var(--sp-md);
  overflow-x: auto;
  overflow-y: hidden;
  flex: 1;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.reviews__track::-webkit-scrollbar { display: none; }

.reviews__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  margin-top: var(--sp-md);
}

@media (max-width: 330px) {
  .review__card {
    flex: 0 0 100%;
    margin-right: 0;
  }
  .reviews__track {
    gap: 0;
  }
}

.review__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-width: 0;
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.review__photo {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.review__card--screenshot {
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review__card--screenshot .review__photo {
  object-fit: contain;
  aspect-ratio: auto;
  height: auto;
  object-position: center;
  background: var(--white);
}

.reviews__arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--green-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
}
.reviews__arrow:hover { background: var(--green-pale); border-color: var(--green-main); }
.reviews__arrow:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}
.reviews__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.reviews__dot.active { background: var(--green-main); transform: scale(1.2); }
.reviews__dot:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

@media (min-width: 768px) {
  .reviews__slider-wrap {
    padding-inline: 56px;
    padding-bottom: 32px;
  }
  .reviews__nav {
    margin-top: 0;
  }
  .reviews__arrow--prev,
  .reviews__arrow--next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .reviews__arrow--prev {
    left: 0;
  }
  .reviews__arrow--next {
    right: 0;
  }
  .reviews__dots {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .reviews__slider-wrap {
    max-width: 100%;
  }
  .reviews__track {
    gap: 0;
  }
  .review__card {
    border-radius: var(--radius-md);
  }
  .review__card--screenshot .review__photo {
    width: 100%;
  }
}

.contact.section--green {
  background: var(--green-deepest);
}

.contact__title {
  color: var(--gold-light);
  margin-bottom: var(--sp-xl);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  margin-bottom: 11px;
}
@media (min-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .contact__form-col {
    order: 2;
    display: flex;
    flex-direction: column;
  }
  .contact__info {
    order: 1;
    display: flex;
    flex-direction: column;
  }
  .contact__form-box {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .contact__form-box .contact__form {
    flex: 1;
  }
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-lg);
}
.contact__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  font-size: var(--fs-md);
  color: var(--white);
}
.contact__list i {
  width: 22px;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 4px;
  font-size: var(--fs-base);
}
.contact__list address { color: var(--white); transition: color var(--transition); }
.contact__list a {
  color: var(--white);
  transition: color var(--transition);
}
.contact__list a:hover { color: var(--gold-light); }
.contact__list a:hover address { color: var(--gold-light); }
.contact__list a:focus-visible { outline: 2px solid var(--gold-light); border-radius: 3px; }

.contact__social {
  display: flex;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-lg);
}
.contact__social-link {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold-main);
  background: transparent;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.contact__social-link:hover {
  background: var(--gold-main);
  border-color: var(--gold-main);
  color: var(--white);
}
.contact__social-link:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

.contact__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--gold-main);
}
.contact__map iframe {
  display: block;
  filter: saturate(.9) brightness(.95);
}

.contact__form-box {
  background: rgba(var(--white-rgb), .04);
  border: 1px solid rgba(var(--gold-light-rgb), .35);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 6vw, 3rem);
  box-shadow: var(--shadow-lg);
}
.contact__form-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-black);
  color: var(--white);
  margin-bottom: 6px;
}
.contact__form-title--lg {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: var(--sp-md);
}
.contact__form { display: flex; flex-direction: column; gap: var(--sp-sm); }

.contact__form-box .form-group input {
  background: rgba(var(--white-rgb), .05);
  border: 1px solid rgba(var(--gold-light-rgb), .45);
  color: var(--white);
}
.contact__form-box .form-group input::placeholder { color: rgba(var(--white-rgb), .55); }
.contact__form-box .form-group input:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(var(--gold-light-rgb), .25);
}

@media (max-width: 340px) {
  .contact__list li {
    font-size: var(--fs-sm);
  }
  .form-group input {
    padding: .75rem .9rem;
  }
}

.contact__form-box,
.contact__info,
.contact__grid > * {
  min-width: 0;
}

.contact__form-box .form-success i { color: var(--gold-light); }
.contact__form-box .form-success p { color: var(--white); }

.form-group input,
.form-group select {
  width: 100%;
  padding: .9rem 1.1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: var(--fs-base);
  color: var(--text-body);
  background: var(--white);
  transition: border-color var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus { outline: none; border-color: var(--gold-main); box-shadow: 0 0 0 3px rgba(184,146,63,.2); }
.form-group input::placeholder { color: var(--text-muted); }

.form-success:not([hidden]) {
  text-align: center;
  padding: var(--sp-lg) var(--sp-md);
}
.form-success i { font-size: 44px; color: var(--green-main); margin-bottom: var(--sp-sm); display: block; }
.form-success p { color: var(--text-body); font-size: var(--fs-md); }

.field-error,
.form-error {
  color: #ff8a80;
  font-size: var(--fs-sm);
  font-weight: var(--fw-med);
  margin-top: -4px;
}

.footer {
  background: var(--green-dark);
  padding-block: var(--sp-md);
  border-top: 1px solid rgba(var(--gold-light-rgb), .25);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer__copy, .footer__privacy { font-size: var(--fs-xs); color: rgba(var(--white-rgb), .6); }
.footer__privacy { max-width: 480px; }

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 500;
  padding: var(--sp-sm);
  backdrop-filter: blur(3px);
  animation: overlayIn .2s ease;
}
.modal-overlay:not([hidden]) {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-overlay[hidden] { display: none; }

@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
  background: var(--green-deepest);
  border: 1px solid rgba(var(--gold-light-rgb), .4);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modalIn .25s ease;
}
@keyframes modalIn {
  from { transform: translateY(20px) scale(.97); opacity: 0; }
  to   { transform: none; opacity: 1; }
}

.modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(var(--gold-light-rgb), .4);
  background: transparent;
  color: var(--gold-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background var(--transition), color var(--transition);
}
.modal__close:hover { background: rgba(var(--gold-light-rgb), .15); color: var(--gold-pale); }
.modal__close:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

.modal__body { padding: var(--sp-xl) var(--sp-lg) var(--sp-lg); }
.modal__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-black);
  color: var(--gold-light);
  margin-bottom: var(--sp-lg);
}
.modal__form { display: flex; flex-direction: column; gap: var(--sp-sm); }

.modal__form .form-group input {
  background: rgba(var(--white-rgb), .05);
  border: 1px solid rgba(var(--gold-light-rgb), .45);
  color: var(--white);
}
.modal__form .form-group input::placeholder { color: rgba(var(--white-rgb), .55); }
.modal__form .form-group input:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(var(--gold-light-rgb), .25);
}

.modal__success:not([hidden]) { display: flex; flex-direction: column; align-items: center; }
.modal__success i { font-size: 52px; color: var(--gold-light); margin-bottom: var(--sp-sm); }
.modal__success h3 { font-size: var(--fs-xl); color: var(--white); margin-bottom: 6px; }
.modal__success p { font-size: var(--fs-sm); color: rgba(var(--white-rgb), .7); text-align: center; }
.modal__success a { color: var(--gold-light); font-weight: var(--fw-semi); }


.btn,
.section-title,
.pricing__name,
.pricing__tag,
.steps__label,
.modal__title,
.contact__form-title,
.why__label {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}