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

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
  background-color: #ffffff;
  min-height: 100vh;
}
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
@media (min-width: 992px) {
  body.menu-open {
    overflow: auto;
    position: static;
    width: auto;
  }
}

html[lang=zh] body,
body.lang-zh {
  font-family: "Noto Sans SC", "Inter", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: #333333;
}

h1 {
  font-size: 3rem;
}
@media (max-width: 767.98px) {
  h1 {
    font-size: 2.25rem;
  }
}

h2 {
  font-size: 2.25rem;
}
@media (max-width: 767.98px) {
  h2 {
    font-size: 1.875rem;
  }
}

h3 {
  font-size: 1.875rem;
}
@media (max-width: 767.98px) {
  h3 {
    font-size: 1.5rem;
  }
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #0fa265;
  text-decoration: none;
  transition: color 150ms ease;
}
a:hover {
  color: #0d8a56;
}
a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(15, 162, 101, 0.3);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  border-style: none;
}

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

button {
  cursor: pointer;
  background: none;
  border: none;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(15, 162, 101, 0.3);
}

ul, ol {
  padding-left: 1.5rem;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  border: none;
  border-top: 1px solid #e2e8e5;
  margin: 2rem 0;
}

::selection {
  background-color: #0fa265;
  color: #ffffff;
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 500;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: #0fa265;
  color: #ffffff;
  clip: auto;
  white-space: normal;
  border-radius: 0.5rem;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 992px) {
  .container {
    padding: 0 2rem;
  }
}

.section {
  padding: 4rem 0;
}
@media (min-width: 992px) {
  .section {
    padding: 6rem 0;
  }
}
.section--alt {
  background-color: #f0f5f2;
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .section__header {
    margin-bottom: 4rem;
  }
}

.section__title {
  color: #0fa265;
  margin-bottom: 1rem;
}

.section__subtitle {
  font-size: 1.25rem;
  color: #676767;
  max-width: 600px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .section__subtitle {
    font-size: 1.5rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 1rem;
  cursor: pointer;
  transition: background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(15, 162, 101, 0.3);
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}
@media (max-width: 575.98px) {
  .btn--lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}
.btn--full {
  width: 100%;
}
.btn--primary {
  background-color: #0fa265;
  border-color: #0fa265;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: #0d8a56;
  border-color: #0d8a56;
  color: #ffffff;
}
.btn--secondary {
  background-color: transparent;
  border-color: #0fa265;
  color: #0fa265;
}
.btn--secondary:hover {
  background-color: #0fa265;
  color: #ffffff;
}
.btn--outline {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.btn--outline:hover {
  background-color: #ffffff;
  color: #0fa265;
}
.btn--ghost {
  background-color: transparent;
  color: #0fa265;
}
.btn--ghost:hover {
  background-color: #e8f5ef;
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333333;
  margin-bottom: 0.5rem;
}
.form-label--checkbox {
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 400;
  color: #676767;
  font-size: 0.875rem;
}

.form-input,
.form-select,
.form-textarea {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #333333;
  background-color: #ffffff;
  border: 2px solid #e2e8e5;
  border-radius: 0.75rem;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.form-input::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
  color: #9ca5a0;
}
.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: #c5cdc8;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #0fa265;
  box-shadow: 0 0 0 3px rgba(15, 162, 101, 0.1);
}
.form-input.is-error,
.form-select.is-error,
.form-textarea.is-error {
  border-color: #ef4444;
}
.form-input.is-error:focus,
.form-select.is-error:focus,
.form-textarea.is-error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23676767' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 20px;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

.form-checkbox {
  appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid #e2e8e5;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 150ms ease;
  position: relative;
  margin-top: 2px;
}
.form-checkbox:checked {
  background-color: #0fa265;
  border-color: #0fa265;
}
.form-checkbox:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-checkbox:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(15, 162, 101, 0.3);
}

.form-error {
  display: block;
  font-size: 0.875rem;
  color: #ef4444;
  margin-top: 0.25rem;
}

.card {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.card__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.card__content {
  padding: 1.5rem;
}

.card__title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.card__text {
  color: #676767;
  margin-bottom: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
}
.badge--primary {
  background-color: #e8f5ef;
  color: #0fa265;
}
.badge--success {
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon svg {
  width: 1em;
  height: 1em;
}
.icon--sm {
  font-size: 16px;
}
.icon--md {
  font-size: 24px;
}
.icon--lg {
  font-size: 32px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 250ms ease;
}
.header.is-scrolled {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
@media (max-width: 991.98px) {
  .header__inner {
    height: 4.375rem;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #333333;
}
.header__logo:hover {
  color: #0fa265;
}

.header__logo-img {
  width: 64px;
  height: 64px;
}
@media (max-width: 767.98px) {
  .header__logo-img {
    width: 64px;
    height: 64px;
  }
}

.header__logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  display: none;
}
@media (max-width: 991.98px) {
  .header__logo-text {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .header__nav {
    position: fixed;
    top: 4.375rem;
    left: 0;
    right: 0;
    height: calc(100vh - 4.375rem);
    background-color: #ffffff;
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform 250ms ease;
    overflow-y: auto;
  }
  .header__nav.is-open {
    transform: translateX(0);
  }
}

.header__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 991.98px) {
  .header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.header__link {
  font-size: 1rem;
  font-weight: 500;
  color: #333333;
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
  transition: color 150ms ease;
}
.header__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0fa265;
  transition: width 250ms ease;
}
.header__link:hover, .header__link.is-active {
  color: #0fa265;
}
.header__link:hover::after, .header__link.is-active::after {
  width: 100%;
}
@media (max-width: 991.98px) {
  .header__link {
    font-size: 1.25rem;
    padding: 0.75rem 0;
  }
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #0fa265;
  font-weight: 500;
  transition: all 150ms ease;
}
.header__phone:hover {
  background-color: #e8f5ef;
}
.header__phone:hover .header__phone-icon {
  transform: scale(1.1);
}

.header__phone-icon {
  width: 20px;
  height: 20px;
  transition: transform 150ms ease;
}

.header__phone-text {
  font-size: 0.875rem;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .header__phone-text {
    display: none;
  }
}

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

.header__burger {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  gap: 6px;
}
@media (max-width: 991.98px) {
  .header__burger {
    display: flex;
  }
}
.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #333333;
  border-radius: 9999px;
  transition: all 250ms ease;
}
.header__burger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__burger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__burger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.lang-switcher {
  position: relative;
}

.lang-switcher__btn {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  transition: background-color 150ms ease;
}
.lang-switcher__btn:hover {
  background-color: #f8faf9;
}
.lang-switcher__btn[aria-expanded=true] {
  background-color: #f8faf9;
}
.lang-switcher__btn[aria-expanded=true] .lang-switcher__arrow {
  transform: rotate(180deg);
}

.lang-switcher__icon {
  width: 20px;
  height: 20px;
  color: #676767;
}

.lang-switcher__code {
  font-size: 0.875rem;
  font-weight: 600;
  color: #333333;
}

.lang-switcher__arrow {
  width: 16px;
  height: 16px;
  color: #676767;
  transition: transform 250ms ease;
}

.lang-switcher__dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 160px;
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 250ms ease;
  z-index: 100;
}
.lang-switcher__dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switcher__option {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #333333;
  transition: background-color 150ms ease;
}
.lang-switcher__option:hover {
  background-color: #f8faf9;
}
.lang-switcher__option.is-active {
  background-color: #e8f5ef;
  color: #0fa265;
  font-weight: 500;
}

.lang-switcher__flag {
  width: 24px;
  height: 18px;
  border-radius: 2px;
  object-fit: cover;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .hero {
    flex-direction: column;
    min-height: auto;
  }
}

.hero__left {
  width: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  padding: 7.5rem 2rem 2.5rem 0;
  position: relative;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
}
@media (max-width: 991.98px) {
  .hero__left {
    width: 100%;
    clip-path: none;
    padding: 6.375rem 1rem 2.5rem;
    text-align: center;
  }
}
.hero__left .container {
  max-width: 600px;
  margin-left: auto;
  padding-right: 4rem;
}
@media (max-width: 991.98px) {
  .hero__left .container {
    max-width: 100%;
    margin: 0 auto;
    padding-right: 1rem;
  }
}

.hero__right {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}
@media (max-width: 991.98px) {
  .hero__right {
    position: relative;
    width: 100%;
    height: 400px;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
  }
}
@media (max-width: 767.98px) {
  .hero__right {
    height: 300px;
  }
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__content {
  max-width: 100%;
}

.hero__title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #0fa265;
}
@media (max-width: 1199.98px) {
  .hero__title {
    font-size: 3.5rem;
  }
}
@media (max-width: 991.98px) {
  .hero__title {
    font-size: 3rem;
  }
}
@media (max-width: 767.98px) {
  .hero__title {
    font-size: 2.25rem;
  }
}

.hero__subtitle {
  font-size: 1.25rem;
  color: #676767;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 500px;
}
@media (max-width: 991.98px) {
  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767.98px) {
  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.hero__actions {
  display: flex;
  gap: 1rem;
}
@media (max-width: 991.98px) {
  .hero__actions {
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
}

.about__content {
  display: block;
  width: 100%;
  margin-bottom: 2.5rem;
  text-align: center;
}
.about__text {
  width: 100%;
}
.about__text p {
  font-size: 1.25rem;
  line-height: 1.75;
  color: #676767;
  margin-bottom: 1.5rem;
  text-align: justify;
}
.about__text p:last-child {
  margin-bottom: 0;
}
.about__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}
@media (max-width: 991.98px) {
  .about__features {
    gap: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .about__features {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about__feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767.98px) {
  .about__feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.about__feature-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  background-color: #4fab78;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__feature-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.about__feature-content {
  flex: 1;
}
.about__feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.5rem;
}
.about__feature-text {
  font-size: 0.875rem;
  color: #676767;
  line-height: 1.75;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 991.98px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.service-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  height: 500px;
  cursor: pointer;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}
.service-card:hover .service-card__overlay {
  transform: translateY(0);
}
.service-card:hover .service-card__header {
  opacity: 0;
  pointer-events: none;
}
.service-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card__slider .service-card__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.service-card__slider .service-card__slide.active {
  opacity: 1;
}
.service-card__header {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to right, rgba(15, 162, 101, 0.95) 0%, rgba(13, 138, 86, 0.95) 100%);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card__header .service-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.service-card__header .service-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.service-card__header .service-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
.service-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98) 0%, white 100%);
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  z-index: 4;
  overflow-y: auto;
}
.service-card__overlay-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background-color: #4fab78;
  border-radius: 1rem;
}
.service-card__overlay-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.service-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.75rem;
}
.service-card__text {
  font-size: 0.875rem;
  color: #676767;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.service-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.service-card__list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #676767;
}
.service-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background-color: #0fa265;
  border-radius: 50%;
}
.service-card__list li:last-child {
  margin-bottom: 0;
}
.service-card .btn {
  width: 100%;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .service-card {
    height: auto;
    cursor: default;
  }
  .service-card:hover {
    transform: none;
  }
  .service-card:hover .service-card__overlay {
    transform: translateY(0);
  }
  .service-card:hover .service-card__header {
    opacity: 1;
  }
  .service-card__image {
    position: relative;
    height: 200px;
  }
  .service-card__header {
    display: none;
  }
  .service-card__overlay {
    position: relative;
    transform: translateY(0);
    background: #ffffff;
    padding: 1.25rem;
    height: auto;
  }
  .service-card__overlay-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
  }
  .service-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  .service-card__text {
    margin-bottom: 0.75rem;
  }
  .service-card__list {
    margin-bottom: 1rem;
    flex-grow: 0;
  }
  .service-card .btn {
    width: 100%;
    justify-content: center;
  }
}

.specialists__slider {
  position: relative;
  overflow: hidden;
  margin: 0 -1rem;
  padding: 0 1rem;
}
@media (min-width: 992px) {
  .specialists__slider {
    margin: 0 -2rem;
    padding: 0 2rem;
  }
}

.specialists__grid {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.specialists__grid::-webkit-scrollbar {
  display: none;
}

.specialists__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.specialists__btn {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid #f0f5f2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 250ms ease;
}
.specialists__btn svg {
  width: 20px;
  height: 20px;
  color: #676767;
}
.specialists__btn:hover:not(:disabled) {
  border-color: #0fa265;
  background-color: #0fa265;
}
.specialists__btn:hover:not(:disabled) svg {
  color: #ffffff;
}
.specialists__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.specialist-card {
  background-color: #ffffff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex: 0 0 320px;
  min-width: 320px;
  scroll-snap-align: start;
}
@media (max-width: 575.98px) {
  .specialist-card {
    flex: 0 0 280px;
    min-width: 280px;
  }
}
.specialist-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}
.specialist-card:hover .specialist-card__image img {
  transform: scale(1.05);
}

.specialist-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: #f0f5f2;
}
.specialist-card__image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.specialist-card__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #e8f5ef 0%, #f0f5f2 100%);
  z-index: 0;
}
.specialist-card__image.no-image::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230fa265' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: 1;
}

.specialist-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.specialist-card__content {
  padding: 1.5rem;
}

.specialist-card__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.5rem;
  min-height: 90px;
}

.specialist-card__position {
  font-size: 1rem;
  font-weight: 600;
  color: #0fa265;
  margin-bottom: 0.75rem;
  min-height: 72px;
}

.specialist-card__experience {
  font-size: 0.875rem;
  color: #676767;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.specialist-card__experience svg {
  width: 16px;
  height: 16px;
  color: #0fa265;
}

.specialist-card__specialization {
  font-size: 0.875rem;
  color: #676767;
  line-height: 1.75;
  min-height: 122px;
}

.specialist-card__center {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f0f5f2;
  font-size: 0.875rem;
  color: #9ca5a0;
}
.specialist-card__center svg {
  width: 16px;
  height: 16px;
  color: #0fa265;
  flex-shrink: 0;
}

.results {
  background-color: #f8faf9;
  overflow-x: hidden;
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 991.98px) {
  .results__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .results__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.results__grid + .results__grid {
  margin-top: 2rem;
}

.comparison {
  position: relative;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y pinch-zoom;
}

.comparison__container {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
}

.comparison__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.comparison__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.comparison__image--before {
  z-index: 1;
}
.comparison__image--after {
  z-index: 2;
  clip-path: inset(0 0 0 50%);
}

.comparison__slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: #ffffff;
  z-index: 10;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.comparison__slider::before, .comparison__slider::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
}
.comparison__slider::before {
  top: 1rem;
  border-width: 8px 6px 0 6px;
  border-color: #ffffff transparent transparent transparent;
}
.comparison__slider::after {
  bottom: 1rem;
  border-width: 0 6px 8px 6px;
  border-color: transparent transparent #ffffff transparent;
}

.comparison__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11;
}
.comparison__handle svg {
  width: 24px;
  height: 24px;
  color: #0fa265;
  display: block;
  margin: 0;
  flex-shrink: 0;
}

.comparison__label {
  position: absolute;
  bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  z-index: 5;
}
.comparison__label--before {
  left: 0.75rem;
}
.comparison__label--after {
  right: 0.75rem;
}

.comparison__caption {
  padding: 1rem;
  text-align: center;
}
.comparison__caption h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.25rem;
}
.comparison__caption p {
  font-size: 0.75rem;
  color: #676767;
}

.personal-story {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(15, 162, 101, 0.1);
  overflow: hidden;
}

.personal-story__header {
  text-align: center;
  margin-bottom: 2rem;
}

.personal-story__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.5rem;
}

.personal-story__subtitle {
  font-size: 1rem;
  color: #676767;
}

.personal-story__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  min-width: 0;
}
@media (max-width: 991.98px) {
  .personal-story__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.personal-story__gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  overflow: hidden;
}

.personal-story__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 575.98px) {
  .personal-story__row {
    grid-template-columns: 1fr;
  }
}
.personal-story__row--full {
  grid-template-columns: 1fr;
}

.personal-story__photo {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 0;
}
.personal-story__photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.personal-story__photo img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
}
.personal-story__photo--xray img {
  object-fit: contain;
  background: #0a0a14;
}
.personal-story__photo--highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid #0fa265;
  border-radius: 1rem;
  pointer-events: none;
}
.personal-story__photo--wide {
  aspect-ratio: auto;
}
.personal-story__photo--wide img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.personal-story__step {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  padding: 0.25rem 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 0.75rem;
  backdrop-filter: blur(4px);
}

.personal-story__step--left {
  left: 25%;
  transform: translateX(-50%);
}

.personal-story__step--right {
  left: auto;
  right: 25%;
  transform: translateX(50%);
}

.personal-story__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
  overflow: hidden;
}

.personal-story__quote {
  position: relative;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(15, 162, 101, 0.05) 0%, rgba(15, 162, 101, 0.02) 100%);
  border-radius: 1.5rem;
  border-left: 4px solid #0fa265;
}

.personal-story__quote-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  color: rgba(15, 162, 101, 0.2);
}

.personal-story__quote blockquote {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.7;
  color: #333333;
  margin: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
@media (max-width: 575.98px) {
  .personal-story__quote blockquote {
    font-size: 1rem;
  }
}

.personal-story__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.personal-story__author-info {
  display: flex;
  flex-direction: column;
}

.personal-story__author-name {
  font-size: 1rem;
  font-weight: 600;
  color: #333333;
}

.personal-story__author-details {
  font-size: 0.875rem;
  color: #676767;
}

.personal-story__timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.25rem;
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}
@media (max-width: 575.98px) {
  .personal-story__timeline {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.personal-story__timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.75rem;
}
.personal-story__timeline-item:not(:last-child) {
  border-right: 1px solid #f0f5f2;
}
@media (max-width: 575.98px) {
  .personal-story__timeline-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #f0f5f2;
    padding-bottom: 0.75rem;
  }
}

.personal-story__timeline-label {
  font-size: 0.75rem;
  color: #676767;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.personal-story__timeline-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
}
.personal-story__timeline-value--success {
  color: #10b981;
}

.personal-story__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #0fa265;
  text-decoration: none;
}

.reviews__slider {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}

.reviews__track {
  display: flex;
  gap: 2rem;
  transition: transform 350ms ease;
}
@media (max-width: 767.98px) {
  .reviews__track {
    gap: 1rem;
  }
}

.review-card {
  flex: 0 0 calc(50% - 1rem);
  max-width: calc(50% - 1rem);
  background-color: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991.98px) {
  .review-card {
    flex: 0 0 calc(70% - 0.5rem);
    max-width: calc(70% - 0.5rem);
  }
}
@media (max-width: 767.98px) {
  .review-card {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 1.5rem;
  }
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.review-card__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #e8f5ef;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.review-card__avatar span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0fa265;
}

.review-card__info {
  flex: 1;
}

.review-card__author {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.25rem;
}

.review-card__date {
  font-size: 0.875rem;
  color: #9ca5a0;
}

.review-card__rating {
  display: flex;
  gap: 0.25rem;
}
.review-card__rating svg {
  width: 20px;
  height: 20px;
  color: #fbbf24;
  fill: #fbbf24;
}
.review-card__rating--empty svg {
  color: #e2e8e5;
  fill: none;
}

.review-card__text {
  font-size: 1rem;
  color: #676767;
  line-height: 1.75;
}
.review-card__text::before {
  content: '"';
  font-size: 3rem;
  color: #0fa265;
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 0.25rem;
  opacity: 0.3;
}

.review-card__link {
  display: flex;
  gap: 0.5rem;
}

.reviews__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.reviews__btn {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid #f0f5f2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 250ms ease;
}
.reviews__btn svg {
  width: 24px;
  height: 24px;
  color: #676767;
}
.reviews__btn:hover:not(:disabled) {
  border-color: #0fa265;
  background-color: #0fa265;
}
.reviews__btn:hover:not(:disabled) svg {
  color: #ffffff;
}
.reviews__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.reviews__dots {
  display: flex;
  gap: 0.5rem;
}

.reviews__dot {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e2e8e5;
  transition: all 250ms ease;
}
.reviews__dot:hover {
  background-color: #c5cdc8;
}
.reviews__dot.is-active {
  background-color: #0fa265;
  width: 24px;
  border-radius: 9999px;
}

/* CTA: Leave Review */
.cta-review {
  position: relative;
  overflow: hidden;
  background: url("../assets/images/reviews_czp.webp") center/cover no-repeat;
}
.cta-review::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.cta-review__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 1.5rem;
  gap: 2rem;
}
@media (min-width: 992px) {
  .cta-review__inner {
    padding: 5rem 2rem;
  }
}
.cta-review__text {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 600px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .cta-review__text {
    font-size: 1.5rem;
  }
}
.cta-review__buttons {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .cta-review__buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 1rem;
  }
  .cta-review__btn {
    justify-content: center;
  }
}
.cta-review__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.75rem;
  border-radius: 3rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}
.cta-review__btn::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}
.cta-review__btn:hover {
  transform: scale(1.07);
}
.cta-review__btn:hover::before {
  opacity: 1;
  transform: scale(1.15);
}
.cta-review__btn:active {
  transform: scale(1);
}
.cta-review__btn--google {
  background: #fff;
  color: #333;
}
.cta-review__btn--google:hover {
  color: #333;
}
.cta-review__btn--google::before {
  background: rgba(255, 255, 255, 0.25);
}
.cta-review__btn--yandex {
  background: #FC3F1D;
  color: #fff;
}
.cta-review__btn--yandex:hover {
  color: #fff;
}
.cta-review__btn--yandex::before {
  background: rgba(252, 63, 29, 0.35);
}
.cta-review__btn--2gis {
  background: #ffd67a;
  color: #333;
}
.cta-review__btn--2gis:hover {
  color: #333;
}
.cta-review__btn--2gis::before {
  background: rgba(255, 214, 122, 0.35);
}

/* CTA: Share Website */
.cta-share {
  background: #f0f5f2;
}
.cta-share__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1.5rem;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .cta-share__inner {
    padding: 2.5rem 2rem;
    gap: 1.75rem;
  }
}
.cta-share__text {
  font-size: 1.125rem;
  font-weight: 500;
  color: #333;
}
@media (min-width: 768px) {
  .cta-share__text {
    font-size: 1.25rem;
  }
}
.cta-share__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
.cta-share__btn--native {
  grid-column: 1 / -1;
}
@media (min-width: 768px) {
  .cta-share__buttons {
    grid-template-columns: repeat(7, 1fr);
    max-width: none;
    width: auto;
  }
  .cta-share__btn--native {
    grid-column: auto;
  }
}
.cta-share__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 3rem;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cta-share__btn svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.cta-share__btn:hover {
  transform: scale(1.06);
}
.cta-share__btn:active {
  transform: scale(1);
}
.cta-share__btn--native {
  background: #0fa265;
  color: #fff;
}
.cta-share__btn--native:hover {
  color: #fff;
}
.cta-share__btn--telegram {
  background: #2AABEE;
  color: #fff;
}
.cta-share__btn--telegram:hover {
  color: #fff;
}
.cta-share__btn--whatsapp {
  background: #25D366;
  color: #fff;
}
.cta-share__btn--whatsapp:hover {
  color: #fff;
}
.cta-share__btn--facebook {
  background: #1877F2;
  color: #fff;
}
.cta-share__btn--facebook:hover {
  color: #fff;
}
.cta-share__btn--vk {
  background: #0077FF;
  color: #fff;
}
.cta-share__btn--vk:hover {
  color: #fff;
}
.cta-share__btn--linkedin {
  background: #0A66C2;
  color: #fff;
}
.cta-share__btn--linkedin:hover {
  color: #fff;
}
.cta-share__btn--ok {
  background: #EE8208;
  color: #fff;
}
.cta-share__btn--ok:hover {
  color: #fff;
}

.appointment {
  position: relative;
  overflow: hidden;
}
.appointment::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../assets/images/appointment-bg-new.webp") center/cover no-repeat;
  background-attachment: scroll;
  will-change: auto;
}
.appointment::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 162, 101, 0.92) 0%, rgba(13, 138, 86, 0.88) 100%);
}

.appointment__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .appointment__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.appointment__content {
  color: #ffffff;
  padding: 2.5rem 0;
}
@media (max-width: 991.98px) {
  .appointment__content {
    padding: 1.5rem 0;
  }
}

@media (max-width: 991.98px) {
  .appointment__info {
    text-align: center;
  }
}

.appointment__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}
@media (max-width: 767.98px) {
  .appointment__title {
    font-size: 1.875rem;
  }
}

.appointment__text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
  .appointment__text {
    font-size: 1rem;
  }
}

.appointment__benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 991.98px) {
  .appointment__benefits {
    align-items: center;
  }
}

.appointment__benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
}
.appointment__benefit--title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.appointment__benefit svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
  flex-shrink: 0;
}

.appointment__form {
  background-color: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767.98px) {
  .appointment__form {
    padding: 1.5rem;
  }
}
.appointment__form .form-group {
  margin-bottom: 1rem;
}
.appointment__form .form-label {
  color: #333333;
}
.appointment__form .form-input,
.appointment__form .form-select,
.appointment__form .form-textarea {
  border-color: #f0f5f2;
}
.appointment__form .form-input:focus,
.appointment__form .form-select:focus,
.appointment__form .form-textarea:focus {
  border-color: #0fa265;
}
.appointment__form .btn--primary {
  margin-top: 1rem;
}

.contacts__wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: stretch;
}
@media (max-width: 991.98px) {
  .contacts__wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.contacts__card {
  background-color: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .contacts__card {
    padding: 1.5rem;
  }
}

.mb-2 {
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-info__badge {
  margin-bottom: 1rem;
  align-self: flex-start;
}

.contact-info__name {
  font-size: 1.875rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1.5rem;
}
@media (max-width: 767.98px) {
  .contact-info__name {
    font-size: 1.5rem;
  }
}

.contact-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-info__item:last-child {
  margin-bottom: 0;
}
.contact-info__item svg {
  width: 24px;
  height: 24px;
  color: #0fa265;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info__item a {
  color: #0fa265;
  font-weight: 500;
  transition: color 150ms ease;
  text-decoration: none;
}
.contact-info__item a:hover {
  color: #0d8a56;
  text-decoration: underline;
}

.contact-info__label {
  font-weight: 500;
  color: #333333;
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}

.contact-info__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f0f5f2;
}
.contact-info__actions .btn {
  width: 100%;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .contact-info__actions .btn--icon span {
    display: inline;
  }
}

.contact-info__route-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.contact-info__reviews {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.75rem;
}
.contact-info__reviews-label {
  font-size: 0.8125rem;
  color: #676767;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
}
.contact-info__reviews-links {
  display: flex;
  gap: 0.5rem;
  width: 100%;
}
.review-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  flex: 1;
  padding: 0.5rem 0.25rem;
  border-radius: 0.75rem;
  background: #f0f5f2;
  font-size: 0.8125rem; 
  font-weight: 500;
  color: #262626;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background-color 0.25s ease;
}
.review-link:hover {
  transform: translateY(-2px);
  background: #e2e8e5;
  color: #333;
}
.review-link img,
.review-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.review-link span {
  white-space: nowrap;
  line-height: 1;
}
.review-link--2gis img {
  width: 60px;
  height: 40px;
}

.route-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  max-width: 50%;
  padding: 0.5rem 0.75rem;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
  border-radius: 1rem;
  overflow: hidden;
}
.route-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.route-btn:active {
  transform: translateY(0);
}
.route-btn img {
  display: block;
  height: 24px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.route-btn--yandex {
  background-color: #000;
}
.route-btn--yandex img {
  filter: invert(1);
}
.route-btn--2gis {
  background-color: #ffd67a;
}
.route-btn--2gis img {
  height: 28px;
}

.contacts__map-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  min-height: 500px;
}
@media (max-width: 991.98px) {
  .contacts__map-wrapper {
    min-height: 400px;
  }
}
@media (max-width: 767.98px) {
  .contacts__map-wrapper {
    min-height: 300px;
  }
}

.contacts__map {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f0f5f2;
}
.contacts__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contacts__map-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  padding: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  animation: pulse-marker 2s infinite;
  z-index: 10;
  pointer-events: none;
}
.contacts__map-marker img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.contacts__map-marker::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #ffffff;
}

@keyframes pulse-marker {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 6px 30px rgba(15, 162, 101, 0.4);
  }
}
.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 991.98px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 767.98px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.footer__logo {
  display: inline-flex;
  margin-bottom: 1rem;
}

.footer__logo-img {
  width: 60px;
  height: 60px;
  filter: brightness(0) invert(1);
}

.footer__desc {
  font-size: 1rem;
  color: #c5cdc8;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 280px;
}
@media (max-width: 767.98px) {
  .footer__desc {
    max-width: 100%;
  }
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}
@media (max-width: 767.98px) {
  .footer__social {
    justify-content: center;
  }
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 250ms ease;
}
.footer__social-link svg {
  width: 20px;
  height: 20px;
  color: #ffffff;
}
.footer__social-link:hover {
  background-color: #0fa265;
  transform: translateY(-3px);
}

.footer__title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer__links li {
  margin-bottom: 0.75rem;
}
.footer__links li:last-child {
  margin-bottom: 0;
}
.footer__links li a {
  font-size: 1rem;
  color: #c5cdc8;
  transition: color 150ms ease;
}
.footer__links li a:hover {
  color: #0fa265;
}

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

.footer__contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #c5cdc8;
}
@media (max-width: 767.98px) {
  .footer__contact-item {
    justify-content: center;
    text-align: left;
  }
}
.footer__contact-item:last-child {
  margin-bottom: 0;
}
.footer__contact-item svg {
  width: 18px;
  height: 18px;
  color: #0fa265;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer__contact-item a {
  color: #c5cdc8;
}
.footer__contact-item a:hover {
  color: #0fa265;
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__copyright {
  font-size: 0.875rem;
  color: #9ca5a0;
}

/* ── Top Topics (main page) ── */
.top-topics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 991.98px) {
  .top-topics__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.topic-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8e5;
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
  position: relative;
  overflow: hidden;
}
.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(15, 162, 101, 0.12);
  border-color: #0fa265;
}
.topic-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background: #e8f5ef;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.topic-card__icon svg {
  width: 28px;
  height: 28px;
  color: #0fa265;
}
.topic-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.topic-card__desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  flex: 1;
  margin-bottom: 1rem;
}
.topic-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0fa265;
  transition: gap 250ms ease;
}
.topic-card__arrow svg {
  width: 20px;
  height: 20px;
}
.topic-card:hover .topic-card__arrow {
  gap: 0.75rem;
}

/* ── Related Topics Carousel (subpages) ── */
.related-topics__slider {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}
.related-topics__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 350ms ease;
}
@media (max-width: 767.98px) {
  .related-topics__track {
    gap: 1rem;
  }
}
.related-topics__track .topic-card {
  flex: 0 0 calc(33.333% - 1rem);
  max-width: calc(33.333% - 1rem);
}
@media (max-width: 991.98px) {
  .related-topics__track .topic-card {
    flex: 0 0 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }
}
@media (max-width: 767.98px) {
  .related-topics__track .topic-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.related-topics__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.related-topics__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #e2e8e5;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 250ms ease;
}
.related-topics__btn svg {
  width: 20px;
  height: 20px;
  color: #333;
}
.related-topics__btn:hover:not(:disabled) {
  border-color: #0fa265;
  background: #e8f5ef;
}
.related-topics__btn:hover:not(:disabled) svg {
  color: #0fa265;
}
.related-topics__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.related-topics__dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.related-topics__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8e5;
  border: none;
  cursor: pointer;
  transition: background 250ms ease, transform 250ms ease;
  padding: 0;
}
.related-topics__dot:hover {
  background: #9ca5a0;
}
.related-topics__dot.is-active {
  background: #0fa265;
  transform: scale(1.3);
}
