@charset "UTF-8";
body,
html {
  overflow-x: hidden;
}
body.overflow,
html.overflow {
  overflow: hidden !important;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

input,
textarea {
  border: none;
}
input:focus,
textarea:focus {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}

button {
  cursor: pointer;
  border: none;
  transition: 0.3s;
  background: none;
}
button:focus {
  outline: none;
  border: none;
}

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

p {
  margin: 0;
}

a {
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}
a:hover {
  text-decoration: none;
}
a:focus {
  outline: none;
}

div {
  font-family: "Unbounded", sans-serif;
  font-family: "Nunito Sans", sans-serif;
}

.wrapper {
  max-width: 1450px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px 0 240px;
}
@media (max-width: 1200px) {
  .wrapper {
    padding: 0 16px;
  }
}
@media (max-width: 767px) {
  .wrapper {
    padding: 0 16px;
  }
}

.information-block {
  padding: 110px 0 120px;
  background: #054D28;
  border-radius: 0 0 32px 32px;
}
@media (max-width: 767px) {
  .information-block {
    padding: 65px 0;
  }
}
.information-block h2 {
  font-family: "Unbounded", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  margin-bottom: 16px;
  max-width: 700px;
  color: white;
}
@media (max-width: 767px) {
  .information-block h2 {
    font-size: 32px;
    line-height: 120%;
    max-width: 500px;
  }
}
.information-block h2 .green-text {
  font-weight: normal;
  color: #9FE870;
}
.information-block p {
  font-size: 20px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: normal;
  margin-bottom: 48px;
  color: #E8EBE6;
  max-width: 530px;
}
@media (max-width: 767px) {
  .information-block p {
    margin-bottom: 30px;
    font-size: 22px;
  }
}

.green-btn {
  padding: 18px 52px;
  border-radius: 50px;
  background-color: #9FE870;
  border: 1px solid #9FE870;
  font-size: 18px;
  font-weight: 500;
  font-family: "Nunito Sans", sans-serif;
  color: #163300;
}
button.green-btn {
  cursor: pointer;
}
.green-btn:hover {
  background: #163300;
  border-color: #9FE870;
  color: #9FE870;
}

.footer {
  padding: 80px 0px 120px;
  background: white;
}
.footer .footer-menu {
  display: flex;
  justify-content: center;
}
.footer .footer-menu li {
  margin: 0 12px;
}
.footer .footer-menu li a {
  font-size: 14px;
  color: #163300;
  border-bottom: 1px solid transparent;
}
.footer .footer-menu li.active a {
  border-color: #163300;
}
.footer .footer-bottom {
  border-top: 1px solid rgba(14, 15, 12, 0.12);
  padding-top: 32px;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .footer-bottom .footer-logo {
  margin-bottom: 16px;
  text-align: center;
}
.footer .footer-bottom .copyright {
  font-size: 16px;
  font-weight: normal;
  color: #454745;
  text-align: center;
}

.steps-block {
  padding-top: 110px;
  padding-bottom: 70px;
  background: #9FE870;
}
@media (max-width: 767px) {
  .steps-block {
    padding: 64px 0;
  }
}
.steps-block h2 {
  margin-bottom: 16px;
  color: #163300;
  font-family: "Unbounded", sans-serif;
  font-size: 48px;
  font-weight: normal;
}
@media (max-width: 767px) {
  .steps-block h2 {
    font-size: 32px;
    max-width: 250px;
  }
}
.steps-block p {
  font-size: 20px;
  margin-bottom: 40px;
  color: #163300;
  font-family: "Nunito Sans", sans-serif;
}
@media (max-width: 767px) {
  .steps-block p {
    font-size: 24px;
    margin-bottom: 32px;
    max-width: 280px;
  }
}
.steps-block .steps {
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.steps-block .steps .step {
  background: white;
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  padding: 40px;
  padding-right: 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1024px) {
  .steps-block .steps .step {
    padding: 30px;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .steps-block .steps .step {
    padding: 32px;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
}
.steps-block .steps .step .texts {
  width: 420px;
  min-width: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .steps-block .steps .step .texts {
    width: 320px;
    min-width: 320px;
  }
}
@media (max-width: 767px) {
  .steps-block .steps .step .texts {
    width: 100%;
    min-width: auto;
  }
}
.steps-block .steps .step .texts b {
  max-width: 360px;
  width: 100%;
  display: block;
  color: #054D28;
  font-size: 20px;
  font-family: "Unbounded", sans-serif;
  font-weight: normal;
  margin-bottom: 100px;
  display: flex;
}
@media (max-width: 767px) {
  .steps-block .steps .step .texts b {
    margin-bottom: 32px;
    font-size: 18px;
  }
}
.steps-block .steps .step .texts b span {
  display: inline-block;
  margin-right: 5px;
  color: #054D28;
  font-size: 20px;
  font-family: "Unbounded", sans-serif;
  font-weight: normal;
}
@media (max-width: 767px) {
  .steps-block .steps .step .texts b span {
    font-size: 18px;
  }
}
.steps-block .steps .step .texts > span {
  font-size: 16px;
  max-width: 380px;
  margin-top: 30px;
  display: block;
  color: #454745;
  font-family: "Nunito Sans", sans-serif;
}
@media (max-width: 767px) {
  .steps-block .steps .step .texts > span {
    margin-top: 0;
  }
}
.steps-block .steps .step .img-wrap {
  display: flex;
}
@media (max-width: 767px) {
  .steps-block .steps .step .img-wrap {
    margin-right: -32px;
    width: calc(100% + 32px);
  }
}
.steps-block .steps .step .img-wrap img {
  width: 100%;
}

.industries-block {
  padding: 110px 0 190px;
  background: rgba(22, 51, 0, 0.08);
}
@media (max-width: 1024px) {
  .industries-block {
    padding: 70px 0;
  }
}
.industries-block h2 {
  max-width: 800px;
  font-size: 48px;
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  line-height: 56px;
  margin-bottom: 16px;
  color: #163300;
}
@media (max-width: 767px) {
  .industries-block h2 {
    font-size: 32px;
    line-height: 120%;
    max-width: 320px;
  }
}
.industries-block p {
  font-size: 20px;
  margin-bottom: 48px;
  color: #163300;
}
@media (max-width: 767px) {
  .industries-block p {
    font-size: 22px;
    margin-bottom: 60px;
    max-width: 420px;
  }
}
.industries-block .industries-items {
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE / legacy Edge */
}
.industries-block .industries-items::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.industries-block .industries-items .scroll {
  min-width: 1160px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.industries-block .industries-items .scroll::-webkit-scrollbar {
  display: none;
}
.industries-block .industries-items .scroll .scroll-in {
  display: flex;
  flex-wrap: wrap;
}
.industries-block .industries-items .industries-item {
  margin-right: 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .industries-block .industries-items .industries-item {
    margin-right: 16px;
    margin-bottom: 16px;
  }
}
.industries-block .industries-items .industries-item .icon {
  border-radius: 50%;
  display: flex;
  padding: 12px;
  background: #9FE870;
}
.industries-block .industries-items .industries-item .icon img {
  margin: auto;
}
.industries-block .industries-items .industries-item .text {
  font-size: 24px;
  padding: 18px 24px;
  font-family: "Unbounded", sans-serif;
  color: #163300;
  background: #9FE870;
  border-radius: 50px;
}
@media (max-width: 767px) {
  .industries-block .industries-items .industries-item .text {
    font-size: 20px;
  }
}

.hero-block {
  overflow: hidden;
  background: #b2e477;
}

.hero-slider {
  width: 100%;
}

/* Allow vertical page scroll while keeping horizontal swipe gestures */
.hero-slider.swiper-horizontal {
  touch-action: pan-y;
}

.hero-slider.swiper,
.hero-slider .swiper-wrapper {
  height: 850px;
}

.hero-slider .swiper-slide {
  height: 850px;
  box-sizing: border-box;
}

/* Touches pass through to Swiper; only the CTA stays clickable */
.hero-slider .swiper-slide .slide-inner {
  height: 100%;
  min-height: 850px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  z-index: 0;
  pointer-events: none;
}

.hero-slider .swiper-slide .slide-inner .slide-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-slider .swiper-slide .slide-inner:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.46) 100%);
  z-index: -1;
}

@media (max-width: 767px) {
  .hero-slider .swiper-slide .slide-inner {
    background-position: center right;
  }
  .hero-slider .swiper-slide .slide-inner .slide-bg-video {
    object-position: center right;
  }
}
.hero-slider .swiper-slide .slide-inner .slide-info {
  max-width: 1450px;
  width: 100%;
  margin: 0 auto;
  padding: 150px 40px 150px 240px;
  position: relative;
  z-index: 0;
  pointer-events: none;
}

.hero-slider .swiper-slide .slide-inner .slide-info .green-btn {
  pointer-events: auto;
  touch-action: manipulation;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .hero-slider .swiper-slide .slide-inner .slide-info {
    padding: 100px 16px;
  }
}
@media (max-width: 767px) {
  .hero-slider .swiper-slide .slide-inner .slide-info {
    padding: 180px 16px;
  }
}
.hero-slider .swiper-slide .slide-inner .slide-info h2 {
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px;
  color: white;
  margin-bottom: 16px;
  font-family: "Unbounded", sans-serif;
  max-width: 520px;
  width: 100%;
}
@media (max-width: 767px) {
  .hero-slider .swiper-slide .slide-inner .slide-info h2 {
    font-size: 40px;
    line-height: 120%;
    max-width: 320px;
  }
}
.hero-slider .swiper-slide .slide-inner .slide-info h2 .green-text {
  color: #81E143;
}
.hero-slider .swiper-slide .slide-inner .slide-info p {
  font-size: 24px;
  font-family: "Nunito Sans", sans-serif;
  color: white;
  line-height: 136.332%;
  margin-bottom: 48px;
  max-width: 460px;
  width: 100%;
}
@media (max-width: 767px) {
  .hero-slider .swiper-slide .slide-inner .slide-info p {
    margin-bottom: 32px;
    line-height: 125%;
  }
}
.hero-slider .swiper-slide .slide-inner .slide-info p b {
  font-weight: 900;
  font-family: "Nunito Sans", sans-serif;
  font-style: italic;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 24px 0;
  box-sizing: border-box;
  pointer-events: none;
}

.header .header-container {
  max-width: 1900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .header {
    padding: 16px 0;
    transition: 0.3s;
  }
  .header .header-container {
    padding: 0 16px;
  }
  .header.bg {
    background: #054D28;
  }
}

.header .header-info {
  display: flex;
  flex-direction: column;
  max-width: 300px;
  width: 100%;
  margin: 0;
}
@media (max-width: 1200px) {
  .header .header-info {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: none;
  }
}
.header .logo {
  display: flex;
  margin-bottom: 48px;
}
@media (max-width: 1200px) {
  .header .logo {
    margin-bottom: 0;
  }
}
.header .logo img {
  max-width: 100%;
  max-height: 100%;
}
.header .menu-wrap {
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .header .menu-wrap {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: calc(100dvh - 70px);
    z-index: 11;
    padding: 20px 16px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(5, 77, 40, 0.96) 0%, rgba(7, 50, 28, 0.98) 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: opacity 0.28s ease, transform 0.28s ease;
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
  }
  .header .menu-wrap.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }
}
.header .menu-wrap .main-menu {
  margin-bottom: 150px;
  display: flex;
  flex-direction: column;
  margin-bottom: 530px;
}
@media (max-width: 1200px) {
  .header .menu-wrap .main-menu {
    margin-bottom: 28px;
    gap: 10px;
  }
}
.header .menu-wrap .main-menu li {
  margin-bottom: 20px;
}
.header .menu-wrap .main-menu li a {
  color: white;
  font-size: 16px;
  font-family: "Unbounded", sans-serif;
  border-bottom: 1px solid transparent;
  pointer-events: auto;
}
@media (max-width: 1200px) {
  .header .menu-wrap .main-menu li a {
    font-size: 17px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }
  .header .menu-wrap .main-menu li a:hover {
    transform: translateX(2px);
    background: rgba(159, 232, 112, 0.14);
    border-color: rgba(159, 232, 112, 0.48);
  }
}
.header .menu-wrap .main-menu li.active a {
  border-color: white;
}
.header .menu-wrap .languages {
  display: flex;
  gap: 16px;
}
.header .menu-wrap .languages a,
.header .menu-wrap .languages button {
  font-size: 16px;
  color: #fff;
  border-bottom: 1px solid transparent;
  font-family: "Unbounded", sans-serif;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
}
@media (max-width: 1200px) {
  .header .menu-wrap .languages a,
  .header .menu-wrap .languages button {
    font-size: 14px;
    line-height: 1;
    padding: 9px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }
  .header .menu-wrap .languages a:hover,
  .header .menu-wrap .languages button:hover {
    transform: translateY(-1px);
    border-color: rgba(159, 232, 112, 0.65);
    background: rgba(159, 232, 112, 0.16);
  }
}
.header .menu-wrap .languages a.active,
.header .menu-wrap .languages button.active {
  border-color: white;
}

.drop-menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  display: none;
  pointer-events: auto;
}

.header .logo {
  pointer-events: auto;
}
@media (max-width: 1200px) {
  .drop-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(5, 77, 40, 0.42);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
  }
}
.drop-menu .line {
  width: 24px;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: 3px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.drop-menu.is-active .line:nth-child(3) {
  opacity: 0;
}

.drop-menu.is-active .line:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(45deg);
  -ms-transform: translateY(10px) rotate(45deg);
  -o-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
}

.drop-menu.is-active .line:nth-child(2) {
  -webkit-transform: translateY(1px) rotate(-45deg);
  -ms-transform: translateY(1px) rotate(-45deg);
  -o-transform: translateY(1px) rotate(-45deg);
  transform: translateY(1px) rotate(-45deg);
}

.about-us-block {
  padding: 92px 0;
}
@media (max-width: 767px) {
  .about-us-block {
    padding: 64px 0;
  }

  .header .menu-wrap .main-menu li {
    margin-bottom: 0 !important;
  }
}
.about-us-block .info-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .about-us-block .info-wrap {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .about-us-block .info-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.about-us-block .info-wrap .info {
  display: flex;
  flex-direction: column;
}
.about-us-block .info-wrap .info .style-text {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  color: #054D28;
  font-family: "Nunito Sans", sans-serif;
  margin-bottom: 120px;
  position: relative;
  z-index: 0;
}
@media (max-width: 767px) {
  .about-us-block .info-wrap .info .style-text {
    margin-bottom: 80px;
  }
}
.about-us-block .info-wrap .info .style-text:after {
  content: "";
  width: 100px;
  height: 16px;
  background: #9FE870;
  position: absolute;
  bottom: -5px;
  left: 0;
  z-index: -1;
}
.about-us-block .info-wrap .info h1 {
  color: #163300;
  margin-bottom: 40px;
  font-size: 60px;
  font-weight: bold;
  font-family: "Unbounded", sans-serif;
}
@media (max-width: 1024px) {
  .about-us-block .info-wrap .info h1 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .about-us-block .info-wrap .info h1 {
    font-size: 40px;
  }
}
.about-us-block .info-wrap .info h1 .green-text {
  color: #81E143;
}
.about-us-block .info-wrap .info .contact-info {
  display: flex;
  margin-bottom: 20px;
}
.about-us-block .info-wrap .info .contact-info span {
  width: 96px;
  color: #454745;
  font-size: 16px;
  font-family: "Nunito Sans", sans-serif;
}
.about-us-block .info-wrap .info .contact-info a, .about-us-block .info-wrap .info .contact-info b {
  font-size: 20px;
  font-weight: normal;
  color: #163300;
  font-family: "Unbounded", sans-serif;
}
.about-us-block .info-wrap .info-item {
  padding: 8px;
  padding-bottom: 32px;
  background: rgba(22, 51, 0, 0.08);
  border-radius: 24px;
}
.about-us-block .info-wrap .info-item .img-wrap {
  display: flex;
  margin-bottom: 32px;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about-us-block .info-wrap .info-item .img-wrap {
    margin-bottom: 16px;
  }
}
.about-us-block .info-wrap .info-item .img-wrap img {
  width: 100%;
}
.about-us-block .info-wrap .info-item b {
  display: block;
  margin-bottom: 32px;
  color: #163300;
  font-size: 20px;
  padding: 0 16px;
  font-weight: normal;
  font-family: "Unbounded", sans-serif;
}
@media (max-width: 767px) {
  .about-us-block .info-wrap .info-item b {
    margin-bottom: 24px;
  }
}
.about-us-block .info-wrap .info-item span {
  padding: 0 16px;
  font-size: 16px;
  color: #454745;
  display: block;
  font-family: "Nunito Sans", sans-serif;
}
.about-us-block .info-wrap .info-item.item-top {
  margin-top: -200px;
}
@media (max-width: 1024px) {
  .about-us-block .info-wrap .info-item.item-top {
    margin-top: -100px;
  }
}
@media (max-width: 767px) {
  .about-us-block .info-wrap .info-item.item-top {
    margin-top: 0;
  }
}

.header.black-theme .main-menu li a {
  color: #163300;
}
.header.black-theme .main-menu li.active a {
  border-color: #163300;
}
.header.black-theme .languages a,
.header.black-theme .languages button {
  color: #163300;
}
.header.black-theme .languages a.active,
.header.black-theme .languages button.active {
  border-color: #163300;
}
.header.black-theme .drop-menu .line {
  background: #163300;
}

.header.bg {
  background: #81E143;
}
.header.bg .menu-wrap {
  background: #81E143;
}

.from-experts-block {
  padding: 140px 0 120px;
  background: white;
}
@media (max-width: 767px) {
  .from-experts-block {
    padding: 64px 0;
  }
}
.from-experts-block .experts-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .from-experts-block .experts-info {
    flex-direction: column;
  }
}
.from-experts-block .experts-info .experts-texts {
  width: 370px;
  margin-right: 20px;
  position: relative;
  z-index: 2;
  background: #fff;
}
@media (max-width: 1024px) {
  .from-experts-block .experts-info .experts-texts {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.from-experts-block .experts-info .experts-texts .style-text {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  color: #054D28;
  font-family: "Nunito Sans", sans-serif;
  margin-bottom: 60px;
  position: relative;
  z-index: 0;
}
@media (max-width: 767px) {
  .from-experts-block .experts-info .experts-texts .style-text {
    margin-bottom: 30px;
  }
}
.from-experts-block .experts-info .experts-texts .style-text:after {
  content: "";
  width: 190px;
  height: 16px;
  background: #9FE870;
  position: absolute;
  bottom: -5px;
  left: 0;
  z-index: -1;
}
.from-experts-block .experts-info .experts-texts h2 {
  margin-bottom: 16px;
  font-size: 48px;
  font-weight: normal;
  color: #163300;
  font-family: "Unbounded", sans-serif;
  max-width: 280px;
}
@media (max-width: 767px) {
  .from-experts-block .experts-info .experts-texts h2 {
    font-size: 32px;
    max-width: 100%;
  }
}
.from-experts-block .experts-info .experts-texts p {
  font-size: 24px;
  color: #454745;
  font-family: "Nunito Sans", sans-serif;
}
@media (max-width: 767px) {
  .from-experts-block .experts-info .experts-texts p {
    font-size: 22px;
  }
}
.from-experts-block .experts-info .experts-items {
  position: relative;
  z-index: 1;
  width: 490px;
  display: flex;
}
/* Swiper clips box-shadow by default — room for shadows without layout shift */
.from-experts-block .experts-info .experts-items.experts-items--swiper {
  display: block;
  overflow: visible;
}
.from-experts-block .experts-info .experts-items .experts-tips-swiper.swiper {
  overflow: visible;
  padding: 24px 28px;
  margin: -24px -28px;
  box-sizing: content-box;
}
/* Mobile: slide effect — keep default touch-action so vertical page scroll works */
.from-experts-block.from-experts-block--touch-slider .experts-tips-swiper--slide-touch.swiper {
  touch-action: auto;
}
/* EffectCards: stacked slides; keep shadows visible */
.from-experts-block .experts-info .experts-items .experts-tips-swiper.swiper-cards .swiper-slide {
  overflow: visible;
}
.from-experts-block .experts-info .experts-items .experts-tips-swiper .swiper-wrapper {
  overflow: visible;
}
.from-experts-block .experts-info .experts-items .experts-tips-swiper .swiper-slide {
  overflow: visible;
}
.from-experts-block .experts-info .experts-items .experts-item.experts-item--slide {
  margin-left: 0;
  width: 100%;
  transition: box-shadow 0.45s ease;
}
.from-experts-block .experts-info .experts-items .experts-tips-swiper .swiper-slide-active .experts-item--slide {
  box-shadow: 0 12px 36px rgba(5, 77, 40, 0.14), 0 8px 20px rgba(0, 0, 0, 0.08);
}
.from-experts-block.from-experts-block--touch-slider .experts-tips-swiper .swiper-pagination {
  position: relative;
  margin-top: 28px;
  bottom: auto !important;
}
.from-experts-block.from-experts-block--touch-slider .experts-tips-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(5, 77, 40, 0.28);
  opacity: 1;
}
.from-experts-block.from-experts-block--touch-slider .experts-tips-swiper .swiper-pagination-bullet-active {
  background: #054d28;
  transform: scale(1.15);
}
@media (max-width: 767px) {
  .from-experts-block .experts-info .experts-items .experts-tips-swiper .swiper-slide .experts-item--slide {
    transform: none;
  }
}
@media (max-width: 1024px) {
  .from-experts-block .experts-info .experts-items {
    margin-left: auto;
    margin-right: 50px;
  }
}
@media (max-width: 992px) {
  .from-experts-block .experts-info .experts-texts {
    margin-bottom: 60px;
  }
  .from-experts-block .experts-info .experts-items {
    width: 90vw;
    width: 90dvw;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .from-experts-block .experts-info .experts-items .experts-tips-swiper.swiper {
    width: 100%;
    padding: 16px 18px;
    margin: -16px -18px;
    box-sizing: border-box;
  }
  .from-experts-block .experts-info .experts-items .experts-tips-swiper.swiper-cards .swiper-slide {
    width: 100% !important;
  }
}
.from-experts-block .experts-info .experts-items .experts-item {
  width: 490px;
  margin-left: -490px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 16px;
}
@media (max-width: 767px) {
  .from-experts-block .experts-info .experts-items .experts-item {
    width: 250px;
    margin-left: -250px;
    padding: 8px;
  }
}
.from-experts-block .experts-info .experts-items .experts-item .img {
  display: flex;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .from-experts-block .experts-info .experts-items .experts-item .img {
    margin-bottom: 8px;
  }
}
.from-experts-block .experts-info .experts-items .experts-item .img img {
  width: 100%;
}
.from-experts-block .experts-info .experts-items .experts-item b {
  font-size: 24px;
  display: block;
  font-weight: normal;
  font-family: "Unbounded", sans-serif;
  margin-bottom: 16px;
  color: #054D28;
}
@media (max-width: 767px) {
  .from-experts-block .experts-info .experts-items .experts-item b {
    font-size: 12px;
    margin-bottom: 8px;
  }
}
.from-experts-block .experts-info .experts-items .experts-item span {
  font-size: 20px;
  font-family: "Nunito Sans", sans-serif;
  color: #454745;
}
@media (max-width: 767px) {
  .from-experts-block .experts-info .experts-items .experts-item span {
    font-size: 10px;
    line-height: 136.332%;
  }
}
.from-experts-block .experts-info .experts-items .experts-item:nth-child(1) {
  margin-left: 0px;
  transform: rotate(5deg);
}
.from-experts-block .experts-info .experts-items .experts-item:nth-child(2) {
  transform: rotate(1deg);
}
.from-experts-block .experts-info .experts-items .experts-item:nth-child(3) {
  transform: rotate(2deg);
}
.from-experts-block .experts-info .experts-items .experts-item:nth-child(4) {
  transform: rotate(3deg);
}
.from-experts-block .experts-info .experts-items .experts-item:nth-child(5) {
  transform: rotate(4deg);
}
.from-experts-block .experts-info .experts-items .experts-item:nth-child(6) {
  transform: rotate(0deg);
}

.dashboards-block {
  padding: 110px 0;
  background: #9FE870;
}
@media (max-width: 767px) {
  .dashboards-block {
    padding: 64px 0;
  }
}
.dashboards-block h2 {
  margin-bottom: 16px;
  font-size: 48px;
  font-family: "Unbounded", sans-serif;
  font-weight: normal;
  color: #163300;
}
@media (max-width: 1024px) {
  .dashboards-block h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .dashboards-block h2 {
    max-width: 320px;
  }
}
.dashboards-block p {
  font-size: 24px;
  margin-bottom: 48px;
  color: #163300;
  font-family: "Nunito Sans", sans-serif;
}

.dashboards-block .dashboards-items .dashboards-item {
  margin-bottom: 20px;
  border-radius: 32px;
  background: white;
  border-radius: 32px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .dashboards-block .dashboards-items .dashboards-item {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .dashboards-block .dashboards-items .dashboards-item {
    flex-direction: column;
  }
}
.dashboards-block .dashboards-items .dashboards-item .texts {
  padding: 40px;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .dashboards-block .dashboards-items .dashboards-item .texts {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .dashboards-block .dashboards-items .dashboards-item .texts {
    width: 100%;
    padding: 34px;
  }
}
.dashboards-block .dashboards-items .dashboards-item .texts b {
  font-size: 20px;
  color: #054D28;
  font-family: "Unbounded", sans-serif;
  font-weight: normal;
  margin-bottom: 32px;
}
.dashboards-block .dashboards-items .dashboards-item .texts span {
  font-size: 16px;
  color: #454745;
  font-family: "Nunito Sans", sans-serif;
}
.dashboards-block .dashboards-items .dashboards-item .img {
  padding-top: 16px;
  padding-left: 16px;
  display: flex;
  width: 60%;
}
@media (max-width: 767px) {
  .dashboards-block .dashboards-items .dashboards-item .img {
    width: 100%;
    padding-left: 0;
    padding-top: 0;
  }
}
.dashboards-block .dashboards-items .dashboards-item .img img {
  width: 100%;
}

.analysis-example-block {
  padding: 110px 0 120px;
  background: #054D28;
}
@media (max-width: 767px) {
  .analysis-example-block {
    padding: 64px 0;
  }
}
.analysis-example-block h2 {
  margin-bottom: 48px;
  font-size: 48px;
  font-weight: normal;
  color: #9FE870;
  font-family: "Unbounded", sans-serif;
}
@media (max-width: 1024px) {
  .analysis-example-block h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .analysis-example-block h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }
}
.analysis-demo-player {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  padding: 0;
  border-radius: 24px;
  background:
    radial-gradient(120% 90% at 10% -20%, rgba(159, 232, 112, 0.14) 0%, transparent 55%),
    radial-gradient(80% 70% at 100% 0%, rgba(120, 200, 255, 0.06) 0%, transparent 45%),
    linear-gradient(155deg, #0a2216 0%, #0f2e1c 42%, #07140e 100%);
  border: 1px solid rgba(159, 232, 112, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.07) inset,
    0 36px 72px -16px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
.analysis-demo-player::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.03) 50%, transparent 60%);
  opacity: 0.9;
}
.analysis-demo-player__head {
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0%, transparent 100%);
  position: relative;
  z-index: 1;
}
.analysis-demo-player__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.analysis-demo-player__logo-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.analysis-demo-player__head-text {
  min-width: 0;
}
.analysis-demo-player__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(159, 232, 112, 0.85);
  font-family: "Nunito Sans", sans-serif;
  margin-bottom: 6px;
}
.analysis-demo-player__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96);
  font-family: "Nunito Sans", sans-serif;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
@media (max-width: 767px) {
  .analysis-demo-player__head {
    padding: 18px 18px 14px;
  }
  .analysis-demo-player__title {
    font-size: 14px;
  }
  .analysis-demo-player__logo-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
}
.analysis-demo-player__row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 22px 22px;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.analysis-demo-player__controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.analysis-demo-player__play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(145deg, #b8f090 0%, #9fe870 45%, #7ed956 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 10px 28px rgba(159, 232, 112, 0.35),
    0 2px 8px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.2s ease;
}
.analysis-demo-player__play:hover {
  transform: scale(1.05);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 14px 36px rgba(159, 232, 112, 0.42),
    0 4px 12px rgba(0, 0, 0, 0.22);
}
.analysis-demo-player__play:active {
  transform: scale(0.97);
}
.analysis-demo-player__play--playing {
  box-shadow:
    0 0 0 3px rgba(159, 232, 112, 0.25),
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 10px 28px rgba(159, 232, 112, 0.4);
  animation: analysis-demo-play-glow 2s ease-in-out infinite;
}
.analysis-demo-player__play:focus-visible {
  outline: 2px solid #9fe870;
  outline-offset: 3px;
}
@keyframes analysis-demo-play-glow {
  0%,
  100% {
    box-shadow:
      0 0 0 3px rgba(159, 232, 112, 0.2),
      0 1px 0 rgba(255, 255, 255, 0.35) inset,
      0 10px 28px rgba(159, 232, 112, 0.35);
  }
  50% {
    box-shadow:
      0 0 0 5px rgba(159, 232, 112, 0.12),
      0 1px 0 rgba(255, 255, 255, 0.35) inset,
      0 12px 32px rgba(159, 232, 112, 0.45);
  }
}
@media (prefers-reduced-motion: reduce) {
  .analysis-demo-player__play--playing {
    animation: none;
  }
}
.analysis-demo-player__play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 13px;
  border-color: transparent transparent transparent #0d2818;
  margin-left: 3px;
}
.analysis-demo-player__pause-icon {
  display: flex;
  gap: 5px;
}
.analysis-demo-player__pause-icon::before,
.analysis-demo-player__pause-icon::after {
  content: "";
  width: 5px;
  height: 17px;
  border-radius: 2px;
  background: #0d2818;
}
.analysis-demo-player__wave-wrap {
  flex: 1;
  min-width: 0;
  padding: 14px 16px 12px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 38%),
    rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 12px 32px rgba(0, 0, 0, 0.22);
}
.analysis-demo-player__wave {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0;
  height: 96px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.analysis-demo-player__track {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 50%;
  bottom: auto;
  height: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
  transform: translateY(-50%);
  box-shadow: 0 0 20px rgba(159, 232, 112, 0.08);
}
.analysis-demo-player__playhead-line {
  position: absolute;
  top: 6px;
  bottom: 6px;
  width: 2px;
  margin-left: -1px;
  border-radius: 2px;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(216, 248, 184, 0.95) 18%,
    #9fe870 50%,
    rgba(216, 248, 184, 0.85) 82%,
    rgba(255, 255, 255, 0) 100%
  );
  box-shadow:
    0 0 14px rgba(159, 232, 112, 0.85),
    0 0 28px rgba(159, 232, 112, 0.35);
}
.analysis-demo-player__segment {
  flex: 1;
  display: flex;
  align-items: center;
  align-self: stretch;
  min-width: 0;
  min-height: 0;
  position: relative;
  z-index: 1;
}
.analysis-demo-player__sep {
  flex-shrink: 0;
  width: 32px;
  height: 8px;
  align-self: center;
  margin: 0 2px;
  opacity: 0.85;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.95) 1.5px,
    transparent 1.6px
  );
  background-size: 8px 8px;
  background-repeat: repeat-x;
  background-position: center;
}
.analysis-demo-player__bars {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2px;
  padding: 8px 6px;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.analysis-demo-player__bars--audio {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  height: 78%;
  padding: 0 2px;
  align-items: center;
  overflow: visible;
  z-index: 2;
  gap: 1px;
}
.analysis-demo-player__bar {
  flex: 1 1 0;
  min-width: 0;
  max-width: 4px;
  align-self: center;
  flex-shrink: 1;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(200, 220, 235, 0.45) 55%,
    rgba(255, 255, 255, 0.2) 100%
  );
  transition:
    background 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
  transform-origin: center center;
}
.analysis-demo-player__bars--audio .analysis-demo-player__bar {
  position: relative;
  overflow: hidden;
}
.analysis-demo-player__bars--audio .analysis-demo-player__bar::after {
  display: none;
}
.analysis-demo-player__bar.is-played {
  background: linear-gradient(180deg, #e8ffd4 0%, #9fe870 38%, #5cb83a 100%);
  box-shadow:
    0 0 12px rgba(159, 232, 112, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.35) inset;
}
.analysis-demo-player__bar.is-played.is-active {
  background: linear-gradient(180deg, #f4ffea 0%, #b8f090 35%, #7ed956 100%);
  box-shadow: 0 0 14px rgba(159, 232, 112, 0.55);
}
.analysis-demo-player__bar.is-active {
  filter: brightness(1.08);
  box-shadow:
    0 0 18px rgba(159, 232, 112, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.35);
  z-index: 2;
}
.analysis-demo-player__dot {
  position: absolute;
  top: 50%;
  bottom: auto;
  width: 11px;
  height: 11px;
  margin-left: -5px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #d8f8b8, #9fe870 55%, #6bc24a);
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 0 10px rgba(159, 232, 112, 0.9),
    0 2px 8px rgba(0, 0, 0, 0.35);
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}
.analysis-demo-player__progress {
  position: relative;
  height: 22px;
  margin: 12px 4px 4px;
  cursor: pointer;
}
.analysis-demo-player__progress-track,
.analysis-demo-player__progress-fill {
  position: absolute;
  top: 50%;
  left: 0;
  height: 6px;
  border-radius: 999px;
  transform: translateY(-50%);
}
.analysis-demo-player__progress-track {
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.analysis-demo-player__progress-fill {
  width: 0;
  background: linear-gradient(90deg, #4a9a3a 0%, #9fe870 45%, #d8f8b8 100%);
  box-shadow: 0 0 12px rgba(159, 232, 112, 0.55);
}
.analysis-demo-player__progress-thumb {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle at 32% 28%, #ffffff, #d8f8b8 42%, #9fe870 100%);
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 0 14px rgba(159, 232, 112, 0.65),
    0 2px 8px rgba(0, 0, 0, 0.35);
}
.analysis-demo-player__progress-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.analysis-demo-player__meta {
  margin: 6px 4px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.analysis-demo-player__time {
  font-size: 12px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  font-family: ui-monospace, "Cascadia Mono", "Segoe UI Mono", monospace;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.analysis-demo-player__extra-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.analysis-demo-player__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0.15) 100%);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}
.analysis-demo-player__icon-btn:hover {
  border-color: rgba(159, 232, 112, 0.45);
  background: linear-gradient(180deg, rgba(159, 232, 112, 0.12) 0%, rgba(0, 0, 0, 0.12) 100%);
  transform: translateY(-1px);
}
.analysis-demo-player__icon-btn:active {
  transform: translateY(0);
}
.analysis-demo-player__icon-btn:focus-visible {
  outline: 2px solid #9fe870;
  outline-offset: 2px;
}
.analysis-demo-player__icon-btn--muted {
  border-color: rgba(255, 120, 120, 0.35);
  background: linear-gradient(180deg, rgba(255, 100, 100, 0.12) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.analysis-demo-player__icon-btn-label {
  font-size: 12px;
  font-weight: 800;
  font-family: "Nunito Sans", sans-serif;
  letter-spacing: 0.02em;
}
.analysis-demo-player__icon {
  flex-shrink: 0;
  display: block;
}
.analysis-demo-player__icon--speed {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.75);
  box-sizing: border-box;
  position: relative;
}
.analysis-demo-player__icon--speed::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 1px;
  top: 2px;
  right: 1px;
  transform: rotate(35deg);
}
.analysis-demo-player__icon--volume {
  width: 18px;
  height: 14px;
  position: relative;
}
.analysis-demo-player__icon--volume::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.9);
  clip-path: polygon(0 35%, 35% 35%, 100% 0, 100% 100%, 35% 65%, 0 65%);
}
.analysis-demo-player__icon--volume::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-left: none;
  border-radius: 0 10px 10px 0;
  transform: translateY(-50%);
  box-sizing: border-box;
}
.analysis-demo-player__icon-btn--muted .analysis-demo-player__icon--volume::after {
  border-color: rgba(255, 160, 160, 0.9);
  clip-path: polygon(0 0, 100% 100%, 100% 0, 0 100%);
  border: none;
  width: 10px;
  height: 2px;
  background: rgba(255, 160, 160, 0.95);
  border-radius: 1px;
  right: 1px;
  transform: translateY(-50%) rotate(-32deg);
}
.analysis-demo-player__volume {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px 4px 6px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.analysis-demo-player__volume-icon {
  width: 14px;
  height: 11px;
  flex-shrink: 0;
  opacity: 0.75;
  background: linear-gradient(90deg, rgba(159, 232, 112, 0.95), rgba(159, 232, 112, 0.35));
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(159, 232, 112, 0.25);
}
.analysis-demo-player__volume input[type="range"] {
  width: 92px;
  height: 6px;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.analysis-demo-player__volume input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff, #9fe870);
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 10px rgba(159, 232, 112, 0.5);
  cursor: pointer;
}
.analysis-demo-player__volume input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff, #9fe870);
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 10px rgba(159, 232, 112, 0.5);
  cursor: pointer;
}
.analysis-demo-player__volume input[type="range"]::-moz-range-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.analysis-demo-player__hint {
  margin: 0;
  padding: 14px 24px 18px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
  font-family: "Nunito Sans", sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.12);
}
@media (max-width: 767px) {
  .analysis-demo-player {
    border-radius: 18px;
  }
  .analysis-demo-player__row {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px 16px 18px;
  }
  .analysis-demo-player__controls {
    align-self: flex-start;
    flex-direction: row;
    align-items: center;
  }
  .analysis-demo-player__play {
    width: 52px;
    height: 52px;
  }
  .analysis-demo-player__wave-wrap {
    padding: 8px 10px;
  }
  .analysis-demo-player__wave {
    height: 84px;
  }
  .analysis-demo-player__icon-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border-radius: 11px;
  }
  .analysis-demo-player__hint {
    padding: 12px 16px 16px;
  }
  .analysis-demo-player__meta {
    margin: 4px 0 0;
  }
  .analysis-demo-player__volume input[type="range"] {
    width: 72px;
  }
}
.analysis-example-block .text-info {
  background: white;
  border-radius: 24px;
  padding: 24px;
}
.analysis-example-block .text-info .texts {
  max-height: min(70vh, 720px);
  min-height: 280px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
  scrollbar-color: rgba(12, 138, 80, 0.45) rgba(0, 0, 0, 0.06);
}
.analysis-example-block .text-info .texts::-webkit-scrollbar {
  width: 8px;
}
.analysis-example-block .text-info .texts::-webkit-scrollbar-thumb {
  background: rgba(12, 138, 80, 0.35);
  border-radius: 999px;
}
.analysis-example-block .text-info .texts.analysis-example-transcript {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.analysis-example-block .text-info .texts .analysis-example-transcript__dialog {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.analysis-example-block .text-info .texts .analysis-example-transcript__dialog-title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0c8a50;
  font-family: "Nunito Sans", sans-serif;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(12, 138, 80, 0.2);
}
.analysis-example-block .text-info .texts .analysis-example-transcript__lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.analysis-example-block .text-info .texts .analysis-example-transcript__turn {
  display: grid;
  grid-template-columns: minmax(110px, 32%) 1fr;
  gap: 12px 16px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f6faf7;
  border: 1px solid rgba(22, 51, 0, 0.08);
  box-sizing: border-box;
}
@media (max-width: 560px) {
  .analysis-example-block .text-info .texts .analysis-example-transcript__turn {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
.analysis-example-block .text-info .texts .analysis-example-transcript__turn--operator {
  background: linear-gradient(135deg, #f0fdf4 0%, #f6faf7 55%);
  border-color: rgba(12, 138, 80, 0.14);
}
.analysis-example-block .text-info .texts .analysis-example-transcript__turn--client {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-color: rgba(59, 100, 140, 0.12);
}
.analysis-example-block .text-info .texts .analysis-example-transcript__role {
  font-size: 13px;
  font-weight: 800;
  color: #0c8a50;
  font-family: "Nunito Sans", sans-serif;
  line-height: 1.35;
}
.analysis-example-block .text-info .texts .analysis-example-transcript__turn--client .analysis-example-transcript__role {
  color: #1d4e7a;
}
.analysis-example-block .text-info .texts .analysis-example-transcript__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #163300;
  font-family: "Nunito Sans", sans-serif;
}

.works-banner-block {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .works-banner-block {
    padding: 80px 0 40px;
  }
}
.works-banner-block .banner-info {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .works-banner-block .banner-info {
    align-items: flex-start;
    flex-direction: column;
  }
}
.works-banner-block .banner-info .texts {
  padding: 150px 0;
}
@media (max-width: 767px) {
  .works-banner-block .banner-info .texts {
    padding: 0;
  }
}
.works-banner-block .banner-info .texts h1 {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 70px;
  color: #163300;
  font-family: "Unbounded", sans-serif;
  max-width: 630px;
}
@media (max-width: 1024px) {
  .works-banner-block .banner-info .texts h1 {
    max-width: 420px;
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .works-banner-block .banner-info .texts h1 {
    margin-bottom: 20px;
  }
}
.works-banner-block .banner-info .texts h1 .green-text {
  color: #0C8A50;
}
.works-banner-block .banner-info .texts p {
  font-size: 24px;
  color: #454745;
  max-width: 600px;
}
@media (max-width: 1024px) {
  .works-banner-block .banner-info .texts p {
    max-width: 420px;
    font-size: 22px;
  }
}
.works-banner-block .banner-info .info-block {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: -1;
  width: 640px;
}
@media (max-width: 1400px) {
  .works-banner-block .banner-info .info-block {
    width: 45vw;
  }
}
@media (max-width: 1024px) {
  .works-banner-block .banner-info .info-block {
    width: 60vw;
  }
}
@media (max-width: 767px) {
  .works-banner-block .banner-info .info-block {
    width: 100%;
    position: static;
    transform: translateY(0);
    margin-top: 20px;
  }
}
.works-banner-block .banner-info .info-block > img {
  width: 100%;
}
@keyframes works-banner-info-drift-1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(12px, -10px);
  }
  50% {
    transform: translate(8px, -14px);
  }
  75% {
    transform: translate(-10px, 6px);
  }
}
@keyframes works-banner-info-drift-2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(-14px, 8px);
  }
  66% {
    transform: translate(6px, -12px);
  }
}
@keyframes works-banner-info-drift-3 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(10px, 12px);
  }
  50% {
    transform: translate(-8px, 4px);
  }
  80% {
    transform: translate(4px, -10px);
  }
}
@keyframes works-banner-info-drift-4 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-12px, -12px);
  }
}
.works-banner-block .banner-info .info-block .info {
  position: absolute;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 24px 50px 0 rgba(0, 0, 0, 0.1);
  background-color: #FFF;
  display: flex;
  align-items: center;
  will-change: transform;
}
@media (max-width: 1024px) {
  .works-banner-block .banner-info .info-block .info {
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .works-banner-block .banner-info .info-block .info {
    padding: 8px;
    border-radius: 4px;
  }
}
.works-banner-block .banner-info .info-block .info img {
  margin-right: 16px;
}
@media (max-width: 1024px) {
  .works-banner-block .banner-info .info-block .info img {
    margin-right: 8px;
    width: 30px;
  }
}
@media (max-width: 767px) {
  .works-banner-block .banner-info .info-block .info img {
    width: 20px;
  }
}
.works-banner-block .banner-info .info-block .info span {
  font-size: 18px;
  font-weight: 500;
  color: #163300;
  font-family: "Nunito Sans", sans-serif;
}
@media (max-width: 1024px) {
  .works-banner-block .banner-info .info-block .info span {
    font-size: 16px;
  }
}
.works-banner-block .banner-info .info-block .info.info1 {
  left: 0;
  top: 0;
  animation: works-banner-info-drift-1 7s ease-in-out infinite;
}
.works-banner-block .banner-info .info-block .info.info2 {
  right: 0;
  top: 0;
  animation: works-banner-info-drift-2 8s ease-in-out infinite;
  animation-delay: 0.4s;
}
@media (max-width: 767px) {
  .works-banner-block .banner-info .info-block .info.info2 {
    top: 30px;
  }
}
.works-banner-block .banner-info .info-block .info.info3 {
  left: 0;
  bottom: 0;
  animation: works-banner-info-drift-3 6.5s ease-in-out infinite;
  animation-delay: 0.8s;
}
.works-banner-block .banner-info .info-block .info.info4 {
  right: 0;
  bottom: 0;
  animation: works-banner-info-drift-4 7.5s ease-in-out infinite;
  animation-delay: 0.2s;
}
@media (max-width: 767px) {
  .works-banner-block .banner-info .info-block .info.info4 {
    bottom: 30px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .works-banner-block .banner-info .info-block .info.info1,
  .works-banner-block .banner-info .info-block .info.info2,
  .works-banner-block .banner-info .info-block .info.info3,
  .works-banner-block .banner-info .info-block .info.info4 {
    animation: none;
    will-change: auto;
  }
}

/* —— Book demo modal (loads with /landing/css/style.css; not dependent on Tailwind scan) —— */
.book-demo-modal__root {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(12px, env(safe-area-inset-top, 0px)) max(12px, env(safe-area-inset-right, 0px))
    max(12px, env(safe-area-inset-bottom, 0px)) max(12px, env(safe-area-inset-left, 0px));
  box-sizing: border-box;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.book-demo-modal__backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  background: rgba(22, 51, 0, 0.55);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.book-demo-modal__panel {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 24px 80px rgba(22, 51, 0, 0.18);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  max-height: min(92vh, calc(100vh - 48px));
  max-height: min(92dvh, calc(100dvh - max(24px, env(safe-area-inset-top, 0px)) - max(24px, env(safe-area-inset-bottom, 0px))));
  overflow: hidden;
}

.book-demo-modal__scroll {
  flex: 1;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding-right: 4px;
  margin-right: -4px;
}

.book-demo-modal__close {
  position: absolute;
  right: max(12px, env(safe-area-inset-right, 0px));
  top: max(12px, env(safe-area-inset-top, 0px));
  z-index: 2;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #163300;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  transition: background 0.2s ease;
  font-family: "Nunito Sans", sans-serif;
}

.book-demo-modal__close:hover {
  background: #f2e9dc;
}

.book-demo-modal__title {
  margin: 0;
  padding-right: 44px;
  font-size: 20px;
  font-weight: 600;
  color: #163300;
  font-family: "Nunito Sans", sans-serif;
}

.book-demo-modal__text {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(22, 51, 0, 0.82);
  font-family: "Nunito Sans", sans-serif;
}

.book-demo-modal__actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.book-demo-modal__btn-secondary {
  cursor: pointer;
  border-radius: 50px;
  border: 1px solid rgba(22, 51, 0, 0.25);
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  color: #163300;
  background: #fff;
  font-family: "Nunito Sans", sans-serif;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.book-demo-modal__btn-secondary:hover {
  border-color: #163300;
}

.book-demo-modal__form {
  padding-right: 8px;
  padding-bottom: 4px;
}

.book-demo-modal__form .book-demo-modal__field {
  display: block;
  margin-top: 16px;
}

.book-demo-modal__form .book-demo-modal__field--first {
  margin-top: 20px;
}

.book-demo-modal__error {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.4;
  color: #b42318;
  font-family: "Nunito Sans", sans-serif;
}

@media (max-width: 720px) {
  .book-demo-modal__root {
    align-items: flex-end;
    justify-content: stretch;
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .book-demo-modal__panel {
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 22px 22px 0 0;
    padding: max(20px, env(safe-area-inset-top)) 18px max(20px, env(safe-area-inset-bottom));
    max-height: min(94vh, calc(100vh - env(safe-area-inset-top, 0px)));
    max-height: min(94dvh, calc(100dvh - env(safe-area-inset-top, 0px)));
    box-shadow: 0 -8px 40px rgba(22, 51, 0, 0.12);
  }

  .book-demo-modal__close {
    width: 44px;
    height: 44px;
    top: max(10px, calc(env(safe-area-inset-top, 0px) + 6px));
    right: max(10px, env(safe-area-inset-right, 0px));
    font-size: 26px;
    background: rgba(242, 233, 220, 0.65);
  }

  .book-demo-modal__title {
    padding-right: 52px;
    padding-top: 2px;
  }

  .book-demo-modal__scroll {
    padding-right: 0;
    margin-right: 0;
  }

  .book-demo-modal__form {
    padding-right: 0;
  }

  .book-demo-modal__success {
    padding-right: 0;
  }

  .book-demo-modal__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .book-demo-modal__actions .green-btn,
  .book-demo-modal__actions .book-demo-modal__btn-secondary {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  .book-demo-modal__input,
  .book-demo-modal__select {
    min-height: 48px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 16px;
  }

  .book-demo-modal__submit.green-btn {
    min-height: 52px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

}

@media (max-width: 720px) and (orientation: landscape) {
  .book-demo-modal__panel {
    max-height: min(88vh, 100vh);
    max-height: min(88dvh, 100dvh);
    border-radius: 16px 16px 0 0;
  }
}

@media (max-width: 400px) {
  .book-demo-modal__panel {
    padding-left: 14px;
    padding-right: 14px;
  }
}

.book-demo-modal__label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #163300;
  font-family: "Nunito Sans", sans-serif;
}

.book-demo-modal__input,
.book-demo-modal__select {
  width: 100%;
  box-sizing: border-box;
  border-radius: 12px;
  border: 1px solid rgba(22, 51, 0, 0.2);
  padding: 10px 12px;
  font-size: 16px;
  color: #163300;
  font-family: "Nunito Sans", sans-serif;
  background: #fff;
}

.book-demo-modal__input:focus,
.book-demo-modal__select:focus {
  outline: none;
  border-color: #9fe870;
  box-shadow: 0 0 0 2px rgba(159, 232, 112, 0.35);
}

.book-demo-modal__input::placeholder {
  color: rgba(22, 51, 0, 0.4);
}

.book-demo-modal__submit {
  margin-top: 24px;
  width: 100%;
  box-sizing: border-box;
}

.book-demo-modal__success {
  padding-right: 8px;
}

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