@charset "UTF-8";
:root {
  --bg-base: #050714;
  --bg-dark: #020314;
  --text-primary: #FFFFFF;
  --text-secondary: #C4CCE5;
  --accent-1: #6366F1;
  --accent-2: #22D3EE;
  --accent-3: #7C3AED;
  --card-bg: rgba(10, 14, 40, 0.9);
  --gradient-main: linear-gradient(135deg, #1D4ED8 0%, #7C3AED 50%, #22C1C3 100%);
  --gradient-purple: rgba(124, 58, 237, 0.35);
  --gradient-teal: rgba(45, 212, 191, 0.35);
  --font-heading: "Space Grotesk", "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
  --container-max: 1280px;
  --container-padding: 32px;
  --section-padding: 100px;
  --radius-card: 24px;
  --radius-button: 999px;
  --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.3);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-base);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

.global-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.global-bg__base {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #050714;
}
.global-bg__gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.15) 0%, rgba(29, 78, 216, 0.12) 25%, rgba(124, 58, 237, 0.2) 50%, rgba(124, 58, 237, 0.18) 75%, rgba(34, 211, 238, 0.15) 100%);
  animation: gradientPulse 8s ease-in-out infinite;
  image-rendering: auto;
}
.global-bg__noise {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(99, 102, 241, 0.05) 1px, rgba(99, 102, 241, 0.05) 2px), repeating-linear-gradient(90deg, transparent, transparent 1px, rgba(34, 211, 238, 0.05) 1px, rgba(34, 211, 238, 0.05) 2px);
  opacity: 0.3;
  animation: noiseMove 25s linear infinite;
}
.global-bg__spot {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  will-change: transform, opacity;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.global-bg__spot--1 {
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.8) 0%, rgba(124, 58, 237, 0.65) 15%, rgba(124, 58, 237, 0.45) 25%, rgba(124, 58, 237, 0.3) 35%, rgba(124, 58, 237, 0.2) 45%, rgba(124, 58, 237, 0.1) 55%, rgba(124, 58, 237, 0.05) 65%, transparent 75%);
  top: -25%;
  left: -15%;
  animation: spotFloat1 20s ease-in-out infinite;
  opacity: 0.7;
}
.global-bg__spot--2 {
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.8) 0%, rgba(37, 99, 235, 0.65) 15%, rgba(37, 99, 235, 0.45) 25%, rgba(37, 99, 235, 0.3) 35%, rgba(37, 99, 235, 0.2) 45%, rgba(37, 99, 235, 0.1) 55%, rgba(37, 99, 235, 0.05) 65%, transparent 75%);
  top: 15%;
  right: -10%;
  animation: spotFloat2 22s ease-in-out infinite;
  opacity: 0.7;
}
.global-bg__spot--3 {
  width: 55vw;
  height: 55vw;
  max-width: 750px;
  max-height: 750px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.8) 0%, rgba(34, 211, 238, 0.65) 15%, rgba(34, 211, 238, 0.45) 25%, rgba(34, 211, 238, 0.3) 35%, rgba(34, 211, 238, 0.2) 45%, rgba(34, 211, 238, 0.1) 55%, rgba(34, 211, 238, 0.05) 65%, transparent 75%);
  bottom: -15%;
  left: 10%;
  animation: spotFloat3 24s ease-in-out infinite;
  opacity: 0.7;
}
.global-bg__spot--4 {
  width: 50vw;
  height: 50vw;
  max-width: 700px;
  max-height: 700px;
  background: conic-gradient(from 0deg, rgba(124, 58, 237, 0.6) 0%, rgba(124, 58, 237, 0.5) 12.5%, rgba(37, 99, 235, 0.5) 25%, rgba(37, 99, 235, 0.6) 37.5%, rgba(34, 211, 238, 0.6) 50%, rgba(34, 211, 238, 0.5) 62.5%, rgba(124, 58, 237, 0.5) 75%, rgba(124, 58, 237, 0.6) 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spotFloat4 18s ease-in-out infinite;
  filter: blur(150px);
  opacity: 0.5;
}
.global-bg__spot--5 {
  width: 45vw;
  height: 45vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.7) 0%, rgba(124, 58, 237, 0.6) 20%, rgba(124, 58, 237, 0.45) 30%, rgba(37, 99, 235, 0.45) 40%, rgba(37, 99, 235, 0.3) 50%, rgba(37, 99, 235, 0.15) 60%, transparent 70%);
  top: 5%;
  left: 35%;
  animation: spotFloat5 26s ease-in-out infinite;
  opacity: 0.6;
}
.global-bg__spot--6 {
  width: 40vw;
  height: 40vw;
  max-width: 550px;
  max-height: 550px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.7) 0%, rgba(34, 211, 238, 0.6) 20%, rgba(34, 211, 238, 0.45) 30%, rgba(37, 99, 235, 0.45) 40%, rgba(37, 99, 235, 0.3) 50%, rgba(37, 99, 235, 0.15) 60%, transparent 70%);
  bottom: 10%;
  right: 15%;
  animation: spotFloat6 28s ease-in-out infinite;
  opacity: 0.6;
}
.global-bg__spot--7 {
  width: 35vw;
  height: 35vw;
  max-width: 500px;
  max-height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.6) 0%, rgba(99, 102, 241, 0.5) 25%, rgba(124, 58, 237, 0.5) 35%, rgba(124, 58, 237, 0.4) 45%, rgba(124, 58, 237, 0.25) 55%, rgba(124, 58, 237, 0.1) 65%, transparent 70%);
  top: 30%;
  left: 5%;
  animation: spotFloat7 30s ease-in-out infinite;
  opacity: 0.5;
}
.global-bg__spot--8 {
  width: 50vw;
  height: 50vw;
  max-width: 650px;
  max-height: 650px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.6) 0%, rgba(37, 99, 235, 0.4) 25%, rgba(37, 99, 235, 0.2) 50%, transparent 70%);
  top: 70%;
  left: 20%;
  animation: spotFloat1 23s ease-in-out infinite;
  opacity: 0.5;
}
.global-bg__spot--9 {
  width: 45vw;
  height: 45vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.6) 0%, rgba(34, 211, 238, 0.4) 25%, rgba(34, 211, 238, 0.2) 50%, transparent 70%);
  top: 85%;
  right: 25%;
  animation: spotFloat2 25s ease-in-out infinite;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .global-bg__spot {
    filter: blur(120px);
  }
  .global-bg__spot--1, .global-bg__spot--2, .global-bg__spot--3, .global-bg__spot--4, .global-bg__spot--5, .global-bg__spot--6, .global-bg__spot--7, .global-bg__spot--8, .global-bg__spot--9 {
    width: 90vw;
    height: 90vw;
  }
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
}

h2 {
  font-size: clamp(32px, 4vw, 40px);
}

h3 {
  font-size: clamp(24px, 3vw, 28px);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  font-size: clamp(32px, 8vw, 60px);
}
@media (max-width: 768px) {
  .section-title {
    margin-bottom: 40px;
  }
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: linear-gradient(135deg, #6366F1 0%, #22D3EE 100%);
  color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(99, 102, 241, 0.6);
}
.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--large {
  padding: 16px 32px;
  font-size: 16px;
  width: 100%;
}
@media (min-width: 769px) {
  .btn--large {
    width: auto;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 7, 20, 0.6);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.header.scrolled {
  background: rgba(5, 7, 20, 0.9);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.header.scrolled::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-main);
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 40px;
}
@media (max-width: 968px) {
  .header__content {
    gap: 20px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}
.header__logo-image {
  width: 48px;
  height: 48px;
}
.header__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
}
.header__nav {
  display: flex;
  gap: 32px;
}
@media (max-width: 968px) {
  .header__nav {
    display: none;
  }
}
.header__nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}
.header__nav-link:hover {
  color: var(--text-primary);
}
.header__cta {
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 15px;
}
@media (max-width: 968px) {
  .header__cta {
    display: none;
  }
}
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}
@media (max-width: 968px) {
  .header__burger {
    display: flex;
  }
}
.header__burger span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 968px) {
  .hero__content {
    grid-template-columns: 1fr;
  }
}
.hero__text {
  animation: fadeInUp 0.8s ease-out;
}
.hero__badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(45deg, #3732f1, #085bf5);
  border-radius: 8px;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 24px;
  color: #fff;
}
.hero__title {
  margin-bottom: 24px;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.1;
  font-family: "inter", sans-serif;
}
.hero__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
}
.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-wrap: wrap;
}
@media (min-width: 769px) {
  .hero__cta {
    flex-direction: row;
  }
}
.hero__cta .btn--large {
  background: linear-gradient(90deg, #6632ff 0%, #3950f6 65%, rgba(33, 222, 252, 0.768627451) 100%);
  color: #fff;
}
.hero__visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__visual::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 70%;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  transform: perspective(1000px) rotateX(70deg) rotateY(-10deg);
}
@media (max-width: 968px) {
  .hero__visual {
    height: 400px;
  }
  .hero__visual::after {
    bottom: -25px;
    right: -20px;
    width: 60%;
    height: 35px;
    filter: blur(25px);
  }
}
.hero__browser {
  position: relative;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 80px rgba(99, 102, 241, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.5), -30px -50px 40px rgba(99, 102, 241, 0.15), 50px 20px 35px rgba(99, 102, 241, 0.12), -50px 30px 45px rgba(99, 102, 241, 0.1), 40px 80px 40px rgba(99, 102, 241, 0.12);
  overflow: visible;
  z-index: 2;
  transform: perspective(1500px) rotateY(340deg) rotateX(10deg);
  transform-origin: 20% 20%;
  transition: transform 0.3s ease;
  animation: browserSlideIn 0.8s ease-out 0.2s both, browserFloat 4s ease-in-out infinite 1s;
}
.hero__browser::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(99, 102, 241, 0.05) 100%);
  pointer-events: none;
  z-index: 1;
  border-radius: 12px;
}
.hero__browser::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
  border-radius: 12px;
}
.hero__browser:hover {
  animation-play-state: paused;
  transform: perspective(1500px) rotateY(-6deg) rotateX(4deg) scale(1.02) translateY(-10px);
}
.hero__browser-header {
  position: relative;
  background: rgba(37, 99, 235, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px 12px 0 0;
  z-index: 2;
}
.hero__browser-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.5) 0%, rgba(37, 99, 235, 0.3) 100%);
  border-radius: 12px 12px 0 0;
  z-index: -1;
}
.hero__browser-url {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 6px 12px;
  max-width: 200px;
}
.hero__browser-url-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero__browser-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero__browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.hero__browser-dot--red {
  background: #FF5F57;
}
.hero__browser-dot--yellow {
  background: #FFBD2E;
}
.hero__browser-dot--green {
  background: #28CA42;
}
.hero__browser-content {
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px;
  min-height: 400px;
  z-index: 2;
  border-radius: 0 0 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero__browser-nav {
  display: flex;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(224, 224, 224, 0.5);
}
.hero__browser-nav-item {
  height: 8px;
  background: rgba(232, 232, 232, 0.8);
  border-radius: 4px;
  flex: 1;
  max-width: 80px;
}
.hero__browser-nav-item:nth-child(1) {
  max-width: 100px;
}
.hero__browser-nav-item:nth-child(2) {
  max-width: 70px;
}
.hero__browser-nav-item:nth-child(3) {
  max-width: 90px;
}
.hero__browser-nav-item:nth-child(4) {
  max-width: 60px;
}
.hero__browser-hero {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 0;
}
.hero__browser-hero-title {
  height: 32px;
  background: linear-gradient(90deg, rgba(232, 232, 232, 0.9) 0%, rgba(240, 240, 240, 0.9) 100%);
  border-radius: 6px;
  width: 75%;
  animation: shimmer 2s ease-in-out infinite;
}
.hero__browser-hero-subtitle {
  height: 16px;
  border-radius: 4px;
  width: 90%;
}
.hero__browser-hero-subtitle::after {
  content: "";
  display: block;
  height: 16px;
  background: rgba(232, 232, 232, 0.7);
  border-radius: 4px;
  width: 85%;
}
.hero__browser-hero-buttons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.hero__browser-button {
  height: 36px;
  border-radius: 8px;
  flex: 1;
  max-width: 140px;
}
.hero__browser-button--primary {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.8) 0%, rgba(34, 211, 238, 0.8) 100%);
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}
.hero__browser-button--secondary {
  background: rgba(232, 232, 232, 0.8);
  border: 1px solid rgba(224, 224, 224, 0.6);
}
.hero__browser-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.hero__browser-feature {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  background: rgba(248, 248, 248, 0.6);
  border-radius: 8px;
  border: 1px solid rgba(224, 224, 224, 0.4);
}
.hero__browser-feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(34, 211, 238, 0.2) 100%);
  border-radius: 8px;
  border: 1px solid rgba(99, 102, 241, 0.3);
}
.hero__browser-feature-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero__browser-line {
  height: 10px;
  background: rgba(232, 232, 232, 0.8);
  border-radius: 4px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.hero__browser-line--title {
  width: 80%;
  height: 12px;
}
.hero__browser-line--desc {
  width: 100%;
  height: 8px;
}
.hero__browser-line--desc::after {
  content: "";
  display: block;
  height: 8px;
  background: rgba(232, 232, 232, 0.8);
  border-radius: 4px;
  width: 70%;
  margin-top: 6px;
}
.hero__floating {
  position: absolute;
  padding: 10px 16px;
  background: rgba(99, 102, 241, 0.2);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  color: #FFFFFF;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(99, 102, 241, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
  z-index: 3;
}
.hero__floating svg {
  width: 32px;
  height: 24px;
  color: #fff;
}
.hero__floating--1 {
  top: -30px;
  left: 40px;
  background: rgba(37, 99, 235, 0.25);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 40px 40px 40px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(37, 99, 235, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.5));
  animation: float 6s ease-in-out infinite;
  animation-delay: 0s;
}
.hero__floating--2 {
  top: 20px;
  right: -20px;
  background: rgba(37, 99, 235, 0.25);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 40px 40px 40px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(37, 99, 235, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.5));
  animation: float 6s ease-in-out infinite;
  animation-delay: 1s;
}
.hero__floating--3 {
  top: 180px;
  left: -30px;
  background: rgba(34, 211, 238, 0.25);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 40px 40px 40px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(34, 211, 238, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.5));
  animation: float 6s ease-in-out infinite;
  animation-delay: 2s;
}
.hero__floating--4 {
  bottom: 60px;
  right: -10px;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 40px 40px 40px rgba(0, 0, 0, 0.4), 25px 25px 40px rgba(34, 211, 238, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.5));
  animation: float 6s ease-in-out infinite;
  animation-delay: 3s;
}
@media (max-width: 768px) {
  .hero__floating--4 {
    bottom: 130px;
    right: -10px;
  }
}
.hero__floating--5 {
  bottom: 10px;
  left: 50px;
  padding: 12px;
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 40px 40px 40px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(99, 102, 241, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.5));
  animation: float 6s ease-in-out infinite;
  animation-delay: 4s;
}
@media (max-width: 768px) {
  .hero__floating--5 {
    bottom: 10px;
    left: -30px;
  }
}
.hero__floating--6 {
  bottom: -40px;
  right: 60px;
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 30px 30px 40px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(99, 102, 241, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.5));
  animation: float 6s ease-in-out infinite;
  animation-delay: 5s;
}
@media (max-width: 768px) {
  .hero__floating--6 {
    bottom: 10px;
    right: 60px;
  }
}

.advantages {
  padding: var(--section-padding) 0;
  position: relative;
}
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
@media (max-width: 768px) {
  .advantages__grid {
    grid-template-columns: 1fr;
  }
}

.advantage-card {
  background: var(--card-bg);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-card);
  padding: 32px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.advantage-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--accent-2);
  box-shadow: var(--shadow-glow);
}
.advantage-card__icon {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantage-card__title {
  margin-bottom: 16px;
  color: var(--text-primary);
}
.advantage-card__text {
  color: var(--text-secondary);
  line-height: 1.7;
}

.process {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}
.process__matrix {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 60px;
  align-items: center;
  justify-items: center;
  z-index: 2;
}
@media (max-width: 1024px) {
  .process__matrix {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
  }
}
@media (max-width: 768px) {
  .process__matrix {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.process__connections-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.process .connection {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.8), transparent);
  border-radius: 2px;
  animation: neuralFlow 4s linear infinite;
  filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.6));
}
.process .connection--1-3 {
  top: 10%;
  left: 15%;
  width: 35%;
  height: 3px;
  transform: rotate(30deg);
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.8), transparent);
}
.process .connection--2-3 {
  top: 10%;
  right: 15%;
  width: 35%;
  height: 3px;
  transform: rotate(-30deg);
  transform-origin: right center;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.8), transparent);
  animation-delay: 0.5s;
}
.process .connection--3-4 {
  top: 30%;
  left: 15%;
  width: 35%;
  height: 3px;
  transform: rotate(30deg);
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.8), transparent);
  animation-delay: 1s;
}
.process .connection--3-5 {
  top: 30%;
  right: 15%;
  width: 35%;
  height: 3px;
  transform: rotate(-30deg);
  transform-origin: right center;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.8), transparent);
  animation-delay: 1.5s;
}
.process .connection--4-6 {
  bottom: 10%;
  left: 15%;
  width: 35%;
  height: 3px;
  transform: rotate(30deg);
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.8), transparent);
  animation-delay: 2s;
}
.process .connection--5-6 {
  bottom: 10%;
  right: 15%;
  width: 35%;
  height: 3px;
  transform: rotate(-30deg);
  transform-origin: right center;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.8), transparent);
  animation-delay: 2.5s;
}
.process .connection--vertical-1 {
  top: 10%;
  left: 15%;
  width: 3px;
  height: 40%;
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.6), transparent);
  animation: verticalFlow 3s linear infinite;
}
.process .connection--vertical-2 {
  top: 10%;
  right: 15%;
  width: 3px;
  height: 40%;
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.6), transparent);
  animation: verticalFlow 3s linear infinite reverse;
  animation-delay: 1s;
}
.process .connection--vertical-3 {
  top: 30%;
  left: 50%;
  width: 3px;
  height: 40%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.6), transparent);
  animation: verticalFlow 3s linear infinite;
  animation-delay: 2s;
}
.process__node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}
.process__node--1 {
  grid-column: 1;
  grid-row: 1;
  animation-delay: 0.2s;
}
.process__node--2 {
  grid-column: 3;
  grid-row: 1;
  animation-delay: 0.4s;
}
.process__node--3 {
  grid-column: 2;
  grid-row: 2;
  animation-delay: 0.6s;
}
.process__node--4 {
  grid-column: 1;
  grid-row: 3;
  animation-delay: 0.8s;
}
.process__node--5 {
  grid-column: 3;
  grid-row: 3;
  animation-delay: 1s;
}
.process__node--6 {
  grid-column: 2;
  grid-row: 4;
  animation-delay: 1.2s;
}
@media (max-width: 1024px) {
  .process__node--1 {
    grid-column: 1;
    grid-row: 1;
  }
  .process__node--2 {
    grid-column: 2;
    grid-row: 1;
  }
  .process__node--3 {
    grid-column: 1;
    grid-row: 2;
  }
  .process__node--4 {
    grid-column: 2;
    grid-row: 2;
  }
  .process__node--5 {
    grid-column: 1;
    grid-row: 3;
  }
  .process__node--6 {
    grid-column: 2;
    grid-row: 3;
  }
}
@media (max-width: 768px) {
  .process__node--1 {
    grid-column: 1;
    grid-row: 1;
  }
  .process__node--2 {
    grid-column: 1;
    grid-row: 2;
  }
  .process__node--3 {
    grid-column: 1;
    grid-row: 3;
  }
  .process__node--4 {
    grid-column: 1;
    grid-row: 4;
  }
  .process__node--5 {
    grid-column: 1;
    grid-row: 5;
  }
  .process__node--6 {
    grid-column: 1;
    grid-row: 6;
  }
}
.process__hexagon {
  position: relative;
  width: 120px;
  height: 104px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 40%), radial-gradient(circle at 70% 70%, var(--accent-2), transparent 50%), linear-gradient(135deg, var(--accent-1), var(--accent-3), var(--accent-2));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid;
  border-image: linear-gradient(45deg, rgba(255, 255, 255, 0.8), var(--accent-2), var(--accent-1)) 1;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  box-shadow: 0 0 60px var(--accent-1), 0 0 120px var(--accent-2), inset 0 0 60px rgba(255, 255, 255, 0.1), inset 0 2px 20px rgba(255, 255, 255, 0.2);
  animation: nodeFloat 4s ease-in-out infinite, hexagonHolo 3s ease-in-out infinite, hexagonMorph 8s ease-in-out infinite;
  backdrop-filter: blur(20px);
}
.process__hexagon::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent, var(--accent-2), transparent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hologramShift 4s linear infinite;
  opacity: 0.8;
}
.process__hexagon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent, var(--accent-2), transparent);
  transform: translate(-50%, -50%);
  animation: hologramRotate 8s linear infinite;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0.6;
}
.process__hexagon:hover {
  transform: scale(1.15) rotate(15deg);
  box-shadow: 0 0 100px var(--accent-1), 0 0 200px var(--accent-2), 0 0 300px var(--accent-3), inset 0 0 80px rgba(255, 255, 255, 0.2);
  animation-play-state: paused;
  border-image: linear-gradient(45deg, var(--text-primary), var(--accent-2), var(--accent-1)) 1;
}
@media (max-width: 768px) {
  .process__hexagon {
    width: 100px;
    height: 86px;
  }
}
.process__hexagon-number {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .process__hexagon-number {
    font-size: 16px;
  }
}
.process__hexagon-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, var(--accent-1), var(--accent-2));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexagonGlow 2s ease-in-out infinite alternate;
  opacity: 0;
}
.process__data-stream {
  position: relative;
  max-width: 300px;
  width: 100%;
}
.process__data-packet {
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1), transparent 50%), radial-gradient(circle at 80% 80%, rgba(34, 211, 238, 0.15), transparent 50%), linear-gradient(135deg, rgba(10, 14, 40, 0.98), rgba(15, 20, 60, 0.95), rgba(20, 25, 70, 0.98));
  border-radius: 12px;
  padding: 24px;
  backdrop-filter: blur(25px);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 20px rgba(255, 255, 255, 0.1);
}
.process__data-packet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(45deg, rgba(99, 102, 241, 0.4), rgba(34, 211, 238, 0.6), rgba(124, 58, 237, 0.4));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
}
.process__data-packet::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(34, 211, 238, 0.1) 2px, rgba(34, 211, 238, 0.1) 4px), repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(99, 102, 241, 0.1) 2px, rgba(99, 102, 241, 0.1) 4px);
  animation: matrixGrid 4s linear infinite;
  opacity: 0.3;
}
.process__data-packet:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 100px rgba(99, 102, 241, 0.4), 0 0 150px rgba(34, 211, 238, 0.3), inset 0 1px 30px rgba(255, 255, 255, 0.15);
}
.process__data-packet:hover::before {
  background: linear-gradient(45deg, rgba(99, 102, 241, 0.8), rgb(34, 211, 238), rgba(124, 58, 237, 0.8));
}
.process__data-packet:hover::after {
  opacity: 0.6;
}
.process__data-title {
  margin-bottom: 8px;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
  position: relative;
}
@media (max-width: 768px) {
  .process__data-title {
    font-size: 16px;
  }
}
.process__data-text {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}
.process__data-trail {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.6), transparent);
  transform: translateY(-50%);
  animation: trailPulse 2s ease-in-out infinite;
}
@media (max-width: 768px) {
  .process__data-trail {
    display: none;
  }
}
.process__particles {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.process .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.8), rgba(99, 102, 241, 0.6));
  border-radius: 50%;
  animation: particleFloat 6s ease-in-out infinite;
}
.process .particle--1 {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
  animation-duration: 4s;
}
.process .particle--2 {
  top: 80%;
  right: 20%;
  animation-delay: 1.5s;
  animation-duration: 5s;
}
.process .particle--3 {
  bottom: 20%;
  left: 80%;
  animation-delay: 3s;
  animation-duration: 4.5s;
}
.process .particle--4 {
  top: 50%;
  left: 10%;
  animation-delay: 2s;
  animation-duration: 5.5s;
  width: 6px;
  height: 6px;
}

.portfolio {
  padding: var(--section-padding) 0;
  position: relative;
}
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
@media (max-width: 768px) {
  .portfolio__grid {
    grid-template-columns: 1fr;
  }
}
.portfolio__item-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.portfolio__item {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}
.portfolio__item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-glow);
}
.portfolio__item:hover .portfolio__overlay {
  opacity: 1;
}
.portfolio__item:hover .portfolio__img,
.portfolio__item:hover .portfolio__placeholder {
  transform: scale(1.1);
}
.portfolio__image {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: var(--bg-dark);
}
.portfolio__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.3s ease;
}
.portfolio__placeholder {
  width: 100%;
  height: 100%;
  background: var(--gradient-main);
  opacity: 0.3;
  transition: transform 0.3s ease;
}
.portfolio__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(99, 102, 241, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.portfolio__overlay span {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}
.portfolio__info {
  padding: 24px;
}
.portfolio__niche {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.portfolio__result {
  color: var(--accent-2);
  font-size: 16px;
  font-weight: 600;
}

.pricing {
  padding: var(--section-padding) 0;
  position: relative;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .pricing__grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  backdrop-filter: blur(10px);
}
.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-2);
  box-shadow: var(--shadow-glow);
}
.pricing-card--featured {
  transform: scale(1.05);
  border-color: var(--accent-1);
  box-shadow: var(--shadow-glow);
}
@media (max-width: 768px) {
  .pricing-card--featured {
    transform: scale(1);
  }
}
.pricing-card--featured::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-main);
  border-radius: var(--radius-card);
  z-index: -1;
  opacity: 0.5;
}
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--gradient-main);
  border-radius: var(--radius-button);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.pricing-card__title {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.pricing-card__price {
  margin-bottom: 32px;
}
.pricing-card__amount {
  font-size: 36px;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-card__features {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}
.pricing-card__features li {
  padding: 12px 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 24px;
}
.pricing-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 700;
}

.cta {
  padding: var(--section-padding) 0;
  position: relative;
}
.cta__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.cta__title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 24px;
  color: var(--text-primary);
}
.cta__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

.form-section {
  padding: var(--section-padding) 0;
  position: relative;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-card);
  padding: 48px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .form-wrapper {
    padding: 32px 24px;
  }
}
.form-wrapper__title {
  text-align: center;
  margin-bottom: 32px;
  color: var(--text-primary);
}

.form__group {
  margin-bottom: 24px;
}
.form__label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}
.form__input, .form__textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-dark);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  transition: all 0.3s ease;
}
.form__input:focus, .form__textarea:focus {
  outline: none;
  border-color: var(--accent-1);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.form__input::placeholder, .form__textarea::placeholder {
  color: rgba(196, 204, 229, 0.5);
}
.form__textarea {
  resize: vertical;
  min-height: 120px;
}
.form__submit {
  width: 100%;
  margin-bottom: 16px;
}
.form__disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--text-secondary);
  opacity: 0.7;
}

.footer {
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(34, 211, 238, 0.02) 50%, rgba(124, 58, 237, 0.03) 100%);
  z-index: -1;
}
.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(34, 211, 238, 0.08) 0%, transparent 50%), radial-gradient(circle at 60% 30%, rgba(124, 58, 237, 0.06) 0%, transparent 50%);
  opacity: 0.3;
  animation: neuralPulse 6s ease-in-out infinite;
  z-index: -1;
}
.footer__content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
  position: relative;
}
.footer__content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 33%;
  right: 33%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.3) 20%, rgba(34, 211, 238, 0.3) 50%, rgba(99, 102, 241, 0.3) 80%, transparent 100%);
  animation: neuralPulse 4s ease-in-out infinite;
}
@media (max-width: 968px) {
  .footer__content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .footer__content::before {
    display: none;
  }
}
.footer__brand {
  max-width: 420px;
  position: relative;
}
.footer__brand::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(34, 211, 238, 0.2));
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
  z-index: -1;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}
.footer__logo-img {
  width: 50px;
  height: 50px;
}
.footer__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.footer__logo-icon svg {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.4));
  animation: gradientPulse 3s ease-in-out infinite;
}
.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--text-primary), rgba(34, 211, 238, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}
.footer__slogan {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 16px;
  position: relative;
}
.footer__slogan::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-1), var(--accent-2));
  border-radius: 1px;
  opacity: 0.6;
}
.footer__contacts {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer__contacts a {
  color: #fff;
}
.footer__contacts::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: neuralPulse 5s ease-in-out infinite;
}
.footer__contacts-title {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--text-primary);
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__contacts-title::before {
  content: "";
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  border-radius: 50%;
  animation: gradientPulse 2s ease-in-out infinite;
}
.footer__contacts-link {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}
.footer__contacts-link:hover {
  color: var(--accent-2);
  background: rgba(34, 211, 238, 0.05);
  transform: translateX(4px);
}
.footer__contacts-link:hover::before {
  transform: scale(1.2);
  opacity: 1;
}
.footer__contacts-link::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--accent-2);
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.footer__social {
  position: relative;
}
.footer__social::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 5s ease-in-out infinite;
}
.footer__social-title {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--text-primary);
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__social-title::before {
  content: "";
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  border-radius: 50%;
  animation: gradientPulse 2.5s ease-in-out infinite;
}
.footer__social-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 16px;
  color: var(--text-secondary);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.footer__social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(34, 211, 238, 0.1) 50%, rgba(124, 58, 237, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px;
}
.footer__social-link:hover {
  color: var(--accent-2);
  border-color: var(--accent-2);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3), 0 0 40px rgba(34, 211, 238, 0.2);
}
.footer__social-link:hover::before {
  opacity: 1;
}
.footer__social-link:hover svg {
  transform: scale(1.1);
}
.footer__social-link svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.footer__bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(99, 102, 241, 0.2);
  text-align: center;
  position: relative;
}
.footer__bottom::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.4) 20%, rgba(34, 211, 238, 0.4) 50%, rgba(99, 102, 241, 0.4) 80%, transparent 100%);
  animation: shimmer 3s ease-in-out infinite;
}
.footer__legal {
  color: var(--text-secondary);
  font-size: 15px;
  opacity: 0.8;
  font-weight: 500;
  position: relative;
}
.footer__legal::before {
  content: "⚡";
  margin-right: 8px;
  opacity: 0.6;
  animation: gradientPulse 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  33% {
    transform: translateY(-20px) translateX(10px);
  }
  66% {
    transform: translateY(10px) translateX(-10px);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes browserSlideIn {
  from {
    opacity: 0;
    transform: perspective(1500px) rotateY(340deg) rotateX(10deg) translateX(30px);
  }
  to {
    opacity: 1;
    transform: perspective(1500px) rotateY(340deg) rotateX(10deg) translateX(0);
  }
}
@keyframes browserFloat {
  0%, 100% {
    transform: perspective(1500px) rotateY(340deg) rotateX(10deg) translateY(0px);
  }
  50% {
    transform: perspective(1500px) rotateY(340deg) rotateX(10deg) translateY(-20px);
  }
}
@keyframes shimmer {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
@keyframes neuralPulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}
@keyframes gradientPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
@keyframes noiseMove {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(40px, 40px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes spotFloat1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
  25% {
    transform: translate(15%, -10%) scale(1.15);
    opacity: 0.8;
  }
  50% {
    transform: translate(-10%, 15%) scale(0.9);
    opacity: 0.6;
  }
  75% {
    transform: translate(8%, 8%) scale(1.1);
    opacity: 0.75;
  }
}
@keyframes spotFloat2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
  20% {
    transform: translate(-12%, 8%) scale(1.12);
    opacity: 0.8;
  }
  40% {
    transform: translate(10%, -12%) scale(0.88);
    opacity: 0.6;
  }
  60% {
    transform: translate(-8%, -5%) scale(1.08);
    opacity: 0.75;
  }
  80% {
    transform: translate(5%, 10%) scale(0.95);
    opacity: 0.65;
  }
}
@keyframes spotFloat3 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
  30% {
    transform: translate(10%, 12%) scale(1.13);
    opacity: 0.8;
  }
  60% {
    transform: translate(-12%, -8%) scale(0.87);
    opacity: 0.6;
  }
  90% {
    transform: translate(6%, -4%) scale(1.1);
    opacity: 0.75;
  }
}
@keyframes spotFloat4 {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    opacity: 0.5;
  }
  33% {
    transform: translate(-50%, -50%) rotate(120deg) scale(1.2);
    opacity: 0.6;
  }
  66% {
    transform: translate(-50%, -50%) rotate(240deg) scale(0.85);
    opacity: 0.4;
  }
}
@keyframes spotFloat5 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translate(-10%, -8%) scale(1.1);
    opacity: 0.7;
  }
  50% {
    transform: translate(12%, 10%) scale(0.9);
    opacity: 0.5;
  }
  75% {
    transform: translate(-6%, 5%) scale(1.05);
    opacity: 0.65;
  }
}
@keyframes spotFloat6 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  30% {
    transform: translate(8%, 10%) scale(1.12);
    opacity: 0.7;
  }
  60% {
    transform: translate(-10%, -12%) scale(0.88);
    opacity: 0.5;
  }
  90% {
    transform: translate(5%, -6%) scale(1.08);
    opacity: 0.65;
  }
}
@keyframes spotFloat7 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  35% {
    transform: translate(12%, -10%) scale(1.15);
    opacity: 0.6;
  }
  70% {
    transform: translate(-8%, 12%) scale(0.9);
    opacity: 0.4;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 968px) {
  .header.menu-open .header__nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(5, 7, 20, 0.98);
    backdrop-filter: blur(20px);
    padding: 90px 24px 24px;
    gap: 20px;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  }
  .header.menu-open .header__cta {
    display: block;
    position: absolute;
    top: calc(100% + 24px);
    left: 24px;
    right: 24px;
    width: calc(100% - 48px);
  }
  .header.menu-open .header__burger span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 3px);
  }
  .header.menu-open .header__burger span:nth-child(2) {
    opacity: 0;
  }
  .header.menu-open .header__burger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
}
.form__message {
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 14px;
  text-align: center;
  animation: slideDown 0.3s ease-out;
  transition: opacity 0.3s ease;
}
.form__message--success {
  background: rgba(34, 211, 238, 0.2);
  border: 1px solid var(--accent-2);
  color: var(--accent-2);
}
.form__message--error {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid #EF4444;
  color: #EF4444;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes connectionPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleX(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.2);
  }
}
@keyframes hexagonGlow {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}
@keyframes hexagonHolo {
  0%, 100% {
    filter: hue-rotate(0deg) brightness(1);
  }
  25% {
    filter: hue-rotate(90deg) brightness(1.1);
  }
  50% {
    filter: hue-rotate(180deg) brightness(0.9);
  }
  75% {
    filter: hue-rotate(270deg) brightness(1.1);
  }
}
@keyframes hologramShift {
  0% {
    transform: translateX(-100%) translateY(-100%);
  }
  100% {
    transform: translateX(100%) translateY(100%);
  }
}
@keyframes hologramRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes dataFlow {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}
@keyframes trailPulse {
  0%, 100% {
    opacity: 0.4;
    transform: translateY(-50%) scaleX(0.8);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scaleX(1.2);
  }
}
@keyframes nodeFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes neuralFlow {
  0% {
    opacity: 0.3;
    transform: scaleX(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.2);
  }
  100% {
    opacity: 0.3;
    transform: scaleX(0.8);
  }
}
@keyframes verticalFlow {
  0% {
    opacity: 0.3;
    transform: scaleY(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
  100% {
    opacity: 0.3;
    transform: scaleY(0.8);
  }
}
@keyframes hologramScan {
  0% {
    left: -100%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@keyframes matrixGrid {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 20px 20px;
  }
}
@keyframes particleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translate(30px, -20px) scale(1.2);
    opacity: 0.8;
  }
  50% {
    transform: translate(10px, -40px) scale(0.8);
    opacity: 1;
  }
  75% {
    transform: translate(-20px, -10px) scale(1.1);
    opacity: 0.6;
  }
}
@keyframes hexagonMorph {
  0%, 100% {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  }
  25% {
    clip-path: polygon(50% 5%, 95% 25%, 95% 75%, 50% 95%, 5% 75%, 5% 25%);
  }
  50% {
    clip-path: polygon(50% 0%, 93% 30%, 100% 70%, 50% 100%, 0% 70%, 7% 30%);
  }
  75% {
    clip-path: polygon(50% 5%, 100% 20%, 95% 80%, 50% 95%, 5% 80%, 0% 20%);
  }
}
@keyframes backgroundPulse {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  100% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}
body.loaded .hero__text,
body.loaded .hero__visual {
  animation-play-state: running;
}

.project-hero {
  padding: 120px 0 80px;
  position: relative;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}
.project-hero__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 992px) {
  .project-hero__container {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}
.project-hero__content {
  position: relative;
  z-index: 2;
}
.project-hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.3);
  backdrop-filter: blur(10px);
}
.project-hero__title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}
.project-hero__subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 32px 0;
  max-width: 500px;
}
.project-hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.project-hero__stat {
  background: var(--card-bg);
  padding: 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.project-hero__stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-1);
}
.project-hero__stat-number {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  display: block;
}
.project-hero__stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.project-hero__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.3s ease;
  max-height: 550px;
}
.project-hero__image:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}
.project-hero__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(34, 211, 238, 0.1));
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.project-hero__image:hover::before {
  opacity: 1;
}
.project-hero__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(1.05) contrast(1.05);
}
.project-hero__img:hover {
  transform: scale(1.05);
}
.project-hero::before {
  content: "";
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.project-hero::after {
  content: "";
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.project-description {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
}
.project-description::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.05) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(34, 211, 238, 0.05) 0%, transparent 50%);
  z-index: 0;
}
.project-description__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .project-description__grid {
    grid-template-columns: 1fr 320px;
    gap: 80px;
  }
}
.project-description__content {
  background: var(--card-bg);
  padding: 48px;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
}
.project-description__content h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 32px;
  position: relative;
}
.project-description__content h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  border-radius: 2px;
}
.project-description__content h3 {
  margin: 40px 0 20px 0;
  color: var(--text-primary);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}
.project-description__content h3::before {
  content: "";
  width: 6px;
  height: 24px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  border-radius: 3px;
}
.project-description__content h4 {
  margin: 32px 0 16px 0;
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.project-description__content h4::before {
  content: "▸";
  color: var(--accent-1);
  font-size: 18px;
}
.project-description__content ul {
  margin: 20px 0;
  padding-left: 0;
}
.project-description__content ul li {
  margin-bottom: 12px;
  line-height: 1.7;
  padding-left: 24px;
  position: relative;
  color: var(--text-secondary);
}
.project-description__content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent-1);
  border-radius: 50%;
}
.project-description__content ul li:hover::before {
  transform: scale(1.5);
  transition: transform 0.2s ease;
}
.project-description__content p {
  margin-bottom: 24px;
  line-height: 1.8;
  color: var(--text-secondary);
  font-size: 16px;
}
.project-description__content p:last-child {
  margin-bottom: 0;
}
.project-description__tech h3 {
  margin-bottom: 32px;
  color: var(--text-primary);
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.project-description__tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 20px;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}
.tech-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.02), rgba(34, 211, 238, 0.02));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tech-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-1);
}
.tech-item:hover::before {
  opacity: 1;
}
.tech-item:hover .tech-item__icon {
  transform: scale(1.1);
  color: var(--accent-1);
}
.tech-item__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 50%;
  padding: 8px;
}
.tech-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-gallery {
  padding: 100px 0;
  background: var(--bg-primary);
}
.project-gallery__container {
  position: relative;
}
.project-gallery h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 60px;
  position: relative;
}
.project-gallery h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  border-radius: 2px;
}
.project-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
@media (max-width: 768px) {
  .project-gallery__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.gallery-item {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: 1px solid var(--border-color);
  position: relative;
}
.gallery-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-1);
}
.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(34, 211, 238, 0.08));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.gallery-item:hover::before {
  opacity: 1;
}
.gallery-item__image {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.gallery-item__image::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}
.gallery-item__image::after::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid var(--accent-1);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  margin-left: 3px;
}
.gallery-item:hover .gallery-item__image::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
.gallery-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: brightness(1.02) contrast(1.02);
}
.gallery-item:hover .gallery-item__img {
  transform: scale(1.08);
}
.gallery-item__info {
  padding: 28px;
  position: relative;
  z-index: 2;
}
.gallery-item__info h3 {
  margin: 0 0 12px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.gallery-item__info p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 15px;
}
@media (min-width: 992px) {
  .gallery-item--wide {
    grid-column: span 2;
  }
}
.gallery-item--wide .gallery-item__image {
  height: 360px;
}

.project-features {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
}
.project-features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.03) 0%, transparent 50%);
  z-index: 0;
}
.project-features__container {
  position: relative;
  z-index: 1;
}
.project-features h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 60px;
  position: relative;
}
.project-features h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  border-radius: 2px;
}
.project-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}
@media (max-width: 768px) {
  .project-features__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.feature-card {
  background: var(--card-bg);
  padding: 40px 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.02), rgba(34, 211, 238, 0.02));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-1);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-card:hover .feature-card__icon {
  transform: scale(1.1);
  color: var(--accent-1);
}
.feature-card__icon {
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}
.feature-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}
.feature-card__text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  font-size: 16px;
}

.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
.gallery-modal.active {
  opacity: 1;
  visibility: visible;
}
.gallery-modal__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-modal__image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}
.gallery-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.gallery-modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.gallery-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.gallery-modal__nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}
.gallery-modal__nav--prev {
  left: 20px;
}
.gallery-modal__nav--next {
  right: 20px;
}
@media (max-width: 768px) {
  .gallery-modal__nav {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .gallery-modal__nav--prev {
    left: 10px;
  }
  .gallery-modal__nav--next {
    right: 10px;
  }
}
.gallery-modal__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}
.gallery-modal__info {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  max-width: 600px;
  padding: 0 20px;
}
.gallery-modal__info h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.gallery-modal__info p {
  font-size: 16px;
  margin: 0;
  opacity: 0.9;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--card-bg);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
}
.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}
.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.modal__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}
.modal__close {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}
.modal__close svg {
  width: 20px;
  height: 20px;
}
.modal__body {
  padding: 24px;
}

.modal-form__group {
  margin-bottom: 20px;
}
.modal-form__group:last-of-type {
  margin-bottom: 24px;
}
.modal-form__label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.modal-form__input, .modal-form__textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 16px;
  transition: all 0.2s ease;
}
.modal-form__input::placeholder, .modal-form__textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.7;
}
.modal-form__input:focus, .modal-form__textarea:focus {
  outline: none;
  border-color: var(--accent-1);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.modal-form__input:invalid:not(:placeholder-shown), .modal-form__textarea:invalid:not(:placeholder-shown) {
  border-color: #ef4444;
}
.modal-form__textarea {
  resize: vertical;
  min-height: 80px;
}
.modal-form__submit {
  width: 100%;
  margin-bottom: 16px;
}
.modal-form__disclaimer {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.4;
  margin: 0;
}
.modal-form__message {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
.modal-form__message--success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}
.modal-form__message--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

@media (max-width: 768px) {
  .modal {
    width: 95%;
    margin: 20px;
  }
  .modal__header {
    padding: 20px 20px 12px;
  }
  .modal__body {
    padding: 20px;
  }
  .modal__title {
    font-size: 20px;
  }
  .modal-form__input, .modal-form__textarea {
    padding: 14px 16px;
    font-size: 16px;
  }
}
.audience {
  padding: var(--section-padding) 0;
  background: var(--card-bg);
  position: relative;
}
.audience::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-card);
  margin: 0 var(--container-padding);
}
.audience__header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.audience__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-top: 16px;
  font-weight: 400;
}
.audience__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}

.audience-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: var(--shadow-glow);
}
.audience-card__icon {
  margin-bottom: 24px;
}
.audience-card__icon svg {
  width: 48px;
  height: 48px;
  color: var(--accent-1);
}
.audience-card__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.audience-card__text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.final-result {
  padding: var(--section-padding) 0;
}
.final-result__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}
.final-result__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.final-result__item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
}
.final-result__item span {
  flex: 1;
}
.final-result__checkmark {
  width: 24px;
  height: 24px;
  color: #22c55e;
  flex-shrink: 0;
}
.final-result__checkmark svg {
  width: 100%;
  height: 100%;
}

.comparison {
  padding: var(--section-padding) 0;
  background: var(--card-bg);
}
.comparison__table {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.comparison__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  min-height: 60px;
}
.comparison__row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.comparison__row--header {
  background: rgba(99, 102, 241, 0.1);
}
.comparison__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  font-weight: 500;
}
.comparison__cell--param {
  justify-content: flex-start;
  text-align: left;
  font-weight: 600;
}
.comparison__cell--highlight {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  font-weight: 600;
}
.comparison__badge {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.comparison__badge--us {
  background: rgba(99, 102, 241, 0.2);
  color: var(--accent-1);
}
.comparison__badge--studio {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}
.comparison__badge--constructor {
  background: rgba(156, 163, 175, 0.2);
  color: #9ca3af;
}

.guarantees {
  padding: var(--section-padding) 0;
}
.guarantees__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.guarantee-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.guarantee-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: var(--shadow-glow);
}
.guarantee-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: var(--accent-1);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 50%;
}
.guarantee-card__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.guarantee-card__text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.stats {
  padding: var(--section-padding) 0;
  background: var(--card-bg);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}
.stats__item {
  position: relative;
}
.stats__number {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-1);
  margin-bottom: 12px;
  display: block;
  background: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stats__label {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
}

.reviews {
  padding: var(--section-padding) 0;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.review-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  padding: 32px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: var(--shadow-glow);
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.review-card__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(99, 102, 241, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-card__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-card__info {
  flex: 1;
}
.review-card__name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.review-card__position {
  font-size: 14px;
  color: var(--text-secondary);
}
.review-card__text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.faq {
  padding: var(--section-padding) 0;
  background: var(--card-bg);
}
.faq__accordion {
  max-width: 800px;
  margin: 0 auto;
}
.faq__item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  margin-bottom: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.faq__question {
  width: 100%;
  padding: 24px 32px;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.faq__question:hover {
  background: rgba(255, 255, 255, 0.02);
}
.faq__question span {
  flex: 1;
}
.faq__icon {
  width: 20px;
  height: 20px;
  color: var(--accent-1);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq__item.active .faq__icon {
  transform: rotate(180deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
}
.faq__answer p {
  margin: 0;
  padding: 0 32px 24px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.faq__item.active .faq__answer {
  max-height: 200px;
}

.quiz {
  padding: var(--section-padding) 0;
}
.quiz__subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.quiz__container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  padding: 40px;
  backdrop-filter: blur(10px);
}
.quiz__step {
  display: none;
}
.quiz__step--active {
  display: block;
}
.quiz__question {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 32px;
  text-align: center;
  line-height: 1.3;
}
.quiz__options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.quiz__option {
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 16px;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}
.quiz__option:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
}
.quiz__option:active {
  transform: scale(0.98);
}
.quiz__option strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.quiz__option small {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.4;
}
.quiz__result {
  display: none;
  text-align: center;
}
.quiz__result-content {
  padding: 40px 20px;
}
.quiz__result-header {
  margin-bottom: 24px;
}
.quiz__result-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.quiz__result-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 100%);
  color: white;
  border-radius: 20px;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
}
.quiz__result-summary {
  margin-bottom: 24px;
}
.quiz__result-summary p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}
.quiz__result-features {
  margin-bottom: 32px;
}
.quiz__result-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--text-primary);
}
.quiz__result-check {
  color: #22c55e;
  font-weight: bold;
  font-size: 18px;
}
.quiz__result-price {
  margin-bottom: 32px;
  padding: 20px;
  background: rgba(99, 102, 241, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(99, 102, 241, 0.2);
}
.quiz__result-price-amount {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-1);
  margin-bottom: 4px;
}
.quiz__result-price-note {
  font-size: 14px;
  color: var(--text-secondary);
}
.quiz__result-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.quiz__result-btn {
  min-width: 250px;
}
.quiz__reset-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 14px;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.quiz__reset-btn:hover {
  color: var(--accent-1);
}
.quiz__progress {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.quiz__progress-step {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.quiz__progress-step--active {
  background: var(--accent-1);
  transform: scale(1.2);
}

@media (max-width: 1024px) {
  .comparison__row {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .comparison__row--header {
    display: none;
  }
  .comparison__cell {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .comparison__cell::before {
    content: attr(data-label);
    font-weight: 600;
    margin-right: 16px;
  }
  .comparison__cell--param {
    background: rgba(99, 102, 241, 0.1);
    border-bottom: none;
  }
  .quiz__container {
    padding: 24px;
  }
  .quiz__question {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .audience__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .final-result__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .guarantees__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .reviews__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .stats__number {
    font-size: 36px;
  }
  .faq__question {
    padding: 20px 24px;
    font-size: 16px;
  }
  .faq__answer p {
    padding: 0 24px 20px;
  }
  .quiz__container {
    padding: 20px;
    margin: 0 16px;
  }
  .quiz__question {
    font-size: 20px;
  }
  .quiz__option {
    padding: 16px 20px;
  }
  .quiz__option strong {
    font-size: 15px;
  }
  .quiz__option small {
    font-size: 13px;
  }
  .quiz__result-title {
    font-size: 24px;
  }
  .quiz__result-feature {
    font-size: 15px;
  }
  .quiz__result-price-amount {
    font-size: 20px;
  }
  .quiz__result-actions {
    flex-direction: column;
    gap: 12px;
  }
  .quiz__result-btn {
    min-width: 100%;
    width: 100%;
  }
  .quiz__reset-btn {
    font-size: 13px;
  }
}/*# sourceMappingURL=app.css.map */