@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root {
  --main-bg: #272727;
  --accent: #232DF2;
  --text-main: #fff;
  --text-light: #fff;
  --gray: #373737;
  --font-main: 'Open Sans';
}

html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  background: var(--main-bg);
  color: var(--text-main);
  font-family: var(--font-main);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid var(--gray);
    margin-top: 36px;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.2rem;
}
.logo__text {
  font-size: 1.1rem;
  line-height: 1.1;
  color: var(--accent);
  font-weight: 700;
}
.logo__icon {
  width: 28px;
  height: 24px;
  background: var(--accent);
  margin-left: 8px;
  border-radius: 4px;
}
.nav__list {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__list li {
  font-size: 1rem;
  color: var(--text-main);
  cursor: pointer;
  transition: color 0.2s;
}
.nav__list li:hover {
  color: var(--accent);
}
.nav__list a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.nav__list a:hover {
  color: var(--accent);
}
.header__contacts {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__phone {
  font-size: 1.3rem;
  color: var(--text-main);
  font-weight: 700;
}
.header__phone a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
.header__phone a:hover {
  color: var(--accent);
}
.header__phone a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.header__phone a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.header__cta {
  background: var(--accent);
  color: var(--text-light);
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  position: relative; /* Р”РѕР±Р°РІР»СЏРµРј РґР»СЏ РїРѕР·РёС†РёРѕРЅРёСЂРѕРІР°РЅРёСЏ РїСЃРµРІРґРѕ-СЌР»РµРјРµРЅС‚Р° */
  overflow: hidden; /* РЎРєСЂС‹РІР°РµРј РїСЃРµРІРґРѕ-СЌР»РµРјРµРЅС‚ Р·Р° РїСЂРµРґРµР»Р°РјРё РєРЅРѕРїРєРё */
  z-index: 1; /* РЈР±РµРґРёРјСЃСЏ, С‡С‚Рѕ РєРЅРѕРїРєР° РїРѕРІРµСЂС… РїСЃРµРІРґРѕ-СЌР»РµРјРµРЅС‚Р° */
}
.header__cta:hover {
  background: #172fff;
}

/* РЎС‚РёР»Рё РґР»СЏ СЌС„С„РµРєС‚Р° СЃРІРµС‡РµРЅРёСЏ */
.header__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%; /* РќР°С‡Р°Р»СЊРЅР°СЏ РїРѕР·РёС†РёСЏ СЃР»РµРІР° */
  width: 50%; /* РЁРёСЂРёРЅР° СЃРІРµС‡РµРЅРёСЏ */
  height: 100%;
  background: rgba(255, 255, 255, 0.3); /* Р¦РІРµС‚ СЃРІРµС‡РµРЅРёСЏ (РїРѕР»СѓРїСЂРѕР·СЂР°С‡РЅС‹Р№ Р±РµР»С‹Р№) */
  transform: skewX(-20deg); /* РќР°РєР»РѕРЅ СЃРІРµС‡РµРЅРёСЏ */
  /* transition: all 0.7s ease; РЈРґР°Р»СЏРµРј transition */
  z-index: -1; /* РџРѕРґ РєРЅРѕРїРєРѕР№ */
  animation: shine 5s infinite linear; /* РџСЂРёРјРµРЅСЏРµРј Р°РЅРёРјР°С†РёСЋ: РёРјСЏ, РґР»РёС‚РµР»СЊРЅРѕСЃС‚СЊ, Р±РµСЃРєРѕРЅРµС‡РЅРѕ, Р»РёРЅРµР№РЅРѕ */
}



/* РЎС‚РёР»Рё РґР»СЏ РіР°РјР±СѓСЂРіРµСЂ-РјРµРЅСЋ */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.hamburger-menu__line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-menu__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active .hamburger-menu__line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-menu__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.hero {
    position: relative;
    background: #232323;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-gradient {
  position: absolute;
  left: -200px;
  top: -80px;
  width: 1400px;
  height: 800px;
  z-index: 1;
}
.hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 700px;
  padding-top: 115px;
}
.hero__left {
  max-width: 660px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.hero__title {
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
    margin: 0 0 32px 0;
    color: #fff;
}
.hero__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero__list li {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.hero__list li, span.accent-link {
    display: inline;
}
.marker {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 16px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(35,45,242,0.18);
}
/* .marker.blue {
  background: #232DF2;
  border: 3px solid #6B2FFF;
} */
.marker.square {
  border-radius: 4px;
  width: 18px;
  height: 18px;
  background: #fff;
  border: none;
  margin-top: 4px;
}
.accent-link {
  color: #6B2FFF;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  font-size: 1.05rem;
}
.hero__desc-block {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: #fff;
  width: 100%;
  margin-top: 18px;
  justify-content: space-between;
}
.hero__desc-slogan {
  color: #B429FF;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0;
}
.hero__desc {
    max-width: 600px;
    color: #717171;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
}
.hero__desc_button a {
    display: inline-block;
    background: var(--accent);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    position: relative; /* Р”РѕР±Р°РІР»СЏРµРј РґР»СЏ РїРѕР·РёС†РёРѕРЅРёСЂРѕРІР°РЅРёСЏ РїСЃРµРІРґРѕ-СЌР»РµРјРµРЅС‚Р° */
    overflow: hidden; /* РЎРєСЂС‹РІР°РµРј РїСЃРµРІРґРѕ-СЌР»РµРјРµРЅС‚ Р·Р° РїСЂРµРґРµР»Р°РјРё РєРЅРѕРїРєРё */
    z-index: 1; /* РЈР±РµРґРёРјСЃСЏ, С‡С‚Рѕ РєРЅРѕРїРєР° РїРѕРІРµСЂС… РїСЃРµРІРґРѕ-СЌР»РµРјРµРЅС‚Р° */
}

.hero__desc_button a:hover {
    background: #172fff;
}

/* РЎС‚РёР»Рё РґР»СЏ СЌС„С„РµРєС‚Р° СЃРІРµС‡РµРЅРёСЏ */
.hero__desc_button a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%; /* РќР°С‡Р°Р»СЊРЅР°СЏ РїРѕР·РёС†РёСЏ СЃР»РµРІР° */
  width: 50%; /* РЁРёСЂРёРЅР° СЃРІРµС‡РµРЅРёСЏ */
  height: 100%;
  background: rgba(255, 255, 255, 0.3); /* Р¦РІРµС‚ СЃРІРµС‡РµРЅРёСЏ (РїРѕР»СѓРїСЂРѕР·СЂР°С‡РЅС‹Р№ Р±РµР»С‹Р№) */
  transform: skewX(-20deg); /* РќР°РєР»РѕРЅ СЃРІРµС‡РµРЅРёСЏ */
  /* transition: all 0.7s ease; РЈРґР°Р»СЏРµРј transition */
  z-index: -1; /* РџРѕРґ РєРЅРѕРїРєРѕР№ */
  animation: shine 5s infinite linear; /* РџСЂРёРјРµРЅСЏРµРј Р°РЅРёРјР°С†РёСЋ: РёРјСЏ, РґР»РёС‚РµР»СЊРЅРѕСЃС‚СЊ, Р±РµСЃРєРѕРЅРµС‡РЅРѕ, Р»РёРЅРµР№РЅРѕ */
}

.hero__desc_button img {
    margin-left: 8px;
    vertical-align: middle;
}

.hero__info {
    max-width: 590px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 7px;
    border: #5d2a7c solid 1px;
    background: #000000;
    justify-content: center;
}
.hero__info img {
    max-width: 30px;
    margin-left: 10px;
}
.quote-mark {
  color: #717171;
  font-size: 1.6rem;
  vertical-align: bottom;
  margin-left: 6px;
}
.hero__right {
  flex: 1 1 400px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-width: 380px;
  min-height: 500px;
}
.hero__photo-nobg {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 380px;
  min-height: 500px;
  z-index: 3;
  filter: drop-shadow(0 12px 60px rgba(35,45,242,0.25));
}
.hero__photo-nobg img {
  width: 510px;
  height: 810px;
  object-fit: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.hero__name-plate {
  position: absolute;
    bottom: 354px;
    left: 0px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 16px 21px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
}

.hero__name-plate h3 {
    margin: 0 0 4px 0;
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #b0b0b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__name-plate p {
     margin: 0;
    font-size: 0.7rem;
    opacity: 0.9;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.benefits__container {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.benefit {
    background: #222222;
    border: #5c297b solid 1px;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(35, 45, 242, 0.07);
    padding: 32px 24px;
    min-width: 220px;
    flex: 1 1 220px;
    margin-bottom: 16px;
}
.benefit__value {
  color: var(--accent);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.benefit__desc {
  color: var(--text-main);
  font-size: 1.1rem;
}
.logos-slider {
  overflow: hidden;
  padding: 40px 0;
  background: var(--main-bg);
}
.logos-slider__title, .logos-slider__benefits {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: 700;
}
.logos-slider__track {
  display: flex;
  gap: 40px;
  animation: slide 30s linear infinite;
  width: max-content;
}
.logos-slider__track:hover {
  animation-play-state: paused;
}
.logo-slide {
  flex: 0 0 auto;
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}
.logo-slide:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Portfolio Section Styles */
.portfolio {
  background: var(--main-bg);
}

.portfolio__title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-main);
}

/* Services Section Styles */
.services {
    background: var(--main-bg); /* РСЃРїРѕР»СЊР·СѓРµРј РѕСЃРЅРѕРІРЅРѕР№ С„РѕРЅ СЃР°Р№С‚Р° */
}

.services__title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-main);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* РђРґР°РїС‚РёРІРЅР°СЏ СЃРµС‚РєР° */
    gap: 30px; /* Р Р°СЃСЃС‚РѕСЏРЅРёРµ РјРµР¶РґСѓ РєР°СЂС‚РѕС‡РєР°РјРё */
}

.service-card {
    background: var(--gray);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-main);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card__image img {
    transform: scale(1.05);
}

.service-card__content {
    padding: 20px;
}

.service-card__content h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
}

.service-card__content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-main);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .services {
        padding: 40px 0;
    }
    
    .services__title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .services__grid {
        gap: 20px;
    }
    
    .service-card__image {
        height: 180px;
    }
    
    .service-card__content h3 {
        font-size: 1.1rem;
    }
    
    .service-card__content p {
        font-size: 0.95rem;
    }
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.portfolio-card {
  background: #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-5px);
}

.portfolio-card__image {
  position: relative;
  padding-top: 60%;
  overflow: hidden;
}

.portfolio-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.portfolio-card:hover .portfolio-card__image img {
  transform: scale(1.05);
}

.portfolio-card__content {
  padding: 20px;
}

.portfolio-card__content h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: var(--text-main);
}

.portfolio-card__content p {
  margin: 0 0 15px;
  font-size: 0.9rem;
  color: #999;
}

.portfolio-card__category {
  display: inline-block;
  padding: 5px 10px;
  background: var(--accent);
  color: var(--text-light);
  border-radius: 4px;
  font-size: 0.8rem;
}

/* РњРѕРґР°Р»СЊРЅРѕРµ РѕРєРЅРѕ РїРѕСЂС‚С„РѕР»РёРѕ */
.portfolio-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  overflow-y: auto;
}

.portfolio-modal__content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 40px auto;
  background: var(--main-bg);
  border-radius: 8px;
  padding: 30px;
}

.portfolio-modal__close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  color: var(--text-main);
  cursor: pointer;
  z-index: 1;
}

.portfolio-modal__header {
  margin-bottom: 30px;
}

.portfolio-modal__title {
  font-size: 2rem;
  color: var(--text-main);
  margin: 0 0 10px;
}

.portfolio-modal__category {
  display: inline-block;
  padding: 5px 15px;
  background: var(--accent);
  color: var(--text-light);
  border-radius: 4px;
}

.portfolio-modal__body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
}

.portfolio-modal__gallery {
  position: relative;
}

.portfolio-modal__main-image-container {
  position: relative;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 8px;
}

.portfolio-modal__main-image {
  width: 100%;
  display: block;
  transition: transform 0.3s;
}

.zoom-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
}

.portfolio-modal__main-image-container:hover .zoom-icon {
  opacity: 1;
}

.zoom-icon svg {
  width: 24px;
  height: 24px;
}

.fullscreen-view {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  cursor: pointer;
}

.fullscreen-view.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fullscreen-image {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}

.fullscreen-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.fullscreen-close:hover {
  color: #ccc;
}

/* .fullscreen-view.active {
  display: block;
} */

.portfolio-modal__thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.portfolio-modal__thumbnail {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.portfolio-modal__thumbnail.active {
  opacity: 1;
}

.portfolio-modal__info {
  color: var(--text-main);
}

.portfolio-modal__description h3,
.portfolio-modal__details h3 {
  font-size: 1.4rem;
  margin: 0 0 15px;
}

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

.portfolio-modal__list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.portfolio-modal__list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.portfolio-modal__link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: var(--accent);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}

.portfolio-modal__link:hover {
  background: #172fff;
}

@media (max-width: 768px) {
  .portfolio-modal__body {
    grid-template-columns: 1fr;
  }
}
.footer {
  background: var(--main-bg);
  border-top: 1px solid #eee;
  padding: 24px 0;
  text-align: center;
  color: #888;
  font-size: 1rem;
}

/* РЎР»Р°Р№РґРµСЂ Р°РЅРёРјР°С†РёСЏ */
@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logos-slider__track {
  animation: slide 30s linear infinite;
}

/* Keyframes for shine effect */
@keyframes shine {
  0% { left: -100%; }
  100% { left: 150%; }
}

/* РњРѕР±РёР»СЊРЅР°СЏ РІРµСЂСЏ */
@media (max-width: 900px) {
  .header__container {
    padding: 15px 20px;
    justify-content: space-between;
  }

  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(35, 35, 35, 0.98);
    padding: 80px 20px 20px;
    transition: left 0.3s ease;
    z-index: 100;
  }

  .nav.active {
    left: 0;
  }

  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .nav__list li {
    width: 100%;
    text-align: center;
  }

  .nav__list a {
    font-size: 1.2rem;
    color: #fff;
    display: block;
    padding: 10px;
  }

  .header__contacts {
    display: none;
  }

  .hamburger-menu {
    display: flex;
    z-index: 101;
  }

  .hero__container, .hero__stats, .benefits__container {
    flex-direction: column;
    align-items: center; /* Р’С‹СЂР°РІРЅРёРІР°РµРј РїРѕ С†РµРЅС‚СЂСѓ */
    gap: 30px; /* РЈРІРµР»РёС‡РёРІР°РµРј РѕС‚СЃС‚СѓРї РјРµР¶РґСѓ Р±Р»РѕРєР°РјРё */
    padding-top: 100px; /* РЈРІРµР»РёС‡РёРІР°РµРј РѕС‚СЃС‚СѓРї СЃРІРµСЂС…Сѓ РґР»СЏ СѓС‡РµС‚Р° С…РµРґРµСЂР° */
    padding-bottom: 40px;
  }

  .hero__left {
    max-width: 90%; /* РЈРјРµРЅСЊС€Р°РµРј РјР°РєСЃРёРјР°Р»СЊРЅСѓСЋ С€РёСЂРёРЅСѓ */
    text-align: center; /* Р’С‹СЂР°РІРЅРёРІР°РµРј С‚РµРєСЃС‚ РїРѕ С†РµРЅС‚СЂСѓ */
    gap: 20px;
  }

  .hero__title {
    font-size: 2.2rem; /* РЈРјРµРЅСЊС€Р°РµРј СЂР°Р·РјРµСЂ Р·Р°РіРѕР»РѕРІРєР° */
    margin-bottom: 20px;
  }

  .hero__list {
    align-items: center; /* Р’С‹СЂР°РІРЅРёРІР°РµРј РїСѓРЅРєС‚С‹ СЃРїРёСЃРєР° РїРѕ Р»РµРІРѕРјСѓ РєСЂР°СЋ */
    gap: 12px;
  }

  .hero__list li {
    justify-content: flex-start; /* Р’С‹СЂР°РІРЅРёРІР°РµРј СЃРѕРґРµСЂР¶РёРјРѕРµ СЃРїРёСЃРєР° РїРѕ Р»РµРІРѕРјСѓ РєСЂР°СЋ */
  }

  .hero__desc_button {
    margin-top: 0px;
  }

  .hero__right {
    margin-top: 30px;
    justify-content: center; /* Р’С‹СЂР°РІРЅРёРІР°РЅРёРµ С„РѕС‚Рѕ РїРѕ С†РµРЅС‚СЂСѓ */
    min-width: auto;
    min-height: auto;
  }
  .hero__photo-nobg {
    min-width: auto;
    min-height: auto;
    filter: none; /* РЈР±СЂР°С‚СЊ С‚РµРСЊ РґР»СЏ РјРѕР±РёР»СЊРЅС‹С… */
  }
  .hero__photo-nobg img {
    width: 80%; /* РЈРјРµРЅСЊС€РёС‚СЊ СЂР°Р·РјРµСЂ С„РѕС‚Рѕ */
    height: auto;
    object-fit: contain; /* РР·РјРµРЅРёС‚СЊ object-fit */
  }

  /*  Benefits */
  .benefits__container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .benefit {
    min-width: 280px; 
    width: 90%; 
    max-height: 150px;
    margin-bottom: 0;
    text-align: center; 
  }
  .benefit__value {
    font-size: 1.8rem;
  }
  .benefit__desc {
    font-size: 1rem;
  }

  /*  Services */
  .services__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-card__image {
    height: 200px; 
  }
  .service-card__content h3 {
    font-size: 1.2rem;
  }

  /* РЈР»СѓС‡С€РµРЅРёСЏ РґР»СЏ СЃРµРєС†РёРё Portfolio */
  .portfolio__grid {
    grid-template-columns: 1fr; /* РљР°СЂС‚РѕС‡РєРё РІ РѕРґРёРЅ СЃС‚РѕР»Р±РµС† */
    gap: 20px;
  }
  .portfolio-card__content h3 {
    font-size: 1.2rem;
  }
  .portfolio-card__content p {
    font-size: 0.9rem;
  }
  .portfolio-card__category {
    font-size: 0.8rem;
  }

  /* РЈР»СѓС‡С€РµРЅРёСЏ РґР»СЏ РјРѕРґР°Р»СЊРЅРѕРіРѕ РѕРєРЅР° РїРѕСЂС‚С„РѕР»РёРѕ */
  .portfolio-modal__content {
    width: 95%; /* РЈРІРµР»РёС‡РёС‚СЊ С€РёСЂРёРЅСѓ РјРѕРґР°Р»СЊРЅРѕРіРѕ РѕРєРЅР° */
    margin: 20px auto; /* РЈРјРµРЅСЊС€РёС‚СЊ РѕС‚СЃС‚СѓРїС‹ */
    padding: 20px;
  }
  .portfolio-modal__body {
    grid-template-columns: 1fr; /* РљРѕРЅС‚РµРЅС‚ РІ РѕРґРёРЅ СЃС‚РѕР»Р±РµС† */
    gap: 20px;
  }
  .portfolio-modal__title {
    font-size: 1.8rem;
  }
  .portfolio-modal__description h3,
  .portfolio-modal__details h3 {
    font-size: 1.3rem;
  }
  .portfolio-modal__thumbnail {
    width: 70px; /* РЈРјРµРЅСЊС€РёС‚СЊ СЂР°Р·РјРµСЂ РјРёРЅРёР°С‚СЋСЂ */
    height: 50px;
  }
  .fullscreen-close {
    font-size: 30px; /* РЈРјРµРЅСЊС€РёС‚СЊ СЂР°Р·РјРµСЂ РєСЂРµСЃС‚РёРєР° */
    top: 10px;
    right: 10px;
  }

  /* РЈР»СѓС‡С€РµРЅРёСЏ РґР»СЏ СЃРµРєС†РёРё FAQ */
  .faq__title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .faq__question {
    font-size: 1.1rem;
  }
  .faq__question h3 {
    font-size: 1.1rem;
  }
  .faq__answer p {
    font-size: 0.95rem;
  }


  /* РЈР»СѓС‡С€РµРЅРёСЏ РґР»СЏ РјРѕРґР°Р»СЊРЅРѕРіРѕ РѕРєРЅР° РєРѕРЅС‚Р°РєС‚РѕРІ */
  .modal__content {
    width: 95%; /* РЈРІРµР»РёС‡РёС‚СЊ С€РёСЂРёРЅСѓ РјРѕРґР°Р»СЊРЅРѕРіРѕ РѕРєРЅР° */
    margin: 10% auto; /* РЎРєРѕСЂСЂРµРєС‚РёСЂРѕРІР°С‚СЊ РѕС‚СЃС‚СѓРї СЃРІРµСЂС…Сѓ */
    padding: 15px;
  }
  .modal__close {
    font-size: 24px;
  }
  .modal__form {
    gap: 10px;
  }
  .modal__form input,
  .modal__form textarea {
    padding: 10px;
  }
  .modal__form .submit-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  .phone-prefix {
    padding: 0 8px;
  }
  .flag-icon {
    width: 18px;
    height: 13px;
  }
  .file-label {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
  .file-name {
    font-size: 0.85rem;
  }

  /* РЈР»СѓС‡С€РµРЅРёСЏ РґР»СЏ С„СѓС‚РµСЂР° */
  .footer {
    padding: 15px 0;
    font-size: 0.9rem;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 15px; /* РЈРјРµРЅСЊС€Р°РµРј РіРѕСЂРёР·РѕРЅС‚Р°Р»СЊРЅС‹Рµ РѕС‚СЃС‚СѓРїС‹ */
  }
  .notification-banner {
    height: 30px;
  }
  .header {
    margin-top: 5px;
  }
}
@media (max-width: 1200px) {
  .hero__container {
    flex-direction: column;
    align-items: flex-start;
    min-height: 400px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .hero__right {
    margin-top: 32px;
    justify-content: flex-start;
  }
  .hero__photo-nobg {
    min-width: 260px;
    min-height: 320px;
  }
  .hero__photo-nobg img {
    width: 220px;
  }
}
@media (max-width: 700px) {
        .hero__right {
        display: none;
    }

  .hero__container {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .hero__left {
    max-width: 100%;
    gap: 12px;
  }
  .hero__title {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  .hero__list li, .accent-link {
    font-size: 0.95rem;
  }
  .marker {
    width: 12px;
    height: 12px;
    margin-right: 8px;
  }
  .marker.square {
    width: 10px;
    height: 10px;
    margin-top: 2px;
  }
  .hero__photo-nobg {
    min-width: 120px;
    min-height: 160px;
  }
  .hero__photo-nobg img {
    width: 90px;
  }
  .hero__desc-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .hero__desc-slogan {
    margin-right: 0;
    margin-bottom: 8px;
    font-size: 1rem;
  }
  .hero__desc_button {
    width: 100%;
    display: block;
    justify-content: flex-start;
  }
}

/* FAQ Section Styles */
.faq {
  background: var(--main-bg);
}

.faq__title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-main);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--gray);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-main);
  font-size: 1.2rem;
  font-weight: 600;
}

.faq__question h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.faq__toggle {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding-top 0.3s ease-out;
  padding-top: 0;
}

.faq__answer p {
  margin: 15px 0 0 0;
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}

.faq__item.active .faq__answer {
  max-height: 500px; /* Adjust based on expected content height */
  padding-top: 15px;
}

.faq__item.active .faq__toggle {
  transform: rotate(45deg);
}
/* Responsive adjustments for header */
@media (max-width: 768px) {
  .header {
    position: relative;
  }
}
/* Responsive adjustments for FAQ */
@media (max-width: 768px) {
  .faq__title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .faq__question {
    font-size: 1rem;
  }
  .faq__question h3 {
    font-size: 1rem;
  }
  .faq__answer p {
    font-size: 0.9rem;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal__content {
  background-color: var(--main-bg);
  margin: 15% auto;
  padding: 20px;
  border: 1px solid var(--gray);
  border-radius: 8px;
  width: 80%;
  max-width: 500px;
  position: relative;
}

.modal__close {
  color: var(--text-main);
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.modal__form input,
.modal__form textarea {
  padding: 12px;
  border: 1px solid var(--gray);
  border-radius: 4px;
  background: #333;
  color: var(--text-main);
}

.modal__form .submit-btn {
  background: var(--accent);
  color: var(--text-light);
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.modal__form .submit-btn:hover {
  background: #172fff;
}
.phone-input-container {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray);
  border-radius: 4px;
  background: #333;
  overflow: hidden;
}

.phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 10px;
  background: #2a2a2a;
  border-right: 1px solid var(--gray);
  color: var(--text-main);
}

.flag-icon {
  width: 20px;
  height: 15px;
  margin-right: 5px;
}

.phone-input-container input {
  border: none !important;
  flex: 1;
  margin: 0 !important;
}
.file-input-container {
  margin-top: 10px;
}

.file-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.file-label {
  display: inline-block;
  padding: 8px 16px;
  background: var(--gray);
  color: var(--text-light);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.file-label:hover {
  background: #444;
}

.file-name {
  margin-left: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.service-portfolio {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.portfolio-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-5px);
}

.portfolio-card__image {
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.portfolio-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-card__content {
    padding: 25px;
}

.portfolio-card__content h3 {
    margin: 0 0 15px;
    font-size: 24px;
    color: #333;
}

.portfolio-card__content p {
    margin: 0 0 20px;
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

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

.portfolio-card-app {
    background: #454545;
    min-width: 100%;
    min-height: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
}

.portfolio-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.portfolio-form-container p {
    color: #ccc;
    margin-bottom: 20px;
}

.portfolio-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.portfolio-form input,
.portfolio-form textarea {
    padding: 12px;
    border: 1px solid var(--gray);
    border-radius: 4px;
    background: var(--main-bg);
    color: var(--text-main);
    font-size: 1rem;
}

.portfolio-form input:focus,
.portfolio-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.portfolio-phone-input-container {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray);
    border-radius: 4px;
    background: var(--main-bg);
    overflow: hidden;
}

.portfolio-phone-prefix {
    display: flex;
    align-items: center;
    padding: 0 10px;
    background: #2a2a2a;
    border-right: 1px solid var(--gray);
    color: var(--text-main);
}

.portfolio-phone-input-container input {
    border: none !important;
    flex: 1;
    margin: 0 !important;
}

.portfolio-submit-btn {
    background: var(--accent);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}

.portfolio-submit-btn:hover {
    background: #172fff;
}

.portfolio-success {
    display: none;
}

.portfolio-success h3 {
    color: var(--accent);
    margin-bottom: 10px;
}

.portfolio-success p {
    color: #ccc;
}

.portfolio-card__stats li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #666;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-card__image {
        height: 200px;
    }
}


.contacts {
  background: var(--main-bg);
  padding: 50px 0px;
}

.contacts__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-main);
}

.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contacts__info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contacts__item {
  background: var(--gray);
  padding: 25px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.contacts__item:hover {
  transform: translateY(-5px);
}

.contacts__item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: var(--accent);
}

.contacts__item p {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-main);
}

.contacts__item a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contacts__item a:hover {
  color: var(--accent);
}

.contacts__social {
  background: var(--gray);
  padding: 25px;
  border-radius: 12px;
}

.contacts__social h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--main-bg);
  border-radius: 8px;
  color: var(--text-main);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.social-link img {
  width: 24px;
  height: 24px;
}

.contacts__map {
  height: 100%;
  min-height: 450px;
  border-radius: 12px;
  overflow: hidden;
}

.contacts__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 900px) {
  .contacts__grid {
    grid-template-columns: 1fr;
  }
  
  .contacts__map {
    min-height: 350px;
  }
}

@media (max-width: 600px) {
  .contacts {
    padding: 40px 0;
  }
  
  .contacts__title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .contacts__info {
    gap: 20px;
  }
  
  .contacts__item {
    padding: 20px;
  }
  
  .social-links {
    flex-direction: column;
  }
  
  .social-link {
    width: 100%;
  }
}



.notification-banner {
    background: linear-gradient(90deg, #232DF2 0%, #B429FF 100%);
    color: white;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 36px;
    display: flex;
    align-items: center;
}

.notification-banner__container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.notification-banner__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.notification-banner__icon {
    font-size: 18px;
}

.notification-banner__text {
    text-align: center;
}

  @media (max-width: 700px) {
    .reviews {
    padding: 10px 0;
}
   .notification-banner {
    padding: 20px 21px;
    position: relative;
}
.notification-banner__content {
        font-size: 10px;
  }
}

.seo-block {
  background: #232323;
  color: #fff;
  padding: 50px 0px;
}
.seo-block h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}
.seo-block p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.seo-block ul {
  margin: 0 auto;
  padding: 0;
  list-style: disc inside;
  color: #bdbdbd;
}
.seo-block ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  text-align: left;
}
@media (max-width: 700px) {
  .seo-block {
    padding: 30px 0 20px 0;
  }
  .seo-block h2 {
    font-size: 1.2rem;
  }
  .seo-block p, .seo-block ul li {
    font-size: 0.98rem;
  }
}

.reviews {
  padding: 80px 0;
}

.reviews__title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-main);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.review {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.review:hover {
  transform: translateY(-5px);
}

.review__logo {
  margin-bottom: 20px;
}

.review__logo img {
  max-width: 150px;
  height: auto;
}

.review__company {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
}

.review__text {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.review__link {
  color: #232DF2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.review__link:hover {
  color: #1a24b8;
}

@media (max-width: 768px) {
  .reviews__grid {
    grid-template-columns: 1fr;
  }
  
    .reviews {
    padding: 10px 0;
}
}

.scroll-to-top {
  position: fixed;
  right: 36px;
  bottom: 100px;
  width: 60px;
  height: 56px;
  background: rgba(35,45,242,0.95);
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(35,45,242,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px) scale(0.9);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 1200;
  cursor: pointer;
}
.scroll-to-top svg {
  display: block;
}
.scroll-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.scroll-to-top:hover {
  background: #6B2FFF;
  box-shadow: 0 8px 32px rgba(35,45,242,0.25);
  transform: translateY(-4px) scale(1.08);
}
@media (max-width: 600px) {
  .scroll-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
  .scroll-to-top svg {
    width: 22px;
    height: 22px;
  }
}

.quiz {
  background: #232323;
  padding: 60px 0 60px 0;
  color: #fff;
}
.quiz__container {
  max-width: 540px;
  margin: 0 auto;
  background: #292929;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(35,45,242,0.08);
  padding: 40px 24px 32px 24px;
  position: relative;
}
.quiz__title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 32px;
  color: var(--text-light);
}
.quiz__progress {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.quiz__progress-bar {
  flex: 1;
  height: 8px;
  background: #373737;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.quiz__progress-bar::after {
  content: '';
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #232DF2 0%, #B429FF 100%);
  border-radius: 4px;
  width: 0%;
  transition: width 0.3s;
  position: absolute;
  left: 0; top: 0;
}
.quiz__progress-bar[data-progress]::after {
  width: attr(data-progress '%');
}
.quiz__progress-text {
  font-size: 1rem;
  color: #bdbdbd;
  min-width: 110px;
  text-align: right;
}
.quiz__form {
  width: 100%;
  min-height: 220px;
  position: relative;
}
.quiz__step {
  display: none;
  flex-direction: column;
  animation: quizFadeIn 0.4s;
}
.quiz__step.active {
  display: flex;
}
@keyframes quizFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.quiz__question {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.quiz__answers {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.quiz__answers label {
  background: #232DF2;
  color: #fff;
  border-radius: 8px;
  padding: 12px 18px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.quiz__answers label:hover, .quiz__answers label input:checked + span {
  background: #6B2FFF;
  color: #fff;
}
.quiz__answers input[type="radio"] {
  accent-color: #B429FF;
  margin-right: 10px;
}
.quiz__answers input[type="text"] {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #373737;
  background: #181818;
  color: #fff;
  font-size: 1rem;
}
.quiz__next, .quiz__prev, .quiz__submit, .quiz__close {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-right: 10px;
  margin-bottom: 0;
  margin-top: 0;
  transition: background 0.2s, transform 0.2s;
}
.quiz__next:hover, .quiz__prev:hover, .quiz__submit:hover, .quiz__close:hover {
  background: #6B2FFF;
  transform: translateY(-2px) scale(1.04);
}
.quiz__prev {
  background: #373737;
  color: #fff;
}
.quiz__prev:hover {
  background: #232DF2;
}
.quiz__final {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  animation: quizFadeIn 0.4s;
}
.quiz__final-content {
  text-align: center;
}
.quiz__gift {
  color: #B429FF;
  font-weight: 700;
  font-size: 1.1em;
}
@media (max-width: 700px) {
  .quiz__container {
    padding: 18px 6px 18px 6px;
  }
  .quiz__title {
    font-size: 1.1rem;
  }
  .quiz__question {
    font-size: 1rem;
  }
  .quiz__answers label, .quiz__answers input[type="text"] {
    font-size: 0.98rem;
    padding: 10px 10px;
  }
  .quiz__next, .quiz__prev, .quiz__submit, .quiz__close {
    padding: 10px 16px;
    font-size: 0.98rem;
  }
}
