@charset "UTF-8";
@keyframes smoke-dissipate {
  0% {
    transform: translateY(0) scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: translateY(-100px) scale(2.5);
    opacity: 0;
  }
}
@keyframes spark-fly {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-150px) translateX(var(--spark-x)) scale(0);
    opacity: 0;
  }
}
@keyframes title-glow {
  0%, 100% {
    background-position: 0% 50%;
    filter: brightness(1);
  }
  50% {
    background-position: 100% 50%;
    filter: brightness(1.3);
  }
}
@keyframes flicker {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.9;
  }
  75% {
    opacity: 0.95;
  }
}
@keyframes subtitle-fade {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}
@keyframes progress-shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes fire-flicker {
  0% {
    opacity: 0.7;
    transform: translateX(-50%) scaleY(0.9);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scaleY(1.1);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #080d18;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #111 0%, #000 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}
.preloader-content {
  position: relative;
  z-index: 10;
  text-align: center;
  width: 90%;
  max-width: 800px;
  padding: 2rem;
}

.loader-title {
  font-family: "Courier New", monospace;
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: 5px;
  margin-bottom: 2rem;
  position: relative;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(90deg, #00d4ff, #00f0ff, #0099ff, #a020ff, #ff00cc, #ff0088);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
  animation: title-glow 4s ease-in-out infinite, flicker 3s infinite;
}
.loader-title.mobile {
  display: none;
}
.loader-subtitle {
  font-family: "Courier New", monospace;
  font-size: 1.2rem;
  color: #aaa;
  letter-spacing: 3px;
  margin-bottom: 3rem;
  text-transform: uppercase;
  animation: subtitle-fade 3s infinite;
}

.progress-container {
  width: 100%;
  height: 3px;
  background: rgba(50, 50, 50, 0.5);
  border-radius: 10px;
  margin-top: 2rem;
  overflow: hidden;
  position: relative;
}
.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff6b00, #ff8c00, #ffa500, #ffd700);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: progress-shine 2s infinite;
}
.progress-text {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #777;
  letter-spacing: 1px;
  font-family: "Courier New", monospace;
}

.smoke-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  filter: blur(1px);
}

.smoke-particle {
  position: absolute;
  background: radial-gradient(circle, rgba(20, 20, 20, 0.9) 0%, rgba(0, 0, 0, 0.7) 70%);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.5);
  animation: smoke-dissipate 3s ease-out forwards;
}

.spark {
  position: absolute;
  background: radial-gradient(circle, rgb(255, 100, 0) 0%, rgba(255, 200, 0, 0.7) 50%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  z-index: 2;
  box-shadow: 0 0 10px 2px rgba(255, 100, 0, 0.5);
  animation: spark-fly 1.5s ease-out forwards;
}

.fire-effect {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 100px;
  background: radial-gradient(ellipse at center, rgba(255, 100, 0, 0.3) 0%, rgba(255, 50, 0, 0.2) 30%, transparent 70%);
  filter: blur(10px);
  z-index: 9;
  animation: fire-flicker 2s infinite alternate;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header.scrolled {
  background: rgba(15, 23, 42, 0.7);
  padding: 15px 0;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  cursor: pointer;
  z-index: 9999;
}
.logo img {
  width: auto;
  height: 72px;
}
.logo .logo-text {
  font-weight: 700;
  font-size: 1.2rem;
}
@media (max-width: 1047px) {
  .logo img {
    height: 42px;
  }
}

.nav {
  display: flex;
  gap: 30px;
}
.nav-link {
  color: #f8fafc;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}
.nav-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #6366f1;
  transition: all 0.3s ease;
}
.nav-link:after:hover {
  color: #6366f1;
}
.nav-link:hover {
  color: #6366f1;
}
.nav-link:hover:after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.burger-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #00d4ff, #00f0ff, #0099ff, #a020ff, #ff00cc, #ff0088);
  background-size: 300% 100%;
  transition: all 0.3s ease;
  border-radius: 2px;
  animation: title-glow 5s ease-in-out infinite, flicker 3s infinite;
}
.burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.burger.active .burger-line:nth-child(2) {
  opacity: 0;
}
.burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 20px 80px;
  background: #050816;
  text-align: center;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1) contrast(2) saturate(1.1);
  transform: scale(1.05);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.9) 100%), radial-gradient(circle at top, rgba(255, 255, 255, 0.05), transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #8fb4ff;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-title {
  margin: 0 0 20px;
  line-height: 1.05;
  font-weight: 700;
}
.hero-title span {
  display: inline-block;
  font-size: clamp(42px, 6vw, 80px);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}
.hero-title__one {
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  animation-delay: 0.1s;
}
.hero-title__two {
  background: linear-gradient(90deg, #00d4ff, #7c3aed);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.4));
  animation-delay: 0.3s;
}
.hero-title__three {
  background: linear-gradient(90deg, #7c3aed, #00d4ff);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
  animation-delay: 0.5s;
}

.hero-description {
  max-width: 560px;
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 1.6;
  color: #cbd5f5;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  height: 54px;
  padding: 0 26px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.4);
}

.btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    padding: 100px 16px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero__media {
    height: 100%;
  }
  .hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1) contrast(1.1);
  }
  .hero__overlay {
    background: linear-gradient(180deg, rgba(5, 8, 22, 0.6) 0%, rgba(5, 8, 22, 0.85) 60%, rgba(5, 8, 22, 0.95) 100%);
  }
  .hero-title span {
    font-size: clamp(30px, 8vw, 44px);
  }
  .hero-description {
    font-size: 15px;
    max-width: 440px;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-buttons a {
    width: 100%;
  }
  .btn {
    height: 50px;
    font-size: 13px;
  }
}
.about {
  padding: 50px 0;
  position: relative;
  background: radial-gradient(circle at 20% 20%, rgba(79, 70, 229, 0.25), transparent 45%), radial-gradient(circle at 80% 80%, rgba(244, 114, 182, 0.25), transparent 45%), linear-gradient(to right bottom, #0b1022, #111736, #1a1f4a, #221f5c);
}
.about-text {
  padding-right: 0;
}
.about-description {
  font-size: 1.125rem;
  color: #64748b;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #080d18;
}
.section-title span {
  color: #6366f1;
}

.stat {
  width: 100%;
  min-width: 0;
  aspect-ratio: 1/1;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 6px;
  line-height: 1;
}
.stat-label {
  font-size: 0.875rem;
  color: #f8fafc;
  font-weight: 500;
  line-height: 1.2;
  max-width: 120px;
  margin: 0 auto;
  overflow-wrap: break-word;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 992px) {
  .about-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
  .stat {
    padding: 16px;
  }
  .stat-number {
    font-size: 2rem;
  }
  .stat-label {
    font-size: 0.8rem;
    max-width: 100px;
  }
}
@media (max-width: 768px) {
  .about {
    padding: 40px 0;
  }
  .about-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px;
  }
  .stat {
    aspect-ratio: 1/1;
    padding: 14px;
    border-radius: 16px;
  }
  .stat-number {
    font-size: 1.6rem;
    margin-bottom: 4px;
  }
  .stat-label {
    font-size: 0.75rem;
    max-width: 90px;
  }
}
@media (max-width: 480px) {
  .about {
    padding: 32px 0;
  }
  .about-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 10px;
  }
  .stat {
    aspect-ratio: 1/1;
    padding: 10px;
    border-radius: 14px;
  }
  .stat-number {
    font-size: 1.3rem;
    margin-bottom: 3px;
  }
  .stat-label {
    font-size: 0.68rem;
    line-height: 1.15;
    max-width: 78px;
  }
}
@media (max-width: 430px) {
  .about {
    padding: 28px 0;
  }
  .about-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 8px;
  }
  .stat {
    aspect-ratio: 1/1;
    padding: 8px;
    border-radius: 12px;
  }
  .stat-number {
    font-size: 1.08rem;
    margin-bottom: 2px;
  }
  .stat-label {
    font-size: 0.62rem;
    line-height: 1.1;
    max-width: 68px;
  }
}
.double {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #080d18;
  padding: 50px 20px;
}
.double .double-container {
  width: 100%;
  padding: 32px 16px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.double .double__header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e2e8f0;
  text-align: center;
  color: transparent;
  background: linear-gradient(90deg, #00d4ff, #00f0ff, #0099ff, #a020ff, #ff00cc, #ff0088);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: title-glow 5s ease-in-out infinite, flicker 3s infinite;
}
.double .double__tabs {
  display: flex;
  gap: 6px;
  padding: 6px;
  margin-top: 30px;
  background: #0b1220;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: fit-content;
}
.double .double__tabs .tab {
  padding: 12px 26px;
  border-radius: 12px;
  background: transparent;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.double .double__tabs .tab:hover {
  color: #e2e8f0;
}
.double .double__tabs .tab.active {
  background: linear-gradient(135deg, #1d7fff, #2563eb);
  color: white;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.double .form {
  width: 100%;
  display: none;
  flex-direction: column;
  gap: 32px;
}
.double .form.active {
  display: flex;
}
.double .about-work {
  width: 100%;
  max-width: 1240px;
  margin: 42px auto 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.double .about-work__header {
  padding: 34px 32px;
  border-radius: 24px;
  border: 1px solid rgba(122, 162, 255, 0.14);
  background: radial-gradient(circle at top left, rgba(29, 127, 255, 0.14), transparent 38%), linear-gradient(180deg, #071223 0%, #030c18 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 16px 40px rgba(0, 0, 0, 0.22);
  text-align: center;
}
.double .about-work__heading {
  margin: 0;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
  color: #ffffff;
}
.double .about-work__heading span {
  color: #60a5fa;
  text-shadow: 0 0 24px rgba(37, 99, 235, 0.25);
}
.double .about-work__subheading {
  max-width: 860px;
  margin: 18px auto 0;
  font-size: 18px;
  line-height: 1.75;
  color: #9fb0c7;
}
.double .about-work__subheading strong {
  color: #ffffff;
  font-weight: 700;
}
.double .about-work__description {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.double .about-work__description p {
  margin: 0;
  max-width: 1120px;
  font-size: 18px;
  line-height: 1.75;
  color: #9fb0c7;
}
.double .about-work__description strong {
  color: #ffffff;
  font-weight: 700;
}
.double .about-work__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.double .about-work__feature {
  padding: 26px 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, #05101f 0%, #020b18 100%);
  border: 1px solid rgba(120, 145, 190, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 0 0 1px rgba(255, 255, 255, 0.015);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.double .about-work__feature:hover {
  transform: translateY(-4px);
  border-color: rgba(70, 120, 255, 0.28);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}
.double .about-work__feature h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  color: #ffffff;
}
.double .about-work__feature p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: #9fb0c7;
}
.double .about-work__feature p strong {
  color: #ffffff;
  font-weight: 700;
}
.double .about-work__benefits {
  padding: 30px 28px;
  border-radius: 22px;
  border: 1px solid rgba(70, 120, 255, 0.18);
  background: radial-gradient(circle at top left, rgba(29, 127, 255, 0.12), transparent 38%), linear-gradient(180deg, #071223 0%, #030c18 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 16px 40px rgba(0, 0, 0, 0.18);
}
.double .about-work__benefits p {
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: #aab9d0;
}
.double .about-work__benefits p:not(:last-child) {
  margin-bottom: 14px;
}
.double .about-work__benefits p strong {
  color: #ffffff;
  font-weight: 700;
}
.double .about-work__cta {
  padding: 34px 30px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(70, 120, 255, 0.18);
  background: radial-gradient(circle at top left, rgba(29, 127, 255, 0.14), transparent 38%), linear-gradient(180deg, #071223 0%, #030c18 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 16px 40px rgba(0, 0, 0, 0.22);
}
.double .about-work__cta h3 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
}
.double .about-work__cta p {
  margin: 0;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.65;
  color: #9fb0c7;
}
.double .btn-primary {
  margin-top: 24px;
  min-height: 58px;
  padding: 16px 30px;
  border: none;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #1d7fff, #2563eb);
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.double .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  filter: brightness(1.04);
}
.double .btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.double .cta-note {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
  color: #7f93ad;
}
.double .double__projects {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 40px;
}
.double .project-card {
  border-radius: 22px;
  overflow: hidden;
  background: #020b18;
  border: 1px solid rgba(120, 145, 190, 0.16);
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.double .project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(70, 120, 255, 0.35);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}
.double .project-card .project-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.double .project-card__preview {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.double .project-card__preview--sport {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
}
.double .project-card__preview--autocat19 {
  background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
}
.double .project-card__preview--YouTalk {
  background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
}
.double .project-card__preview--newsSpain {
  background: linear-gradient(135deg, #818cf8 0%, #a855f7 100%);
}
.double .project-card__preview--slider {
  background: linear-gradient(135deg, #ec4899 0%, #e11d48 100%);
}
.double .project-card__preview--pablo {
  background: linear-gradient(135deg, #22c55e 0%, #059669 100%);
}
.double .project-card__preview--darkblue {
  background: linear-gradient(135deg, #334155 0%, #0f172a 100%);
}
.double .project-card__preview--orange {
  background: linear-gradient(135deg, #f59e0b 0%, #d35400 100%);
}
.double .project-card__preview--emerald {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}
.double .project-card__badge {
  position: absolute;
  left: 18px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(4, 8, 20, 0.86);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.double .project-card__content {
  padding: 26px 26px 28px;
  background: #010a16;
}
.double .project-card__content h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
}
.double .project-card__content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: #a6b6ce;
}
.double .projects-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease;
}
.double .projects-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.double .projects-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 23, 0.78);
  backdrop-filter: blur(8px);
}
.double .projects-modal__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.double .projects-modal__list li {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.2;
  color: #aab9d0;
  padding: 0;
  margin-left: 20px;
}
.double .projects-modal img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.double .projects-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(700px, 100% - 32px);
  margin: 80px auto;
  border-radius: 24px;
  border: 1px solid rgba(120, 145, 190, 0.18);
  background: linear-gradient(180deg, #091322 0%, #030b17 100%);
  padding: 34px 30px 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transform: translateY(20px) scale(0.98);
  transition: 0.3s ease;
}
.double .projects-modal.active .double .projects-modal__dialog {
  transform: translateY(0) scale(1);
}
.double .projects-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: 0.25s ease;
}
.double .projects-modal__close:hover {
  background: rgba(255, 255, 255, 0.12);
}
.double .projects-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
}
.double .projects-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.double .projects-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.double .projects-modal__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  margin-bottom: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.18);
  color: #8db7ff;
  font-size: 14px;
  font-weight: 700;
}
.double .projects-modal__title {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 800;
  color: #ffffff;
}
.double .projects-modal__description, .double .projects-modal__details {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.7;
  color: #aab9d0;
}
.double .projects-modal__link {
  margin-top: 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1d7fff, #2563eb);
  color: white;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: 0.25s ease;
}
.double .projects-modal__link svg {
  width: 18px;
  height: 18px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}
.double .projects-modal__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}
@media (max-width: 1200px) {
  .double .about-work__heading {
    font-size: 34px;
  }
  .double .double__projects {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .double .about-work__features {
    grid-template-columns: 1fr;
  }
  .double .about-work__header, .double .about-work__benefits, .double .about-work__cta {
    padding-left: 22px;
    padding-right: 22px;
  }
  .double .about-work__heading {
    font-size: 30px;
  }
  .double .double__projects {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .double {
    padding: 40px 14px;
  }
  .double .double-container {
    padding: 24px 0;
  }
  .double .double__header h2 {
    font-size: 2rem;
  }
  .double .double__tabs {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .double .double__tabs .tab {
    flex: 1 1 auto;
    text-align: center;
    padding: 12px 18px;
  }
  .double .about-work {
    margin-top: 30px;
    gap: 20px;
  }
  .double .about-work__header, .double .about-work__benefits, .double .about-work__cta {
    padding: 22px 18px;
    border-radius: 18px;
  }
  .double .about-work__heading {
    font-size: 26px;
  }
  .double .about-work__subheading {
    font-size: 16px;
    line-height: 1.65;
  }
  .double .about-work__description p {
    font-size: 16px;
    line-height: 1.65;
  }
  .double .about-work__feature {
    padding: 22px 18px;
    border-radius: 18px;
  }
  .double .about-work__feature h3 {
    font-size: 19px;
  }
  .double .about-work__feature p {
    font-size: 15px;
    line-height: 1.6;
  }
  .double .about-work__benefits p {
    font-size: 16px;
    line-height: 1.65;
  }
  .double .about-work__cta h3 {
    font-size: 24px;
  }
  .double .about-work__cta p {
    font-size: 16px;
    line-height: 1.6;
  }
  .double .btn-primary {
    width: 100%;
    min-height: 54px;
    padding: 15px 20px;
    font-size: 15px;
  }
  .double .double__projects {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .double .project-card__preview {
    height: 150px;
  }
  .double .project-card__content {
    padding: 22px 18px 24px;
  }
  .double .project-card__content h3 {
    font-size: 18px;
  }
  .double .project-card__content p {
    font-size: 15px;
  }
  .double .projects-modal__dialog {
    margin: 30px auto;
    padding: 28px 18px 22px;
    border-radius: 18px;
  }
  .double .projects-modal__title {
    font-size: 24px;
  }
  .double .projects-modal__description, .double .projects-modal__details {
    font-size: 16px;
    line-height: 1.6;
  }
}

.products {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 50px 20px;
  background-color: #030711;
}
.products .products-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.products__title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.products__title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e2e8f0;
  text-align: center;
  margin-bottom: 1rem;
  color: transparent;
  background: linear-gradient(90deg, #00d4ff, #00f0ff, #0099ff, #a020ff, #ff00cc, #ff0088);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: title-glow 5s ease-in-out infinite, flicker 3s infinite;
}
.products__title p {
  font-size: 1.25rem;
  color: #6b7280;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}
.products__accardeon {
  max-width: 900px;
  margin: auto;
  background: #0b1220;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.products__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.products__item:last-child {
  border-bottom: none;
}
.products__trigger {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}
.products__left {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
}
.products__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products__icon svg {
  width: 20px;
  height: 20px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}
.products__icon--blue {
  background: #2563eb;
}
.products__icon--pink {
  background: #ec4899;
}
.products__icon--purple {
  background: #8b5cf6;
}
.products__icon--green {
  background: #22c55e;
}
.products__icon--orange {
  background: #f97316;
}
.products__arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #94a3b8;
  border-bottom: 2px solid #94a3b8;
  transform: rotate(45deg);
  transition: 0.3s;
}
.products__item.active .products__arrow {
  transform: rotate(-135deg);
}
.products__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
  padding: 0 24px;
}
.products__content p {
  padding-bottom: 22px;
  color: #94a3b8;
  line-height: 1.6;
}
.products__item.active .products__content {
  max-height: 200px;
}

.custom-cta {
  padding: 90px 20px;
  background: #010814;
  position: relative;
  overflow: hidden;
}
.custom-cta .container {
  max-width: 1280px;
  margin: 0 auto;
}
.custom-cta__box {
  max-width: 1030px;
  margin: 0 auto;
  padding: 52px 40px 46px;
  border-radius: 22px;
  background: linear-gradient(120deg, #2f7cf6 0%, #4f6cff 30%, #6a5cff 55%, #8a4fff 75%, #a23be8 100%);
  box-shadow: 0 20px 60px rgba(18, 38, 84, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  text-align: center;
  position: relative;
}
.custom-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 26px;
}
.custom-cta__badge span {
  font-size: 14px;
  line-height: 1;
}
.custom-cta__title {
  margin: 0;
  color: #fff;
  font-size: 56px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.custom-cta__text {
  max-width: 700px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}
.custom-cta__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.custom-cta__btn {
  height: 50px;
  min-width: 192px;
  padding: 0 28px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s ease;
  border: 1px solid transparent;
}
.custom-cta__btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.custom-cta__btn:hover {
  transform: translateY(-2px);
}
.custom-cta__btn:active {
  transform: translateY(0);
}
.custom-cta__btn--light {
  background: #ffffff;
  color: #2f7cf6;
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.16);
}
.custom-cta__btn--light:hover {
  box-shadow: 0 14px 30px rgba(255, 255, 255, 0.22);
}
.custom-cta__btn--glass {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.custom-cta__btn--glass:hover {
  background: rgba(255, 255, 255, 0.16);
}
.custom-cta__arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.custom-cta__btn--glass:hover .custom-cta__arrow {
  transform: translateX(4px);
}
.custom-cta__contacts {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 15px;
  font-weight: 500;
}
.custom-cta__contacts a {
  color: inherit;
  text-decoration: none;
  transition: 0.25s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}
.custom-cta__contacts a:hover {
  color: rgba(255, 255, 255, 0.82);
}
.custom-cta__contacts a svg {
  width: 16px;
  display: block;
}
.custom-cta__contacts a img {
  width: 16px;
  display: block;
}
@media (max-width: 992px) {
  .custom-cta__box {
    padding: 42px 24px 38px;
  }
  .custom-cta__title {
    font-size: 42px;
  }
  .custom-cta__text {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .custom-cta {
    padding: 70px 16px;
  }
  .custom-cta__title {
    font-size: 34px;
  }
  .custom-cta__actions {
    flex-direction: column;
  }
  .custom-cta__btn {
    width: 100%;
    max-width: 320px;
  }
  .custom-cta__contacts {
    gap: 12px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .custom-cta__box {
    border-radius: 18px;
    padding: 34px 18px 30px;
  }
  .custom-cta__badge {
    font-size: 12px;
    padding: 0 14px;
    height: 30px;
    margin-bottom: 20px;
  }
  .custom-cta__title {
    font-size: 28px;
  }
  .custom-cta__text {
    font-size: 14px;
    line-height: 1.6;
  }
  .custom-cta__btn {
    min-width: 100%;
    font-size: 15px;
  }
  .custom-cta__contacts {
    flex-direction: column;
    gap: 10px;
  }
}

/* ===== Секция services ===== */
.services {
  padding: 80px 0;
  background-color: #080d18;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}
.services .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.services__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e2e8f0;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: transparent;
  background: linear-gradient(90deg, #00d4ff, #00f0ff, #0099ff, #a020ff, #ff00cc, #ff0088);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 15px rgba(99, 232, 241, 0.3);
  animation: title-glow 5s ease-in-out infinite, flicker 3s infinite;
}
.services__subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.5;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}
.services__note {
  background: #0b1220;
  border-left: 4px solid #10b981;
  padding: 20px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  font-size: 1.1rem;
  color: #e2e8f0;
}
.services__note p {
  margin: 0;
}
.services__note strong {
  color: #10b981;
}
.services__cta {
  text-align: center;
}

/* ===== Карточка услуги ===== */
.service-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(189, 164, 196, 0.05);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s;
}
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.service-card__icon {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 20px;
}
.service-card__icon img {
  width: 64px;
  height: auto;
  display: block;
  justify-self: center;
}
.service-card__title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 15px;
  text-align: center;
}
.service-card__text {
  font-size: 1rem;
  color: #e2e8f0;
  line-height: 1.6;
  margin: 0;
  text-align: justify;
}

/* ===== Кнопка ===== */
.button {
  display: inline-block;
  background-color: #3b82f6;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 16px 40px;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(59, 130, 246, 0.3);
  border: none;
  cursor: pointer;
}
.button:hover {
  background-color: rgb(11.1512195122, 99.1219512195, 242.8487804878);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(59, 130, 246, 0.4);
}
.button:active {
  transform: translateY(0);
}

.cta {
  padding: 40px 20px;
  background: linear-gradient(90deg, #0a1a33 0%, #0d2240 40%, #1a2b5c 100%);
}
.cta .container {
  max-width: 1200px;
  margin: 0 auto;
}
.cta__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta__left {
  max-width: 600px;
}
.cta__label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #3b82f6;
  margin-bottom: 10px;
  font-weight: 600;
}
.cta__title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.cta__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  line-height: 1.5;
}
.cta__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.cta__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.25s;
}
.cta__phone svg {
  opacity: 0.8;
}
.cta__phone:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}
.cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 26px;
  background-color: #3b82f6;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(59, 130, 246, 0.3);
}
.cta__btn .arrow {
  transition: all 0.3s ease;
}
.cta__btn:hover {
  background-color: rgb(11.1512195122, 99.1219512195, 242.8487804878);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(59, 130, 246, 0.4);
}
.cta__btn:hover .arrow {
  transform: translateX(4px);
}
.cta__btn:active {
  transform: translateY(0);
}
@media (max-width: 900px) {
  .cta__wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta__right {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .cta__phone, .cta__btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .cta__title {
    font-size: 24px;
  }
}

.team {
  width: 100%;
  padding: 80px 20px;
  background: #030711;
  overflow: hidden;
}
.team .team-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team__header {
  text-align: center;
  max-width: 700px;
  margin-bottom: 50px;
}
.team__header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  color: transparent;
  background: linear-gradient(90deg, #00d4ff, #00f0ff, #0099ff, #a020ff, #ff00cc, #ff0088);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: title-glow 5s ease-in-out infinite, flicker 3s infinite;
}
.team__header p {
  font-size: 18px;
  line-height: 1.6;
  color: #9fb0c7;
}
.team__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #071223 0%, #030b17 100%);
  border: 1px solid rgba(120, 145, 190, 0.16);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  will-change: transform, opacity;
}
.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(70, 120, 255, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}
.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(70, 120, 255, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.team-card:hover::before {
  opacity: 1;
}
.team-card__img {
  width: 100%;
  height: 260px;
  overflow: hidden;
}
.team-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.team-card:hover .team-card__img img {
  transform: scale(1.06);
}
.team-card__content {
  position: relative;
  z-index: 2;
  padding: 20px;
}
.team-card__content h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}
.team-card__content span {
  font-size: 15px;
  color: #7f93ad;
}

@media (max-width: 992px) {
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .team {
    padding: 60px 15px;
  }
  .team__header h2 {
    font-size: 2rem;
  }
  .team__header p {
    font-size: 16px;
  }
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .team-card__img {
    height: 180px;
  }
  .team-card__content {
    padding: 14px;
  }
  .team-card__content h3 {
    font-size: 16px;
  }
  .team-card__content span {
    font-size: 13px;
  }
}
.contact {
  padding: 50px 20px;
  background: #080d18;
  color: #f8fafc;
  border-top: 1px solid rgba(120, 145, 190, 0.16);
}
.contact .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.contact .contact-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 760px;
}
.contact-title {
  font-size: 28px;
  line-height: 1.2;
  color: #e2e8f0;
  text-align: left;
  margin: 0;
}
.contact-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #6b7280;
  text-align: left;
  max-width: 700px;
  margin: -10px 0 0;
}
.contact .contact-text__img {
  width: 100%;
  max-width: 60%;
  border-radius: 14px;
  overflow: hidden;
}
.contact .contact-text__img img {
  width: 600px;
  height: 250px;
  max-width: 600px;
  display: block;
  object-fit: cover;
  border-radius: 14px;
}
.contact .contact-text__item {
  display: flex;
  align-items: center;
  gap: 18px;
}
.contact .contact-text__item-img {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.contact .contact-text__item-img img {
  width: 100%;
  max-width: 28px;
  height: auto;
  display: block;
}
.contact .contact-text__item--telegram .contact-text__item-img {
  background: rgba(37, 99, 235, 0.12);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.25);
}
.contact .contact-text__item--telegram .contact-text__item-img:hover {
  background: rgba(37, 99, 235, 0.28);
}
.contact .contact-text__item--phone .contact-text__item-img {
  background: rgba(16, 185, 129, 0.12);
  box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.25);
}
.contact .contact-text__item--phone .contact-text__item-img:hover {
  background: rgba(16, 185, 129, 0.28);
}
.contact .contact-text__item--gmail .contact-text__item-img {
  background: rgba(182, 185, 16, 0.12);
  box-shadow: inset 0 0 0 1px rgba(160, 185, 16, 0.25);
}
.contact .contact-text__item--gmail .contact-text__item-img:hover {
  background: rgba(182, 185, 16, 0.45);
}
.contact .contact-text__item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact .contact-text__item-text h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #8fa3bf;
  line-height: 1.2;
}
.contact .contact-text__item-text p {
  margin: 0;
  color: #9fb0c9;
  line-height: 1.5;
}
.contact .contact-text__item-text p a {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact .contact-text__item-text p a:hover {
  color: #cfe3ff;
}
.contact-form {
  width: 100%;
  max-width: 520px;
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(180deg, #071120 0%, #030b17 100%);
  border: 1px solid rgba(120, 145, 190, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 20px 60px rgba(0, 0, 0, 0.28);
}
.contact-form .form-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin: 0 0 24px;
}
.contact-form .form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.contacts-right-form {
  width: 100%;
}

.form-group {
  margin-bottom: 18px;
}
.form-group--checkbox {
  margin-top: 6px;
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: #030711;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  line-height: 1.4;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
.form-control::placeholder {
  color: #8fa3bf;
  font-weight: 400;
}
.form-control:hover {
  border-color: rgba(59, 130, 246, 0.22);
  background: rgba(255, 255, 255, 0.045);
}
.form-control:focus {
  outline: none;
  border-color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12), 0 10px 30px rgba(37, 99, 235, 0.08);
}
.form-control.error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  line-height: 1.55;
  color: #c7d2e3;
  font-size: 14px;
}
.form-checkbox input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: #2563eb;
  cursor: pointer;
  flex-shrink: 0;
}
.form-checkbox span {
  display: block;
}
.form-checkbox a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.form-checkbox a:hover {
  color: #cfe3ff;
}

.form-note {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: #9fb0c9;
}
.form-note a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.form-note a:hover {
  color: #cfe3ff;
}
.form-note--muted {
  margin-top: 8px;
  color: #8394ae;
}

/* ======================
   1024px
====================== */
@media (max-width: 1024px) {
  .contact .container {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .contact .contact-text {
    width: 100%;
    max-width: 700px;
    align-items: center;
    text-align: center;
  }
  .contact .contact-title {
    text-align: center;
  }
  .contact .contact-subtitle {
    text-align: center;
  }
  .contact .contact-form {
    width: 100%;
    max-width: 700px;
  }
  .contact .contact-text__img {
    max-width: 100%;
    margin-top: 10px;
  }
  .contact .contact-text__img img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}
/* ======================
   768px
====================== */
@media (max-width: 768px) {
  .contact {
    padding: 80px 20px;
  }
  .contact .container {
    gap: 40px;
  }
  .contact .contact-title {
    font-size: 24px;
    align-self: center;
  }
  .contact .contact-subtitle {
    font-size: 16px;
    margin-top: 0;
    text-align: justify;
  }
  .contact .contact-text {
    gap: 16px;
    align-items: flex-start;
    width: 100%;
  }
  .contact .contact-text__item {
    gap: 14px;
  }
  .contact .contact-text__item-img {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }
  .contact .contact-text__item-img img {
    width: 24px;
    height: 24px;
  }
  .contact .contact-text__item-text h3 {
    font-size: 14px;
  }
  .contact .contact-text__item-text p {
    font-size: 14px;
  }
  .contact .contact-text__item-text p a {
    font-size: 15px;
  }
  .contact .contact-form {
    padding: 24px;
  }
  .contact .contact-form .form-title {
    font-size: 24px;
  }
  .form-control {
    padding: 16px;
    font-size: 15px;
  }
  textarea.form-control {
    min-height: 130px;
  }
  .form-checkbox {
    font-size: 13px;
    gap: 10px;
  }
  .form-checkbox input {
    width: 17px;
    height: 17px;
    min-width: 17px;
  }
  .form-note {
    font-size: 12px;
  }
  .btn.btn-primary {
    min-height: 54px;
    font-size: 15px;
  }
}
/* ======================
   480px
====================== */
@media (max-width: 480px) {
  .contact {
    padding: 70px 16px;
  }
  .contact .container {
    gap: 30px;
  }
  .contact .contact-title {
    font-size: 22px;
  }
  .contact .contact-subtitle {
    font-size: 15px;
    line-height: 1.5;
  }
  .contact .contact-text {
    gap: 14px;
  }
  .contact .contact-text__item {
    align-items: flex-start;
    gap: 12px;
  }
  .contact .contact-text__item-img {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  .contact .contact-text__item-img img {
    width: 22px;
    height: 22px;
  }
  .contact .contact-text__item-text h3 {
    font-size: 13px;
  }
  .contact .contact-text__item-text p a {
    font-size: 14px;
    line-height: 1.35;
  }
  .contact .contact-text__img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }
  .contact .contact-form {
    padding: 18px;
    border-radius: 18px;
  }
  .contact .contact-form .form-title {
    font-size: 22px;
    margin-bottom: 18px;
  }
  .contact .contact-form .form-label {
    font-size: 13px;
    margin-bottom: 6px;
  }
  .form-group {
    margin-bottom: 14px;
  }
  .form-group--checkbox {
    margin-bottom: 18px;
  }
  .form-control {
    padding: 14px 16px;
    font-size: 14px;
    border-radius: 12px;
  }
  textarea.form-control {
    min-height: 120px;
  }
  .form-checkbox {
    font-size: 12px;
    line-height: 1.5;
  }
  .form-checkbox input {
    width: 16px;
    height: 16px;
    min-width: 16px;
  }
  .form-note {
    font-size: 12px;
    line-height: 1.5;
  }
  .btn.btn-primary {
    min-height: 50px;
    padding: 14px 18px;
    font-size: 14px;
    border-radius: 12px;
  }
}
.footer {
  padding: 44px 0 32px;
  background: #0a0e1a;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow-x: hidden;
}
.footer .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  min-width: 0;
}
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-bottom: 18px;
  width: 100%;
}
.footer-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.25s ease;
  display: inline-block;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.footer-link:hover {
  color: #ffffff;
}
.footer .copyright {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #7f8ea3;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.footer__legal {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(120, 145, 190, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.footer__legal p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #7f8ea3;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.footer__legal-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  width: 100%;
}
.footer__legal a {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: #7f8ea3;
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 768px) {
  .footer {
    padding: 36px 0 28px;
  }
  .footer-links {
    gap: 10px 16px;
    margin-bottom: 16px;
  }
  .footer-link {
    font-size: 14px;
  }
  .footer .copyright {
    font-size: 13px;
    line-height: 1.55;
  }
  .footer__legal {
    margin-top: 20px;
    padding-top: 16px;
    gap: 8px;
  }
  .footer__legal p {
    font-size: 12px;
    line-height: 1.55;
  }
  .footer__legal-links {
    gap: 8px 14px;
  }
  .footer__legal a {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 30px 0 24px;
  }
  .footer .container {
    padding: 0 16px;
  }
  .footer-links {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
  }
  .footer-link {
    font-size: 14px;
    width: 100%;
  }
  .footer .copyright {
    font-size: 12px;
    line-height: 1.5;
  }
  .footer__legal {
    margin-top: 18px;
    padding-top: 14px;
  }
  .footer__legal p {
    font-size: 12px;
  }
  .footer__legal-links {
    flex-direction: column;
    gap: 8px;
  }
  .footer__legal a {
    font-size: 12px;
  }
}
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 25px;
  background: #10b981;
  color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  animation: slideIn 0.3s ease;
}
.notification-error {
  background: #ef4444;
}

.field-error {
  color: #ef4444;
  font-size: 12px;
  margin-top: 5px;
}

.fa-spinner {
  animation: spin 1s linear infinite;
}

@media (max-width: 992px) {
  .hero-content,
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 3.75rem;
  }
  .about-text {
    padding-right: 0;
  }
  .projects .container .swiper.projects-swiper .swiper-button-next,
  .projects .container .swiper.projects-swiper .swiper-button-prev {
    display: none;
  }
}
@media (max-width: 768px) {
  .loader-title {
    display: none;
  }
  .loader-title.mobile {
    font-size: 3rem;
    display: block;
  }
  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    padding: 30px;
    gap: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .burger {
    display: flex;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-title {
    font-size: 2rem;
  }
  .contact-form {
    padding: 30px 20px;
  }
  .tech-stack__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .tech-stack__item .tech-stack__logo {
    width: 50px;
    height: 50px;
  }
  .tech-stack__item .tech-stack__name {
    font-size: 0.85rem;
  }
}
@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2rem;
  }
  .contact-methods {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=main.css.map */