@charset "UTF-8";
body {
  font-family: "Inter", sans-serif;
  margin: 0;
  color: #888;
  background: #fff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

.topbar {
  background: #f5f8f7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 8px 60px;
  font-size: 14px;
  line-height: 1.4;
}
@media (max-width: 992px) {
  .topbar {
    display: none;
  }
}
.topbar strong {
  color: #3ea56a;
}
.topbar a {
  color: #888;
  text-decoration: none;
  font-style: italic;
}
@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 10px;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  border-bottom: 1px solid #e6e6e6;
  background: #fff;
}
.header-main .logo img {
  width: 200px;
  height: auto;
}
.header-main .nav {
  display: flex;
  gap: 35px;
}
.header-main .nav a {
  position: relative;
  text-decoration: none;
  color: #888;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}
.header-main .nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #3ea56a;
  transition: width 0.3s ease;
}
.header-main .nav a:hover {
  color: #3ea56a;
}
.header-main .nav a:hover::after {
  width: 100%;
}
@media (max-width: 992px) {
  .header-main .nav {
    display: none;
  }
}
.header-main .icons {
  display: flex;
  gap: 10px;
}
.header-main .icons a {
  width: 40px;
  height: 40px;
  background: #3ea56a;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
}
.header-main .icons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(62, 165, 106, 0.5);
  opacity: 1;
}
.header-main .icons a img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}
@media (max-width: 992px) {
  .header-main .icons {
    display: none;
  }
}
.header-main .burger {
  font-size: 40px;
  cursor: pointer;
  display: none;
}
@media (max-width: 992px) {
  .header-main .burger {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  transform: translateX(100%);
  transition: all 0.3s ease;
  z-index: 999;
  text-align: center;
  padding: 60px 20px;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu .close {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 28px;
  cursor: pointer;
}
.mobile-menu .logo img {
  width: 180px;
  height: auto;
  margin-bottom: 40px;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 40px;
}
.mobile-menu nav a {
  text-decoration: none;
  color: #888;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.mobile-menu nav a:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(62, 165, 106, 0.5);
  opacity: 1;
}
.mobile-menu .contacts {
  font-size: 15px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 30px;
}
.mobile-menu .contacts strong {
  color: #3ea56a;
}
.mobile-menu .contacts p {
  margin: 6px 0;
}
.mobile-menu .icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.mobile-menu .icons a {
  width: 40px;
  height: 40px;
  background: #3ea56a;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.mobile-menu .icons a:hover {
  opacity: 0.9;
}
.mobile-menu .icons a img {
  object-fit: contain;
  display: block;
}

.hero {
  position: relative;
  height: 90vh;
  background: url("./images/banner.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}
.hero .hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 0 40px;
}
.hero .hero__text h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero .hero__text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}
.hero .hero__text .hero__buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .hero .hero__text .hero__buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .hero .hero__text h1 {
    font-size: 32px;
  }
  .hero .hero__text p {
    font-size: 16px;
  }
  .hero .hero__buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

.about {
  padding: 100px 20px;
  background: #fff;
  text-align: center;
}
.about .section-subtitle {
  color: #3ea56a;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
}
.about .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0c1a1a;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .about .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}
.about .about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
}
.about .about__grid .card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  text-align: left;
}
.about .about__grid .card img {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}
.about .about__grid .card h3 {
  color: #0c1a1a;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.about .about__grid .card p {
  color: #6c757d;
  font-size: 15px;
  line-height: 1.6;
}
.about .about__grid .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(62, 165, 106, 0.2);
}
.about .about__grid .card:hover h3 {
  color: #3ea56a;
}
.about .about__cta {
  margin-top: 60px;
  font-size: 16px;
  color: #333;
}
.about .about__cta a {
  color: #3ea56a;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.about .about__cta a:hover {
  border-color: #3ea56a;
}

.features {
  background: linear-gradient(90deg, #1e9dd9 0%, #26a884 100%);
  color: #fff;
  padding: 50px 20px;
}
.features .features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.features .features__grid .feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  position: relative;
}
.features .features__grid .feature:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 0;
  height: 100%;
  width: 2px;
  background: rgba(255, 255, 255, 0.2);
}
.features .features__grid .feature img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
.features .features__grid .feature .text h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
}
.features .features__grid .feature .text p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 992px) {
  .features .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .features .features__grid .feature:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 600px) {
  .features .features__grid {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }
  .features .features__grid .feature {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

.services {
  background: #f6f9f8;
  padding: 100px 0;
  text-align: center;
}
.services .section-subtitle {
  color: #3ea56a;
  font-weight: 500;
  margin-bottom: 10px;
}
.services .section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0c1a1a;
}
.services .section-description {
  max-width: 700px;
  margin: 0 auto 60px;
  color: #888;
  font-size: 18px;
  line-height: 1.6;
}
.services .services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  text-align: left;
}
@media (max-width: 768px) {
  .services .services__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.services .service {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.services .service .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #3ea56a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.services .service .icon img {
  width: 30px;
  height: 30px;
}
.services .service .text h3 {
  font-weight: 700;
  color: #0c1a1a;
  margin-bottom: 8px;
  font-size: 18px;
}
.services .service .text p {
  color: #888;
  line-height: 1.5;
  font-size: 16px;
}

.commitments {
  padding: 100px 0;
  background: #fff;
  text-align: center;
}
.commitments .section-subtitle {
  color: #3ea56a;
  font-weight: 500;
  margin-bottom: 10px;
}
.commitments .section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0c1a1a;
}
.commitments .section-description {
  max-width: 900px;
  margin: 0 auto 60px;
  color: #888;
  line-height: 1.6;
}
.commitments .commitments__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  text-align: left;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .commitments .commitments__grid {
    grid-template-columns: 1fr;
  }
}
.commitments .commitment {
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.commitments .commitment .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #3ea56a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.commitments .commitment .icon img {
  width: 18px;
  height: 18px;
}
.commitments .commitment h3 {
  font-weight: 700;
  color: #0c1a1a;
  margin-bottom: 5px;
  font-size: 18px;
}
.commitments .commitment p {
  color: #888;
  font-size: 16px;
  line-height: 1.5;
}

.contact-cta {
  background: linear-gradient(120deg, #219bda 0%, #41bfa6 50%, #24a96b 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}
.contact-cta .container {
  max-width: 1100px;
  margin: 0 auto;
}
.contact-cta .icon {
  margin-bottom: 20px;
}
.contact-cta .icon img {
  width: 48px;
  height: 48px;
  opacity: 0.95;
}
.contact-cta h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .contact-cta h2 {
    font-size: 28px;
  }
}
.contact-cta .contact-cta__text {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-cta .contact-cta__text a {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
  transition: all 0.3s ease;
}
.contact-cta .contact-cta__text a:hover {
  color: #c7f9cc;
}
.contact-cta .contact-cta__subtext {
  font-size: 16px;
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 40px;
}
.contact-cta .contact-cta__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.contact-cta .contact-cta__buttons .btn {
  min-width: 240px;
  text-align: center;
}
@media (max-width: 768px) {
  .contact-cta .contact-cta__buttons {
    flex-direction: column;
    gap: 15px;
  }
  .contact-cta .contact-cta__buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

.priorities {
  background: #f6f9f8;
  padding: 120px 0;
  text-align: center;
}
.priorities .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.priorities .section-subtitle {
  color: #3ea56a;
  font-weight: 500;
  margin-bottom: 14px;
}
.priorities .section-title {
  font-size: 42px;
  font-weight: 700;
  color: #0c1a1a;
  margin-bottom: 24px;
}
.priorities .section-description {
  font-weight: 600;
  margin-bottom: 80px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.priorities .priorities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 60px;
  justify-items: stretch;
}
@media (max-width: 1024px) {
  .priorities .priorities__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .priorities .priorities__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.priorities .priority {
  background: #fff;
  padding: 48px 36px;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.35s ease;
}
.priorities .priority:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}
.priorities .priority h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0c1a1a;
  margin-bottom: 16px;
  line-height: 1.5;
}
.priorities .priority p {
  font-size: 17px;
  color: #888;
  line-height: 1.8;
}

.contact {
  position: relative;
  background: url("./images/banner_2.jpg") center/cover no-repeat;
  padding: 100px 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}
.contact .contact__content {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  padding: 0 40px;
}
.contact .contact__form {
  position: relative;
  z-index: 2;
  width: 480px;
  background: #fff;
  padding: 50px 60px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  overflow: hidden;
}
.contact .contact__form .section-subtitle {
  color: #3ea56a;
  font-weight: 500;
  margin-bottom: 10px;
}
.contact .contact__form .section-title {
  font-size: 28px;
  font-weight: 700;
  color: #0c1a1a;
  margin-bottom: 15px;
  line-height: 1.4;
}
.contact .contact__form .section-description {
  color: #888;
  margin-bottom: 30px;
  line-height: 1.6;
}
.contact .contact__form .form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact .contact__form .form .form-group {
  display: flex;
  flex-direction: column;
}
.contact .contact__form .form .form-group input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 18px;
  border-radius: 50px;
  border: none;
  background: #f3f6f5;
  font-size: 16px;
  transition: 0.3s ease;
}
.contact .contact__form .form .form-group input:focus {
  outline: none;
  background: #eaf4ef;
  box-shadow: 0 0 0 2px rgba(62, 165, 106, 0.3);
}
.contact .contact__form .form .form-checkbox {
  font-size: 14px;
  color: #888;
  text-align: left;
}
.contact .contact__form .form .form-checkbox a {
  color: #3ea56a;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
}
.contact .contact__form .form .form-checkbox a:hover {
  border-color: #3ea56a;
}
.contact .contact__form .form .form-checkbox input {
  margin-right: 8px;
  accent-color: #3ea56a;
}
@media (max-width: 992px) {
  .contact {
    justify-content: center;
  }
  .contact .contact__content {
    justify-content: center;
    padding: 0 20px;
  }
  .contact .contact__form {
    width: 90%;
    padding: 40px 30px;
  }
}
@media (max-width: 576px) {
  .contact .contact__form {
    width: 92%;
    padding: 35px 20px;
    border-radius: 14px;
  }
  .contact .section-title {
    font-size: 24px;
  }
  .contact .form-group input {
    font-size: 15px;
    padding: 12px 16px;
  }
}

.footer {
  background: #121d20;
  color: #cfd9d7;
  padding: 60px 0 0;
  font-size: 15px;
  line-height: 1.6;
  /* === 1. ЛОГО + ОПИСАНИЕ === */
  /* === 2. НАВИГАЦИЯ === */
  /* === 3. КОНТАКТЫ === */
  /* === 4. НИЖНЯЯ СТРОКА === */
  /* === АДАПТИВ === */
}
.footer .footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px 60px;
  margin-bottom: 40px;
}
.footer .footer__col {
  flex: 1 1 280px;
  min-width: 220px;
}
.footer .footer__about {
  max-width: 340px;
}
.footer .footer__about .footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.footer .footer__about .footer__logo img {
  width: 200px;
  height: auto;
  max-width: 100%;
}
.footer .footer__about .footer__logo p {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
}
.footer .footer__about .footer__desc {
  color: #b8c1bf;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.5;
}
.footer .footer__about .icons {
  display: flex;
  gap: 10px;
}
.footer .footer__about .icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  transition: 0.25s ease;
}
.footer .footer__about .icons a:hover {
  transform: translateY(-2px);
}
.footer .footer__nav h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
}
.footer .footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .footer__nav ul li {
  margin-bottom: 6px;
}
.footer .footer__nav ul li a {
  color: #cfd9d7;
  text-decoration: none;
  font-weight: 500;
  transition: 0.25s ease;
}
.footer .footer__nav ul li a:hover {
  color: #3ea56a;
  transform: translateX(3px);
}
.footer .footer__contacts h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
}
.footer .footer__contacts ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .footer__contacts ul li {
  margin-bottom: 6px;
  font-size: 14px;
  color: #cfd9d7;
  line-height: 1.5;
}
.footer .footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
  margin-top: 20px;
}
.footer .footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer .footer__bottom p {
  margin: 0;
  font-size: 13px;
  color: #9ca5a3;
}
@media (max-width: 992px) {
  .footer {
    padding: 40px 0 0;
  }
  .footer .footer__content {
    justify-content: center;
    text-align: center;
    gap: 30px;
  }
  .footer .footer__about,
.footer .footer__nav,
.footer .footer__contacts {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .footer .footer__about .footer__logo {
    justify-content: center;
  }
  .footer .footer__about .footer__logo img {
    width: 180px;
  }
  .footer .footer__about .icons {
    justify-content: center;
  }
  .footer .footer__bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }
}

.btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  white-space: nowrap;
  box-sizing: border-box;
}

.btn-green {
  background: linear-gradient(120deg, #24a96b 0%, #41bfa6 50%, #219bda 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(33, 155, 218, 0.3);
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(33, 155, 218, 0.4);
  background: linear-gradient(120deg, #2ec07d 0%, #4ed0b4 50%, #28a4e3 100%);
}
.btn-green:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(33, 155, 218, 0.25);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(62, 165, 106, 0.8);
  color: #3ea56a;
  transition: all 0.3s ease;
  box-shadow: none;
}
.btn-outline:hover {
  background: linear-gradient(120deg, #24a96b 0%, #41bfa6 50%, #219bda 100%);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(33, 155, 218, 0.25);
}
.btn-outline:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(33, 155, 218, 0.15);
}
.btn-outline.btn-light {
  border-color: #fff;
  color: #fff;
}
.btn-outline.btn-light:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #eafff4;
  border-color: #fff;
}

.hero__buttons,
.contact-cta__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero__buttons .btn,
.contact-cta__buttons .btn {
  min-width: 240px;
  text-align: center;
}
@media (max-width: 768px) {
  .hero__buttons,
.contact-cta__buttons {
    flex-direction: column;
    gap: 15px;
  }
  .hero__buttons .btn,
.contact-cta__buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

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