
.header__mobile-hero {
  display: none;
}

.header__mobile-card,
.header__mobile-actions,
.header__mobile-stats {
  box-sizing: border-box;
}

body.simple-scroll,
html.is-touch-device body {
  min-height: 100vh;
  background: linear-gradient(180deg, #020817 0%, #071220 65%, #0b1423 100%);
  color: #e2e8f0;
}

body.simple-scroll .header,
html.is-touch-device .header {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: clamp(540px, 88vh, 680px);
  padding: 0 clamp(20px, 7vw, 36px);
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 50%, #d0d0d0 100%);
  overflow: hidden;
}

body.simple-scroll .header::before,
html.is-touch-device .header::before {
  content: '';
  position: absolute;
  inset: clamp(18px, 7vw, 36px);
  background: url('../images/slide1/static_bg.jpg') center/cover no-repeat;
  opacity: 0.18;
  filter: blur(3px);
  pointer-events: none;
}

html.is-touch-device .header::before,
html.is-touch-device .header::after {
  display: none;
  content: none;
}

body.simple-scroll .header::after,
html.is-touch-device .header::after {
  content: '';
  position: absolute;
  inset: clamp(28px, 9vw, 48px);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(2, 8, 23, 0.45), rgba(2, 8, 23, 0.05));
  border: 1px solid rgba(148, 163, 184, 0.25);
  opacity: 0.85;
  pointer-events: none;
}

body.simple-scroll .header__wrapper,
html.is-touch-device .header__wrapper {
  display: none;
}

body.simple-scroll .header__mobile-hero,
html.is-touch-device .header__mobile-hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: min(560px, 100%);
  height: 100vh;
  z-index: 1;
  background: transparent;
  margin: 0;
  padding: 90px 0 0 0;
}

#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  border-radius: 32px;
}

/* Мобильные анимации */
body.simple-scroll .header__mobile-animations,
html.is-touch-device .header__mobile-animations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

body.simple-scroll .header__mobile-leaf,
html.is-touch-device .header__mobile-leaf {
  position: absolute;
  top: 5%;
  left: -8%;
  width: 210px;
  height: 210px;
  z-index: 2;
}

body.simple-scroll .header__mobile-logo,
html.is-touch-device .header__mobile-logo {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  z-index: 3;
}

body.simple-scroll .header__mobile-cup,
html.is-touch-device .header__mobile-cup {
  position: absolute;
  bottom: 30%;
  left: 55%;
  width: 250px;
  height: 250px;
  z-index: 2;
}

body.simple-scroll .header__mobile-vase,
html.is-touch-device .header__mobile-vase {
  position: absolute;
  top: 15%;
  right: -5%;
  width: 250px;
  height: 250px;
  z-index: 2;
}

body.simple-scroll .header__mobile-head,
html.is-touch-device .header__mobile-head {
  position: absolute;
  bottom: 8%;
  left: 8%;
  width: 270px;
  height: 270px;
  z-index: 2;
}

/* Анимации */
.mobile-animate {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-animate--leaf {
  animation: floatLeaf 6s ease-in-out infinite;
  animation-delay: 0s;
}

.mobile-animate--logo {
  /* Убираем анимацию для логотипа */
}

.mobile-animate--cup {
  animation: floatCup 4s ease-in-out infinite;
  animation-delay: 2s;
}

.mobile-animate--vase {
  animation: floatVase 7s ease-in-out infinite;
  animation-delay: 0.5s;
}

.mobile-animate--head {
  animation: floatHead 5s ease-in-out infinite;
  animation-delay: 1.5s;
}

@keyframes floatLeaf {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
  }
  25% { 
    transform: translateY(-15px) rotate(2deg);
  }
  50% { 
    transform: translateY(-10px) rotate(-1deg);
  }
  75% { 
    transform: translateY(-20px) rotate(1deg);
  }
}

@keyframes floatLogo {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  25% { 
    transform: translate(-50%, -50%) scale(1.02) rotate(0deg);
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.01) rotate(0deg);
  }
  75% { 
    transform: translate(-50%, -50%) scale(1.03) rotate(0deg);
  }
}

@keyframes floatCup {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
  }
  50% { 
    transform: translateY(-8px) rotate(2deg);
  }
}

@keyframes floatVase {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
  }
  33% { 
    transform: translateY(-12px) rotate(1deg);
  }
  66% { 
    transform: translateY(-8px) rotate(-1deg);
  }
}

@keyframes floatHead {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
  }
  25% { 
    transform: translateY(-10px) rotate(1deg);
  }
  50% { 
    transform: translateY(-15px) rotate(-0.5deg);
  }
  75% { 
    transform: translateY(-8px) rotate(0.5deg);
  }
}

body.simple-scroll .header__mobile-glow,
html.is-touch-device .header__mobile-glow {
  position: absolute;
  inset: -20% -10% -15%;
  background: radial-gradient(circle at 30% 20%, rgba(34, 211, 238, 0.15), transparent 50%),
              radial-gradient(circle at 75% 70%, rgba(99, 102, 241, 0.15), transparent 50%);
  filter: blur(40px);
  opacity: 0.6;
  pointer-events: none;
  z-index: 2;
}

body.simple-scroll .header__mobile-card,
html.is-touch-device .header__mobile-card {
  position: relative;
  width: calc(100% - 30px);
  margin: 0 15px;
  min-height: clamp(520px, 75vh, 640px);
  padding: clamp(30px, 7vw, 46px);
  border-radius: 32px;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  text-align: center;
  z-index: 3;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 4.2vw, 26px);
  overflow: visible;
}


body.simple-scroll .header__mobile-tag,
html.is-touch-device .header__mobile-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: center;
  padding: 8px 0;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #efefef;
  background: transparent;
  border: none;
  border-bottom: 2px solid #c5c5c5;
  border-radius: 0;
  position: relative;
}

/* Убран ::after элемент - пульсирующая точка */


@keyframes pulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 1;
  }
  50% { 
    transform: scale(1.2);
    opacity: 0.7;
  }
}

body.simple-scroll .header__mobile-title,
html.is-touch-device .header__mobile-title {
  margin: 0;
  margin-bottom: 10px;
  font-size: clamp(3rem, 10vw, 6rem);
  font-family: "OpenSans-Light", Arial, sans-serif;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 300;
  letter-spacing: -0.02em;
}


body.simple-scroll .header__mobile-script,
html.is-touch-device .header__mobile-script {
  font-family: "Freestyle", cursive;
  font-size: clamp(1.4rem, 6vw, 2rem);
  color: #ffd700;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
body.simple-scroll .header__mobile-flag,
html.is-touch-device .header__mobile-flag {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}

body.simple-scroll .header__mobile-flag-img,
html.is-touch-device .header__mobile-flag-img {
  width: 49px;
  height: 14px;
  object-fit: cover;
  
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

body.simple-scroll .header__mobile-subtitle,
html.is-touch-device .header__mobile-subtitle {
  margin: 0 auto;
  max-width: 92%;
  font-size: clamp(1.05rem, 4.4vw, 1.25rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

body.simple-scroll .header__mobile-actions,
html.is-touch-device .header__mobile-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

body.simple-scroll .header__mobile-btn,
html.is-touch-device .header__mobile-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.simple-scroll .header__mobile-btn--primary,
html.is-touch-device .header__mobile-btn--primary {
  background: linear-gradient(135deg, #22d3ee, #6366f1);
  color: #0f172a;
  box-shadow: 0 20px 44px rgba(99, 102, 241, 0.38);
  padding-right: 42px;
}

body.simple-scroll .header__mobile-btn--primary::after,
html.is-touch-device .header__mobile-btn--primary::after {
  content: '';
  position: absolute;
  right: 22px;
  width: 9px;
  height: 9px;
  border-right: 2px solid #0f172a;
  border-bottom: 2px solid #0f172a;
  transform: rotate(-45deg);
}

body.simple-scroll .header__mobile-btn--ghost,
html.is-touch-device .header__mobile-btn--ghost {
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.58);
  padding-left: 24px;
  padding-right: 42px;
}

body.simple-scroll .header__mobile-btn--ghost::after,
html.is-touch-device .header__mobile-btn--ghost::after {
  content: '';
  position: absolute;
  right: 22px;
  width: 18px;
  height: 12px;
  border: 2px solid rgba(226, 232, 240, 0.85);
  border-radius: 4px;
}

body.simple-scroll .header__mobile-btn--ghost::before,
html.is-touch-device .header__mobile-btn--ghost::before {
  content: '';
  position: absolute;
  right: 22px;
  width: 14px;
  height: 2px;
  background: rgba(226, 232, 240, 0.85);
  transform: translateY(-3px);
}

body.simple-scroll .header__mobile-btn:hover,
html.is-touch-device .header__mobile-btn:hover {
  transform: translateY(-4px);
}

body.simple-scroll .header__mobile-stats,
html.is-touch-device .header__mobile-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(16px, 4vw, 28px);
}

body.simple-scroll .header__mobile-stat,
html.is-touch-device .header__mobile-stat {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.simple-scroll .header__mobile-stat span,
html.is-touch-device .header__mobile-stat span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #22d3ee;
}

body.simple-scroll .header__mobile-stat small,
html.is-touch-device .header__mobile-stat small {
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.92);
}

@media (max-width: 640px) {
  body.simple-scroll .header__mobile-stats,
  html.is-touch-device .header__mobile-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  body.simple-scroll .header__mobile-stats,
  html.is-touch-device .header__mobile-stats {
    grid-template-columns: 1fr;
  }
}

@font-face {
  font-weight: normal;
  font-family: "OpenSans-Bold";
  font-style: normal; 

  src: url("../fonts/OpenSans-Bold/OpenSans-Bold.woff") format("woff"), url("../fonts/OpenSans-Bold/OpenSans-Bold.woff2") format("woff2");
}

@font-face {
  font-weight: normal;
  font-family: "OpenSans-Italic";
  font-style: normal; 

  src: url("../fonts/OpenSans-Italic/OpenSans-Italic.woff") format("woff"), url("../fonts/OpenSans-Italic/OpenSans-Italic.woff2") format("woff2");
}

@font-face {
  font-weight: normal;
  font-family: "OpenSans-Light";
  font-style: normal; 

  src: url("../fonts/OpenSans-Light/OpenSans-Light.woff") format("woff"), url("../fonts/OpenSans-Light/OpenSans-Light.woff2") format("woff2");
}

@font-face {
  font-weight: normal;
  font-family: "OpenSans-Regular";
  font-style: normal; 

  src: url("../fonts/OpenSans-Regular/OpenSans-Regular.woff") format("woff"), url("../fonts/OpenSans-Regular/OpenSans-Regular.woff2") format("woff2");
}

@font-face {
  font-weight: normal;
  font-family: "Freestyle";
  font-style: normal; 

  src: url("../fonts/Freestyle/FREESCPT.woff") format("woff"), url("../fonts//Freestyle/FREESCPT.woff2") format("woff2");
}

/* Global Style Start */
body,
html {
  height: 100%;
  overflow-x: hidden;
  line-height: 1.5;
  font-family: "OpenSans-Regular", Arial, sans-serif;
  overflow-x: hidden; 
  width: 100vw; 
}

* {
  /* max-width: 100vw; */
  box-sizing: border-box;
}

.hidden {
  display: none !important;
}

.container {
  max-width: 100vw; /* Avoid container being wider than viewport */
  margin: 0 auto; 
  padding-right: 10px;
  padding-left: 10px;
  box-sizing: border-box; /* Ensure padding is inside the element's width */
}

@media only screen and (max-width: 599px) {
  .container {
    padding-right: 20px; 
    padding-left: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .container {
    padding-right: 10px; 
    padding-left: 10px;
  }
}

@media only screen and (max-width: 992px) {
  .container {
    max-width: 960px;
    padding-right: 15px; 
    padding-left: 15px;
  }
}

a {
  color: currentColor;
}

.fixed-block {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 7;
  width: 100%; /* Prevent potential overflow */
  height: 40px;
  padding: 0;
}

.icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}



/* Global Style End */
/*Loader Start*/
.loader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;

  background-color: #296aba; 

  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}
.loader__big {
  position: relative; 

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;

  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}
.loader__small {
  justify-content: s; 
  width: 40.5vh;
  height: 40.2vh;

  background-image: url("../images/loader/loader_small.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  -webkit-box-pack: s;
  -ms-flex-pack: s;
}
.loader__text {
  margin-top: 4vh; 

  font-size: 6vh;
  font-family: "OpenSans-Light", Arial, sans-serif;
  text-align: center;
  color: #ffffff;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
            transform: rotate3d(0, 1, 0, 0deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 1, 0, 360deg);
            transform: rotate3d(0, 1, 0, 360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
            transform: rotate3d(0, 1, 0, 0deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 1, 0, 360deg);
            transform: rotate3d(0, 1, 0, 360deg);
  }
}

.loader__block {
  position: relative;

  width: 200px;
  height: 200px;
  margin: auto;
}
.loader__block .item {
  position: absolute; 

  width: 100px;
  height: 100px;
}
.loader__block .item-1 {
  top: 0;
  left: 0;
  z-index: 1;

  background-color: #fa5667;

  -webkit-animation: item-1_move 1.8s cubic-bezier(0.6, 0.01, 0.4, 1) infinite;
          animation: item-1_move 1.8s cubic-bezier(0.6, 0.01, 0.4, 1) infinite;
}
.loader__block .item-2 {
  top: 0;
  right: 0;

  background-color: #7a45e5;

  -webkit-animation: item-2_move 1.8s cubic-bezier(0.6, 0.01, 0.4, 1) infinite;
          animation: item-2_move 1.8s cubic-bezier(0.6, 0.01, 0.4, 1) infinite;
}
.loader__block .item-3 {
  right: 0;
  bottom: 0;
  z-index: 1;

  background-color: #1b91f7;

  -webkit-animation: item-3_move 1.8s cubic-bezier(0.6, 0.01, 0.4, 1) infinite;
          animation: item-3_move 1.8s cubic-bezier(0.6, 0.01, 0.4, 1) infinite;
}
.loader__block .item-4 {
  bottom: 0;
  left: 0;

  background-color: #fac24c;

  -webkit-animation: item-4_move 1.8s cubic-bezier(0.6, 0.01, 0.4, 1) infinite;
          animation: item-4_move 1.8s cubic-bezier(0.6, 0.01, 0.4, 1) infinite;
}

@-webkit-keyframes item-1_move {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(0, 100px);
            transform: translate(0, 100px);
  }
  50% {
    -webkit-transform: translate(100px, 100px);
            transform: translate(100px, 100px);
  }
  75% {
    -webkit-transform: translate(100px, 0);
            transform: translate(100px, 0);
  }
}

@keyframes item-1_move {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(0, 100px);
            transform: translate(0, 100px);
  }
  50% {
    -webkit-transform: translate(100px, 100px);
            transform: translate(100px, 100px);
  }
  75% {
    -webkit-transform: translate(100px, 0);
            transform: translate(100px, 0);
  }
}

@-webkit-keyframes item-2_move {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(-100px, 0);
            transform: translate(-100px, 0);
  }
  50% {
    -webkit-transform: translate(-100px, 100px);
            transform: translate(-100px, 100px);
  }
  75% {
    -webkit-transform: translate(0, 100px);
            transform: translate(0, 100px);
  }
}

@keyframes item-2_move {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(-100px, 0);
            transform: translate(-100px, 0);
  }
  50% {
    -webkit-transform: translate(-100px, 100px);
            transform: translate(-100px, 100px);
  }
  75% {
    -webkit-transform: translate(0, 100px);
            transform: translate(0, 100px);
  }
}

@-webkit-keyframes item-3_move {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(0, -100px);
            transform: translate(0, -100px);
  }
  50% {
    -webkit-transform: translate(-100px, -100px);
            transform: translate(-100px, -100px);
  }
  75% {
    -webkit-transform: translate(-100px, 0);
            transform: translate(-100px, 0);
  }
}

@keyframes item-3_move {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(0, -100px);
            transform: translate(0, -100px);
  }
  50% {
    -webkit-transform: translate(-100px, -100px);
            transform: translate(-100px, -100px);
  }
  75% {
    -webkit-transform: translate(-100px, 0);
            transform: translate(-100px, 0);
  }
}

@-webkit-keyframes item-4_move {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(100px, 0);
            transform: translate(100px, 0);
  }
  50% {
    -webkit-transform: translate(100px, -100px);
            transform: translate(100px, -100px);
  }
  75% {
    -webkit-transform: translate(0, -100px);
            transform: translate(0, -100px);
  }
}

@keyframes item-4_move {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(100px, 0);
            transform: translate(100px, 0);
  }
  50% {
    -webkit-transform: translate(100px, -100px);
            transform: translate(100px, -100px);
  }
  75% {
    -webkit-transform: translate(0, -100px);
            transform: translate(0, -100px);
  }
}

/*Loader End*/
/*Contacts-group Start*/
.contacts-group {
  position: fixed;
  right: 25px;
  bottom: 60px;
  z-index: 10;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  align-items: flex-end; 
  width: 200px;

  -webkit-box-align: end;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-align: end;
}
@media only screen and (max-width: 768px) {
  .contacts-group {
    z-index: 6;
  }
}
.contacts-group__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 39px;
  height: 39px;
  margin-bottom: 15px;
  overflow: hidden;

  background-color: #ffffff;
  border-radius: 25px;
  -webkit-box-shadow: 0 0 10px 0 #000000;
          box-shadow: 0 0 10px 0 #000000;

  -webkit-transition: width 0.6s;
       -o-transition: width 0.6s;
          transition: width 0.6s; 

  -webkit-box-align: center;
  -ms-flex-align: center;
}
.contacts-group__item-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 39px;

  -webkit-transition: fill 0.8s;
       -o-transition: fill 0.8s;
          transition: fill 0.8s; 

  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-negative: 0;
  -ms-flex-pack: center;
}
.contacts-group__item-content {
  padding-right: 30px;
  padding-left: 5px;
}
.contacts-group__item-content a {
  text-decoration: none;
  white-space: nowrap;
}

.contacts-group__item.active {
  width: 100%;
}

.contacts-group__item.active .icon {
  color: #00b2b2;
}

/*Contacts-group End*/
/*Menu Start*/
.menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;

  color: #ffffff; 

  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;

  -webkit-transition-delay: 1s;
       -o-transition-delay: 1s;
          transition-delay: 1s;

  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}
.menu__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1; 

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
}
.menu__bg div {
  flex-grow: 1;

  background-color: #353535;

  -webkit-transition: -webkit-transform 1s;
       -o-transition:         transform 1s;
          transition: -webkit-transform 1s;
          transition:         transform 1s;
          transition:         transform 1s, -webkit-transform 1s; 

  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
}
.menu__bg div:nth-of-type(1) {
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
.menu__bg div:nth-of-type(2) {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
.menu__bg div:nth-of-type(3) {
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
.menu__content {
  position: relative;
  z-index: 7;

  -webkit-transform: translateY(-500%);
      -ms-transform: translateY(-500%);
          transform: translateY(-500%);

  -webkit-transition: -webkit-transform 1s;
       -o-transition:         transform 1s;
          transition: -webkit-transform 1s;
          transition:         transform 1s;
          transition:         transform 1s, -webkit-transform 1s;
}
.menu__content-title {
  margin-bottom: 4vh;
  padding-top: 20px;
  font-size: 4.5vh;
  font-family: "OpenSans-Light";
  text-align: center;
}

/* Компактное меню для мобильных */
@media only screen and (max-width: 768px) {
  .menu__content-title {
    padding-top: 80px !important;
    margin-bottom: 3vh !important;
    font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
  }
  
  .menu__content {
    padding: 10px 0 20px 0 !important;
    height: 100vh !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }
  
  .menu__content-block {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    padding-top: 8vh !important;
    position: static !important;
  }
  
  .menu__content-nav {
    margin-bottom: 4vh !important;
    padding-left: 0 !important;
    transform: none !important;
    transition: none !important;
  }
  
  .menu__content-nav li {
    margin-bottom: 1.2vh !important;
    font-size: 2.5vh !important;
  }
  
  .menu__content-links {
    margin-top: auto !important;
    margin-bottom: 25px !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    justify-content: center !important;
  }
  
  .menu__content-link {
    margin: 2px 4px !important;
    padding: 5px 8px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 6px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
    font-size: 11px !important;
  }
  
  .menu__content-link:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(34, 211, 238, 0.3) !important;
  }
  
  .menu__content-social {
    margin-top: 0 !important;
    padding-bottom: 15px !important;
  }
}
.menu__content-title a {
  text-decoration: none;

  -webkit-transition: 0.5s;
       -o-transition: 0.5s;
          transition: 0.5s;
}
.menu__content-title a:hover {
  color: #00b2b2; 
  text-decoration: none;
}
.menu__content-block {
  position: relative;
}
.menu__content-nav {
  margin-bottom: 24vh;
  padding-left: 0;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 1s;
       -o-transition:         transform 1s;
          transition: -webkit-transform 1s;
          transition:         transform 1s;
          transition:         transform 1s, -webkit-transform 1s;
}
.menu__content-nav li {
  margin-bottom: 2vh; 
  list-style: none;
  font-size: 2.2vh;
  text-align: center;
}
@media only screen and (max-width: 599px) {
  .menu__content-nav li {
    font-size: 3.5vh;
  }
}
@media only screen and (max-width: 768px) and (orientation: landscape) {
  .menu__content-nav li {
    font-size: 4.5vh;
  }
}
.menu__content-nav li a {
  -webkit-transition: 0.5s;
       -o-transition: 0.5s;
          transition: 0.5s;
}
.menu__content-nav li a:hover {
  color: #00b2b2; 
  text-decoration: none;
}
.menu__content-nav--services {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;

  -webkit-transform: translateX(5000px);
      -ms-transform: translateX(5000px);
          transform: translateX(5000px);
}
.menu__content-nav--back {
  position: absolute;
  top: calc(50% - 30px);

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6vh;
  height: 6vh;

  background: url("../images/icons/arrow-back.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 2vh;
  border: 1px solid #ffffff;
  border-radius: 50%;
  cursor: pointer; 

  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}
.menu__content-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  margin-bottom: 4vh; 

  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-pack: distribute;
}
@media only screen and (max-width: 768px) {
  .menu__content-links {
        flex-wrap: wrap;
    justify-content: center; 

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -ms-flex-wrap: wrap;
  }
}
.menu__content-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  margin-bottom: 1vh; 
  margin-left: 15px;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}

/* Улучшенные стили для контактной информации */
.menu__content-link .icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  color: #22d3ee;
  flex-shrink: 0;
}

.menu__content-link a,
.menu__content-link span {
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.4;
}

.menu__content-link a:hover {
  color: #22d3ee;
}
@media only screen and (max-width: 599px) {
  .menu__content-title {
    padding-top: 70px;
    margin-bottom: 3vh;
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
  
  .menu__content {
    padding: 5px 0 15px 0;
  }
  
  .menu__content-block {
    padding-top: 6vh;
  }
  
  .menu__content-nav {
    margin-bottom: 3vh;
  }
  
  .menu__content-nav li {
    margin-bottom: 1vh;
    font-size: 2.2vh;
  }
  
  .menu__content-link {
    font-size: 1.2vh;
    margin: 1px 2px;
    padding: 3px 6px;
  }
  
  .menu__content-link .icon {
    width: 14px;
    height: 14px;
    margin-right: 5px;
  }
  
  .menu__content-link a,
  .menu__content-link span {
    font-size: 10px;
  }
  
  .menu__content-social {
    margin-top: 0;
    padding-bottom: 5px;
  }
  
  .menu__content-social .menu__content-item {
    width: 32px;
    height: 32px;
  }
  
  .menu__content-social .menu__content-item .icon {
    height: 16px;
    width: 16px;
  }
}
@media only screen and (max-width: 768px) and (orientation: landscape) {
  .menu__content-title {
    padding-top: 40px;
    margin-bottom: 2vh;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
  }
  
  .menu__content {
    padding: 5px 0 10px 0;
  }
  
  .menu__content-block {
    padding-top: 4vh;
  }
  
  .menu__content-nav {
    margin-bottom: 2vh;
  }
  
  .menu__content-nav li {
    margin-bottom: 0.8vh;
    font-size: 1.8vh;
  }
  
  .menu__content-link {
    font-size: 0.9vh;
    margin: 1px 2px;
    padding: 2px 5px;
  }
  
  .menu__content-link .icon {
    width: 12px;
    height: 12px;
    margin-right: 3px;
  }
  
  .menu__content-link a,
  .menu__content-link span {
    font-size: 9px;
  }
  
  .menu__content-social {
    margin-top: 0;
    padding-bottom: 3px;
  }
  
  .menu__content-social .menu__content-item {
    width: 28px;
    height: 28px;
  }
  
  .menu__content-social .menu__content-item .icon {
    height: 14px;
    width: 14px;
  }
}
.menu__content-link span {
  margin-left: 10px;
}
.menu__content-link a {
  text-decoration: none;

  -webkit-transition: color 0.5s;
       -o-transition: color 0.5s;
          transition: color 0.5s;
}
.menu__content-link a:hover {
  color: #00b2b2; 
  text-decoration: none;
}
.menu__content-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center; 

  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}
.menu__content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6vh;
  height: 6vh;
  margin-right: 10px;
  margin-left: 10px;

  color: #ffffff;

  border: 1px solid #ffffff;
  border-radius: 50%;

  -webkit-transition: border-color 0.5s;
       -o-transition: border-color 0.5s;
          transition: border-color 0.5s; 

  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}
.menu__content-item .icon {
  width: auto;
  height: 3.6vh;

  color: #ffffff;

  cursor: pointer;
}

/* Заметные социальные иконки */
.menu__content-social .menu__content-item {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.menu__content-social .menu__content-item:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #22d3ee;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(34, 211, 238, 0.3);
}

.menu__content-social .menu__content-item .icon {
  height: 24px;
  width: 24px;
  color: #ffffff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}
.menu__content-item .icon a {
  -webkit-transition: fill 0.5s;
       -o-transition: fill 0.5s;
          transition: fill 0.5s;

  fill: #ffffff;
}
.menu__content-item:hover {
  text-decoration: none;

  border-color: #00b2b2;
}
.menu__content-item:hover a {
  fill: #00b2b2;
}
.menu h1 {
  font-size: 60px; 
  text-align: center;
}

.isServicesOpen .menu__content-nav:first-child {
  -webkit-transform: translateX(-5000px);
      -ms-transform: translateX(-5000px);
          transform: translateX(-5000px);
}

.isServicesOpen.menu__content-nav--services {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.open_menu .menu {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);

  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}
.open_menu .menu__bg div {
  flex-grow: 1; 

  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
}
.open_menu .menu__bg div:nth-of-type(1) {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.open_menu .menu__bg div:nth-of-type(2) {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.open_menu .menu__bg div:nth-of-type(3) {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.open_menu .menu__content {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0); 

  -webkit-transition-delay: 0.5s;
       -o-transition-delay: 0.5s;
          transition-delay: 0.5s;
}


.menu-toggle-container {
  position: fixed;
  top: 24px;
  right: 30px;
  z-index: 50;
}

.menu-toggle-btn {
  position: relative;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 58px;
  height: 58px;

  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 16px;

  cursor: pointer;

  -webkit-transition: all 0.3s ease;
       -o-transition: all 0.3s ease;
          transition: all 0.3s ease; 

  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}
.menu-toggle-btn:hover,
.menu-toggle-btn:focus {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(255, 255, 255, 0.45);
}
.menu-toggle-btn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease, transform 0.25s ease;
  opacity: 0;
}

.menu-toggle-btn .menu-icon--open {
  opacity: 1;
}

.menu-toggle-btn .menu-icon--close {
  transform: translate(-50%, -50%) rotate(-20deg) scale(0.85);
}

.menu-toggle-btn.active .menu-icon--open,
body.open_menu .menu-toggle-btn .menu-icon--open {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8) rotate(15deg);
}

.menu-toggle-btn.active .menu-icon--close,
body.open_menu .menu-toggle-btn .menu-icon--close {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
}

body.open_menu .menu-toggle-btn {
  background: rgba(15, 23, 42, 0.85);
}


.menu__content-nav a.is-active {
  color: #00b2b2;
}


@media only screen and (max-width: 768px) {
  .menu-toggle-container {
    top: 16px;
    right: 16px;
  }

  .menu-toggle-btn {
    width: 52px;
    height: 52px;
    border-radius: 12px;
  }

  .menu-toggle-btn div {
    width: 24px;
    height: 2px;
    margin: 3px 0;
  }
}

/*Menu End*/
/*Header Start*/
.header {
  height: 100%;
  min-height: 100vh; 
  overflow: hidden;

  background-image: url("../images/slide1/1.jpg");
  background-position: center;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .header {
    background-image: url("../images/slide1/static_bg.jpg");
  }
}
.header__wrapper {
  position: relative;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  justify-content: space-between; 
  height: 100%;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}
.header__title {
  margin-bottom: 10px; 

  font-size: 7vh;
  font-family: "OpenSans-Light";
  color: white
}
.header__desc {
  position: relative;

  font-size: 5vh;
  font-family: "Freestyle";
  color: #aeaeae;
}
.header__desc::after {
  content: url("../images/slide1/flag.jpg");
  position: absolute;
  bottom: -25px; 
  left: calc(50% - 24.5px);
}
.header__row-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-top: 5vh; 

  -webkit-box-align: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: end;
  -ms-flex-align: center;
  -ms-flex-pack: end;
}
@media only screen and (max-width: 768px) {
  .header__row-one {
    text-align: center;
  }
}
.header__row-two {
  position: relative;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-grow: 2; 
  justify-content: center;
  align-items: center;

  -webkit-box-align: center;
  -webkit-box-flex: 2;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -ms-flex-positive: 2;
}
.header__row-two img {
  max-width: 100%;
}
@media only screen and (max-width: 768px) {
  .header__row-two {
    display: none;
  }
}
.header__row-three {
  position: relative;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center; 

  -webkit-box-align: center;
  -ms-flex-align: center;
}
@media only screen and (max-width: 768px) {
  .header__row-three {
    display: none;
  }
}
.header__row-leaf {
  position: relative;
  left: 150px; 
  z-index: 1;

  flex-shrink: 1;

  -ms-flex-negative: 1;
}
.header__row-logo {
  position: relative;
  z-index: 2;
}
.header__row-logo img {
  position: relative;
  z-index: 2;
}
.header__row-cup {
  position: absolute;
  bottom: -62px;
  left: calc(50% + 0px);
  z-index: 0;

  width: 230px;
}
.header__row-vase {
  position: relative;
  top: 80px;
  right: 50px;
  z-index: 3;

  flex-shrink: 1; 

  -ms-flex-negative: 1;
}
.header__row-head {
  position: absolute;
  bottom: 0;
  left: 150px;

  width: 180px;
}
.header__row-head img {
  max-width: 100%;
}

/*Header End*/
/*Header Menu Btn Start*/
.header__menu-btn {
  position: absolute;
  top: 25px;
  right: 5px;
  z-index: 8;

  cursor: pointer;
}
.header__menu-btn div {
  width: 38px;
  height: 4px;
  margin-bottom: 6px;

  background-color: #000000;

  -webkit-transition: -webkit-transform 0.7s;
       -o-transition:         transform 0.7s;
          transition: -webkit-transform 0.7s;
          transition:         transform 0.7s;
          transition:         transform 0.7s, -webkit-transform 0.7s;
}
.header__menu-btn.light_menu div {
  background-color: #ffffff;
}

.open_menu .header__menu-btn div {
  background-color: #ffffff;
}
.open_menu .header__menu-btn div:nth-of-type(1) {
  -webkit-transform: rotate(45deg) translate(10px, 4px);
      -ms-transform: rotate(45deg) translate(10px, 4px);
          transform: rotate(45deg) translate(10px, 4px);
}
.open_menu .header__menu-btn div:nth-of-type(2) {
  -webkit-transform: translate(100%);
      -ms-transform: translate(100%);
          transform: translate(100%);
  opacity: 0;
}
.open_menu .header__menu-btn div:nth-of-type(3) {
  -webkit-transform: rotate(-45deg) translate(10px, -4px);
      -ms-transform: rotate(-45deg) translate(10px, -4px);
          transform: rotate(-45deg) translate(10px, -4px);
}

/* Стили для активного состояния старой кнопки меню */
.header__menu-btn.active div:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(10px, 4px);
      -ms-transform: rotate(45deg) translate(10px, 4px);
          transform: rotate(45deg) translate(10px, 4px);
}
.header__menu-btn.active div:nth-child(2) {
  -webkit-transform: translate(100%);
      -ms-transform: translate(100%);
          transform: translate(100%);
  opacity: 0;
}
.header__menu-btn.active div:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(10px, -4px);
      -ms-transform: rotate(-45deg) translate(10px, -4px);
          transform: rotate(-45deg) translate(10px, -4px);
}

.pages .header__menu-btn div {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; 

  border: 1px solid #ffffff;
}

/*Header Menu Btn End*/
/*Services Start*/
.services {
  min-height: 100vh;
  height: auto;
  padding: clamp(24px, 4.5vh, 44px) clamp(20px, 4vw, 36px);
  overflow-y: auto;
  background: linear-gradient(135deg, #0f1f33, #1a3045);
}

.services__wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(min-content, auto);
  gap: clamp(16px, 2.6vw, 32px);
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
  .services__wrapper {
    grid-template-columns: 1fr;
  }
}

.services__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  justify-content: center;
  padding: clamp(18px, 3.5vh, 32px);
  border-radius: 24px;
  text-align: center;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.25);
}

.services__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.services__item-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  justify-content: center;
  gap: clamp(12px, 2.4vh, 24px);
  width: 100%;
  height: 100%;
}

.services__item-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.services__item-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(78px, 9vh, 104px);
  height: clamp(78px, 9vh, 104px);
  border-radius: 50%;
  color: #0f172a;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.95), rgba(244, 247, 255, 0.78) 65%, rgba(225, 233, 255, 0.45));
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.3);
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  --icon-primary: #22d3ee;
  --icon-secondary: #60a5fa;
}

.services__item-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: linear-gradient(140deg, var(--icon-primary), var(--icon-secondary));
  z-index: -1;
  opacity: 0.95;
  transition: opacity 0.45s ease, filter 0.45s ease;
}

.services__item-icon::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: inherit;
  background: linear-gradient(150deg, var(--icon-primary), transparent 65%);
  filter: blur(18px);
  opacity: 0.65;
  z-index: -2;
  transition: opacity 0.45s ease, filter 0.45s ease;
}

.services__item-icon svg {
  width: clamp(32px, 4vh, 44px);
  height: clamp(32px, 4vh, 44px);
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.services__item-icon svg * {
  vector-effect: non-scaling-stroke;
}

.services__item:hover .services__item-icon {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.32);
}

.services__item:hover .services__item-icon::after {
  filter: brightness(1.1);
}

.services__item-icon--it {
  --icon-primary: #22d3ee;
  --icon-secondary: #60a5fa;
}

.services__item-icon--seo {
  --icon-primary: #facc15;
  --icon-secondary: #f97316;
}

.services__item-icon--eda {
  --icon-primary: #34d399;
  --icon-secondary: #0ea5e9;
}

.services__item-icon--3d {
  --icon-primary: #a855f7;
  --icon-secondary: #38bdf8;
}

.services__item-content {
  max-width: 500px;
  color: #f8fafc;
  margin: 0 auto;
}
.services__item--site {
  background-color: #112133;
  background-image: url("../images/services/item_bg_1.jpg");
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
.services__item--seo {
  background-color: #f88005;
  background-image: url("../images/services/item_bg_2.jpg");
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
.services__item--mobile {
  background-color: #00b2b2;
  background-image: url("../images/services/item_bg_3.jpg");
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
.services__content-title {
  margin-bottom: clamp(10px, 1.6vh, 16px); 

  font-size: clamp(1.9rem, 3.6vh, 2.4rem);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.35);
}
.services__content-img {
  margin-bottom: 1vh;
}
.services__content-img img {
  width: auto; 
  max-width: 100%;
  height: 6vh;
}
.services__content-links {
  font-size: clamp(0.98rem, 2vh, 1.12rem);
  line-height: 1.55;
}
.services__content-links ul {
  padding-left: 0;
}

.services__content-links li {
  margin-bottom: clamp(6px, 1.3vh, 12px); 

  list-style: none;
}

.active .services__item--site {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.active .services__item--seo {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);

  -webkit-transition-delay: 0.5s;
       -o-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.active .services__item--mobile {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);

  -webkit-transition-delay: 1s;
       -o-transition-delay: 1s;
          transition-delay: 1s;
}

/*Services End*/

.services__content-title {
  font-size: clamp(1.9rem, 3.6vh, 2.4rem);
  margin-bottom: clamp(10px, 1.6vh, 16px);
}

.services__content-links {
  font-size: clamp(0.96rem, 1.9vh, 1.08rem);
  line-height: 1.5;
}

.services__content-links li {
  margin-bottom: clamp(4px, 1vh, 10px);
}

@media only screen and (max-width: 1024px) {
  .services {
    height: auto;
    min-height: 0;
    padding: 48px 32px;
  }

  .services__wrapper {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 24px;
  }
}

@media only screen and (max-width: 768px) {
  .services__item {
    padding: 32px 24px;
    max-width: 560px;
    margin: 0 auto;
  }

  .services__item-content {
    max-width: 100%;
  }
}
/*About Start*/
.about {
  position: relative;

  height: 100%;
  min-height: 100vh;
  overflow: hidden;

  font-size: 12px;
  color: #ffffff;

  background-image: url("../images/about/bg.jpg");
  background-position: center; 
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .about {
    padding-top: 20px;
    padding-bottom: 20px; 

    background-color: #444343;
  }
}
.about__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;

  width: 115%;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .about__bg {
    display: none;
  }
}
@media only screen and (max-width: 992px) and (orientation: landscape) {
  .about__bg {
    display: none;
  }
}
.about__bg-filter {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;

  background-color: rgba(0, 0, 0, 0.4);
}
.about__wrapper {
  position: relative;
  z-index: 2;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  height: 100%; 

  -webkit-box-align: center;
  -ms-flex-align: center;
}
.about__block {
  position: relative;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 45px;
  margin: 0 auto;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .about__block {
    flex-direction: column;
    margin: 0 auto;
  }
}
.about__text {
  width: 100%;
  max-width: 550px;
  /* margin-right: 65px; */
  line-height: 1.6; 
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .about__text {
    max-width: 100%;
    /* margin-right: 0; */
  }
}
.about__title {
  position: relative;

  margin-bottom: 4.5vh;

  font-size: 5vh;
  font-family: "OpenSans-Light";
  text-transform: uppercase;

  -webkit-transform: rotate3d(20, 0, 0, 90deg) translateY(50px);
          transform: rotate3d(20, 0, 0, 90deg) translateY(50px); 

  -webkit-transition: -webkit-transform 1s;
       -o-transition:         transform 1s;
          transition: -webkit-transform 1s;
          transition:         transform 1s;
          transition:         transform 1s, -webkit-transform 1s;
}
.about__title:after {
  content: url("../images/about/line.png");
  position: absolute;
  right: 0; 
  bottom: -3vh;
}
.about__subtitle {
  margin-bottom: 3vh;

  -webkit-transform: rotate3d(20, 0, 0, 90deg) translateY(50px);
          transform: rotate3d(20, 0, 0, 90deg) translateY(50px); 

  -webkit-transition: -webkit-transform 1s;
       -o-transition:         transform 1s;
          transition: -webkit-transform 1s;
          transition:         transform 1s;
          transition:         transform 1s, -webkit-transform 1s;
}
.about__subtitle span {
  color: #ff595f;
}
.about__desc {
  padding-top: 5px;

  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0; 

  -webkit-transition: 1s;
       -o-transition: 1s;
          transition: 1s;
}
/* Убрана полоска под about__desc */
.about__more {
  -webkit-transform: rotate3d(20, 0, 0, 90deg) translateY(50px);
          transform: rotate3d(20, 0, 0, 90deg) translateY(50px); 

  -webkit-transition: -webkit-transform 1s;
       -o-transition:         transform 1s;
          transition: -webkit-transform 1s;
          transition:         transform 1s;
          transition:         transform 1s, -webkit-transform 1s;
}
@media only screen and (max-width: 768px) {
  .about__more {
    margin-bottom: 50px; 

    text-align: center;
  }
}
.about__more .button {
  position: relative;

  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 195px;
  height: 45px;

  text-decoration: none; 

  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}
.about__more .button svg {
  position: absolute;
  top: 0;
  left: 0; 

  width: 100%;
  height: 100%;
}
.about__more .button svg rect {
  width: 100%;
  height: 100%;

  -webkit-transition: 0.5s;
       -o-transition: 0.5s;
          transition: 0.5s;

  fill: transparent;
  rx: 5px;
  ry: 5px; 
  stroke: #d0d0d0;
  stroke-dasharray: 50px 0;
  stroke-dashoffset: 50px;
  stroke-width: 1px;
}
.about__more .button:hover svg > rect {
  fill: rgba(0, 178, 178, 0.4); 
  stroke-dasharray: 5px 15px;
  stroke-dashoffset: 100px;
}
.about__more .button span {
  position: relative;
  z-index: 2;
}
.about__steps {
  max-width: 570px;
}
@media only screen and (max-width: 768px) {
  .about__steps {
    margin-right: auto; 
    margin-left: auto;
  }
}
.about__item {
  position: relative;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; 
  min-height: 12vh;
  padding-bottom: 2vh;
}
.about__item-count {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  margin-right: 30px;

  font-size: 30px;

  background-color: rgba(0, 0, 0, 0.204);
  border-radius: 50%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0); 

  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-negative: 0;
  -ms-flex-pack: center;
}
.about__item:before {
  content: "";
  position: absolute;
  top: 75px;
  left: 35px;

  display: inline-block;
  height: calc(100% - 75px);

  border: 1px dashed #d0d0d0;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);

  -webkit-transition: -webkit-transform 0.5s;
       -o-transition:         transform 0.5s;
          transition: -webkit-transform 0.5s;
          transition:         transform 0.5s;
          transition:         transform 0.5s, -webkit-transform 0.5s;
}
.about__item-text {
  padding-top: 5px;

  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0; 

  -webkit-transition: 1s;
       -o-transition: 1s;
          transition: 1s;
}
@media only screen and (max-width: 599px) {
  .about__item-text {
    padding-bottom: 10px;
  }
}
.about__item:last-of-type:before {
  display: none;
}

/*About animation Start*/
.active .about__title {
  -webkit-transform: rotate3d(0, 0, 0, 0) translateY(0);
          transform: rotate3d(0, 0, 0, 0) translateY(0); 

  -webkit-transition-delay: 0.5s;
       -o-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.active .about__subtitle {
  -webkit-transform: rotate3d(0, 0, 0, 0) translateY(0);
          transform: rotate3d(0, 0, 0, 0) translateY(0); 

  -webkit-transition-delay: 1s;
       -o-transition-delay: 1s;
          transition-delay: 1s;
}

.active .about__desc {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0); 
  opacity: 1;

  -webkit-transition-delay: 1.5s;
       -o-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

.active .about__more {
  -webkit-transform: rotate3d(0, 0, 0, 0) translateY(0);
          transform: rotate3d(0, 0, 0, 0) translateY(0); 

  -webkit-transition-delay: 2s;
       -o-transition-delay: 2s;
          transition-delay: 2s;
}

.active .about__item:nth-of-type(1) .about__item-count {
  -webkit-animation: 1s ease-in-out 0.5s scaleCount  forwards;
          animation: 1s ease-in-out 0.5s scaleCount  forwards;
}

.active .about__item:nth-of-type(1):before {
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1); 

  -webkit-transition-delay: 1s;
       -o-transition-delay: 1s;
          transition-delay: 1s;
}

.active .about__item:nth-of-type(2) .about__item-count {
  -webkit-animation: 1s ease-in-out 1s scaleCount  forwards;
          animation: 1s ease-in-out 1s scaleCount  forwards;
}

.active .about__item:nth-of-type(2):before {
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1); 

  -webkit-transition-delay: 1.5s;
       -o-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

.active .about__item:nth-of-type(3) .about__item-count {
  -webkit-animation: 1s ease-in-out 1.5s scaleCount  forwards;
          animation: 1s ease-in-out 1.5s scaleCount  forwards;
}

.active .about__item:nth-of-type(3):before {
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1); 

  -webkit-transition-delay: 2s;
       -o-transition-delay: 2s;
          transition-delay: 2s;
}

.active .about__item:nth-of-type(4) .about__item-count {
  -webkit-animation: 1s ease-in-out 2s scaleCount  forwards;
          animation: 1s ease-in-out 2s scaleCount  forwards;
}

.active .about__item .about__item-text {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0); 
  opacity: 1;

  -webkit-transition-delay: 1.5s;
       -o-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

@-webkit-keyframes scaleCount {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  60% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scaleCount {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  60% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/*About animation End*/
/*About End*/
/*Portfolio Start*/
.portfolio {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;

  overflow: hidden;
  background-image: url("../images/portfolio/bg.png");
  background-position: center;
  background-size: cover;
}
  
.portfolio__slider {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  background-color: rgba(246, 246, 246, 0.95);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}

.portfolio__header {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 20px;
  background-color: #ffffff;
  border-radius: 10px 10px 0 0;
}

.portfolio__header-dots {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.portfolio__header-dots span {
  width: 12px;
  height: 12px;
  margin: 0 4px;
  border-radius: 50%;
  animation: dotPulse 2.8s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.18); }
}

.portfolio__header-dots span:nth-child(1) { background-color: #ff5f57; }
.portfolio__header-dots span:nth-child(2) { background-color: #ffbd2e; }
.portfolio__header-dots span:nth-child(3) { background-color: #28ca41; }

.portfolio__header-search {
  flex-grow: 1;
  font-size: 18px;
  color: #333;
}

.portfolio__content {
  position: relative;
  height: 70vh;
  padding: 30px 0;
  }

.js-sider {
  height: 100%;
}

.portfolio__slide {
  position: relative;
  height: 60vh;
  margin: 0 15px;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  transform: scale(0.9);
  /* opacity: 0.5; */
}

.slick-current .portfolio__slide {
  transform: scale(1);
  opacity: 1;
}

.portfolio__slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  color: #fff;
  border-radius: 0;
  opacity: 1;
  transform: none;
  transition: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  align-items: flex-start;
  padding: 0 28px 24px 28px;
  pointer-events: none;
}
.portfolio__slide-title {
  font-family: "OpenSans-Regular", Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px #000a;
  margin-bottom: 0;
  background: rgba(0,0,0,0.7);
  border-radius: 6px;
  padding: 6px 18px 4px 18px;
  transition: color 0.3s, background 0.3s;
  pointer-events: auto;
}
.portfolio__slide:hover .portfolio__slide-title,
.slick-current .portfolio__slide .portfolio__slide-title {
  color: #22d3ee;
  background: rgba(0,0,0,0.85);
}
.portfolio__slide-desc {
  font-size: 1.05rem;
  color: #e6e6e6;
  opacity: 0;
  line-height: 1.7;
  margin: 0;
  padding: 6px 18px 8px 18px;
  background: rgba(0,0,0,0.7);
  border-radius: 6px;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: auto;
}
.portfolio__slide:hover .portfolio__slide-desc,
.slick-current .portfolio__slide .portfolio__slide-desc {
  opacity: 1;
  transform: translateY(0);
}

.portfolio__dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
}

.portfolio__dots ul {
  display: flex;
  justify-content: center;
  margin: 0; 
  padding: 0;
  list-style: none;
}

.portfolio__dots li {
  margin: 0 5px;
}

.portfolio__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  text-indent: -9999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.portfolio__dots li.slick-active button {
  background-color: #fff;
  transform: scale(1.3);
}

@media only screen and (max-width: 1024px) {
  .portfolio__content {
    height: 50vh;
  }
  
  .portfolio__slide {
    height: 40vh;
  }
}

@media only screen and (max-width: 768px) {
  .portfolio__content {
    height: 40vh;
  }
  
  .portfolio__slide {
    height: 30vh;
  }
  
  .portfolio__slide-title {
    font-size: 18px;
}
  }

@media only screen and (max-width: 480px) {
  .portfolio__content {
    height: 30vh;
}
  
  .portfolio__slide {
    height: 25vh;
}

  .portfolio__header-search {
    font-size: 16px;
  }
}

/* Portfolio End */
/*Progress Start*/
.progress {
  position: relative;

  min-height: 100vh;
  min-height: 100vh; 

  background-color: #0f1217;
  background-image: url("../images/progress/bg.jpg");
  background-position: center;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .progress {
    padding-top: 50px;
    padding-bottom: 25px;
  }
}
.progress__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: auto;
  padding: clamp(24px, 6vh, 52px) 0;
}
.progress__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;

  color: #ffffff; 

  -webkit-box-align: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}
.progress__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 10vh; 

  -ms-flex-pack: distribute;
}
@media only screen and (max-width: 768px) {
  .progress__list {
        flex-wrap: wrap; 

    -ms-flex-wrap: wrap;
  }
}
.progress__item {
  position: relative;

  max-width: 290px;
}
@media only screen and (max-width: 768px) {
  .progress__item {
    width: 50%;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 599px) {
  .progress__item {
    width: 100%;
  }
}
.progress__item-count {
  position: relative;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20vh; 

  font-size: 5.5vh;
  font-family: "OpenSans-Light";
  color: #ffffff;

  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}
.progress__item-count svg {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;

  width: 20vh;
  height: 20vh;
  margin: 0 auto;
}
.progress__item-count svg circle {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center; 

  cx: 50%;
  cy: 50%;
  fill: none;
  r: 15;
  stroke: #747474;
  stroke-width: 1px;
}
.progress__item-text {
  margin-top: 3vh; 

  font-size: 2.2vh;
  font-family: "OpenSans-Light";
  text-align: center;
  color: #ffffff;
}
.progress__text {
  max-width: 580px; 
  margin-bottom: 3vh;

  font-size: 2.5vh;
  font-family: "OpenSans-Light";
  text-align: center;
}
.progress__text span {
  text-decoration: underline;
}
.progress__more {
  margin-bottom: 2vh;
}
.progress__more .button {
  position: relative;

  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 195px;
  height: 45px;

  color: #ffffff;
  text-decoration: none;

  background-color: transparent;
  border: none;
  cursor: pointer; 

  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}
.progress__more .button svg {
  position: absolute;

  width: 100%;
  height: 100%;
}
.progress__more .button svg rect {
  width: 100%;
  height: 100%;

  -webkit-transition: 0.5s;
       -o-transition: 0.5s;
          transition: 0.5s;

  fill: transparent;
  rx: 5px;
  ry: 5px; 
  stroke: #d0d0d0;
  stroke-dasharray: 50px 0;
  stroke-dashoffset: 50px;
  stroke-width: 1px;
}
.progress__more .button:hover svg > rect {
  fill: rgba(0, 178, 178, 0.4); 
  stroke-dasharray: 5px 15px;
  stroke-dashoffset: 100px;
}
.progress__more .button span {
  position: relative;
  z-index: 2;

  display: block;
  flex-shrink: 0; 

  -ms-flex-negative: 0;
}
.progress__phone {
  font-size: 2.5vh;
  font-family: "OpenSans-Light";
  text-align: center;
}
.progress__phone a {
  text-decoration: none;
}
.progress__phone span {
  display: block;
  margin-bottom: 2vh;
}

.active .progress__item-anim {
  animation: circle-chart-fill 2s  reverse; 

  stroke: #ffffff !important;
  stroke-dasharray: 100, 100;
}

@-webkit-keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}

@keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}

/*Progress End*/
/*Custom style Start*/
@media only screen and (max-width: 768px) {
  #pp-nav {
    display: none;
  }
}

/*Custom style End*/
/*Pages Start*/
.page-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
}

.page-layout2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  height: 30%; 

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
}


.page-header {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
 

  background-color: #f5f5f5;
  background-image: url("../images/page/bg/services_bg8.jpg");
  background-repeat: repeat-x;
  background-position: center top;

  -webkit-box-flex: 0;
}
.page-header--bgcover{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.page-header__logo{
  position: relative;
  top: 70px;
  left: 50px;
}
@media only screen and (max-width: 599px) {
  .page-header__logo{
    left: initial;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.page-header__logo img{
  max-width: 100%;
}
.page-header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(80vh - 170px); 

  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}
@media only screen and (max-width: 599px) {
  .page-header__wrapper {
   
  }
}

.page-header__title {
  position: relative;
  bottom: 70px;
  margin-bottom: 45px;

  font-size: 45px;
  font-family: "OpenSans-Light";
  text-align: center;
  color: #ffffff;

  /* Добавление тени к тексту */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 599px) {
  .page-header__title {
    font-size: 28px;
  }
}

.page-main {
  -ms-flex: 1 0 auto;
      flex: 1 0 auto; 

  -webkit-box-flex: 1;
}

.page-footer__map {
  position: relative;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center; 
  width: 100%;
  height: 300px;

  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}
.page-footer__map #map {
  position: absolute;
  top: 0;
  left: 0;

  width: 100vw;
  height: 100%;
}

.page-footer__contacts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 295px;
  color: #000000; 
  background-image: url("../images/page/bg/services_bg-n.jpg"); /* Укажите путь к вашему изображению */
  background-size: cover; /* Покрывает весь блок */
  background-position: center; /* Центрирует изображение */
}

.page-footer__contacts .container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; 
  width: 100%;
}
.page-footer__contacts .menu__content-links {
  padding-top: 40px; 
  padding-bottom: 40px;
  
}

/*Pages End*/
/*Button page Start*/
.button-page {
  z-index: 1;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 292px;
  height: 72px;
  padding: 15px;

  font-size: 22px;
  color: #ffffff;

  background-color: #007bff;
  border: none;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 0 0 #2a6db6;
          box-shadow: 0 0 0 0 #2a6db6;
  cursor: pointer; 

  -webkit-transition: 0.5s;
       -o-transition: 0.5s;
          transition: 0.5s;

  -webkit-box-align: center;
  -ms-flex-align: center;
}
.button-page:hover {
  background-color: #2a6db6;
  -webkit-box-shadow: 0 0 20px 0 #ffffff;
          box-shadow: 0 0 20px 0 #ffffff;
}
.button-page svg {
  align-self: baseline; 
  width: 30px;
  height: 30px;
  margin-right: 20px;

  -ms-flex-item-align: baseline;
}

/*Button page End*/
/*Page Advantages Start*/
.page-advantages {
  padding-top: 50px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 599px) {
  .page-advantages {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}
.page-advantages__title {
  margin-bottom: 60px; 

  font-size: 40px;
  font-family: "OpenSans-Light";
  text-align: center;
}
@media only screen and (max-width: 599px) {
  .page-advantages__title {
    margin-bottom: 20px; 

    font-size: 20px;
  }
}
.page-advantages__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      flex-wrap: wrap; 
  justify-content: center;
  align-items: stretch;

  -webkit-box-align: stretch;
  -webkit-box-pack: center;
  -ms-flex-align: stretch;
  -ms-flex-pack: center;
  -ms-flex-wrap: wrap;
}
.page-advantages__item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; 
  max-width: calc(33.33333333% - 20px);
  margin: 10px;
  padding: 15px;

  border: 1px solid #dddddd;
}
@media only screen and (max-width: 768px) {
  .page-advantages__item {
    max-width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  .page-advantages__item {
    max-width: calc(100% - 20px);
  }
}
.page-advantages__item-img {
  margin-bottom: 10px; 

  text-align: center;
}
.page-advantages__item-img img {
  max-width: 100%;
}
.page-advantages__item-title {
  height: 52px; 

  font-size: 20px;
  text-align: center;
}
@media only screen and (max-width: 599px) {
  .page-advantages__item-title {
    height: initial;
    margin-bottom: 10px;
  }
}
.page-advantages__item-desc {
  font-size: 12px;
  line-height: 1.3;
}

/*Page Advantages End*/
/*Page Process Start*/
.page-process {
  padding-top: 70px; 

  color: #ffffff;

  background-image: url("../images/progress/bg.jpg");
  background-position: center;
  background-size: cover;
}
.page-process__title {
  margin-bottom: 25px; 

  font-size: 22px;
}
.page-process__item {
  position: relative;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 55px;
}
@media only screen and (max-width: 767px) {
  .page-process__item {
    margin-left: 0 !important;
  }
}
.page-process__item:nth-of-type(2) {
  margin-left: 105px;
}
.page-process__item:nth-of-type(3) {
  margin-left: 210px;
}
.page-process__item:nth-of-type(4) {
  margin-left: 315px;
}
.page-process__item:nth-of-type(4) .page-process__item-count:after {
  -webkit-transform: rotate(90deg) translateX(-73px) translateY(79px);
      -ms-transform: rotate(90deg) translateX(-73px) translateY(79px);
          transform: rotate(90deg) translateX(-73px) translateY(79px);
}
.page-process__item:nth-of-type(5) {
  position: relative;
  bottom: 94px;

  max-width: 290px;
}
@media only screen and (max-width: 767px) {
  .page-process__item:nth-of-type(5) {
    position: initial;

    max-width: initial;
  }
}
.page-process__item:nth-of-type(5) .page-process__item-count:after {
  -webkit-transform: rotate(0deg) translateX(0px) translateY(0px);
      -ms-transform: rotate(0deg) translateX(0px) translateY(0px);
          transform: rotate(0deg) translateX(0px) translateY(0px);
}
.page-process__item:nth-of-type(6) {
  position: relative;
  bottom: 92px;

  max-width: 350px; 
  margin-left: 158px;
}
@media only screen and (max-width: 767px) {
  .page-process__item:nth-of-type(6) {
    position: initial;

    max-width: initial;
  }
}
.page-process__item:nth-of-type(6) .page-process__item-count:after {
  height: 120px;

  -webkit-transform: rotate(90deg) translateX(-92px) translateY(94px);
      -ms-transform: rotate(90deg) translateX(-92px) translateY(94px);
          transform: rotate(90deg) translateX(-92px) translateY(94px);
}
.page-process__item-count {
  z-index: 2; 

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  margin-right: 25px;

  font-size: 25px;
  color: #ffffff;

  background-color: rgba(0, 178, 178, 0.3);
  border-radius: 50%;

  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-negative: 0;
  -ms-flex-pack: center;
}
.page-process__item-count span {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;

  display: block;
  width: 65px;
  height: 65px;

  background-color: rgba(107, 207, 207, 0.3);
  border-radius: 50%;

  -webkit-animation: puls 1s ease-in-out infinite alternate;
          animation: puls 1s ease-in-out infinite alternate;
}
@media only screen and (max-width: 767px) {
  .page-process__item-count span {
    display: none;
  }
}
.page-process__item-count:after {
  content: "";
  position: absolute;
  top: 65px;
  left: 32px;

  display: inline-block;
  height: calc(100% - 30px);

  border: 1px dashed #d0d0d0;
  -webkit-transform: rotate(-43deg) translateX(50px) translateY(23px);
      -ms-transform: rotate(-43deg) translateX(50px) translateY(23px);
          transform: rotate(-43deg) translateX(50px) translateY(23px);
}
@media only screen and (max-width: 767px) {
  .page-process__item-count:after {
    display: none;
  }
}
.page-process__item-text span {
  display: block;
  margin-bottom: 5px; 

  font-size: 18px;
}
.page-process__item-text p {
  margin: 0; 

  font-size: 12px;
}

@-webkit-keyframes puls {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@keyframes puls {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

/*Page Process End*/
/*Page Package Start*/
.page-package {
  padding-top: 80px;
  padding-bottom: 50px;
}
.page-package__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  align-items: stretch; 

  -webkit-box-align: stretch;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-align: stretch;
}
@media only screen and (max-width: 768px) {
  .page-package__wrapper {
    -ms-flex-direction: row;
        flex-direction: row; 

    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
  }
}
@media only screen and (max-width: 599px) {
  .page-package__wrapper {
        flex-wrap: wrap; 

    -ms-flex-wrap: wrap;
  }
}
.page-package__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: stretch; 

  -webkit-box-align: stretch;
  -webkit-box-pack: center;
  -ms-flex-align: stretch;
  -ms-flex-pack: center;
}
@media only screen and (max-width: 768px) {
  .page-package__row {
    -ms-flex-direction: column;
        flex-direction: column; 

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
  }
}
.page-package__content {
  margin-top: 40px;

  font-size: 12px;
}
.page-package__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  align-items: stretch;
  width: 20%;
  height: 220px; 

  -webkit-box-align: stretch;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-align: stretch;
}
@media only screen and (max-width: 768px) {
  .page-package__item {
    width: 100%;
  }
}
.page-package__item:nth-last-of-type(2n+1) .page-package__text:nth-last-of-type(2) {
  background-color: #fafafa;
}
@media only screen and (max-width: 768px) {
  .page-package__item:nth-last-of-type(2n+1) .page-package__text:nth-last-of-type(2) {
    background-color: #f0f0f0;
  }
}
.page-package__item:nth-last-of-type(2n+1) .page-package__text:nth-last-of-type(1) {
  background-color: #f0f0f0;
}
@media only screen and (max-width: 768px) {
  .page-package__item:nth-last-of-type(2n+1) .page-package__text:nth-last-of-type(1) {
    background-color: #fafafa;
  }
}
.page-package__text {
  flex-grow: 1;
  flex-shrink: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 50%;
  padding: 20px 15px;

  background-color: #f0f0f0;

  -webkit-transition: -webkit-transform 0.5s;
       -o-transition:         transform 0.5s;
          transition: -webkit-transform 0.5s;
          transition:         transform 0.5s;
          transition:         transform 0.5s, -webkit-transform 0.5s; 

  -webkit-box-flex: 1;
  -ms-flex-negative: 0;
  -ms-flex-positive: 1;
}
.page-package__text:hover {
  -webkit-box-shadow: 0 0 15px -5px #000000;
          box-shadow: 0 0 15px -5px #000000; 
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.page-package__text:last-of-type {
  background-color: #fafafa;
}
.page-package__text--red {
  background-color: #f2675d !important;
}
.page-package__text--dark {
  background-color: #404040 !important;
}
.page-package__text-title {
  padding-top: 20px; 

  font-size: 26px;
  color: #ffffff;
}
.page-package__text-subtitle {
  padding-top: 40px;

  font-size: 16px;
  line-height: 1.4; 
  color: #ffffff;
}
.page-package__text-phone {
  padding-top: 10px;
}
.page-package__text-phone a {
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
}
.page-package__text-price {
  padding-top: 20px; 

  font-size: 35px;
  line-height: 1;
  color: #ffffff;
}
.page-package__text-oldprice {
  padding-top: 10px;

  font-size: 18px;
  line-height: 1;
  color: #ffffff;
  text-decoration: line-through;
}
.page-package__text-desc {
  font-size: 12px;
  color: #000000;
}

/*Page Package End*/
/*Page Template Start*/
.page-template {
  padding-top: 50px;
  padding-bottom: 50px;
}
.page-tempalte__title{
  font-size: 40px;
  text-align: center;
  margin-bottom: 40px;
  font-family: "OpenSans-Light";
}
@media only screen and (max-width: 768px) {
  .page-tempalte__title{
    font-size: 35px;
  }
}
@media only screen and (max-width: 599px) {
  .page-tempalte__title{
    font-size: 20px;
  }
}
.page-template__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: stretch; 

  -webkit-box-align: stretch;
  -webkit-box-pack: justify;
  -ms-flex-align: stretch;
  -ms-flex-pack: justify;
}
@media only screen and (max-width: 768px) {
  .page-template__wrapper {
        flex-wrap: wrap; 

    -ms-flex-wrap: wrap;
  }
}
.page-template__block {
  width: 100%;
  margin-right: 5px;
  margin-bottom: 35px; 
  margin-left: 5px;
  overflow: hidden;

  background-color: #f5f6f8;
  border: 1px solid #dde0e7;
}
.page-template__block-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px; 

  background-color: #00b2b2;

  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}
.page-template__block-header img {
  max-width: 100%;
}
.page-template__block-body {
  padding: 5px;
}
.page-template__block-body .title {
  min-height: 45px; 
  margin: 0;

  font-weight: normal;
  font-size: 18px;
  font-family: "OpenSans-Regular";
  text-align: center;
}
.page-template__block-body .text {
  font-size: 12px;
  text-align: justify;
}
.page-template__content {
  padding-right: 5px; 
  padding-left: 5px;

  font-size: 14px;
  color: #525252;
}
.page-template__content img{
  max-width: 100%;
  height: auto;
}
.page-template--images .page-template__block{
  background-color: #ffffff;
  border: none;
  text-decoration: none;
  max-width: calc(25% - 10px);
}
@media only screen and (max-width: 768px) {
  .page-template--images .page-template__block {
    max-width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 599px) {
  .page-template--images .page-template__block {
    max-width: calc(100% - 10px);
  }
}
.page-template--images .page-template__block-header{
  background-color: #ffffff;

}
.page-template--images .page-template__block-body{
  background-color: #ffffff;
  font-size: 20px;
  color: #525252;
}
.page-template--images .page-template__wrapper{
  flex-wrap: wrap;
}

/*Page Template End*/

/*Contacts Start*/
.contacts {
  padding-top: 55px;
  padding-bottom: 55px;
}
.contacts__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: stretch; 

  -webkit-box-align: stretch;
  -webkit-box-pack: center;
  -ms-flex-align: stretch;
  -ms-flex-pack: center;
}
@media only screen and (max-width: 768px) {
  .contacts__wrapper {
    -ms-flex-direction: column;
        flex-direction: column;
    align-items: center; 

    -webkit-box-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-align: center;
  }
}
.contacts__text {
  align-self: center;
  padding-right: 50px; 

  font-size: 24px;
  color: #000000;

  -ms-flex-item-align: center;
}
@media only screen and (max-width: 768px) {
  .contacts__text {
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 599px) {
  .contacts__text {
    font-size: 18px;
  }
}
.contacts__map {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .contacts__map {
    width: 100%;
  }
}
.contacts__map #map {
  width: 100%;
  height: 0;
  padding-bottom: 75%; 

  background-color: #cccccc;
}

/*Contacts End*/


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

/* Стили для контейнера блогов */
.blog-section {
  padding: 40px 0;
  background-color: #f8f8f8;
}

.blog-section__title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  color: #333;
}

.blog-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.blog-item {
  background-color: #ffffff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
  overflow: hidden;
}

.blog-item:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.blog-item__img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-item:hover .blog-image {
  transform: scale(1.1);
}

.blog-item-content {
  padding: 20px;
}

.blog-item__title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.blog-item__excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.blog-item__link {
  display: inline-block;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.blog-item__link:hover {
  text-decoration: underline;
}

/* Адаптивность */
@media (max-width: 768px) {
  .blog-items {
      grid-template-columns: 1fr;
  }
}

.btn {
  background-color: #007bff;
  color: #ffffff;
  padding: 9px 18px;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0056b3;
}


.single-post-content {
  padding: 20px 0;
}

.post-layout {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.post-image {
  flex: 1;
  max-width: 50%;
}

.post-image img {
  width: 100%;
  height: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.post-content {
  flex: 2;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.single-post-header h1 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

.single-post-body {
  font-size: 16px;
  line-height: 1.6;
}

/* Адаптивность */
@media (max-width: 768px) {
  .post-layout {
      flex-direction: column;
  }

  .post-image {
      max-width: 100%;
  }
}

.portfolio__slide {
  position: relative;
  display: block;
  background-size: cover;
  background-position: center;
}

.portfolio__slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Полупрозрачный черный фон */
  padding: 10px;
}

.portfolio__slide-title {
  color: #fff;
  font-size: 18px;
}

/* Services Animation Start */
.services__item {
    opacity: 0;
    transform: translateY(50px) rotateX(-10deg);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
    perspective: 1000px;
    backface-visibility: hidden;
}

.services__item--site {
    transition-delay: 0.2s;
}

.services__item--seo {
    transition-delay: 0.4s;
}

.services__item--mobile {
    transition-delay: 0.6s;
}

.services__item-img {
    transform: translateZ(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.services__item-content {
    transform: translateZ(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.services.active .services__item {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

.services__item:hover .services__item-img {
    transform: translateZ(30px) scale(1.05);
}

.services__item:hover .services__item-content {
    transform: translateZ(50px);
}

.services__content-title {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.3s;
}

.services__content-links {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.5s;
}

.services.active .services__content-title,
.services.active .services__content-links {
    opacity: 1;
    transform: translateY(0);
}

/* Добавляем эффект свечения при наведении */
.services__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.services__item:hover::before {
    opacity: 1;
}

/* Добавляем анимацию фона */
.services {
    position: relative;
    overflow: hidden;
}

.services::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        rgba(255,255,255,0.03) 0%,
        rgba(255,255,255,0.05) 50%,
        rgba(255,255,255,0.03) 100%);
    transform: rotate(30deg);
    animation: backgroundShine 8s linear infinite;
    pointer-events: none;
}

@keyframes backgroundShine {
    from {
        transform: translateX(-50%) rotate(30deg);
    }
    to {
        transform: translateX(50%) rotate(30deg);
    }
}

/* Добавляем анимацию для иконок */
.services__item-img img {
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.services__item:hover .services__item-img img {
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2));
    transform: scale(1.05);
}

/* Services Animation End */

/* Services Animation V2 Start */
.services {
    perspective: 2000px;
    transform-style: preserve-3d;
    background: linear-gradient(135deg, #112133 0%, #1a3045 100%);
}

.services__item {
    opacity: 0;
    transform: translateZ(-100px) rotateY(-20deg);
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.services__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.1) 50%,
        rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.services__item:hover::before {
    transform: translateX(100%);
}

.services__item--site {
    transition-delay: 0.3s;
    background: linear-gradient(135deg, #112133 0%, #1d364e 100%);
}

.services__item--seo {
    transition-delay: 0.6s;
    background: linear-gradient(135deg, #f88005 0%, #ffa042 100%);
}

.services__item--mobile {
    transition-delay: 0.9s;
    background: linear-gradient(135deg, #00b2b2 0%, #00d4d4 100%);
}

.services.active .services__item {
    opacity: 1;
    transform: translateZ(0) rotateY(0);
}

.services__item-content {
    position: relative;
    z-index: 2;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: 0.2s;
}

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

.services__content-title {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.services__item:hover .services__content-title {
    transform: scale(1.05);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
}

.services__content-links {
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: 0.4s;
}

.services.active .services__content-links {
    transform: translateY(0);
    opacity: 1;
}

.services__content-links li {
    position: relative;
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.services.active .services__content-links li {
    transform: translateX(0);
    opacity: 1;
}

.services__content-links li:nth-child(1) { transition-delay: 0.6s; }
.services__content-links li:nth-child(2) { transition-delay: 0.7s; }
.services__content-links li:nth-child(3) { transition-delay: 0.8s; }

.services__item-img {
    transform: translateY(-30px) scale(0.9);
    opacity: 0;
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.services.active .services__item-img {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.services__item:hover .services__item-img {
    transform: translateY(-10px) scale(1.05);
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.services__item:hover {
    transform: translateZ(50px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.services__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center,
        rgba(255,255,255,0.2) 0%,
        rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.services__item:hover::after {
    opacity: 1;
}

/* Services Animation V2 End */

.portfolio__slide.cf-center:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  filter: brightness(1.05) saturate(1.1);
}
.portfolio__slide.cf-center::after {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  background: linear-gradient(120deg,rgba(255,255,255,0.15) 0%,rgba(255,255,255,0) 60%);
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: 8px;
}
.portfolio__slide.cf-center:hover::after {
  opacity: 1;
}

.portfolio__slide.cf-center .portfolio__slide-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
}
.portfolio__slide:not(.cf-center) .portfolio__slide-overlay {
  background: linear-gradient(to top, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 100%);
}

.portfolio__slide.cf-center {
  opacity: 1 !important;
}
.portfolio__slide.cf-center .portfolio__slide-overlay {
  opacity: 1 !important;
}

/* Градиентный заголовок */
.gradient-title {
  background: linear-gradient(90deg, #22d3ee 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-shadow: 0 4px 24px #0008;
}

/* Collaboration panel */
.collab {
  position: relative;
  isolation: isolate;
  padding: clamp(18px, 3.6vw, 28px);
  border-radius: 28px;
  background: rgba(4, 11, 25, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 32px 80px rgba(2, 6, 23, 0.55);
  overflow: hidden;
  backdrop-filter: blur(20px);
  max-width: clamp(400px, 98vw, 1360px);
  margin: 0 auto;
}

.collab__halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
}

.collab__halo--one {
  width: 420px;
  height: 420px;
  top: -140px;
  left: -180px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.8), transparent 70%);
}

.collab__halo--two {
  width: 360px;
  height: 360px;
  bottom: -160px;
  right: -120px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.7), transparent 70%);
}

.collab__inner {
  position: relative;
  z-index: 1;
  max-width: min(1180px, 100%);
  margin: 0 auto;
  text-align: center;
}

.collab__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #22d3ee;
  background: rgba(14, 116, 144, 0.2);
  border: 1px solid rgba(34, 211, 238, 0.4);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.collab__tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.collab__title {
  margin-bottom: 12px;
  font-size: clamp(2.3rem, 3.8vw, 3.4rem);
  font-family: "OpenSans-Light", Arial, sans-serif;
  color: #f8fafc;
}

.collab__subtitle {
  margin: 0 auto clamp(24px, 4.5vh, 32px);
  max-width: 760px;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: #cbd5f5;
  line-height: 1.65;
}

.collab__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px, 4vw, 40px);
}

.collab-card {
  position: relative;
  padding: clamp(20px, 3.6vh, 26px);
  border-radius: 24px;
  background: rgba(10, 20, 35, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: 0 14px 36px rgba(2, 6, 23, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 10px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  --card-accent: #22d3ee;
  --card-accent-secondary: #60a5fa;
}

.collab-card::before {
  content: '';
  position: absolute;
  inset: -20% -40% auto auto;
  height: 120%;
  width: 120%;
  background: radial-gradient(circle, var(--card-accent) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.collab-card__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(52px, 5.5vh, 60px);
  height: clamp(52px, 5.5vh, 60px);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.22), rgba(96, 165, 250, 0.15));
  border: 1px solid rgba(148, 163, 184, 0.16);
  color: var(--card-accent);
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.4);
}

.collab-card__icon svg {
  width: clamp(24px, 2.8vh, 32px);
  height: clamp(24px, 2.8vh, 32px);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.collab-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #f8fafc;
}

.collab-card__link,
.collab-card__text {
  font-size: 0.98rem;
  color: rgba(226, 232, 240, 0.92);
  text-decoration: none;
}

.collab-card__text {
  margin: 0;
  line-height: 1.6;
}

.collab-card__link:hover {
  color: var(--card-accent);
}

.collab-card__note {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(148, 163, 184, 0.85);
}

.collab-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.45);
  border-color: rgba(226, 232, 240, 0.22);
}

.collab-card:hover::before {
  opacity: 0.22;
}

.collab-card--phone { --card-accent: #22d3ee; --card-accent-secondary: #6366f1; }
.collab-card--mail { --card-accent: #38bdf8; --card-accent-secondary: #8b5cf6; }
.collab-card--place { --card-accent: #f97316; --card-accent-secondary: #facc15; }
.collab-card--chat { --card-accent: #34d399; --card-accent-secondary: #14b8a6; }

.collab__cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: clamp(20px, 4.5vh, 34px);
  flex-wrap: wrap;
}

.collab__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  min-width: clamp(200px, 22vw, 240px);
}

.collab__btn--primary {
  background: linear-gradient(135deg, #22d3ee, #6366f1);
  color: #0f172a;
  box-shadow: 0 18px 38px rgba(34, 211, 238, 0.35);
}

.collab__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(99, 102, 241, 0.35);
}

.collab__btn--ghost {
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.6);
}

.collab__btn--ghost:hover {
  border-color: rgba(34, 211, 238, 0.8);
  color: #22d3ee;
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .collab {
    padding: clamp(22px, 6.5vw, 34px);
  }

  .collab__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .collab {
    padding: 20px 14px;
  }

  .collab-card {
    padding: 16px;
  }

  .collab__cta {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-height: 820px) {
  .progress__wrapper {
    padding: 20px 0;
  }

  .collab {
    padding: 16px clamp(14px, 3.4vw, 24px);
    max-width: clamp(360px, 90vw, 1100px);
  }

  .collab__title {
    font-size: clamp(1.75rem, 2.6vw, 2.3rem);
    margin-bottom: 6px;
  }

  .collab__subtitle {
    max-width: 580px;
    margin-bottom: 14px;
    font-size: clamp(0.9rem, 1.15vw, 1.02rem);
  }

  .collab__grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 10px;
  }

  .collab-card {
    padding: 12px;
    gap: 10px;
  }

  .collab-card__icon {
    width: clamp(38px, 4vh, 46px);
    height: clamp(38px, 4vh, 46px);
  }

  .collab-card__icon svg {
    width: clamp(18px, 1.9vh, 22px);
    height: clamp(18px, 1.9vh, 22px);
  }

  .collab-card__title {
    font-size: 0.9rem;
  }

  .collab-card__link,
  .collab-card__text {
    font-size: 0.82rem;
  }

  .collab-card__note {
    font-size: 0.72rem;
  }

  .collab__cta {
    gap: 8px;
    margin-top: 16px;
  }

  .collab__btn {
    padding: 9px 18px;
  }
}

@media (max-height: 680px) {
  .collab__grid {
    grid-template-columns: 1fr;
  }

  .collab-card {
    padding: 12px;
  }
}

/* Карточки контактов */
.contacts-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.contact-card {
  background: rgba(20,30,40,0.85);
  border-radius: 18px;
  box-shadow: 0 4px 32px #0008;
  padding: 32px 28px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  animation: fadeInUp 1.1s;
}
.contact-card:hover {
  transform: translateY(-8px) scale(1.06);
  box-shadow: 0 8px 40px #22d3ee55, 0 2px 16px #0006;
  background: rgba(34,211,238,0.12);
}
.icon {
  filter: drop-shadow(0 0 8px #22d3ee88);
  transition: color 0.3s, filter 0.3s;
}
.contact-card:hover .icon {
  color: #6366f1;
  filter: drop-shadow(0 0 12px #6366f1cc);
}

/* SVG-декор */
.svg-divider {
  width: 100%;
  height: 40px;
  position: absolute;
  left: 0;
  bottom: -40px;
  z-index: 1;
  pointer-events: none;
}

/* Анимации */
@keyframes fadeInDown { from { opacity:0; transform: translateY(-40px);} to {opacity:1; transform:none;} }
@keyframes fadeInUp { from { opacity:0; transform: translateY(40px);} to {opacity:1; transform:none;} }

/* Адаптивность */
@media (max-width: 900px) {
  .contacts-cards { flex-direction: column; gap: 20px; }
  .contacts-creative { padding: 0 10px; }
}
@media (max-width: 600px) {
  .contact-card { min-width: 0; width: 100%; padding: 20px 10px; }
  .gradient-title { font-size: 1.5rem; }
}

.portfolio__slide.cf-center .portfolio__slide-overlay {
  background: rgba(0,0,0,0.7);
}
.portfolio__slide:not(.cf-center) .portfolio__slide-overlay {
  background: rgba(0,0,0,0.7);
}

.portfolio__slide.cf-center .portfolio__slide-overlay {
  background: none;
}
.portfolio__slide:not(.cf-center) .portfolio__slide-overlay {
  background: none;
}

/* Inner Pages */
.inner-page {
  min-height: 100vh;
  background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.18), transparent 45%),
              radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.2), transparent 50%),
              #020617;
  color: #e2e8f0;
  font-family: "OpenSans-Regular", Arial, sans-serif;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 140px 24px 120px;
  text-align: center;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(3, 7, 18, 0.92));
}

.inner-hero::before,
.inner-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.4), transparent 65%);
  filter: blur(10px);
  opacity: 0.6;
}

.inner-hero::before {
  top: -160px;
  right: -120px;
}

.inner-hero::after {
  bottom: -200px;
  left: -140px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.4), transparent 65%);
}

.inner-hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.inner-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  margin-bottom: 32px;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #22d3ee;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 999px;
}

.inner-hero__title {
  margin-bottom: 28px;
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #f8fafc;
}

.inner-hero__subtitle {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  line-height: 1.7;
  color: #cbd5f5;
}

.inner-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  background: linear-gradient(135deg, #22d3ee, #14b8a6);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(34, 211, 238, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inner-hero__cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(34, 211, 238, 0.35);
}

.inner-hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.inner-hero__stat {
  padding: 18px 12px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 18px;
}

.inner-hero__stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #22d3ee;
}

.inner-hero__stat-label {
  margin-top: 6px;
  font-size: 0.95rem;
  color: #cbd5f5;
}

.inner-main {
  padding: 72px 0 120px;
}

.inner-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.inner-section {
  margin-bottom: 80px;
}

.inner-section__header {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.inner-section__header h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.3vw, 3rem);
  font-weight: 700;
  color: #f8fafc;
}

.inner-section__header p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #a5b4fc;
}

.inner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.inner-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.55);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.inner-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.inner-card:hover {
  transform: translateY(-8px);
  border-color: rgba(34, 211, 238, 0.45);
}

.inner-card:hover::after {
  opacity: 1;
}

.inner-card__icon {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.35rem;
  font-weight: 600;
  color: #22d3ee;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 16px;
}

.inner-card h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  font-weight: 600;
  color: #f8fafc;
}

.inner-card p {
  font-size: 1rem;
  line-height: 1.65;
  color: #cbd5f5;
}

.inner-card__list {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.inner-card__list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 26px;
  color: #a5b4fc;
}

.inner-card__list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22d3ee, #14b8a6);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.18);
}

.inner-timeline {
  position: relative;
  margin-top: 48px;
  padding-left: 18px;
  border-left: 2px solid rgba(34, 211, 238, 0.25);
}

.inner-timeline__item {
  position: relative;
  padding: 0 0 40px 32px;
}

.inner-timeline__item:last-child {
  padding-bottom: 0;
}

.inner-timeline__item::before {
  content: "";
  position: absolute;
  top: 4px;
  left: -29px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22d3ee, #14b8a6);
  box-shadow: 0 0 0 6px rgba(34, 211, 238, 0.18);
}

.inner-timeline__title {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #f8fafc;
}

.inner-timeline__description {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #cbd5f5;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 48px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(15, 23, 42, 0.75));
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(14, 165, 233, 0.25);
}

.cta-panel h3 {
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #f8fafc;
}

.cta-panel p {
  margin-bottom: 24px;
  font-size: 1.05rem;
  color: #cbd5f5;
}

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-panel__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  background: linear-gradient(135deg, #38bdf8, #22d3ee);
  border-radius: 999px;
  transition: transform 0.3s ease;
}

.cta-panel__button:hover {
  transform: translateY(-3px);
}

.cta-panel__secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  color: #22d3ee;
  text-decoration: none;
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 999px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.cta-panel__secondary:hover {
  color: #f8fafc;
  border-color: rgba(148, 163, 184, 0.4);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.contact-card,
.contact-form {
  padding: 32px;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.55);
}

.contact-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: #f8fafc;
}

.contact-card p,
.contact-card a {
  font-size: 1rem;
  line-height: 1.65;
  color: #cbd5f5;
  text-decoration: none;
}

.contact-card a:hover {
  color: #22d3ee;
}

.contact-form form {
  display: grid;
  gap: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #e2e8f0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  color: #f8fafc;
  background: rgba(2, 6, 23, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(34, 211, 238, 0.65);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.18);
}

.contact-form button {
  justify-self: start;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  background: linear-gradient(135deg, #22d3ee, #14b8a6);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-3px);
}

.contact-map {
  margin-top: 32px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.55);
}

.contact-map iframe {
  width: 100%;
  height: 320px;
  border: none;
  filter: grayscale(25%) saturate(120%);
}

.inner-footer {
  padding: 36px 24px 64px;
  text-align: center;
  color: #94a3b8;
}

.inner-footer a {
  color: #22d3ee;
  text-decoration: none;
}

.inner-footer a:hover {
  color: #38bdf8;
}

@media only screen and (max-width: 768px) {
  .inner-hero {
    padding: 120px 20px 100px;
  }

  .inner-card,
  .contact-card,
  .contact-form {
    padding: 24px;
  }

  .cta-panel {
    padding: 32px;
  }

  .cta-panel__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-panel__secondary {
    justify-content: center;
  }
}

@media only screen and (max-width: 480px) {
  .inner-hero__stats {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .inner-hero__subtitle,
  .inner-section__header p {
    font-size: 1rem;
  }

  .contact-form button {
    width: 100%;
    justify-self: stretch;
  }
}

.contacts-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.contacts-cards > .contact-card {
  flex: 1 1 320px;
  max-width: 420px;
  min-width: 280px;
  min-height: 190px;
}


/* Simple scroll fallback for touch devices */
body.simple-scroll,
html.is-touch-device body {
  height: auto;
}

body.simple-scroll #pagepiling,
html.is-touch-device #pagepiling {
  position: static !important;
  height: auto !important;
  overflow: visible !important;
}

:is(body.simple-scroll, html.is-touch-device) .pp-section,
:is(body.simple-scroll, html.is-touch-device) .pp-section.pp-table,
:is(body.simple-scroll, html.is-touch-device) .pp-section.active {
  position: static !important;
  width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  transform: none !important;
}

body.simple-scroll .pp-tableCell,
html.is-touch-device .pp-tableCell {
  position: static !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  padding: 0 !important;
}

body.simple-scroll .section,
html.is-touch-device .section {
  height: auto !important;

  background: transparent;
}

body.simple-scroll .section:first-child,
html.is-touch-device .section:first-child {
  padding: 0;
}

body.simple-scroll .progress,
html.is-touch-device .progress {
  min-height: auto;
}

body.simple-scroll .loader,
html.is-touch-device .loader {
  display: none !important;
}

body.simple-scroll .collab,
html.is-touch-device .collab {
  max-width: min(600px, 100%);
  margin: clamp(16px, 5vh, 28px) auto;
  border-radius: 28px;
  padding: clamp(22px, 6vw, 32px);
  background: rgba(8, 18, 36, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 28px 60px rgba(2, 10, 23, 0.55);
}

body.simple-scroll .collab__title,
html.is-touch-device .collab__title {
  font-size: clamp(1.9rem, 5vw, 2.6rem);
}

body.simple-scroll .collab__subtitle,
html.is-touch-device .collab__subtitle {
  max-width: 92%;
  font-size: clamp(1rem, 3.6vw, 1.15rem);
}

body.simple-scroll .collab__grid,
html.is-touch-device .collab__grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 5vw, 28px);
}

body.simple-scroll .collab-card,
html.is-touch-device .collab-card {
  padding: clamp(18px, 5vw, 24px);
}

body.simple-scroll .collab__cta,
html.is-touch-device .collab__cta {
  gap: 14px;
}

body.simple-scroll .pp-nav,
html.is-touch-device .pp-nav {
  display: none !important;
}

:is(body.simple-scroll, html.is-touch-device) .header__wrapper {
  display: none !important;
}

:is(body.simple-scroll, html.is-touch-device) .header__mobile-hero {
  display: flex !important;
}

:is(body.simple-scroll, html.is-touch-device) .services,
:is(body.simple-scroll, html.is-touch-device) .progress {
  max-width: min(600px, 100%);
  margin: 0 auto;
  padding-top: clamp(24px, 6vh, 40px);
  padding-bottom: clamp(24px, 6vh, 40px);
}

/* Простой Portfolio - картинки на всю ширину */
:is(body.simple-scroll, html.is-touch-device) .portfolio {
  width: 100%;
  margin: 0;
  background: transparent;
  border-radius: 0;
}

:is(body.simple-scroll, html.is-touch-device) .portfolio__slider {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  max-width: none;
  margin: 0;
}

:is(body.simple-scroll, html.is-touch-device) .portfolio__header {
  display: none;
}

:is(body.simple-scroll, html.is-touch-device) .portfolio__content {
  display: block;
  height: auto;
  padding: 0;
}

:is(body.simple-scroll, html.is-touch-device) .js-sider {
  display: block;
  height: auto;
}

:is(body.simple-scroll, html.is-touch-device) .portfolio__slide {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 300px;
  margin: 0 0 24px 0;
  border-radius: 0;
  overflow: hidden;
  transform: none !important;
  opacity: 1 !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  box-shadow: none;
  display: block !important;
}

/* Картинки задаются через background-image */

:is(body.simple-scroll, html.is-touch-device) .portfolio__slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  border-radius: 0;
}

:is(body.simple-scroll, html.is-touch-device) .portfolio__slide-title {
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

:is(body.simple-scroll, html.is-touch-device) .portfolio__slide-desc {
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  color: #e2e8f0;
  margin: 0;
  opacity: 1;
  transform: none;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  line-height: 1.5;
}

:is(body.simple-scroll, html.is-touch-device) .portfolio__dots {
  display: none;
}

/* Принудительно показываем все слайды */
:is(body.simple-scroll, html.is-touch-device) .slick-slide {
  display: block !important;
  opacity: 1 !important;
  transform: none !important;
}

:is(body.simple-scroll, html.is-touch-device) .slick-current .portfolio__slide {
  transform: none !important;
  opacity: 1 !important;
}

@media (max-width: 420px) {
  body.simple-scroll .header__mobile-stats,
  html.is-touch-device .header__mobile-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

body.simple-scroll .about,
html.is-touch-device .about {
  position: relative;
  min-height: auto;
  padding: clamp(28px, 7vw, 44px) clamp(18px, 6vw, 32px);
  background: linear-gradient(180deg, rgba(13, 24, 45, 0.9), rgba(11, 20, 36, 0.92)),
              url('../images/about/bg.jpg') center/cover no-repeat;
  color: #f8fafc;
}

body.simple-scroll .about::before,
html.is-touch-device .about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 11, 25, 0.72), rgba(4, 11, 25, 0.55));
  backdrop-filter: blur(6px);
}

:is(body.simple-scroll, html.is-touch-device) .about__bg,
:is(body.simple-scroll, html.is-touch-device) .about__bg-filter {
  display: none !important;
}

body.simple-scroll .about__wrapper,
html.is-touch-device .about__wrapper {
  position: relative;
  z-index: 1;
  display: block;
}

body.simple-scroll .about__block,
html.is-touch-device .about__block {
  margin: 0 auto;
  max-width: 560px;

}

body.simple-scroll .about__title,
html.is-touch-device .about__title {
  margin-bottom: 18px;
  font-size: clamp(2rem, 7vw, 2.6rem);
  text-align: center;
}

:is(body.simple-scroll, html.is-touch-device) .about__subtitle {
  text-align: center;
  font-size: clamp(1rem, 4vw, 1.15rem);
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.92);
}

:is(body.simple-scroll, html.is-touch-device) .about__desc {
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  font-family: "OpenSans-Regular", Arial, sans-serif;
  color: rgba(226, 232, 240, 0.92);
}

body.simple-scroll .about__more,
html.is-touch-device .about__more {
  display: flex;
  justify-content: center;
  margin-top: clamp(18px, 4vw, 28px);
}

/* Красивая кнопка для мобильной версии */
body.simple-scroll .about__more .button,
html.is-touch-device .about__more .button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 50px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.8), rgba(99, 102, 241, 0.8));
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 12px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(34, 211, 238, 0.2);
  transition: all 0.3s ease;
  overflow: hidden;
}

body.simple-scroll .about__more .button::before,
html.is-touch-device .about__more .button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

body.simple-scroll .about__more .button:hover,
html.is-touch-device .about__more .button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.9), rgba(99, 102, 241, 0.9));
  box-shadow: 0 6px 20px rgba(34, 211, 238, 0.3);
}

body.simple-scroll .about__more .button:hover::before,
html.is-touch-device .about__more .button:hover::before {
  left: 100%;
}

body.simple-scroll .about__more .button span,
html.is-touch-device .about__more .button span {
  position: relative;
  z-index: 2;
}

/* Красивые кружочки для мобильной версии */
body.simple-scroll .about__item-count,
html.is-touch-device .about__item-count {
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin-right: 20px;
  font-size: 28px;
  font-weight: 700;
  color: #22d3ee;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(99, 102, 241, 0.1));
  border: 2px solid rgba(34, 211, 238, 0.3);
  border-radius: 50%;
  box-shadow: 
    0 4px 15px rgba(34, 211, 238, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

body.simple-scroll .about__item-count::before,
html.is-touch-device .about__item-count::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(34, 211, 238, 0.1), transparent);
  animation: rotate 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.simple-scroll .about__item-count:hover,
html.is-touch-device .about__item-count:hover {
  transform: scale(1.05);
  border-color: rgba(34, 211, 238, 0.6);
  box-shadow: 
    0 6px 20px rgba(34, 211, 238, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

body.simple-scroll .about__item-count:hover::before,
html.is-touch-device .about__item-count:hover::before {
  opacity: 1;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
