@font-face {
  font-family: Avenir Bold;
  src: url("../fonts/avenirnextcyr-bold.ttf");
}

@font-face {
  font-family: Avenir Medium;
  src: url("../fonts/avenirnextcyr-medium.ttf");
}

@font-face {
  font-family: Avenir Light;
  src: url("../fonts/avenirnextcyr-light.ttf");
}

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

html,
body {
  overflow-x: hidden;
}

body {
  background: #000000;
  font-family: Avenir Medium;
  color: #fff;
}



.bold {
  font-family: Avenir Bold;
}

.light {
  font-family: Avenir Light;
}









/* HEADER */
/*.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
}*/

.header {
  width: 100%;
  position: fixed;
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 8px rgba(16, 95, 185, 0.4));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover .logo-icon svg {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(16, 95, 185, 0.6));
}

.brand-name {
  font-family: Avenir Bold;
  font-size: 20px;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.logo:hover .brand-name {
  background: linear-gradient(135deg, #ffffff 0%, #0077FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  gap: 30px;
}

.menu-toggle {
  display: none;
  width: 36px;
  height: 28px;
  background: transparent;
  border: none;
  padding: 0;
  flex-shrink: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-link {
  font-family: Avenir Medium;
  font-size: 14px;
  color: #ffffffcc;
  text-decoration: none;
  transition: 0.3s;
}

.nav-link:hover {
  color: #ffffff;
  transform: scale(1.05);
}

/* Кнопки */
.buttons {
  display: flex;
  gap: 12px;
}

.mobile-buttons {
  display: none;
}

.glass-btn {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  border-style: solid transparent;
  border-color: conic-gradient(from 90deg at 50% 50%,
      rgba(255, 255, 255, 0.14) 11.939926445484161%,
      rgba(255, 255, 255, 0) 36.93992793560028%,
      rgba(255, 255, 255, 0.14) 61.93992495536804%,
      rgba(255, 255, 255, 0) 86.93992495536804%);
  border-width: 1px;
  position: relative;
  box-shadow: inset 0.95px 0.88px 4.04px 0px rgba(255, 255, 255, 0.13),
    inset 1.88px 1.75px 8.08px 0px rgba(255, 255, 255, 0.13),
    -1.86px -1.73px 12px -8px rgba(0, 0, 0, 0.15),
    -11.15px -10.39px 48px -12px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(2.36px);
  color: white;
  padding: 8px 16px;
  cursor: pointer;
  transition: 0.3s;
  font-family: Avenir Bold;
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.white-btn {
  background: #ffffff;
  color: #000;
  font-family: Avenir Bold;
  padding: 8px 18px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.white-btn:hover {
  background: #e6e6e6;
  transform: scale(1.05);
}

@media (max-width: 1280px) {

  .nav {
    gap: 15px;
  }

  .white-btn {
    padding: 8px 18px;
  }

}


@media (max-width: 880px) {

  /* Скрываем десктопные кнопки на мобильных */
  .buttons {
    display: none !important;
  }

  /* Показываем мобильные кнопки только внутри меню */
  .mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu-toggle {
    display: block;
    z-index: 1001;
    position: relative;
  }

  .header.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    z-index: 999;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  .nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    flex-direction: column;
    gap: 0;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.98) 0%, rgba(0, 0, 0, 0.98) 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding: 90px 20px 32px;
    backdrop-filter: blur(24px);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -12px 0 50px rgba(0, 0, 0, 0.7), inset -1px 0 0 rgba(255, 255, 255, 0.05);
    justify-content: flex-start;
  }

  .nav>.nav-link {
    flex-shrink: 0;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav::-webkit-scrollbar {
    width: 4px;
  }

  .nav::-webkit-scrollbar-track {
    background: transparent;
  }

  .nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
  }

  .nav-link {
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 12px;
    margin-bottom: 4px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: block;
    color: rgba(255, 255, 255, 0.9);
  }

  .nav-link:hover,
  .nav-link:active,
  .nav-link:focus {
    background: rgba(16, 95, 185, 0.15);
    border-color: rgba(16, 95, 185, 0.4);
    color: #fff;
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgba(16, 95, 185, 0.2);
  }

  .mobile-buttons .glass-btn,
  .mobile-buttons .white-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 14px;
  }

  .mobile-buttons .white-btn {
    background: #ffffff;
    color: #000;
  }

  .mobile-buttons .white-btn:active {
    background: #e6e6e6;
    transform: scale(0.98);
  }

  .mobile-buttons .glass-btn:active {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(0.98);
  }
}

@media (max-width: 540px) {
  .nav {
    width: 90%;
    max-width: 300px;
    padding: 80px 16px 24px;
  }

  .nav-link {
    padding: 16px 18px;
    font-size: 15px;
  }

  .mobile-buttons .glass-btn,
  .mobile-buttons .white-btn {
    padding: 14px 20px;
    font-size: 14px;
  }
}

@media (max-width: 540px) {

  .white-btn {
    padding: 6px 14px;
    font-size: 14px;
  }

  .glass-btn {
    padding: 6px 14px;
    font-size: 14px;
  }

  .logo-icon {
    width: 24px;
    height: 24px;
  }

  .brand-name {
    font-size: 18px;
  }
}

@media (max-width: 360px) {

  .white-btn {
    padding: 4px 10px;
    font-size: 12px;
  }

  .glass-btn {
    padding: 4px 10px;
    font-size: 12px;
  }

  .logo-icon {
    width: 20px;
    height: 20px;
  }

  .brand-name {
    font-size: 14px;
  }
}










/* HERO */
.hero {
  position: relative;
  width: 100%;
  min-height: 30vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  font-family: Avenir Medium;
  background: radial-gradient(circle at bottom, #0b0b0f 30%, #000000 100%);
}

.hero-bg {
  position: absolute;
  align-items: left;
  inset: 0;
  z-index: 0;
  user-select: none;
  pointer-events: none;
}

.bg-rays {
  width: 100%;
  height: 150%;
  margin-left: 5%;
  margin-bottom: -200px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  padding: 120px 20px 60px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  text-align: left;
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  position: relative;
}


.hero-title {
  font-family: Avenir Bold;
  font-size: 52px;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-family: Avenir Light;
  font-size: 18px;
  color: #ffffffcc;
  margin-bottom: 32px;
}

.hero-features-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 32px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 300px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(16, 95, 185, 0.4);
  transform: translateX(5px);
}

.feature-icon {
  font-size: 12px;
  flex-shrink: 0;
  color: rgba(16, 95, 185, 0.8);
}

.feature-text {
  font-family: Avenir Medium;
  font-size: clamp(14px, 1.5vw, 16px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.hero-cta-btn {
  background: linear-gradient(135deg, #105FB9 0%, #033875 100%);
  color: #fff;
  font-family: Avenir Bold;
  font-size: clamp(16px, 2vw, 18px);
  border: none;
  border-radius: 30px;
  padding: 16px 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(16, 95, 185, 0.4);
  text-align: center;
  display: inline-block;
  white-space: nowrap;
  margin-top: 8px;
}

.hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(16, 95, 185, 0.6);
  background: linear-gradient(135deg, #1265C5 0%, #044080 100%);
}

.hero-cta-btn:active {
  transform: translateY(0);
}

.avatar-btn {
  background: radial-gradient(circle, #105FB9 0%, #033875 100%);
  color: #fff;
  font-family: Avenir Bold;
  border: none;
  border-radius: 26px;
  padding: 12px 28px;
  margin-top: 4%;
  cursor: default;
  transition: 0.3s;
  box-shadow: 0 0 20px rgba(16, 95, 185, 0.5);
}

.avatar-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(16, 95, 185, 0.8);
}

.video-section {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.video-row-title {
  font-size: clamp(28px, 4vw, 42px);
  font-family: Avenir Bold, sans-serif;
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 30px;
  line-height: 1.3;
}

.video-description-block {
  max-width: 900px;
  margin: 50px auto 0;
  padding: 0 20px;
  text-align: center;
}

.video-description-text {
  font-family: Avenir Light, sans-serif;
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0 0 20px 0;
}

.video-description-text:last-child {
  margin-bottom: 0;
}

.video-row {
  margin-top: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: nowrap;
}

.video-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}

.video-wrapper:hover {
  transform: scale(1.08);
  box-shadow: 0 0 60px rgba(16, 95, 185, 0.6);
}

.video-wrapper.video-active {
  transform: scale(1.1);
  box-shadow: 0 0 80px rgba(16, 95, 185, 0.8);
  z-index: 10;
}

.video-row video {
  width: clamp(180px, 28vw, 280px);
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.video-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(16, 95, 185, 0.8), rgba(16, 95, 185, 1));
  width: 0%;
  transition: width 0.1s linear;
  z-index: 11;
  border-radius: 0 0 24px 24px;
}

.video-wrapper.video-active .video-progress {
  box-shadow: 0 0 10px rgba(16, 95, 185, 0.6);
}

.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5), transparent);
  border-radius: 0 0 24px 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 12;
}

.video-wrapper:hover .video-info,
.video-wrapper.video-active .video-info,
.video-wrapper.video-loaded .video-info,
.video-wrapper.video-error .video-info {
  opacity: 1;
}

.video-title {
  font-family: Avenir Bold, sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  color: #fff;
  margin: 0 0 6px 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.video-description {
  font-family: Avenir, sans-serif;
  font-size: clamp(11px, 1.5vw, 14px);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.4;
}

.video-wrapper.video-error .video-info {
  opacity: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.7));
}


@media (max-width: 1280px) {

  .hero-content {
    padding: 100px 20px 60px;
    gap: 40px;
  }

  .hero-title {
    font-size: 38px;
    padding-top: 0;
  }

  .video-row-title {
    font-size: clamp(24px, 3.5vw, 36px);
    margin-bottom: 25px;
  }

  .video-description-block {
    margin: 40px auto 0;
  }

  .video-description-text {
    font-size: clamp(15px, 1.7vw, 18px);
    margin: 0 0 18px 0;
  }

  .video-wrapper {
    border-radius: 20px;
  }

  .video-row video {
    width: clamp(150px, 24vw, 200px);
    height: auto;
    border-radius: 20px;
  }

  .video-progress {
    border-radius: 0 0 20px 20px;
  }

  .video-info {
    padding: 12px 16px;
    border-radius: 0 0 20px 20px;
  }

  .bg-rays {
    width: 100%;
    height: 100%;
    margin-left: 15%;
  }

  .avatar-btn {
    font-size: 12px;
    padding: 10px 24px;
  }

  .hero-features-wrapper {
    gap: 30px;
  }

  .hero-features {
    gap: 12px;
    min-width: 250px;
  }

  .hero-feature-item {
    padding: 12px 18px;
  }

}

@media (max-width: 768px) {
  .reviews-header {
    flex-direction: column;
    gap: 10px;
  }

  .hero-content {
    flex-direction: column;
    padding: 100px 20px 60px;
    gap: 40px;
    text-align: center;
  }

  .hero-left {
    align-items: center;
    text-align: center;
  }

  .hero-right {
    min-height: 300px;
  }


  .hero-title {
    font-size: 28px;
    padding-top: 0;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-features-wrapper {
    gap: 24px;
    margin-bottom: 24px;
    flex-direction: column;
    align-items: center;
  }

  .hero-features {
    gap: 10px;
    width: 100%;
    min-width: auto;
  }

  .hero-feature-item {
    padding: 12px 16px;
  }

  .feature-text {
    font-size: 13px;
  }

  .hero-cta-btn {
    padding: 14px 32px;
    font-size: 15px;
    width: 100%;
    max-width: 400px;
  }

  .video-row-title {
    font-size: clamp(22px, 3vw, 32px);
    margin-bottom: 20px;
    line-height: 1.4;
  }

  .video-description-block {
    margin: 35px auto 0;
    max-width: 750px;
  }

  .video-description-text {
    font-size: clamp(14px, 1.6vw, 17px);
    margin: 0 0 16px 0;
    line-height: 1.6;
  }

  .video-row {
    gap: 24px;
    flex-wrap: wrap;
  }

  .video-wrapper {
    border-radius: 20px;
  }

  .video-row video {
    width: clamp(130px, 26vw, 170px);
    height: auto;
    border-radius: 20px;
  }

  .video-info {
    opacity: 1 !important;
    padding: 10px 14px;
    border-radius: 0 0 20px 20px;
  }

  .video-title {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .video-description {
    font-size: 11px;
  }

  .video-progress {
    border-radius: 0 0 20px 20px;
  }

  .bg-rays {
    width: 100%;
    height: 80%;
    margin-top: 0;
    margin-left: 5%;
  }

  .avatar-btn {
    font-size: 10px;
    padding: 8px 18px;
  }
}


@media (max-width: 540px) {

  .hero-content {
    padding: 80px 20px 40px;
    margin-top: 0;
    gap: 30px;
  }

  .hero-right {
    min-height: 250px;
  }


  .video-row-title {
    font-size: clamp(20px, 4vw, 28px);
    margin-bottom: 18px;
    line-height: 1.5;
  }

  .video-description-block {
    margin: 30px auto 0;
    max-width: 600px;
    padding: 0 15px;
  }

  .video-description-text {
    font-size: clamp(13px, 2.5vw, 16px);
    margin: 0 0 14px 0;
    line-height: 1.6;
  }

  .video-row {
    gap: 18px;
    flex-wrap: wrap;
  }

  .video-wrapper {
    border-radius: 16px;
  }

  .video-row video {
    width: clamp(140px, 34vw, 180px);
    height: auto;
    border-radius: 16px;
  }

  .video-progress {
    border-radius: 0 0 16px 16px;
  }

  .bg-rays {
    width: 100%;
    height: 100%;
    margin-left: 0;
    margin-top: -30px;
  }

}

@media (max-width: 360px) {
  .hero-content {
    padding: 70px 20px 40px;
    gap: 25px;
  }

  .hero-right {
    min-height: 200px;
  }


  .hero-title {
    font-size: 20px;
    padding-top: 0;
  }

  .hero-subtitle {
    font-size: 12px;
  }

  .hero-features-wrapper {
    gap: 20px;
    margin-bottom: 18px;
  }

  .hero-features {
    gap: 8px;
    width: 100%;
  }

  .hero-feature-item {
    padding: 10px 12px;
  }

  .feature-text {
    font-size: 11px;
  }

  .hero-cta-btn {
    padding: 12px 24px;
    font-size: 13px;
    width: 100%;
  }

  .video-row-title {
    font-size: clamp(18px, 4.5vw, 24px);
    margin-bottom: 16px;
    line-height: 1.5;
  }

  .video-description-block {
    margin: 25px auto 0;
    max-width: 500px;
    padding: 0 12px;
  }

  .video-description-text {
    font-size: clamp(12px, 3vw, 15px);
    margin: 0 0 12px 0;
    line-height: 1.6;
  }

  .video-row {
    flex-wrap: wrap;
  }

  .video-wrapper {
    border-radius: 14px;
  }

  .video-row video {
    width: clamp(120px, 36vw, 160px);
    height: auto;
    border-radius: 14px;
  }

  .video-progress {
    border-radius: 0 0 14px 14px;
  }

  .bg-rays {
    width: 100%;
    height: 100%;
    margin-left: 0;
  }

  .avatar-btn {
    font-size: 12px;
    padding: 6px 14px;
  }
}













/*  BOX3  */
.solutions {
  display: none;
  position: relative;
  padding: 120px 20px;
  text-align: center;
  color: #fff;
  background-image: url("img/bg-dots.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 300px;
}

.solutions::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      #000 100%);
  z-index: 0;
}

.solutions-label {
  background: radial-gradient(circle, #105FB9 0%, #033875 100%);
  color: #fff;
  font-family: Avenir Bold;
  border: none;
  border-radius: 26px;
  padding: 12px 28px;
  margin-bottom: 4%;
  cursor: default;
  transition: 0.3s;
  box-shadow: 0 0 20px rgba(16, 95, 185, 0.5);
  position: relative;
}

.solutions-label:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(16, 95, 185, 0.8);
}

.solutions-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 14px;
}

.solutions-subtitle {
  font-size: 15px;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 50px;
}

.solutionsc {
  margin-top: 4%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.solution-card {
  background: rgba(38, 39, 41, 0.2);
  border-radius: 16px;
  padding: 20px;
  width: 100%;
  max-width: 350px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.35s ease;
  cursor: default;
  overflow: hidden;
}

.solution-card:hover {
  transform: translateY(-6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 60px rgba(16, 95, 185, 0.6);
}

.solution-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.solution-card p {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 24px;
}

.solution-img {
  border-radius: 12px;
  overflow: hidden;
  max-height: 100%;
}

.solution-img img {
  width: 100%;
  display: block;
  transition: 0.4s;
}

.solution-card:hover img {
  transform: scale(1.06);
}

.box3-bg {
  position: absolute;
  align-items: left;
  inset: 0;
  z-index: 0;
  user-select: none;
  pointer-events: none;
  translate: -35% 15%;
}

.bg-box3 {
  width: 100%;
  height: 60%;
  margin-left: 5%;
  margin-bottom: -200px;
}

.bgrt {
  translate: 60% 70%;
  transform: rotate(170deg);
}

@media (max-width: 1600px) {
  .box3-bg {
    translate: -38% 20%;
  }

  .bg-box3 {
    height: 50%;
  }

  .bgrt {
    translate: 68% 88%;
    transform: rotate(170deg);
  }
}

@media (max-width: 1280px) {

  .solutionsc {
    gap: 20px;
  }

  .solution-card {
    width: 25%;
  }

  .solution-card h3 {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .solution-card p {
    font-size: 11px;
    margin-bottom: 24px;
  }

  .box3-bg {
    translate: -40% 20%;
  }

  .bg-box3 {
    height: 50%;
  }

  .bgrt {
    translate: 70% 83%;
    transform: rotate(170deg);
  }

  .solutions-label {
    font-size: 12px;
    padding: 10px 24px;
  }
}

@media (max-width: 768px) {
  .solutions {
    padding: 20px 20px;
  }

  .solutions-label {
    font-size: 10px;
    padding: 8px 18px;
  }

  .solutions-title {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .solutions-subtitle {
    font-size: 12px;
    margin: 0 auto 30px;
  }

  .solution-card h3 {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .solution-card p {
    font-size: 9px;
    margin-bottom: 24px;
  }

  .bgrt {
    translate: 72% 100%;
    transform: rotate(170deg);
  }
}

@media (max-width: 540px) {

  .solutions-title {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .solutions-subtitle {
    font-size: 12px;
    margin: 0 auto 20px;
  }

  .solution-card h3 {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .solution-card p {
    font-size: 12px;
    margin-bottom: 24px;
  }

  .box3-bg {
    translate: -41% 16%;
  }

  .bg-box3 {
    height: 50%;
  }

  .bgrt {
    translate: 72% 90%;
    transform: rotate(170deg);
  }

  .solutions-label {
    font-size: 10px;
    padding: 8px 16px;
  }

}

@media (max-width: 360px) {
  .solutions-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .solutions-subtitle {
    font-size: 12px;
    margin: 0 auto 20px;
  }

  .solution-card {
    padding: 12px;
    border-radius: 10px;
  }

  .solution-card h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .solution-card p {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .box3-bg {
    translate: -41% -5%;
  }

  .bg-box3 {
    height: 50%;
  }

  .bgrt {
    translate: 72% 85%;
    transform: rotate(170deg);
  }

  .solutions-label {
    font-size: 8px;
    padding: 4px 12px;
  }

}


/* PAIN POINTS SECTION */
.pain-points-section {
  position: relative;
  padding: 80px 20px;
  background: radial-gradient(ellipse at center, rgba(16, 95, 185, 0.05) 0%, transparent 70%);
}

.pain-points-container {
  max-width: 800px;
  margin: 0 auto;
}

.pain-points-title {
  font-size: clamp(32px, 5vw, 48px);
  font-family: Avenir Bold;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.2;
  text-align: center;
}

.pain-points-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.pain-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s ease;
}

.pain-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.pain-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(16, 95, 185, 0.3);
  transform: translateX(4px);
}

.pain-bullet {
  color: rgba(16, 95, 185, 0.8);
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

.pain-text {
  font-family: Avenir Light, sans-serif;
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  flex: 1;
}

.cursor-blink {
  color: rgba(16, 95, 185, 0.9);
  font-size: clamp(18px, 2vw, 22px);
  animation: blink 0.8s infinite;
  opacity: 0;
  font-weight: 100;
}

.pain-item.typing .cursor-blink {
  opacity: 1;
}

.pain-item.typed .cursor-blink {
  opacity: 0;
}

@keyframes blink {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}

.pain-points-solution {
  text-align: center;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(16, 95, 185, 0.15) 0%, rgba(16, 95, 185, 0.08) 100%);
  border: 1px solid rgba(16, 95, 185, 0.3);
  border-radius: 16px;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  box-shadow: 0 4px 24px rgba(16, 95, 185, 0.15);
}

.pain-points-solution.visible {
  opacity: 1;
  transform: translateY(0);
}

.solution-text {
  font-size: clamp(18px, 2.2vw, 24px);
  color: #fff;
  margin: 0;
  line-height: 1.4;
}


@media (max-width: 1280px) {
  .pain-points-section {
    padding: 70px 20px;
  }

  .pain-points-title {
    font-size: clamp(28px, 4.5vw, 42px);
    margin-bottom: 35px;
  }

  .pain-points-list {
    gap: 14px;
    margin-bottom: 35px;
  }

  .pain-item {
    padding: 14px 20px;
  }

  .pain-text {
    font-size: clamp(15px, 1.7vw, 18px);
  }

  .pain-points-solution {
    padding: 20px 28px;
    margin-top: 35px;
  }

  .solution-text {
    font-size: clamp(17px, 2vw, 22px);
  }
}

@media (max-width: 768px) {
  .pain-points-section {
    padding: 60px 15px;
  }

  .pain-points-title {
    font-size: clamp(26px, 5vw, 36px);
    margin-bottom: 30px;
  }

  .pain-points-list {
    gap: 12px;
    margin-bottom: 30px;
  }

  .pain-item {
    padding: 12px 18px;
  }

  .pain-bullet {
    font-size: 20px;
  }

  .pain-text {
    font-size: clamp(14px, 2vw, 17px);
  }

  .cursor-blink {
    font-size: clamp(16px, 2.2vw, 20px);
  }

  .pain-points-solution {
    padding: 18px 22px;
    margin-top: 28px;
  }

  .solution-text {
    font-size: clamp(16px, 2.5vw, 20px);
  }
}

@media (max-width: 540px) {
  .pain-points-section {
    padding: 50px 10px;
  }

  .pain-points-title {
    font-size: clamp(24px, 5vw, 30px);
    margin-bottom: 25px;
  }

  .pain-points-list {
    gap: 10px;
    margin-bottom: 25px;
  }

  .pain-item {
    padding: 10px 14px;
  }

  .pain-bullet {
    font-size: 18px;
  }

  .pain-text {
    font-size: clamp(13px, 2.2vw, 16px);
  }

  .cursor-blink {
    font-size: clamp(15px, 2.5vw, 18px);
  }

  .pain-points-solution {
    padding: 16px 18px;
    margin-top: 22px;
  }

  .solution-text {
    font-size: clamp(15px, 2.8vw, 19px);
  }
}

@media (max-width: 360px) {
  .pain-points-section {
    padding: 40px 10px;
  }

  .pain-points-title {
    font-size: clamp(22px, 5.5vw, 28px);
    margin-bottom: 20px;
  }

  .pain-points-list {
    gap: 8px;
    margin-bottom: 20px;
  }

  .pain-item {
    padding: 8px 12px;
  }

  .pain-bullet {
    font-size: 16px;
  }

  .pain-text {
    font-size: clamp(12px, 2.5vw, 15px);
  }

  .cursor-blink {
    font-size: clamp(14px, 2.8vw, 17px);
  }

  .pain-points-solution {
    padding: 14px 16px;
    margin-top: 18px;
  }

  .solution-text {
    font-size: clamp(14px, 3vw, 18px);
  }
}


/* WHAT YOU GET SECTION */
.what-you-get-section {
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
}

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

.wyg-title {
  font-size: clamp(32px, 4vw, 48px);
  color: #fff;
  text-align: center;
  margin: 0 0 60px 0;
  line-height: 1.2;
}

.wyg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.wyg-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.wyg-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #105FB9, #1E88E5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wyg-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(16, 95, 185, 0.4);
  box-shadow: 0 12px 40px rgba(16, 95, 185, 0.15);
}

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

.wyg-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(16, 95, 185, 0.3), rgba(30, 136, 229, 0.2));
  border: 1px solid rgba(16, 95, 185, 0.5);
  border-radius: 12px;
  font-family: Avenir Bold, sans-serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(16, 95, 185, 0.2);
}

.wyg-card-title {
  font-size: clamp(18px, 2vw, 22px);
  color: #fff;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.wyg-card-desc {
  font-size: clamp(14px, 1.5vw, 16px);
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}


@media (max-width: 1280px) {
  .what-you-get-section {
    padding: 70px 20px;
  }

  .wyg-title {
    font-size: clamp(28px, 4.5vw, 42px);
    margin-bottom: 50px;
  }

  .wyg-grid {
    gap: 20px;
  }

  .wyg-card {
    padding: 28px 24px;
  }

  .wyg-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-bottom: 18px;
  }

  .wyg-card-title {
    font-size: clamp(17px, 2vw, 20px);
  }

  .wyg-card-desc {
    font-size: clamp(13px, 1.6vw, 15px);
  }
}

@media (max-width: 768px) {
  .what-you-get-section {
    padding: 60px 15px;
  }

  .wyg-title {
    font-size: clamp(26px, 5vw, 36px);
    margin-bottom: 40px;
  }

  .wyg-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .wyg-card {
    padding: 24px 20px;
  }

  .wyg-number {
    width: 38px;
    height: 38px;
    font-size: 17px;
    margin-bottom: 16px;
  }

  .wyg-card-title {
    font-size: clamp(16px, 2.5vw, 19px);
    margin-bottom: 10px;
  }

  .wyg-card-desc {
    font-size: clamp(13px, 1.8vw, 15px);
  }
}

@media (max-width: 540px) {
  .what-you-get-section {
    padding: 50px 10px;
  }

  .wyg-title {
    font-size: clamp(24px, 5vw, 30px);
    margin-bottom: 35px;
  }

  .wyg-grid {
    gap: 16px;
  }

  .wyg-card {
    padding: 22px 18px;
  }

  .wyg-number {
    width: 36px;
    height: 36px;
    font-size: 16px;
    margin-bottom: 14px;
  }

  .wyg-card-title {
    font-size: clamp(15px, 2.8vw, 18px);
    margin-bottom: 9px;
  }

  .wyg-card-desc {
    font-size: clamp(12px, 2vw, 14px);
  }
}

@media (max-width: 360px) {
  .what-you-get-section {
    padding: 40px 10px;
  }

  .wyg-title {
    font-size: clamp(22px, 5.5vw, 28px);
    margin-bottom: 30px;
  }

  .wyg-grid {
    gap: 14px;
  }

  .wyg-card {
    padding: 20px 16px;
  }

  .wyg-number {
    width: 34px;
    height: 34px;
    font-size: 15px;
    margin-bottom: 12px;
  }

  .wyg-card-title {
    font-size: clamp(14px, 3vw, 17px);
    margin-bottom: 8px;
  }

  .wyg-card-desc {
    font-size: clamp(12px, 2.2vw, 14px);
  }
}


/* TARGET AUDIENCE SECTION */
.target-audience-section {
  position: relative;
  padding: 60px 20px;
  overflow: hidden;
}

.target-audience-container {
  max-width: 700px;
  margin: 0 auto;
}

.audience-title {
  font-size: clamp(28px, 4vw, 38px);
  color: #fff;
  margin: 0 0 30px 0;
  line-height: 1.2;
  text-align: center;
  }

.audience-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.audience-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.audience-row:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(16, 95, 185, 0.2);
    transform: translateX(4px);
}

.audience-check {
  color: rgba(16, 95, 185, 0.9);
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.audience-label {
  font-size: clamp(16px, 1.8vw, 18px);
  color: #fff;
  flex-shrink: 0;
  min-width: 140px;
}

.audience-desc {
  font-size: clamp(14px, 1.6vw, 16px);
  color: rgba(255, 255, 255, 0.6);
  flex: 1;
}

@media (max-width: 1280px) {
  .target-audience-section {
    padding: 50px 20px;
  }

  .audience-title {
    margin-bottom: 25px;
  }

  .audience-list {
    gap: 8px;
  }

  .audience-row {
    padding: 10px 16px;
  }

  .audience-label {
    min-width: 130px;
  }
}

@media (max-width: 768px) {
  .target-audience-section {
    padding: 45px 15px;
  }

  .audience-title {
    font-size: clamp(24px, 4.5vw, 32px);
    margin-bottom: 22px;
  }

  .audience-list {
    gap: 8px;
  }

  .audience-row {
    padding: 10px 14px;
    flex-wrap: wrap;
  }

  .audience-check {
    font-size: 16px;
  }

  .audience-label {
    font-size: clamp(15px, 2vw, 17px);
    min-width: 110px;
  }

  .audience-desc {
    font-size: clamp(13px, 1.8vw, 15px);
  }
}

@media (max-width: 540px) {
  .target-audience-section {
    padding: 40px 10px;
  }

  .audience-title {
    font-size: clamp(22px, 5vw, 28px);
    margin-bottom: 20px;
  }

  .audience-list {
    gap: 8px;
  }

  .audience-row {
    padding: 8px 12px;
  }

  .audience-check {
    font-size: 15px;
  }

  .audience-label {
    font-size: clamp(14px, 2.2vw, 16px);
    min-width: 100px;
  }

  .audience-desc {
    font-size: clamp(12px, 2vw, 14px);
  }
}

@media (max-width: 360px) {
  .target-audience-section {
    padding: 35px 10px;
  }

  .audience-title {
    font-size: clamp(20px, 5.5vw, 26px);
    margin-bottom: 18px;
  }

  .audience-list {
    gap: 6px;
  }

  .audience-row {
    padding: 8px 10px;
  }

  .audience-check {
    font-size: 14px;
  }

  .audience-label {
    font-size: clamp(13px, 2.5vw, 15px);
    min-width: 90px;
  }

  .audience-desc {
    font-size: clamp(11px, 2.2vw, 13px);
  }
}











/*  BOX4  */
.box-4 {
  position: relative;
  width: 100%;
  height: 300px;
  background: radial-gradient(circle at top right, #060606 40%, #000 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 120px;
  color: #fff;
  gap: 14%;
}

.box-4:before {
  content: "";
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      #000 100%);
  z-index: 0;
}

.delay1 {
  animation-delay: 1s;
}

.delay2 {
  animation-delay: 2s;
}

.content {
  z-index: 1;
  max-width: 100%;
}

.content h2 {
  font-size: clamp(32px, 3.5vw, 42px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.content p {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300;
  margin: 8px 0;
  line-height: 1.5;
}

.more-btn {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  border-style: solid transparent;
  border-color: conic-gradient(from 90deg at 50% 50%,
      rgba(255, 255, 255, 0.14) 11.939926445484161%,
      rgba(255, 255, 255, 0) 36.93992793560028%,
      rgba(255, 255, 255, 0.14) 61.93992495536804%,
      rgba(255, 255, 255, 0) 86.93992495536804%);
  border-width: 1px;
  position: relative;
  box-shadow: inset 0.95px 0.88px 4.04px 0px rgba(255, 255, 255, 0.13),
    inset 1.88px 1.75px 8.08px 0px rgba(255, 255, 255, 0.13),
    -1.86px -1.73px 12px -8px rgba(0, 0, 0, 0.15),
    -11.15px -10.39px 48px -12px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(2.36px);
  color: #fff;
  font-size: 13px;
  padding: 8px 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.more-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.row {
  display: flex;
  justify-content: center;
  gap: 66px;
  z-index: 0;
}

.offset {
  margin-top: -8px;
  z-index: 0;
}

.socials img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.socials img:hover {
  transform: scale(1.1);
  opacity: 1;
}

.shd {
  position: absolute;
  height: 55%;
  width: 30%;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 35px 60px rgba(0, 0, 0, 0.3);
}

.shd1 {
  position: absolute;
  height: 55%;
  width: 30%;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 -35px 60px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1600px) {

  .shd {
    width: 45%;
    height: 50%;
    box-shadow: inset 0 25px 50px rgba(0, 0, 0, 0.25);
  }

  .shd1 {
    width: 45%;
    height: 50%;
    box-shadow: inset 0 -25px 50px rgba(0, 0, 0, 0.25);
  }

}

@media (max-width: 1280px) {
  .box-4 {
    padding: 50px 80px;
    height: 280px;
    gap: 10%;
  }

  .content h2 {
    font-size: clamp(26px, 3vw, 34px);
    margin-bottom: 14px;
  }

  .content p {
    font-size: clamp(15px, 1.7vw, 18px);
    margin: 6px 0;
  }

  .socials {
    gap: 12px;
  }

  .row {
    gap: 40px;
  }

  .socials img {
    width: clamp(45px, 5vw, 55px);
    height: clamp(45px, 5vw, 55px);
  }

  .shd {
    width: 35%;
    height: 40%;
    box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  .shd1 {
    width: 35%;
    height: 40%;
    box-shadow: inset 0 -20px 40px rgba(0, 0, 0, 0.2);
  }

  .more-btn {
    margin-top: 14px;
    font-size: clamp(11px, 1.2vw, 13px);
    padding: 7px 16px;
  }
}

@media (max-width: 768px) {
  .box-4 {
    padding: 40px 30px;
    height: auto;
    min-height: 250px;
    flex-direction: column;
    gap: 30px;
  }

  .box-4:before {
    display: none;
  }

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

  .content h2 {
    font-size: clamp(24px, 4vw, 30px);
    margin-bottom: 12px;
  }

  .content p {
    font-size: clamp(14px, 2vw, 17px);
    margin: 6px 0;
  }

  .socials {
    gap: 15px;
    width: 100%;
  }

  .row {
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .socials img {
    width: clamp(40px, 6vw, 50px);
    height: clamp(40px, 6vw, 50px);
  }

  .shd {
    width: 40%;
    height: 30%;
    box-shadow: inset 0 15px 25px rgba(0, 0, 0, 0.15);
  }

  .shd1 {
    width: 40%;
    height: 30%;
    box-shadow: inset 0 -15px 25px rgba(0, 0, 0, 0.15);
  }

  .more-btn {
    margin-top: 16px;
    font-size: clamp(12px, 2vw, 14px);
    padding: 8px 20px;
  }
}

@media (max-width: 540px) {
  .box-4 {
    padding: 35px 20px;
    height: auto;
    min-height: 220px;
    flex-direction: column;
    gap: 25px;
  }

  .box-4:before {
    display: none;
  }

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

  .content h2 {
    font-size: clamp(22px, 4.5vw, 28px);
    margin-bottom: 10px;
  }

  .content p {
    font-size: clamp(13px, 2.5vw, 16px);
    margin: 5px 0;
  }

  .socials {
    gap: 12px;
    width: 100%;
  }

  .row {
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .socials img {
    width: clamp(35px, 7vw, 45px);
    height: clamp(35px, 7vw, 45px);
  }

  .shd {
    width: 45%;
    height: 25%;
    box-shadow: inset 0 12px 20px rgba(0, 0, 0, 0.15);
  }

  .shd1 {
    width: 45%;
    height: 25%;
    box-shadow: inset 0 -12px 20px rgba(0, 0, 0, 0.15);
  }

  .more-btn {
    margin-top: 14px;
    font-size: clamp(11px, 2.5vw, 13px);
    padding: 7px 18px;
  }
}

@media (max-width: 360px) {
  .box-4 {
    padding: 30px 15px;
    height: auto;
    min-height: 200px;
    flex-direction: column;
    gap: 20px;
  }

  .box-4:before {
    display: none;
  }

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

  .content h2 {
    font-size: clamp(20px, 5vw, 26px);
    margin-bottom: 8px;
  }

  .content p {
    font-size: clamp(12px, 3vw, 15px);
    margin: 4px 0;
  }

  .socials {
    gap: 10px;
    width: 100%;
  }

  .row {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .socials img {
    width: clamp(30px, 8vw, 40px);
    height: clamp(30px, 8vw, 40px);
  }

  .shd {
    width: 50%;
    height: 20%;
    box-shadow: inset 0 10px 15px rgba(0, 0, 0, 0.15);
  }

  .shd1 {
    width: 50%;
    height: 20%;
    box-shadow: inset 0 -10px 15px rgba(0, 0, 0, 0.15);
  }

  .more-btn {
    margin-top: 12px;
    font-size: clamp(10px, 3vw, 12px);
    padding: 6px 16px;
  }
}












/*  BOX5  */

.mf-container {
  max-width: 1200px;
  margin: 80px auto;
  padding: 50px 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(2, 10, 20, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  overflow: hidden;
  backdrop-filter: blur(8px) saturate(120%);
}

.mf-header {
  text-align: center;
  margin-bottom: 40px;
}

.mf-kicker {
  background: radial-gradient(circle, #105FB9 0%, #033875 100%);
  color: #fff;
  font-family: Avenir Bold;
  border: none;
  border-radius: 26px;
  padding: 12px 28px;
  margin-top: 1%;
  cursor: default;
  transition: 0.3s;
  box-shadow: 0 0 20px rgba(16, 95, 185, 0.5);
}

.mf-kicker:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(16, 95, 185, 0.8);
}

.mf-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

#s1-title {
  padding-bottom: 10px;
}

#s2-title {
  padding-bottom: 10px;
}

#s3-title {
  padding-bottom: 10px;
}

#s4-title {
  padding-bottom: 10px;
}

.mf-sub {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0;
  font-size: clamp(14px, 1.6vw, 18px);
  font-family: Avenir Medium;
  line-height: 1.5;
}

.mf-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
  justify-content: center;
}

.step {
  position: relative;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 240px;
  max-width: 280px;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(16, 95, 185, 0.4);
  border-color: rgba(16, 95, 185, 0.3);
}

.step .num {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 8px 18px rgba(18, 112, 255, 0.18);
  font-size: 16px;
}

.step-head {
  display: flex;
  gap: 12px;
  align-items: center;
}

.step h3 {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.3;
  color: #fff;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.6;
  flex: 1;
}

.iconsmall {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.01);
}

.connector {
  height: 6px;
  background: linear-gradient(90deg, rgba(18, 112, 255, 0.8), rgba(25, 160, 255, 0.8));
  border-radius: 999px;
  margin: 20px 0 6px;
  box-shadow: 0 6px 20px rgba(18, 112, 255, 0.08);
}

.mf-footer {
  text-align: center;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.5;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: .9;
  }

  70% {
    transform: scale(1.08);
    opacity: .6;
  }

  100% {
    transform: scale(1);
    opacity: .9;
  }
}

.step .num {
  animation: pulse 4.5s ease-in-out infinite;
}

/* accessible focus states */
.step:focus-within,
.step:focus {
  outline: 3px solid rgba(25, 160, 255, 0.12);
  outline-offset: 4px;
}

.box5-bg {
  position: absolute;
  z-index: 0;
  user-select: none;
  pointer-events: none;
  translate: 0 -35%;
}

.bg-box5 {
  width: 100vw;
  height: 150%;
  margin-bottom: -200px;
}

@media (max-width: 1280px) {

  .mf-container {
    max-width: 95%;
    margin: 60px auto;
    padding: 40px 30px;
  }

  .mf-header {
    margin-bottom: 35px;
  }

  .mf-title {
    font-size: clamp(26px, 3.5vw, 38px);
  }

  .mf-sub {
    font-size: clamp(13px, 1.5vw, 16px);
  }

  .mf-steps {
    gap: 16px;
  }

  .step {
    padding: 20px;
    min-width: 200px;
  }

  .step .num {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .step h3 {
    font-size: clamp(15px, 1.7vw, 17px);
  }

  .step p {
    font-size: clamp(12px, 1.4vw, 14px);
  }

  .connector {
    height: 4px;
    margin: 18px 0 6px;
  }

  .mf-footer {
    font-size: clamp(13px, 1.5vw, 15px);
    margin-top: 25px;
  }
}

@media (max-width: 768px) {
  .mf-container {
    max-width: 95%;
    margin: 50px auto;
    padding: 32px 20px;
  }

  .mf-header {
    margin-bottom: 30px;
  }

  .mf-title {
    font-size: clamp(24px, 4vw, 32px);
  }

  .mf-sub {
    font-size: clamp(13px, 1.8vw, 15px);
  }

  .mf-steps {
    gap: 16px;
    flex-direction: column;
  }

  .step {
    padding: 20px 18px;
    border-radius: 14px;
    max-width: 100%;
    min-width: auto;
  }

  .step-head {
    gap: 10px;
  }

  .step .num {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .step h3 {
    font-size: clamp(15px, 2vw, 17px);
  }

  .step p {
    font-size: clamp(13px, 1.6vw, 14px);
  }

  .connector {
    height: 4px;
    margin: 16px 0 6px;
  }

  .mf-footer {
    font-size: clamp(13px, 1.8vw, 15px);
    margin-top: 20px;
  }
}

@media (max-width: 540px) {
  .mf-container {
    max-width: 95%;
    margin: 40px auto;
    padding: 28px 16px;
  }

  .mf-header {
    margin-bottom: 25px;
  }

  .mf-title {
    font-size: clamp(22px, 4.5vw, 28px);
  }

  .mf-sub {
    font-size: clamp(12px, 2vw, 14px);
  }

  .mf-steps {
    gap: 14px;
  }

  .step {
    padding: 18px 16px;
    border-radius: 12px;
  }

  .step-head {
    gap: 10px;
  }

  .step .num {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .step h3 {
    font-size: clamp(14px, 2.2vw, 16px);
  }

  .step p {
    font-size: clamp(12px, 1.8vw, 13px);
  }

  .connector {
    height: 3px;
    margin: 14px 0 6px;
  }

  .mf-footer {
    font-size: clamp(12px, 2vw, 14px);
    margin-top: 18px;
  }
}

@media (max-width: 360px) {

  .mf-container {
    max-width: 95%;
    margin: 35px auto;
    padding: 24px 14px;
  }

  .mf-header {
    margin-bottom: 20px;
  }

  .mf-title {
    font-size: clamp(20px, 5vw, 26px);
  }

  .mf-sub {
    font-size: clamp(11px, 2.2vw, 13px);
  }

  .mf-steps {
    gap: 12px;
  }

  .step {
    padding: 16px 14px;
    border-radius: 12px;
  }

  .step-head {
    gap: 8px;
  }

  .step .num {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .step h3 {
    font-size: clamp(13px, 2.5vw, 15px);
  }

  .step p {
    font-size: clamp(11px, 2vw, 12px);
  }

  .connector {
    height: 3px;
    margin: 12px 0 6px;
  }

  .mf-footer {
    font-size: clamp(11px, 2.2vw, 13px);
    margin-top: 16px;
  }
}











/*  BOX6  */
.reviews {
  color: #fff;
  font-family: "AvenirNextCyr", sans-serif;
  position: relative;
  overflow: hidden;
  padding: 100px 20px;
  background: radial-gradient(ellipse at center, rgba(16, 95, 185, 0.1) 0%, transparent 70%);
}

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

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.reviews-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.reviews-platforms {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.platform-tag {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  font-size: clamp(12px, 1.5vw, 14px);
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.platform-tag:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(16, 95, 185, 0.4);
}

.reviews-slider-wrapper {
  position: relative;
}

.reviews-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  font-size: clamp(14px, 1.8vw, 16px);
  color: rgba(255, 255, 255, 0.7);
}

.counter-current {
  font-weight: 700;
  color: #fff;
  font-size: clamp(18px, 2.2vw, 22px);
}

.counter-separator {
  color: rgba(255, 255, 255, 0.5);
}

.counter-total {
  color: rgba(255, 255, 255, 0.6);
}

#reviews-slider {
  margin-bottom: 30px;
  overflow: visible;
}

#reviews-slider .splide__pagination {
  display: none;
}

#reviews-slider .splide__arrow {
  display: none;
}

#reviews-slider .splide__track {
  overflow: visible;
}

#reviews-slider .splide__list {
  align-items: stretch;
}

#reviews-slider .splide__slide {
  opacity: 0.5;
  transform: scale(0.9);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#reviews-slider .splide__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

#reviews-slider .splide__slide.is-prev,
#reviews-slider .splide__slide.is-next {
  opacity: 0.7;
  transform: scale(0.95);
}

.review-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

#reviews-slider .splide__slide.is-active .review-card {
  border-color: rgba(16, 95, 185, 0.4);
  box-shadow: 0 12px 40px rgba(16, 95, 185, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.review-text {
  font-size: clamp(14px, 1.5vw, 16px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0 0 24px 0;
  flex: 1;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  flex-shrink: 0;
}

.review-avatar img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-name {
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.review-role {
  font-size: clamp(12px, 1.3vw, 13px);
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.read-more-btn {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #fff;
  font-size: clamp(12px, 1.3vw, 13px);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.read-more-btn:hover {
  background: rgba(16, 95, 185, 0.3);
  border-color: rgba(16, 95, 185, 0.5);
  transform: translateY(-2px);
}

.reviews-navigation {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.slider-btn:hover:not(:disabled) {
  background: rgba(16, 95, 185, 0.3);
  border-color: rgba(16, 95, 185, 0.5);
  transform: scale(1.1);
}

.slider-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.slider-btn svg {
  width: 20px;
  height: 20px;
}


@media (max-width: 1280px) {
  .reviews {
    padding: 70px 20px;
  }

  .container-small {
    max-width: 700px;
  }

  .review-card {
    padding: 24px 20px;
  }
  
  .review-text {
    font-size: clamp(13px, 1.6vw, 15px);
    margin-bottom: 20px;
  }
  
  .review-avatar img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .reviews {
    padding: 50px 15px;
  }

  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 35px;
  }

  .reviews-title {
    width: 100%;
    font-size: clamp(24px, 4.5vw, 34px);
  }

  .review-card {
    padding: 20px 18px;
  }
  
  .review-text {
    font-size: clamp(13px, 1.8vw, 15px);
    margin-bottom: 18px;
  }
  
  .review-avatar img {
    width: 38px;
    height: 38px;
  }
  
  .review-name {
    font-size: clamp(13px, 1.8vw, 15px);
  }
  
  .review-role {
    font-size: clamp(11px, 1.4vw, 12px);
  }

  .review-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .read-more-btn {
    width: 100%;
    text-align: center;
    padding: 8px 18px;
    font-size: clamp(11px, 1.4vw, 12px);
  }
}

@media (max-width: 540px) {
  .reviews {
    padding: 40px 10px;
  }

  .container-small {
    max-width: 100%;
  }
  
  .reviews-title {
    font-size: clamp(22px, 5vw, 30px);
  }

  .review-card {
    padding: 18px 16px;
  }
  
  .review-text {
    font-size: clamp(12px, 2vw, 14px);
    margin-bottom: 16px;
  }

  .review-avatar img {
    width: 36px;
    height: 36px;
  }
  
  .review-name {
    font-size: clamp(12px, 2vw, 14px);
  }
  
  .review-role {
    font-size: clamp(11px, 1.5vw, 12px);
  }
  
  .read-more-btn {
    padding: 8px 16px;
    font-size: clamp(11px, 1.5vw, 12px);
  }

  .slider-btn {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 360px) {
  .reviews {
    padding: 35px 10px;
  }
  
  .reviews-title {
    font-size: clamp(20px, 5.5vw, 28px);
  }

  .review-card {
    padding: 16px 14px;
  }
  
  .review-text {
    font-size: clamp(12px, 2.2vw, 14px);
    margin-bottom: 14px;
  }
  
  .review-avatar img {
    width: 34px;
    height: 34px;
  }
  
  .review-name {
    font-size: clamp(12px, 2.2vw, 14px);
  }
  
  .review-role {
    font-size: clamp(10px, 1.6vw, 11px);
  }
  
  .read-more-btn {
    padding: 7px 14px;
    font-size: clamp(10px, 1.6vw, 11px);
  }
}






/* CALLBACK MODAL */
.callback-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.callback-modal.active {
  display: flex;
}

.callback-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.callback-modal-content {
  position: relative;
  background: rgba(11, 11, 15, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 10001;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.callback-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.callback-modal-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.callback-modal-content .callback-title {
  margin-top: 0;
  margin-bottom: 12px;
}

.callback-modal-content .callback-subtitle {
  margin-bottom: 30px;
}

/*  BOX7  */
.box7-section {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.box7-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.box7-label {
  background: radial-gradient(circle, #105FB9 0%, #033875 100%);
  color: #fff;
  border: none;
  border-radius: 26px;
  padding: 12px 28px;
  margin-bottom: 24px;
  cursor: default;
  transition: 0.3s;
  box-shadow: 0 0 20px rgba(16, 95, 185, 0.5);
  position: relative;
  font-family: Avenir Bold;
}

.box7-label:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(16, 95, 185, 0.8);
}

.box7-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 50px;
  line-height: 1.2;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
  justify-items: center;
}

.product-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  width: 100%;
  max-width: 280px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  cursor: default;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(16, 95, 185, 0.4);
  box-shadow: 0 12px 40px rgba(16, 95, 185, 0.4);
}

.product-title {
  font-size: clamp(18px, 2vw, 22px);
  font-family: Avenir Bold;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.product-description {
  font-size: clamp(14px, 1.5vw, 16px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

.box7-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.box7-price-btn {
  background: radial-gradient(circle, #0077FF 25%, #105FB9 100%);
  box-shadow: 0 0 30px rgba(16, 95, 185, 0.8);
  font-family: Avenir Bold;
  color: white;
  padding: 18px 48px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
  font-size: 18px;
}

.box7-price-btn:hover {
  filter: brightness(1.2);
  transform: scale(1.05);
}

.box7-price-btn:active {
  transform: scale(0.98);
}

@media (max-width: 1280px) {
  .box7-section {
    padding: 80px 20px;
  }

  .box7-title {
    margin-bottom: 40px;
  }

  .products-grid {
    gap: 24px;
    margin-bottom: 50px;
  }

  .product-card {
    padding: 35px 25px;
    max-width: 260px;
  }

  .box7-cta {
    margin-top: 35px;
  }

  .box7-price-btn {
    padding: 16px 42px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .box7-section {
    padding: 60px 15px;
  }

  .box7-title {
    margin-bottom: 32px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }

  .product-card {
    padding: 30px 20px;
    max-width: 100%;
  }

  .box7-cta {
    margin-top: 30px;
  }

  .box7-price-btn {
    padding: 14px 36px;
    font-size: 16px;
  }
}

@media (max-width: 540px) {
  .box7-section {
    padding: 50px 10px;
  }

  .box7-title {
    margin-bottom: 28px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 35px;
  }

  .product-card {
    padding: 28px 20px;
  }

  .box7-price-btn {
    padding: 14px 32px;
    font-size: 15px;
  }
}

@media (max-width: 360px) {
  .box7-section {
    padding: 40px 10px;
  }

  .product-card {
    padding: 24px 18px;
  }

  .box7-price-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}

















/*  BOX8  */
.faq-section {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-direction: column;
}

.faq-container {
  text-align: center;
  width: 100%;
  max-width: 900px;
  padding: 3% 0;
}

.faq-label {
  background: radial-gradient(circle, #105FB9 0%, #033875 100%);
  color: #fff;
  border: none;
  border-radius: 26px;
  padding: 12px 28px;
  margin-bottom: 4%;
  cursor: default;
  transition: 0.3s;
  box-shadow: 0 0 20px rgba(16, 95, 185, 0.5);
  position: relative;
}

.faq-label:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(16, 95, 185, 0.8);
}

.faq-header h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
}

.faq-tab {
  background: none;
  border: none;
  color: #aaa;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  font-family: Avenir Medium;
  margin-top: 10px;
}

.faq-tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0%;
  background: #00aaff;
  border-radius: 1px;
  transition: width 0.3s ease;
}

.faq-tab:hover {
  color: #fff;
}

.faq-tab:hover::after,
.faq-tab.active::after {
  width: 100%;
}

.faq-tab.active {
  color: #fff;
}

.faq-body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  gap: 20px;
}

.faq-left {
  position: relative;
  width: 50%;
  min-height: 240px;
}

.faq-questions {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.faq-questions.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  z-index: 2;
}

.faq-question {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.faq-question:hover {
  border: 1px solid rgba(0, 170, 255, 0.5);
}

.faq-question.active {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  border-style: solid;
  border-color: conic-gradient(from 90deg at 50% 50%,
      rgba(255, 255, 255, 0.14) 11.939926445484161%,
      rgba(255, 255, 255, 0) 36.93992793560028%,
      rgba(255, 255, 255, 0.14) 61.93992495536804%,
      rgba(255, 255, 255, 0) 86.93992495536804%);
  border-width: 1px;
  position: relative;
  box-shadow: inset 0.95px 0.88px 4.04px 0px rgba(255, 255, 255, 0.13),
    inset 1.88px 1.75px 8.08px 0px rgba(255, 255, 255, 0.13),
    -1.86px -1.73px 12px -8px rgba(0, 0, 0, 0.15),
    -11.15px -10.39px 48px -12px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(2.36px);
  transform: scale(1.02);
  opacity: 1;
}

.faq-answer {
  width: 50%;
  height: 290px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  border-style: solid transparent;
  border-color: conic-gradient(from 90deg at 50% 50%,
      rgba(255, 255, 255, 0.14) 11.939926445484161%,
      rgba(255, 255, 255, 0) 36.93992793560028%,
      rgba(255, 255, 255, 0.14) 61.93992495536804%,
      rgba(255, 255, 255, 0) 86.93992495536804%);
  border-width: 1px;
  position: relative;
  box-shadow: inset 0.95px 0.88px 4.04px 0px rgba(255, 255, 255, 0.13),
    inset 1.88px 1.75px 8.08px 0px rgba(255, 255, 255, 0.13),
    -1.86px -1.73px 12px -8px rgba(0, 0, 0, 0.15),
    -11.15px -10.39px 48px -12px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(2.36px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.faq-answer p {
  font-family: Avenir Medium;
}

.faq-footer {
  text-align: center;
}

.fade-out {
  opacity: 0;
  transform: translateX(-20px);
}

.fade-in {
  opacity: 1;
  transform: translateX(0);
}


@media (max-width: 1280px) {

  .faq-container {
    width: 70%;
  }

  .faq-label {
    font-size: 12px;
    padding: 10px 24px;
    margin-bottom: 2%;
  }

  .faq-header h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .faq-tabs {
    gap: 26px;
    margin-bottom: 28px;
  }

  .faq-tab {
    font-size: 14px;
  }

  .faq-question {
    font-size: 14px;
  }

  .faq-answer {
    font-size: 14px;
  }

  .faq-footer {
    font-size: 12px;
  }

  .faq-left {
    min-height: 150px;
  }

}

@media (max-width: 768px) {
  .faq-container {
    width: 90%;
    max-width: 100%;
    padding: 40px 15px;
  }

  .faq-label {
    font-size: clamp(11px, 2vw, 13px);
    padding: 8px 18px;
  }

  .faq-header h2 {
    font-size: clamp(24px, 5vw, 32px);
    margin-bottom: 18px;
  }

  .faq-tabs {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
  }

  .faq-tab {
    font-size: clamp(12px, 2vw, 14px);
  }

  .faq-question {
    font-size: clamp(13px, 2vw, 15px);
    padding: 12px 16px;
  }

  .faq-body {
    flex-direction: column;
    gap: 16px;
  }

  .faq-left,
  .faq-answer {
    width: 100%;
  }
  
  .faq-left {
    min-height: 200px;
  }

  .faq-answer {
    font-size: clamp(13px, 2vw, 15px);
    line-height: 1.6;
    min-height: 200px;
    height: auto;
    padding: 18px;
  }

  .faq-footer {
    font-size: clamp(10px, 1.8vw, 12px);
  }
}

@media (max-width: 540px) {
  .faq-container {
    width: 92%;
    padding: 35px 10px;
  }

  .faq-label {
    font-size: clamp(10px, 2.2vw, 12px);
    padding: 7px 14px;
  }

  .faq-header h2 {
    font-size: clamp(22px, 5vw, 28px);
    margin-bottom: 16px;
  }

  .faq-tabs {
    gap: 10px;
    margin-bottom: 20px;
  }

  .faq-tab {
    font-size: clamp(11px, 2.2vw, 13px);
  }

  .faq-questions.active {
    gap: 10px;
  }

  .faq-question {
    font-size: clamp(13px, 2.2vw, 15px);
    padding: 11px 14px;
  }

  .faq-answer {
    font-size: clamp(13px, 2.2vw, 15px);
    line-height: 1.5;
    min-height: 180px;
    height: auto;
    padding: 16px;
  }

  .faq-footer {
    font-size: clamp(10px, 2vw, 12px);
  }

  .faq-left {
    min-height: 180px;
  }
}

@media (max-width: 360px) {
  .faq-container {
    width: 95%;
    padding: 30px 10px;
  }

  .faq-label {
    font-size: clamp(10px, 2.5vw, 12px);
    padding: 6px 12px;
  }

  .faq-header h2 {
    font-size: clamp(20px, 5.5vw, 26px);
    margin-bottom: 14px;
  }

  .faq-tabs {
    gap: 8px;
    margin-bottom: 18px;
  }

  .faq-tab {
    font-size: clamp(10px, 2.5vw, 12px);
  }

  .faq-questions.active {
    gap: 8px;
  }

  .faq-question {
    font-size: clamp(12px, 2.5vw, 14px);
    padding: 10px 12px;
  }

  .faq-answer {
    font-size: clamp(12px, 2.5vw, 14px);
    line-height: 1.5;
    min-height: 160px;
    height: auto;
    padding: 14px;
  }

  .faq-footer {
    font-size: clamp(10px, 2.2vw, 12px);
  }

  .faq-left {
    min-height: 160px;
  }
}










/*  BOX9  */

.box9-section {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-direction: column;
  padding: 10% 0;
}

.box9-content {
  position: relative;
  z-index: 1;
}

.box9-title {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 16px;
  justify-content: center;
  display: flex;
}

.box9-subtitle {
  font-size: 18px;
  margin-bottom: 10px;
  text-align: center;
}

.box9-subtitle small {
  font-family: Avenir Light;
  font-size: 18px;
  text-align: center;
}

.bb {
  font-family: Avenir Bold;
}

.buttons-box9 {
  display: flex;
  gap: 12px;
  padding: 2% 0;
}

.box9-glass-btn {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  border-style: solid transparent;
  border-color: conic-gradient(from 90deg at 50% 50%,
      rgba(255, 255, 255, 0.14) 11.939926445484161%,
      rgba(255, 255, 255, 0) 36.93992793560028%,
      rgba(255, 255, 255, 0.14) 61.93992495536804%,
      rgba(255, 255, 255, 0) 86.93992495536804%);
  border-width: 1px;
  position: relative;
  box-shadow: inset 0.95px 0.88px 4.04px 0px rgba(255, 255, 255, 0.13),
    inset 1.88px 1.75px 8.08px 0px rgba(255, 255, 255, 0.13),
    -1.86px -1.73px 12px -8px rgba(0, 0, 0, 0.15),
    -11.15px -10.39px 48px -12px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(2.36px);
  color: white;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: Avenir Bold;
  font-size: 16px;
}

.box9-glass-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.box9-btn {
  background: radial-gradient(circle, #0077FF 25%, #105FB9 100%);
  box-shadow: 0 0 30px rgba(16, 95, 185, 0.8);
  font-family: Avenir Bold;
  color: white;
  padding: 8px 18px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
  font-size: 16px;

}

.box9-btn:hover {
  filter: brightness(1.2);
  transform: scale(1.05);
}

@media (max-width: 1280px) {

  .box9-title {
    font-size: 35px;
  }

  .box9-subtitle {
    font-size: 14px;
    margin-bottom: 10px;
    text-align: center;
  }

  .box9-subtitle small {
    font-size: 14px;
  }

  .buttons-box9 {
    font-size: 14px;
    gap: 10px;
    padding: 1% 0;
  }

  .box9-btn {
    font-size: 14px;
    padding: 6px 14px;
  }

  .box9-glass-btn {
    font-size: 14px;
    padding: 6px 14px;
  }
}

@media (max-width: 768px) {
  .box9-title {
    font-size: 24px;
  }

  .box9-subtitle {
    font-size: 12px;
    margin-bottom: 8px;
    text-align: center;
  }

  .box9-subtitle small {
    font-size: 12px;
  }

  .buttons-box9 {
    font-size: 12px;
    gap: 8px;
    padding: 1% 0;
  }

  .box9-btn {
    font-size: 12px;
    padding: 4px 10px;
  }

  .box9-glass-btn {
    font-size: 12px;
    padding: 4px 10px;
  }
}

@media (max-width: 540px) {
  .box9-title {
    font-size: 22px;
  }

  .box9-subtitle {
    font-size: 12px;
    margin-bottom: 6px;
    text-align: center;
  }

  .box9-subtitle small {
    font-size: 10px;
  }

  .buttons-box9 {
    font-size: 10px;
    gap: 6px;
    padding: 1% 0;
  }

  .box9-btn {
    font-size: 14px;
    padding: 6px 14px;
  }

  .box9-glass-btn {
    font-size: 14px;
    padding: 6px 14px;
  }
}

@media (max-width: 360px) {
  .box9-title {
    font-size: 18px;
  }

  .box9-subtitle {
    font-size: 12px;
    margin-bottom: 4px;
    text-align: center;
  }

  .box9-subtitle small {
    font-size: 6px;
  }

  .buttons-box9 {
    font-size: 8px;
    gap: 3px;
    padding: 1% 0;
  }

  .box9-btn {
    font-size: 12px;
    padding: 6px 12px;
  }

  .box9-glass-btn {
    font-size: 12px;
    padding: 6px 12px;
  }
}










/*  CALLBACK FORM  */
.callback-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8% 5%;
  overflow: hidden;
}

.callback-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 48px 40px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.callback-title {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: center;
  color: #fff;
}

.callback-subtitle {
  font-size: 16px;
  margin-bottom: 32px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.callback-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  color: #fff;
  font-family: Avenir, sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(16, 95, 185, 0.6);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(16, 95, 185, 0.2),
    inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: Avenir, sans-serif;
}

.callback-submit-btn {
  background: radial-gradient(circle, #0077FF 25%, #105FB9 100%);
  box-shadow: 0 0 30px rgba(16, 95, 185, 0.8);
  font-family: Avenir Bold;
  color: white;
  padding: 16px 32px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
  font-size: 18px;
  margin-top: 8px;
  width: 100%;
}

.callback-submit-btn:hover {
  filter: brightness(1.2);
  transform: scale(1.02);
}

.callback-submit-btn:active {
  transform: scale(0.98);
}

.callback-success {
  text-align: center;
  padding: 24px;
  background: rgba(16, 95, 185, 0.15);
  border-radius: 16px;
  border: 1px solid rgba(16, 95, 185, 0.3);
  margin-top: 24px;
}

.success-message {
  color: #fff;
  font-family: Avenir Bold;
  font-size: 18px;
  margin: 0;
}

@media (max-width: 1280px) {
  .callback-container {
    padding: 40px 32px;
  }

  .callback-title {
    font-size: 32px;
  }

  .callback-subtitle {
    font-size: 14px;
  }

  .form-input,
  .form-textarea {
    padding: 14px 18px;
    font-size: 15px;
  }

  .callback-submit-btn {
    padding: 14px 28px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .callback-modal-content {
    padding: 32px 24px;
    max-width: 95%;
  }

  .callback-modal-close {
    top: 15px;
    right: 15px;
    font-size: 28px;
    width: 32px;
    height: 32px;
  }

  .callback-section {
    padding: 6% 4%;
  }

  .callback-container {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .callback-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .callback-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .callback-form {
    gap: 16px;
  }

  .form-input,
  .form-textarea {
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 14px;
  }

  .form-textarea {
    min-height: 100px;
  }

  .callback-submit-btn {
    padding: 14px 24px;
    font-size: 15px;
  }

  .success-message {
    font-size: 16px;
  }
}

@media (max-width: 540px) {
  .callback-modal-content {
    padding: 28px 20px;
    max-width: 98%;
  }

  .callback-modal-close {
    top: 12px;
    right: 12px;
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

  .callback-section {
    padding: 5% 3%;
  }

  .callback-container {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .callback-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .callback-subtitle {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .callback-form {
    gap: 14px;
  }

  .form-input,
  .form-textarea {
    padding: 12px 14px;
    font-size: 13px;
    border-radius: 12px;
  }

  .form-textarea {
    min-height: 90px;
  }

  .callback-submit-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .success-message {
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .callback-modal-content {
    padding: 24px 16px;
    max-width: 98%;
  }

  .callback-modal-close {
    top: 10px;
    right: 10px;
    font-size: 22px;
    width: 26px;
    height: 26px;
  }

  .callback-container {
    padding: 20px 16px;
  }

  .callback-title {
    font-size: 20px;
  }

  .callback-subtitle {
    font-size: 11px;
  }

  .form-input,
  .form-textarea {
    padding: 10px 12px;
    font-size: 12px;
  }

  .callback-submit-btn {
    padding: 10px 18px;
    font-size: 13px;
  }
}


/*  FOOTER  */
.footer {
  position: relative;
}

.footer-sec {
  height: 100%;
  width: 100vw;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  border-style: solid transparent;
  border-color: conic-gradient(from 90deg at 50% 50%,
      rgba(255, 255, 255, 0.14) 11.939926445484161%,
      rgba(255, 255, 255, 0) 36.93992793560028%,
      rgba(255, 255, 255, 0.14) 61.93992495536804%,
      rgba(255, 255, 255, 0) 86.93992495536804%);
  border-width: 1px;
  position: relative;
  box-shadow: inset 0.95px 0.88px 4.04px 0px rgba(255, 255, 255, 0.13),
    inset 1.88px 1.75px 8.08px 0px rgba(255, 255, 255, 0.13),
    -1.86px -1.73px 12px -8px rgba(0, 0, 0, 0.15),
    -11.15px -10.39px 48px -12px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(2.36px);
  color: white;

  display: flex;
  justify-content: space-between;
}

.footer-left {
  display: flex;
  flex-direction: column;
  padding-left: 10%;
  padding-top: 3%;
  width: 40%;
}

.fot-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fot-logo .logo-icon {
  width: 78px;
  height: 78px;
}

.fot-logo .logo-icon svg {
  filter: drop-shadow(0 4px 16px rgba(16, 95, 185, 0.5));
}

.fot-brand-name {
  font-size: 38px;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fot-title {
  padding: 2% 0;
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.fot-subtitle {
  padding-bottom: 3%;
}

.footer-right {
  display: flex;
  flex-wrap: wrap;
  padding-right: 5%;
  padding-top: 3%;
  width: 50%;
  gap: 8%;
}

.footer-right a {
  color: white;
  text-decoration: none;
  opacity: 0.65;
  transition: all 0.3s ease;
}

.footer-right a:hover {
  opacity: 1;
  color: #105FB9;
  transform: translateX(2px);
}

.footer-right a[href^="tel:"] {
  font-weight: 500;
}

.footer-right a[target="_blank"] {
  position: relative;
  padding-left: 4px;
}

.footer-right p {
  padding-bottom: 30px;
}

.href {
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 5%;
  min-width: 140px;
}

.fot-bg {
  position: absolute;
  z-index: -1;
  user-select: none;
  pointer-events: none;
  bottom: 0;
}

.bg-fot {
  width: 100vw;
  top: 0;
  left: 0;

}

@media (max-width: 1280px) {

  .footer-left {
    padding-left: 8%;
  }

  .fot-logo .logo-icon {
    width: 57px;
    height: 57px;
  }

  .fot-brand-name {
    font-size: 24px;
  }

  .fot-title {
    font-size: 30px;
  }

  .fot-subtitle {
    font-size: 12px;
  }

  .footer-right p {
    padding-bottom: 20px;
  }

  .href p,
  a {
    font-size: 14px;
  }

  .footer-right {
    width: 40%;
    gap: 10%;
  }
}

@media (max-width: 768px) {
  .footer-sec {
    flex-direction: column;
    gap: 16px;
    padding-bottom: 24px;
  }

  .footer-left,
  .footer-right {
    width: 100%;
    padding-left: 8%;
    padding-right: 8%;
  }

  .footer-right {
    gap: 6%;
  }
  
  .href {
    min-width: 110px;
  }

  .footer-left {
    padding-left: 8%;
  }

  .fot-logo .logo-icon {
    width: 48px;
    height: 48px;
  }

  .fot-brand-name {
    font-size: 18px;
  }

  .fot-title {
    font-size: 24px;
  }

  .fot-subtitle {
    font-size: 10px;
  }

  .footer-right p {
    padding-bottom: 14px;
  }

  .href p,
  a {
    font-size: 12px;
  }

  .footer-right {
    width: 40%;
    gap: 10%;
  }
}

@media (max-width: 540px) {
  .footer-left {
    padding-left: 8%;
  }

  .fot-logo .logo-icon {
    width: 36px;
    height: 36px;
  }

  .fot-brand-name {
    font-size: 16px;
  }

  .fot-title {
    font-size: 22px;
  }

  .fot-subtitle {
    font-size: 6px;
  }

  .footer-right p {
    padding-bottom: 10px;
  }

  .href p,
  a {
    font-size: 14px;
  }

  .footer-right {
    width: 100%;
    gap: 5%;
  }
  
  .href {
    min-width: 100px;
  }
}

@media (max-width: 360px) {
  .footer-left {
    padding-left: 8%;
  }

  .fot-logo .logo-icon {
    width: 24px;
    height: 24px;
  }

  .fot-brand-name {
    font-size: 14px;
  }

  .fot-title {
    font-size: 18px;
  }

  .fot-subtitle {
    font-size: 10px;
  }

  .footer-right p {
    padding-bottom: 8px;
  }

  .href p,
  a {
    font-size: 12px;
  }

  .footer-right {
    width: 100%;
    gap: 4%;
  }
  
  .href {
    min-width: 90px;
  }
}


/* CONTACT MODAL */
.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-modal.active {
  display: flex;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.modal-content {
  position: relative;
  background: linear-gradient(135deg, rgba(10, 31, 61, 0.98) 0%, rgba(0, 0, 0, 0.98) 100%);
  border: 1px solid rgba(16, 95, 185, 0.3);
  border-radius: 24px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(16, 95, 185, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  z-index: 1;
}

.contact-modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 32px;
}

.modal-header h2 {
  font-size: clamp(24px, 4vw, 32px);
  color: #fff;
  margin: 0 0 8px 0;
}

.modal-header p {
  font-size: clamp(14px, 2vw, 16px);
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.modal-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(16, 95, 185, 0.4);
  transform: translateY(-2px);
}

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(16, 95, 185, 0.3), rgba(30, 136, 229, 0.2));
  border: 1px solid rgba(16, 95, 185, 0.5);
  border-radius: 12px;
  color: #fff;
}

.contact-info {
  flex: 1;
}

.contact-info h3 {
  font-size: clamp(14px, 2vw, 16px);
  color: #fff;
  margin: 0 0 4px 0;
}

.contact-link {
  font-size: clamp(14px, 2vw, 16px);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}

.contact-link:hover {
  color: #105FB9;
}


@media (max-width: 768px) {
  .modal-content {
    padding: 32px 24px;
    max-width: 90%;
  }
  
  .modal-close {
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
  }
  
  .modal-header {
    margin-bottom: 24px;
  }
  
  .contact-item {
    padding: 16px;
    gap: 12px;
  }
  
  .contact-icon {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 540px) {
  .modal-content {
    padding: 28px 20px;
  }
  
  .modal-header h2 {
    font-size: clamp(22px, 5vw, 28px);
  }
  
  .modal-header p {
    font-size: clamp(13px, 2.2vw, 15px);
  }
  
  .contact-item {
    padding: 14px;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
  }
  
  .contact-info h3 {
    font-size: clamp(13px, 2.2vw, 15px);
  }
  
  .contact-link {
    font-size: clamp(13px, 2.2vw, 15px);
  }
}

@media (max-width: 360px) {
  .modal-content {
    padding: 24px 18px;
  }
  
  .modal-close {
    width: 32px;
    height: 32px;
  }
  
  .contact-item {
    padding: 12px;
    gap: 10px;
  }
  
  .contact-icon {
    width: 36px;
    height: 36px;
  }
}