@charset "UTF-8";
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

body {
  font-family: "Unbounded", sans-serif;
  font-style: normal;
  font-size: 16px;
  color: white;
  background-color: white;
  scroll-behavior: smooth;
  margin: 0;
  width: 100vw;
  height: 100vh;
  background-image: url(../images/back.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #000;
  background-attachment: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: rgba(0, 0, 0, 0);
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0);
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

:root {
  --color-accent: #27d1a0;
  --color-light-base: #ffffff;
  --color-light-second: #ffffffcc;
  --color-dark-base: #1e1f21;
  --color-dark-second: #1e1f21cc;
  --color-dark-light: #56585c;
  --font-main-title: clamp(1.75rem, 1.3929rem + 1.7857vw, 3rem);
  --font-main-text: clamp(1rem, 0.9643rem + 0.1786vw, 1.125rem);
  --font-sub-title: clamp(0.875rem, 0.625rem + 1.25vw, 1.75rem);
  --line-height-main-title: clamp(2.813rem, 2.33rem + 2.411vw, 4.5rem);
  --line-height-main-text: clamp(1.375rem, 1.321rem + 0.268vw, 1.563rem);
  --line-height-sub-title: clamp(1.125rem, 0.929rem + 0.982vw, 1.813rem);
  --section-gap: clamp(3.438rem, 2.634rem + 4.018vw, 6.25rem);
  --container-width: 1280px;
  --small-gap: 15px;
  --md-gap: 32px;
  --large-gap: 60px;
}

.about {
  padding: 120px 0;
  color: #fff;
}
.about__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
}
.about__intro {
  font-size: 20px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 16px;
}
.about__text {
  font-size: 18px;
  line-height: 1.6;
  color: #bdbdbd;
  margin-bottom: 20px;
}
.about__features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0;
}
.about__features > div {
  flex: 1 1 30%;
  text-align: center;
}
.about__features strong {
  font-size: 40px;
  color: #00ffb2;
  display: block;
}
.about__features span {
  font-size: 16px;
  color: #aaa;
}
.about__list ul {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  gap: 10px;
}
.about__list ul li {
  position: relative;
  padding-left: 20px;
  font-size: 17px;
  line-height: 1.5;
  color: #ddd;
}
.about__list ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00ffb2;
}

.wrapper {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.small-svg {
  width: 20px;
  height: 20px;
}

.medium-svg {
  width: 28px;
  height: 28px;
}

.big-svg {
  width: 50px;
  height: 50px;
}

.accent {
  color: var(--color-accent);
}

.main__button {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  box-sizing: border-box;
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-dark-base);
  border: 2px solid var(--color-accent);
  border-radius: 4px;
  transition: all 0.3s;
  font-size: 14px;
  padding: 9px 28px;
  font-weight: 600;
  line-height: 20px;
}
.main__button a {
  color: var(--color-dark-base);
}

.main__button:hover {
  background: var(--color-white-100);
  color: var(--color-accent);
}
.main__button:hover a {
  color: var(--color-accent);
}

.secondary__button {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  box-sizing: border-box;
  display: inline-block;
  background: transparent;
  color: var(--color-light-base);
  border: 2px solid var(--color-light-base);
  border-radius: 4px;
  transition: all 0.3s;
  padding: 9px 28px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}
.secondary__button a {
  color: var(--color-light-base);
}

.secondary__button:hover {
  background: var(--color-light-base);
  color: var(--color-dark-base);
}
.secondary__button:hover a {
  color: var(--color-dark-base);
}

.burger {
  display: none;
  position: relative;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
}
@media (max-width: 1024px) {
  .burger {
    display: block;
  }
}

.burger__icon {
  width: 100%;
  height: 100%;
  color: var(--color-white-100);
  transition: transform 0.3s ease, color 0.3s ease;
}
.burger:hover .burger__icon {
  color: var(--color-accent);
}
.burger.active .burger__icon {
  transform: rotate(90deg);
  opacity: 0.7;
}

.burger__icon {
  position: absolute;
  top: -9px;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--color-white-100);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.burger:hover .burger__icon {
  color: var(--color-accent);
}

.burger__open {
  opacity: 1;
}
.burger.active .burger__open {
  opacity: 0;
  transform: rotate(90deg);
}

.burger__close {
  opacity: 0;
  transform: rotate(-90deg);
}
.burger.active .burger__close {
  opacity: 1;
  transform: rotate(0deg);
}

/* ===============================
   COOKIE BANNER (styled for site)
=================================*/
#cookie-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  width: calc(100% - 40px);
  max-width: 980px;
  background: var(--color-light-base);
  color: var(--color-dark-base);
  padding: 24px 28px;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  /* shown by JS */
  align-items: left;
  justify-content: space-between;
  gap: 24px;
  z-index: 9999;
  font-family: "Unbounded", sans-serif;
}

#cookie-banner .left {
  flex: 1;
}

.btn-second {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  background: var(--color-dark-base);
  border: 2px solid var(--color-dark-base);
  color: var(--color-light-base);
  padding: 10px 28px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.btn-third {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  background: transparent;
  border: 2px solid var(--color-dark-base);
  color: var(--color-dark-base);
  padding: 10px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

#cookie-banner p {
  margin: 0 0 8px;
  color: var(--color-dark-second);
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cookie strong {
  padding-bottom: 10px;
}

.btn-primary {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  background: var(--color-accent);
  border: 2px solid var(--color-accent);
  color: var(--color-dark-base);
  padding: 10px 28px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.button__cover {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 12px;
}

.cookie-actions .btn-primary:hover {
  background: var(--color-light-base);
  color: var(--color-accent);
}

.cookie-actions .btn-secondary {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  background: transparent;
  border: 2px solid var(--color-dark-base);
  color: var(--color-dark-base);
  padding: 10px 28px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.cookie-actions .btn-secondary:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

/* ===============================
   COOKIE SETTINGS PANEL
=================================*/
#cookie-panel {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 94%;
  max-width: 700px;
  transform: translate(-50%, -50%);
  background: var(--color-light-base);
  border-radius: 8px;
  padding: 32px 30px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  z-index: 10000;
  display: none;
  font-family: "Unbounded", sans-serif;
}

#cookie-panel h3 {
  margin: 0 0 6px;
  font-size: var(--font-main-title);
  line-height: var(--line-height-main-title);
  color: var(--color-dark-base);
}

/* Category blocks */
.category {
  color: var(--color-dark-base);
  padding: 16px 18px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #e8e8e8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fafafa;
}

.category .desc {
  max-width: 80%;
}

.category .desc h4 {
  margin: 0 0 4px;
  font-size: var(--font-main-text);
  font-weight: 600;
}

.category .desc p {
  margin: 0;
  font-size: 14px;
  color: var(--color-dark-second);
}

/* Toggle switch styled for your theme */
.toggle {
  position: relative;
  width: 46px;
  height: 26px;
  border-radius: 20px;
  background: var(--color-dark-second);
  cursor: pointer;
  transition: 0.25s;
}

.toggle input {
  display: none;
}

.toggle .switch {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-light-base);
  transition: 0.25s;
}

/* ON STATE */
.toggle.on {
  background: var(--color-accent);
}

.toggle.on .switch {
  left: 23px;
}

/* Panel buttons */
#cookie-panel .panel-actions {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

/* Use your global button visuals */
#cookie-panel .panel-actions .btn-primary {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  background: var(--color-accent);
  border: 2px solid var(--color-accent);
  color: var(--color-dark-base);
  padding: 10px 28px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

#cookie-panel .panel-actions .btn-primary:hover {
  background: var(--color-light-base);
  color: var(--color-accent);
}

#cookie-panel .panel-actions .btn-secondary {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  background: transparent;
  border: 2px solid var(--color-dark-base);
  color: var(--color-dark-base);
  padding: 10px 28px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

#cookie-panel .panel-actions .btn-secondary:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

/* Small text */
.small {
  font-size: 10px;
  color: var(--color-dark-second);
  margin-top: 8px;
}

.small-top {
  font-size: 11px;
  color: var(--color-dark-second);
  margin-bottom: var(--md-gap);
}

.links a {
  color: var(--color-accent);
  text-decoration: none;
  cursor: pointer;
}

.cookie-controls {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.desc {
  margin-top: 4px;
  font-size: 14px;
  color: var(--color-light-base);
}

/* MOBILE */
@media (max-width: 720px) {
  #cookie-banner {
    flex-direction: column;
    gap: 18px;
  }
  .cookie-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  #cookie-panel {
    padding: 26px 22px;
  }
  .btn-primary,
  .btn-second,
  .btn-third {
    font-size: xx-small;
    padding: 5px 12px;
  }
}
.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 36px 0;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--color-light-base);
}
.header__title {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-title);
}
.header__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.header__nav-item {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-text);
  font-weight: 500;
  color: var(--color-light-second);
  transition: color 0.3s;
  padding: 9px 28px;
  border: 1px solid transparent;
}
.header__nav-item:hover {
  color: var(--color-accent);
  border-radius: 5px;
  border: 1px solid var(--color-accent);
}

.hero {
  padding: 100px 0;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 90px;
}
.hero__container {
  flex: 0 1 70%;
  text-align: left;
}
.hero__title-main {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-title);
  font-weight: 500;
  line-height: var(--line-height-main-title);
  text-align: left;
  color: var(--color-light-base);
  font-size: clamp(1.875rem, 1.446rem + 2.143vw, 3.375rem);
  margin-bottom: 32px;
}
.hero__text {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-text);
  text-align: left;
  font-weight: 400;
  line-height: var(--line-height-main-text);
  color: var(--color-light-second);
  margin-bottom: 50px;
}

/* Заголовок секции */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-label {
  display: inline-block;
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--color-light-base);
}

.section-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-light-second);
  max-width: 650px;
  margin: 0 auto;
}

/* Сетка компетенций - без явных границ */
.competencies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.competency-card {
  position: relative;
  padding: 0;
  transition: transform 0.3s ease;
}

.competency-card:hover {
  transform: translateX(8px);
}

/* Номер */
.competency-number {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-light-base);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

/* Заголовок */
.competency-title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.3;
}

/* Описание */
.competency-description {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.competency-card:hover::before {
  opacity: 1;
}

/* Адаптивность */
@media (max-width: 968px) {
  .competencies-wrapper {
    padding: 80px 0;
  }
  .section-title {
    font-size: 32px;
  }
  .competencies-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .competency-title {
    font-size: 22px;
  }
  .bg-decoration {
    display: none;
  }
}
@media (max-width: 640px) {
  .competencies-wrapper {
    padding: 60px 0;
  }
  .section-header {
    margin-bottom: 50px;
  }
  .section-title {
    font-size: 26px;
  }
  .section-subtitle {
    font-size: 16px;
  }
  .competency-title {
    font-size: 20px;
  }
  .competency-description {
    font-size: 15px;
  }
  .competencies-grid {
    gap: 40px;
  }
}
/* Parallax эффект через CSS (можно усилить через JS) */
@media (prefers-reduced-motion: no-preference) {
  .competencies-background {
    transform: translateZ(-1px) scale(1.1);
  }
}
/* Стили для переключателя языков */
.language-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  gap: 5px;
  background: rgba(255, 255, 255, 0.95);
  padding: 5px;
  border-radius: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.lang-btn {
  padding: 8px 16px;
  border: none;
  background: transparent;
  color: #333;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.lang-btn:hover {
  background: rgba(227, 30, 36, 0.1);
  color: #e31e24;
}

.lang-btn.active {
  background: #e31e24;
  color: white;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
  .language-switcher {
    top: 10px;
    right: 10px;
    padding: 3px;
  }
  .lang-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}
/* Альтернативный стиль - можно использовать вместо фиксированного положения */
.language-switcher.inline {
  position: static;
  margin-left: auto;
}

/* Темная тема (опционально) */
@media (prefers-color-scheme: dark) {
  .language-switcher {
    background: rgba(30, 30, 30, 0.95);
  }
  .lang-btn {
    color: #fff;
  }
  .lang-btn:hover {
    background: rgba(227, 30, 36, 0.2);
  }
}
.service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--md-gap);
  padding: 50px 0;
}
.service__text {
  flex: 0 1 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--small-gap);
}
.service__title {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  color: var(--color-light-base);
  font-size: var(--font-sub-title);
  font-weight: 500;
  line-height: var(--line-height-sub-title);
}
.service__desc {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-text);
  text-align: left;
  font-weight: 400;
  line-height: var(--line-height-main-text);
  font-size: var(--font-main-text);
  color: var(--color-light-second);
  text-align: left;
  border-left: 2px solid var(--color-accent);
  padding: 14px;
}
.service__img {
  clip-path: polygon(0 0, 90% 0, 100% 25%, 100% 100%, 0 100%);
}

.service-list {
  list-style: none;
  display: grid;
  gap: 10px;
}
.service-list li {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  position: relative;
  padding-left: 20px;
  font-size: var(--font-main-text);
  line-height: var(--line-height-main-text);
  color: var(--color-light-base);
}
.service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.service-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 100px;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.big-number {
  font-size: 200px;
  font-weight: 900;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.15);
  pointer-events: none;
  transform: translateY(200px);
  transition: transform 0.1s linear;
  flex: 0 0 30%;
  text-align: end;
}

.service-content {
  opacity: 1;
  border-top: 3px solid var(--color-accent);
  padding-top: 60px;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.service-content.active {
  opacity: 1;
  transform: translateY(0);
}

.service-you-get {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  margin-bottom: 32px;
  font-size: var(--font-main-text);
}

.service-title {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-sub-title);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.service-desc {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-text);
  text-align: left;
  font-weight: 400;
  line-height: var(--line-height-main-text);
  margin-bottom: 32px;
  opacity: 0.8;
}

/* Адаптив */
@media (max-width: 1024px) {
  .service-inner {
    padding: 40px 0;
    flex-direction: column;
    gap: var(--md-gap);
  }
}
@media (max-width: 768px) {
  .service-inner {
    gap: var(--small-gap);
  }
  .big-number {
    font-size: 200px;
  }
  .service {
    padding: 0 20px;
  }
}
.about {
  padding: 50px 0;
}
.about__moto {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-title);
  font-weight: 500;
  line-height: var(--line-height-main-title);
  text-align: left;
  color: var(--color-light-base);
  text-align: center;
  text-transform: none;
}

.table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: end;
  gap: 55px;
}
.table__card {
  background: transparent;
  border: 1px solid var(--color-accent);
  border-radius: 15px;
  padding: 36px;
}
.table__title {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-sub-title);
  font-weight: 600;
  color: var(--color-light-base);
  text-align: left;
  margin-top: 32px;
  margin-bottom: var(--small-gap);
}
.table__text {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-text);
  font-weight: 400;
  color: var(--color-light-second);
  text-align: left;
}
.table__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
}

.numbers {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding: 80px 0 155px;
}
.numbers__intro {
  flex: 0 1 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--small-gap);
}
.numbers__title {
  position: relative;
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-title);
  font-weight: 500;
  line-height: var(--line-height-main-title);
  text-align: left;
  color: var(--color-light-base);
}
.numbers__desc {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-text);
  text-align: left;
  font-weight: 400;
  line-height: var(--line-height-main-text);
  color: var(--color-light-second);
}
.numbers__sum {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-title);
  font-weight: 500;
  line-height: var(--line-height-main-title);
  text-align: left;
  color: var(--color-accent);
  text-shadow: 2px 2px 0 #8c2a00;
  transition: transform 0.3s ease-out;
}
.numbers__card:hover .numbers__sum {
  transform: scale(1.1);
}
.numbers__info {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-text);
  text-align: left;
  font-weight: 400;
  line-height: var(--line-height-main-text);
  color: var(--color-light-second);
}
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(3.4375rem, 2.6339rem + 4.0179vw, 6.25rem);
  align-items: start;
}
.numbers__link {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  padding-bottom: 4px;
  margin-top: 16px;
  transition: all 0.3s;
}
.numbers__link:hover {
  color: var(--color-white-100);
  border-bottom: 1px solid var(--color-white-100);
}
.numbers__img {
  flex: 0 0 30%;
}

.ellipse {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.ellipse::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 120%;
  border: 1px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
  z-index: -1;
}

.green {
  padding: 80px 0 155px;
  background: radial-gradient(circle at 20% 30%, rgba(104, 237, 204, 0.08) 0%, transparent 40%), radial-gradient(circle at 80% 70%, rgba(16, 104, 82, 0.345) 0%, transparent 50%), linear-gradient(135deg, #1c574b 0%, var(--color-accent) 100%);
  color: var(--color-dark-base);
}
.green__title {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-title);
  font-weight: 500;
  line-height: var(--line-height-main-title);
  text-align: left;
  color: var(--color-dark-base);
  text-align: center;
  margin-bottom: var(--md-gap);
}
.green__text {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-text);
  text-align: left;
  font-weight: 400;
  line-height: var(--line-height-main-text);
  font-size: var(--font-main-text);
  color: var(--color-dark-second);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 55px;
}
.green__grid {
  border: 1px solid var(--color-dark-base);
  border-radius: 15px;
  overflow: hidden;
  padding: 48px;
}
.green__gap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.green__card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 25px;
  border-bottom: 1px solid var(--color-dark-base);
  border-right: 1px solid var(--color-dark-base);
  transition: background 0.3s ease, transform 0.2s ease;
}
.green__card:nth-child(2n) {
  border-right: none;
}
.green__card:nth-last-child(-n+2) {
  border-bottom: none;
}
.green__top {
  display: flex;
  align-items: end;
  gap: 25px;
}
.green__card-title {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-text);
  text-align: left;
  font-weight: 400;
  line-height: var(--line-height-main-text);
  color: var(--color-dark-base);
  font-size: var(--font-sub-title);
  font-weight: 500;
  line-height: var(--line-height-sub-title);
}
.green__card-text {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-text);
  text-align: left;
  font-weight: 400;
  line-height: var(--line-height-main-text);
  color: var(--color-dark-second);
  flex-grow: 1;
}
.green a {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-text);
  text-align: left;
  font-weight: 400;
  line-height: var(--line-height-main-text);
  color: var(--color-dark-base);
  transition: color 0.3s ease;
  text-decoration: underline;
}

/* Stars/Diamonds */
.star {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  transform: rotate(45deg);
  opacity: 0.9;
  animation: twinkle 3s infinite;
}

.star.small {
  width: 12px;
  height: 12px;
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.9;
    transform: rotate(45deg) scale(1);
  }
  50% {
    opacity: 0.5;
    transform: rotate(45deg) scale(0.8);
  }
}
/* Star positions */
.star-1 {
  top: 10%;
  left: 80%;
  animation-delay: 0s;
}

.star-2 {
  top: 7%;
  left: 70%;
  animation-delay: 0.5s;
}

.star-3 {
  top: 1%;
  left: 74%;
  animation-delay: 1s;
}

.star-4 {
  bottom: 100px;
  right: 82%;
  animation-delay: 0.3s;
}

.star-5 {
  bottom: 75px;
  right: 85%;
  animation-delay: 0.8s;
}

.star-6 {
  bottom: 100px;
  right: 150px;
  animation-delay: 0.2s;
}

.star-7 {
  bottom: 80px;
  right: 120px;
  animation-delay: 1.2s;
}

.support {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 155px 0;
}
.support__head {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-title);
  font-weight: 500;
  line-height: var(--line-height-main-title);
  text-align: left;
  color: var(--color-light-base);
  text-align: center;
  margin-bottom: var(--md-gap);
}
.support__about {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-text);
  text-align: left;
  font-weight: 400;
  line-height: var(--line-height-main-text);
  font-size: var(--font-main-text);
  color: var(--color-light-base);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 100px;
}
.support__hug {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--section-gap);
  width: 100%;
}
.support__right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--section-gap);
  width: 100%;
}
.support__left {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: var(--section-gap);
  width: 100%;
}
.support__text {
  flex: 0 1 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--small-gap);
}
.support__title {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  color: var(--color-light-base);
  font-size: var(--font-sub-title);
  font-weight: 500;
  line-height: var(--line-height-sub-title);
}
.support__desc {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-text);
  text-align: left;
  font-weight: 400;
  line-height: var(--line-height-main-text);
  color: var(--color-light-second);
}

.testimonial {
  padding: 100px 0;
  /* Адаптив */
}
.testimonial__hug {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
}
.testimonial__name {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-title);
  font-weight: 500;
  line-height: var(--line-height-main-title);
  text-align: left;
  color: var(--color-light-base);
  position: relative;
  z-index: 2;
}
.testimonial__title-wrap {
  position: relative;
  display: inline-block;
}
.testimonial__title-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 130%;
  border: 1px solid var(--color-light-base);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
  pointer-events: none;
}
.testimonial__nav {
  display: flex;
  align-items: center;
  gap: var(--small-gap);
}
.testimonial__btn-left {
  transform: rotate(180deg);
  transition: opacity 0.3s ease;
}
.testimonial__btn-right {
  transition: opacity 0.3s ease;
}
.testimonial__btn-right:hover, .testimonial__btn-left:hover {
  cursor: pointer;
  opacity: 0.7;
}
.testimonial__cards {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--md-gap);
  margin-bottom: 55px;
}
.testimonial__card {
  flex: 0 1 50%;
  border: 1px solid var(--color-accent);
  border-radius: 15px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--md-gap);
}
.testimonial__title {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-sub-title);
  font-weight: 500;
  color: var(--color-light-base);
}
.testimonial__btns {
  display: flex;
  align-items: center;
  gap: var(--small-gap);
  padding-left: 16px;
}
.testimonial__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.testimonial__dot {
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: 0.4;
  cursor: pointer;
  transition: 0.3s;
}
.testimonial__dot.active {
  opacity: 1;
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .testimonial__hug {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .testimonial__cards {
    gap: 0;
  }
  .testimonial__card {
    padding: 24px;
  }
}

.bottom {
  padding: 100px 0;
}
.bottom__title {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-title);
  font-weight: 500;
  line-height: var(--line-height-main-title);
  text-align: left;
  color: var(--color-light-base);
  text-align: center;
}
.bottom__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: var(--md-gap);
}

.contacts {
  padding: 100px 0;
  position: relative;
  display: flex;
  gap: var(--md-gap);
}
.contacts__subtitle {
  font-size: 18px;
  color: var(--color-light-second);
  margin-bottom: 50px;
}
.contacts__grid {
  text-align: left;
  flex: 1 0 60%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
.contacts .div1 {
  grid-area: 1/1/2/2;
}
.contacts .div2 {
  grid-area: 1/2/2/3;
}
.contacts .div3 {
  grid-area: 2/1/3/2;
}
.contacts .div4 {
  grid-area: 3/1/4/2;
}
.contacts .div5 {
  grid-area: 4/1/5/2;
}
.contacts__item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--color-accent);
  font-weight: 600;
}
.contacts__item p,
.contacts__item a {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-light-base);
  text-decoration: none;
}
.contacts__item a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}
.contacts__map {
  width: 100%;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 255, 162, 0.25);
}
.contacts__map iframe {
  filter: grayscale(1) brightness(0.9);
  border: none;
}

.park {
  position: relative;
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.park__content {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
}
.park img {
  flex: 0 0 250px;
  width: 250px;
  height: auto;
}
.park p {
  flex: 0 0 50%;
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-title);
  font-weight: 500;
  line-height: var(--line-height-main-title);
  text-align: left;
  font-size: var(--line-height-sub-title);
  line-height: var(--line-height-main-text);
}
.park h3 {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-text);
  text-align: left;
  font-weight: 400;
  line-height: var(--line-height-main-text);
  font-size: var(--line-height-sub-title);
  line-height: var(--line-height-main-text);
}
.park h3 span {
  color: var(--color-accent);
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .park-section {
    padding: 60px 40px;
  }
  .park-content h3 {
    font-size: 24px;
  }
}
.footer {
  padding: 80px 0 0;
}
.footer__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 32px;
  grid-row-gap: 55px;
}
.footer__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--small-gap);
  margin-bottom: var(--small-gap);
  margin-right: 100px;
}
.footer__logo {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-title);
  font-weight: 500;
  line-height: var(--line-height-main-title);
  text-align: left;
}
.footer__socials {
  display: flex;
  gap: var(--small-gap);
}
.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--color-accent);
  background: rgba(79, 143, 240, 0.1);
  transition: all 0.3s ease;
}
.footer__socials a:hover {
  background: var(--color-accent);
}
.footer .footer__column {
  display: flex;
  flex-direction: column;
  gap: var(--small-gap);
}
.footer .footer__column h4 {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-text);
  text-align: left;
  font-weight: 400;
  line-height: var(--line-height-main-text);
  font-size: var(--font-main-text);
  font-weight: 600;
  color: var(--color-light-base);
}
.footer .footer__column a {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  color: var(--color-light-second);
  font-size: var(--font-main-text);
  font-weight: 400;
}
.footer .footer__column a:hover {
  color: var(--color-accent);
}
.footer__bottom {
  border-top: 1px solid var(--color-light-base);
  margin-top: 60px;
  padding: 55px 0;
}
.footer__bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__bottom-content p {
  color: var(--color-light-second);
  text-align: center;
  font-size: 14px;
}

/* Блок "Проекты высокой сложности" */
.projects-section {
  padding: var(--section-gap) 0;
  position: relative;
}

.section-label {
  display: inline-block;
  color: #00d9a3;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.projects-title {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-title);
  font-weight: 500;
  line-height: var(--line-height-main-title);
  text-align: left;
  margin-bottom: var(--md-gap);
}

.projects-description {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-text);
  text-align: left;
  font-weight: 400;
  line-height: var(--line-height-main-text);
  margin-bottom: var(-md-gap);
}

.projects-expertise {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

/* Разделитель */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 217, 163, 0.3) 50%, transparent 100%);
  margin: 100px 0;
}

.section-spacer {
  height: 80px;
}

/* Адаптивность */
@media (max-width: 968px) {
  .projects-title {
    font-size: 36px;
  }
}
@media (max-width: 640px) {
  .projects-section {
    padding: 60px 0;
  }
  .projects-title {
    font-size: 28px;
  }
  .projects-description {
    font-size: 16px;
  }
}
.about {
  padding: 80px 0;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: var(--small-gap);
}

.about__title {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-title);
  font-weight: 500;
  line-height: var(--line-height-main-title);
  text-align: left;
  text-transform: uppercase;
  font-weight: 600;
}

.about__lead {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-text);
  text-align: left;
  font-weight: 400;
  line-height: var(--line-height-main-text);
}

.about__list ul {
  margin-top: 16px;
  padding-left: 0;
}

.about__list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-text);
  text-align: left;
  font-weight: 400;
  line-height: var(--line-height-main-text);
}

.about__list li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: #fff96b;
  font-size: 12px;
}

.about__accent {
  margin-top: 24px;
  background: rgba(255, 248, 87, 0.1);
  border-left: 3px solid #fff96b;
  padding: 16px 24px;
  border-radius: 12px;
  font-style: italic;
  color: #fefefe;
}

@media (max-width: 900px) {
  .about__content {
    grid-template-columns: 1fr;
  }
  .about__image {
    order: -1;
  }
  .about__stats {
    position: static;
    background: transparent;
    justify-content: space-around;
    padding: 0;
    margin-top: 12px;
  }
}
.exp-title {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-title);
  font-weight: 500;
  line-height: var(--line-height-main-title);
  text-align: left;
  font-size: var(--font-sub-title);
  font-weight: 900;
  margin-bottom: var(--small-gap);
}

.exp-list {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-text);
  text-align: left;
  font-weight: 400;
  line-height: var(--line-height-main-text);
  list-style: none;
  max-width: 900px;
}

.exp-list li {
  margin-bottom: var(--small-gap);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.exp-list li.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.experience-columns {
  padding: var(--section-gap) 0;
}

.experience-columns h2 {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-title);
  font-weight: 500;
  line-height: var(--line-height-main-title);
  text-align: left;
  text-align: left;
  margin-bottom: var(--md-gap);
}

.columns {
  display: flex;
  gap: var(--md-gap);
}

.column {
  flex: 1;
}

.exp-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 64px;
}

.marker {
  width: 16px;
  height: 16px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
  position: relative;
}

.marker::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 7px;
  width: 2px;
  height: 48px;
  background: rgba(39, 209, 161, 0.3);
}

.text {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

.text small {
  display: block;
  font-size: 17px;
  font-weight: 400;
  color: #aaa;
  margin-top: 6px;
}

@media (max-width: 768px) {
  .columns {
    flex-direction: column;
    gap: 0;
  }
  .exp-row {
    gap: 24px;
  }
  .text {
    font-size: 20px;
  }
  .text small {
    font-size: 16px;
  }
}
.why-us {
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}
.why-us__title {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-title);
  font-weight: 500;
  line-height: var(--line-height-main-title);
  text-align: left;
  font-size: var(--font-main-title);
  text-align: center;
  margin-bottom: var(--small-gap);
  color: var(--color-light-base);
}
.why-us__intro {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-text);
  text-align: left;
  font-weight: 400;
  line-height: var(--line-height-main-text);
  font-size: var(--font-main-text);
  text-align: center;
  color: var(--color-light-second);
  margin-bottom: var(--large-gap);
}
.why-us__card {
  position: relative;
  width: 100%;
  height: 300px;
  margin: 0 auto 80px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease;
}
.why-us__card:hover {
  transform: translateY(-12px);
}
.why-us__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.why-us__card--right {
  margin-left: auto;
  margin-right: 0;
}
.why-us__overlay--right {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  background: linear-gradient(to left, rgba(39, 209, 160, 0.95) 0%, rgba(39, 209, 160, 0.7) 50%, rgba(39, 209, 160, 0.3) 80%, transparent 100%);
  padding: 50px 60px 50px 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  text-align: right;
}
.why-us__card--left {
  margin-left: 0;
  margin-right: auto;
  max-width: 1100px;
}
.why-us__overlay--left {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  background: linear-gradient(to right, rgba(39, 209, 160, 0.95) 0%, rgba(39, 209, 160, 0.7) 30%, rgba(39, 209, 160, 0.3) 70%, transparent 100%);
  padding: 50px 100px 50px 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  justify-content: flex-end;
}
.why-us__content {
  max-width: 100%;
}
.why-us__card-title {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-title);
  font-weight: 500;
  line-height: var(--line-height-main-title);
  text-align: left;
  font-size: var(--font-main-title);
  margin-bottom: var(--small-gap);
  color: var(--color-light-base);
  text-align: end;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.why-us__card-desc {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-text);
  text-align: left;
  font-weight: 400;
  line-height: var(--line-height-main-text);
  margin-bottom: var(--small-gap);
  color: var(--color-light-base);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}
.why-us__card:hover .why-us__overlay--right, .why-us__card:hover .why-us__overlay--left {
  background: linear-gradient(to left, rgba(39, 209, 160, 0.76) 0%, rgba(39, 209, 160, 0.85) 30%, rgba(39, 209, 160, 0.5) 70%, transparent 90%);
}
.why-us__card:hover .why-us__overlay--left {
  background: linear-gradient(to right, rgba(39, 209, 160, 0.98) 0%, rgba(39, 209, 160, 0.85) 30%, rgba(39, 209, 160, 0.5) 70%, transparent 90%);
}
@media (max-width: 1100px) {
  .why-us__card--right, .why-us__card--left {
    max-width: 900px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .why-us__overlay--right, .why-us__overlay--left {
    width: 80%;
    padding: 40px 50px;
  }
}
@media (max-width: 500px) {
  .why-us__overlay--right, .why-us__overlay--left {
    padding: 24px;
  }
  .why-us__card-title {
    font-size: 24px;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.tech-stack-section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  color: #00d9a3;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Скролл контейнер */
.tech-scroll-wrapper {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

.tech-scroll-container {
  display: flex;
  gap: 30px;
  animation: scroll 30s linear infinite;
  width: -moz-fit-content;
  width: fit-content;
}

.tech-scroll-container:hover {
  animation-play-state: paused;
}

/* Дублируем элементы для бесшовного скролла */
.tech-scroll-group {
  display: flex;
  gap: 30px;
}

.tech-item {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 120px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tech-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 217, 163, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tech-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.tech-item:hover::before {
  opacity: 1;
}

.tech-item img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  z-index: 1;
  filter: brightness(0.95);
  transition: filter 0.3s ease;
}

.tech-item:hover img {
  filter: brightness(1.1);
}

.tech-scroll-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, #051410 0%, transparent 100%);
}

.tech-scroll-wrapper::after {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, #051410 100%);
}

/* Анимация скролла */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Адаптивность */
@media (max-width: 768px) {
  .section-title {
    font-size: 18px;
  }
  .tech-item {
    min-width: 150px;
    height: 100px;
    padding: 25px 30px;
  }
  .tech-item img {
    max-height: 50px;
  }
  .tech-scroll-wrapper::before,
  .tech-scroll-wrapper::after {
    width: 80px;
  }
}
@media (max-width: 480px) {
  .tech-stack-section {
    padding: 40px 0;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .tech-item {
    min-width: 130px;
    height: 90px;
    padding: 20px 25px;
  }
  .tech-item img {
    max-height: 45px;
  }
  .tech-scroll-container {
    gap: 20px;
  }
  .tech-scroll-group {
    gap: 20px;
  }
}
.tools-section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  display: inline-block;
  color: #00d9a3;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Сетка инструментов */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.tool-category {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.tool-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #00d9a3;
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.tool-category:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.tool-category:hover::before {
  transform: scaleY(1);
}

.category-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 217, 163, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.tool-category:hover .category-icon {
  background: rgba(0, 217, 163, 0.25);
  transform: scale(1.1);
}

.category-icon svg {
  width: 24px;
  height: 24px;
  stroke: #00d9a3;
}

.category-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tool-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.tool-tag:hover {
  background: rgba(0, 217, 163, 0.15);
  border-color: rgba(0, 217, 163, 0.3);
  color: #00d9a3;
  transform: translateY(-2px);
}

/* Адаптивность */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
  .section-subtitle {
    font-size: 16px;
  }
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tool-category {
    padding: 30px;
  }
  .category-title {
    font-size: 18px;
  }
  .tools-section {
    padding: 60px 0;
  }
  .section-header {
    margin-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .section-title {
    font-size: 26px;
  }
  .tool-category {
    padding: 25px;
  }
  .tool-tag {
    font-size: 13px;
    padding: 6px 12px;
  }
}
.why-us-section {
  padding: 80px 0px;
}
@media (max-width: 768px) {
  .why-us-section {
    padding: 60px 0px;
  }
}

.why-us-container {
  border-radius: 16px;
  padding: 48px 0;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .why-us-container {
    padding: 40px 0px;
  }
}
@media (max-width: 768px) {
  .why-us-container {
    padding: 32px 0px;
    border-radius: 12px;
  }
}

.why-us-header {
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .why-us-header {
    margin-bottom: 32px;
  }
}

.why-us-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .why-us-title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .why-us-title {
    font-size: 32px;
    margin-bottom: 12px;
  }
}

.why-us-description {
  font-size: 18px;
  color: #9ca3af;
  max-width: 672px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .why-us-description {
    font-size: 16px;
  }
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) {
  .why-us-grid {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.info-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-left: 2px solid rgba(16, 185, 129, 0.6);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}
.info-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-left-color: var(--color-accent);
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .info-card {
    padding: 24px;
  }
}

.card-content {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 768px) {
  .card-content {
    gap: 16px;
  }
}

.card-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.card-icon svg {
  color: var(--color-accent);
  width: 32px;
  height: 32px;
}
@media (max-width: 768px) {
  .card-icon {
    width: 56px;
    height: 56px;
  }
  .card-icon svg {
    width: 28px;
    height: 28px;
  }
}

.info-card:hover .card-icon {
  background: rgba(16, 185, 129, 0.15);
}

.card-text {
  flex: 1;
  min-width: 0;
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .card-title {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .card-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

.card-description {
  font-size: 16px;
  color: #9ca3af;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .card-description {
    font-size: 14px;
  }
}

.privacy {
  padding: 80px 0;
}
.privacy h1 {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-title);
  font-weight: 500;
  line-height: var(--line-height-main-title);
  text-align: left;
  margin-bottom: var(--md-gap);
}
.privacy h2 {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  font-size: var(--font-main-text);
  text-align: left;
  font-weight: 400;
  line-height: var(--line-height-main-text);
  font-size: var(--font-sub-title);
  margin: 40px 0 20px;
}
.privacy p {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  margin-bottom: 16px;
}
.privacy ul {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  margin: 16px 0;
  padding-left: 24px;
  list-style-position: inside;
}
.privacy ol {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  margin: 16px 0;
  padding-left: 24px;
  list-style-position: inside;
}
.privacy li {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  margin-bottom: 8px;
}
.privacy a {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0px;
  color: var(--color-accent, #27d1a0);
  text-decoration: none;
}
.privacy .contact {
  margin-top: 40px;
  font-weight: 600;
}

@media (max-width: 1310px) {
  .wrapper,
  .green__hug {
    max-width: 1000px;
    margin: 0 auto;
  }
}
@media (max-width: 1024px) {
  .header,
  .hero,
  .about,
  .service,
  .table,
  .green,
  .numbers,
  .testimonial,
  .support,
  .bottom,
  .contacts,
  .why-us,
  .why-us-section,
  .experience-columns,
  .projects-section,
  .competencies-wrapper,
  .tech-stack-section,
  .privacy,
  .park,
  .footer {
    padding-left: 30px;
    padding-right: 30px;
  }
  .header__nav {
    flex-direction: column;
    right: -100%;
    padding: 80px 20px;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 280px;
    height: 100vh;
    background: var(--color-dark-base);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 100px 20px;
  }
  .header__nav.active {
    right: 0;
  }
  .header .burger {
    display: block;
  }
  .hero {
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero__container {
    flex: 0 1 100%;
    text-align: left;
  }
  .numbers {
    flex-direction: column;
    align-items: center;
  }
  .numbers__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
  }
  .div1 {
    grid-area: 1/1/2/2;
  }
  .div2 {
    grid-area: 2/1/3/2;
  }
  .div3 {
    grid-area: 2/2/3/3;
  }
  .div4 {
    grid-area: 2/3/3/4;
  }
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: var(--md-gap);
    grid-row-gap: var(--md-gap);
  }
}
@media (max-width: 900px) {
  .hero,
  .contacts {
    flex-wrap: wrap;
  }
  .hero .div1,
  .contacts .div1 {
    grid-area: 1/1/2/2;
  }
  .hero .div2,
  .contacts .div2 {
    grid-area: 2/1/3/2;
  }
  .hero .div3,
  .contacts .div3 {
    grid-area: 2/2/3/3;
  }
  .contacts__grid {
    grid-template-rows: repeat(3, 1fr);
  }
  .footer__container {
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .about__moto {
    text-align: left;
  }
  .service {
    flex-direction: column-reverse;
  }
  .park__content {
    flex-direction: column-reverse;
    gap: 0;
  }
  .park img {
    flex: -1 0 200px;
    width: 250px;
    height: auto;
  }
  .table {
    grid-template-columns: 1fr;
    gap: var(--md-gap);
  }
  .table__card {
    padding: 20px;
  }
  .numbers__grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
  .green__top {
    flex-direction: column;
    align-items: center;
  }
  .green__gap {
    grid-template-columns: 1fr;
  }
  .green__card {
    border-right: none;
    border-bottom: 1px solid var(--color-dark-base);
    align-items: center;
  }
  .green__card:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--color-dark-base);
  }
  .green__card:last-child {
    border-bottom: none;
  }
  .green__card-text {
    text-align: center;
  }
  .support__right, .support__left {
    flex-direction: column;
  }
  .testimonial__hug {
    flex-direction: column;
    align-items: center;
    margin-bottom: 55px;
  }
  .testimonial__nav {
    display: none;
  }
  .footer__container {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    grid-column-gap: 0;
    grid-row-gap: var(--md-gap);
  }
  .div1 {
    grid-area: 1/1/2/2;
  }
  .div2 {
    grid-area: 2/1/3/2;
  }
  .div3 {
    grid-area: 3/1/4/2;
  }
  .footer__left {
    margin-right: 0;
  }
}
@media (max-width: 500px) {
  .green__grid {
    border: none;
    padding: 0;
  }
  .numbers__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .cookie-controls {
    flex-direction: column;
  }
  .bottom__btns {
    display: flex;
    flex-direction: column;
  }
  .button__cover {
    flex-direction: column;
  }
  .contacts__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 1fr);
  }
  .contacts .div1 {
    grid-area: 1/1/2/2;
  }
  .contacts .div2 {
    grid-area: 2/1/3/2;
  }
  .contacts .div3 {
    grid-area: 3/1/4/2;
  }
  .contacts .div4 {
    grid-area: 4/1/5/2;
  }
  .contacts .div5 {
    grid-area: 5/1/6/2;
  }
}/*# sourceMappingURL=style.css.map */