/* Базовые стили */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Анимации */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(69, 224, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 30px rgba(69, 224, 255, 0.7), 0 0 40px rgba(47, 124, 255, 0.4);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Классы для анимации при скролле */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  background: radial-gradient(circle at top, #171d3e 0, #050812 55%, #020309 100%);
  color: #f5f7ff;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(69, 224, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(150, 105, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(5, 8, 18, 0.96), rgba(5, 8, 18, 0.86), transparent);
  border-bottom: 1px solid rgba(35, 48, 84, 0.8);
  transition: box-shadow 0.3s ease-out;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: conic-gradient(from 180deg, #2f7cff, #45e0ff, #9669ff, #2f7cff);
  padding: 2px;
  animation: rotate 8s linear infinite;
  transition: transform 0.3s ease-out;
}

.logo:hover .logo-mark {
  animation-duration: 2s;
}

.logo-mark-inner {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: radial-gradient(circle at -10% -60%, #3b5bff, #050812 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #f7f9ff;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 15px;
  letter-spacing: 0.16em;
  font-weight: 600;
  text-transform: uppercase;
}

.logo-subtitle {
  font-size: 12px;
  color: #8d96b9;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 16px;
}

.nav a {
  color: #cfd6f3;
  padding-bottom: 2px;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #45e0ff, #2f7cff);
  transition: width 0.18s ease-out;
}

.nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  background: none;
  color: #f5f7ff;
  cursor: pointer;
  transition: 0.16s ease-out;
}

.btn-primary {
  background-image: linear-gradient(135deg, #45e0ff 0%, #2f7cff 30%, #8a63ff 100%);
  box-shadow: 0 10px 26px rgba(42, 118, 255, 0.6);
  border-color: rgba(253, 255, 255, 0.18);
  background-size: 200% 200%;
  animation: gradientShift 5s ease infinite;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease-out;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(42, 118, 255, 0.8), 0 0 30px rgba(69, 224, 255, 0.4);
}

.btn-ghost {
  border-color: rgba(127, 144, 206, 0.6);
  background: radial-gradient(circle at 0 -60%, rgba(127, 144, 206, 0.32), rgba(7, 11, 24, 0.96));
  color: #dde3ff;
}

.btn-ghost:hover {
  border-color: rgba(161, 179, 237, 0.9);
  background: radial-gradient(circle at 0 -60%, rgba(127, 144, 206, 0.46), rgba(7, 11, 24, 1));
}

.btn-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(244, 248, 255, 0.4);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.burger {
  display: none;
  width: 30px;
  height: 22px;
  border: none;
  background: none;
  position: relative;
  cursor: pointer;
}

.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #e3e7ff;
  transition: 0.2s ease;
}

.burger span:nth-child(1) { top: 2px; }
.burger span:nth-child(2) { top: 10px; }
.burger span:nth-child(3) { top: 18px; }

.burger.open span:nth-child(1) {
  top: 10px;
  transform: rotate(40deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  top: 10px;
  transform: rotate(-40deg);
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(35, 48, 84, 0.8);
  background: radial-gradient(circle at 0 -60%, rgba(47, 124, 255, 0.3), #050812);
}

.mobile-nav-inner {
  padding: 8px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.mobile-nav a {
  color: #e1e6ff;
  padding: 4px 0;
}

/* Hero */
.hero {
  padding: 56px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(69, 224, 255, 0.15), transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(150, 105, 255, 0.12), transparent 70%);
  border-radius: 50%;
  animation: pulse 10s ease-in-out infinite;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 6px;
  border-radius: 999px;
  border: 1px solid rgba(140, 162, 252, 0.8);
  background: radial-gradient(circle at 0 50%, rgba(76, 138, 255, 0.6), rgba(7, 10, 26, 0.95));
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f7f9ff;
  margin-bottom: 22px;
}

.hero-dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% -10%, #ffffff, #45e0ff 40%, #2f7cff 100%);
  box-shadow: 0 0 14px rgba(69, 224, 255, 0.9);
  animation: pulse 2.4s infinite ease-in-out, glow 3s infinite ease-in-out;
}

.hero-title {
  font-size: clamp(36px, 5.5vw, 52px);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0 0 20px;
}

.hero-title span {
  background: linear-gradient(120deg, #45e0ff, #2f7cff 40%, #a76aff 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 19px;
  line-height: 1.7;
  color: #a8b1cc;
  max-width: 520px;
  margin: 0 0 24px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.hero-note {
  font-size: 15px;
  line-height: 1.6;
  color: #8f97b6;
  max-width: 400px;
}

.hero-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.platform-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(99, 139, 255, 0.9);
  background: radial-gradient(circle at 0 -60%, rgba(99, 139, 255, 0.4), rgba(7, 11, 24, 0.98));
  font-size: 16px;
  color: #e0e5ff;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}

.platform-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 139, 255, 0.4);
  border-color: rgba(99, 139, 255, 1);
}

.platform-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  flex-shrink: 0;
  padding: 0;
  overflow: hidden;
}

.platform-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 999px;
}

.platform-item:hover .platform-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 0 15px rgba(69, 224, 255, 0.6);
}

.platform-name {
  font-weight: 500;
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 20px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  line-height: 1.6;
  color: #b8c1e0;
}

.benefit-check {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: radial-gradient(circle at 25% 0, #45e0ff, #2f7cff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #050814;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(69, 224, 255, 0.6);
  animation: pulse 2s infinite ease-in-out;
}

/* Hero Visual - новый визуальный блок с глобусом и метриками */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-globe-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-globe {
  position: relative;
  width: 200px;
  height: 200px;
  animation: float 15s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(69, 224, 255, 0.3));
}

.globe-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 30px rgba(69, 224, 255, 0.4));
  animation: rotate 30s linear infinite;
  transition: filter 0.3s ease-out;
}

.hero-globe:hover .globe-svg {
  filter: drop-shadow(0 0 50px rgba(69, 224, 255, 0.6));
}

.city-dot {
  animation: pulse 2s infinite ease-in-out;
}

.city-dot:nth-child(1) { animation-delay: 0s; }
.city-dot:nth-child(2) { animation-delay: 0.3s; }
.city-dot:nth-child(3) { animation-delay: 0.6s; }
.city-dot:nth-child(4) { animation-delay: 0.9s; }
.city-dot:nth-child(5) { animation-delay: 1.2s; }

.rocket {
  position: absolute;
  top: 10%;
  left: 15%;
  font-size: 24px;
  animation: rocketFly 8s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(69, 224, 255, 0.8));
  z-index: 2;
}

.rocket-trail {
  position: absolute;
  top: 15%;
  left: 20%;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, rgba(69, 224, 255, 0.8), transparent);
  border-radius: 999px;
  animation: trailGrow 8s ease-in-out infinite;
  transform-origin: left center;
  z-index: 1;
}

@keyframes rocketFly {
  0%, 100% {
    transform: translate(0, 0) rotate(-45deg);
  }
  25% {
    transform: translate(30px, -20px) rotate(-30deg);
  }
  50% {
    transform: translate(60px, -40px) rotate(0deg);
  }
  75% {
    transform: translate(90px, -20px) rotate(30deg);
  }
}

@keyframes trailGrow {
  0%, 100% {
    width: 0;
    opacity: 0;
  }
  10% {
    width: 50px;
    opacity: 0.6;
  }
  50% {
    width: 100px;
    opacity: 0.8;
  }
  90% {
    width: 50px;
    opacity: 0.6;
  }
}

.metric-badge {
  position: absolute;
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(5, 8, 20, 0.95);
  border: 1px solid rgba(69, 224, 255, 0.6);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 11px;
  color: #e0e5ff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 15px rgba(69, 224, 255, 0.3);
  animation: float 6s ease-in-out infinite;
  z-index: 3;
}

.metric-badge::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, rgba(69, 224, 255, 0.6), transparent);
  animation: linePulse 2s infinite ease-in-out;
}

.metric-badge-1::before {
  bottom: -40px;
  right: 50%;
  transform: translateX(50%);
}

.metric-badge-2::before {
  top: -40px;
  right: 20%;
  transform: rotate(-45deg);
  transform-origin: bottom;
}

.metric-badge-3::before {
  bottom: -40px;
  left: 20%;
  transform: rotate(45deg);
  transform-origin: top;
}

.metric-badge-4::before {
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes linePulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.8;
    transform: scaleY(1.2);
  }
}

.metric-badge-label {
  font-size: 10px;
  color: #a6afc7;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.metric-badge-value {
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(120deg, #45e0ff, #2f7cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.metric-badge-1 {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.metric-badge-2 {
  bottom: 20%;
  left: 5%;
  animation-delay: 1.5s;
}

.metric-badge-3 {
  top: 30%;
  right: -5%;
  animation-delay: 3s;
}

.metric-badge-4 {
  bottom: 10%;
  left: 15%;
  animation-delay: 4.5s;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-card {
  border-radius: 16px;
  padding: 20px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease-out;
}

.stat-card:hover::before {
  left: 100%;
}

.stat-card-primary {
  background: radial-gradient(circle at -30% -40%, rgba(76, 132, 255, 0.4), rgba(7, 12, 27, 0.97));
  border: 1px solid rgba(60, 80, 140, 0.9);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.stat-card-secondary {
  background: radial-gradient(circle at 120% -40%, rgba(148, 108, 255, 0.4), rgba(7, 12, 27, 0.97));
  border: 1px solid rgba(103, 136, 231, 0.9);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75), 0 0 25px rgba(69, 224, 255, 0.3);
}

.stat-icon {
  font-size: 24px;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(69, 224, 255, 0.6));
  animation: pulse 3s infinite ease-in-out;
}

.stat-content {
  flex: 1;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(120deg, #45e0ff, #2f7cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 16px;
  color: #e0e5ff;
  font-weight: 500;
  margin-bottom: 6px;
}

.stat-note {
  font-size: 14px;
  color: #a6afc7;
  line-height: 1.6;
}

.hero-tags-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 20px 0 16px;
}

.hero-tag-main {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f5f7ff;
}

.hero-tag {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(99, 139, 255, 0.9);
  background: radial-gradient(circle at 0 -60%, rgba(99, 139, 255, 0.4), rgba(7, 11, 24, 0.98));
  font-size: 13px;
  color: #e0e5ff;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.hero-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(99, 139, 255, 0.4);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.hero-pill {
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(164, 188, 255, 0.9);
  background: rgba(3, 8, 20, 0.96);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f3f5ff;
}

.hero-metric {
  text-align: right;
}

.hero-metric-value {
  font-size: 20px;
  font-weight: 600;
  background: linear-gradient(120deg, #45e0ff, #2f7cff 40%, #b36fff 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-metric-label {
  font-size: 11px;
  color: #ccd6ff;
}

.hero-bars {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 4px;
  align-items: flex-end;
  height: 72px;
  margin: 12px 0 10px;
}

.hero-bars span {
  width: 100%;
  height: var(--h);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(214, 228, 255, 0.96), rgba(47, 124, 255, 0.15));
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out backwards;
}

.hero-bars span:nth-child(1) { animation-delay: 0.1s; }
.hero-bars span:nth-child(2) { animation-delay: 0.2s; }
.hero-bars span:nth-child(3) { animation-delay: 0.3s; }
.hero-bars span:nth-child(4) { animation-delay: 0.4s; }
.hero-bars span:nth-child(5) { animation-delay: 0.5s; }
.hero-bars span:nth-child(6) { animation-delay: 0.6s; }

.hero-bars span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(69, 224, 255, 0.95), rgba(47, 124, 255, 0.1));
  animation: shimmer 2s infinite;
}

.hero-bars span:hover {
  transform: scaleY(1.1);
  box-shadow: 0 0 15px rgba(69, 224, 255, 0.6);
}

.hero-card-body {
  font-size: 12px;
  color: #b3bcdf;
}

.hero-tags {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hero-tags li {
  padding: 3px 7px;
  border-radius: 999px;
  border: 1px solid rgba(78, 97, 154, 0.9);
  background: rgba(3, 8, 24, 0.95);
}

/* Sections */
.section {
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(69, 224, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

.section.visible::before {
  opacity: 1;
}

.section::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(69, 224, 255, 0.08), transparent 70%);
  border-radius: 50%;
  animation: pulse 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.section-alt::after {
  background: radial-gradient(circle, rgba(150, 105, 255, 0.08), transparent 70%);
  top: auto;
  bottom: -100px;
  left: -100px;
  right: auto;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-alt {
  background: radial-gradient(circle at top, #101636 0, #050812 70%);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  margin-bottom: 36px;
}

.section-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-chart {
  width: 120px;
  height: 120px;
  position: relative;
}

.chart-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(69, 224, 255, 0.4));
}

.chart-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 3s ease-out forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.chart-dot {
  animation: pulse 2s infinite ease-in-out;
  opacity: 0;
  animation-fill-mode: forwards;
}

.chart-dot:nth-child(1) { animation-delay: 0.2s; }
.chart-dot:nth-child(2) { animation-delay: 0.4s; }
.chart-dot:nth-child(3) { animation-delay: 0.6s; }
.chart-dot:nth-child(4) { animation-delay: 0.8s; }
.chart-dot:nth-child(5) { animation-delay: 1s; }
.chart-dot:nth-child(6) { animation-delay: 1.2s; }
.chart-dot-active {
  animation: pulse 2s infinite ease-in-out, glow 3s infinite ease-in-out;
  animation-delay: 1.4s;
}

.section-pill {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7f8ab3;
  margin: 0 0 10px;
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.section-subtitle {
  margin: 12px 0 0;
  font-size: 19px;
  color: #a6afc7;
  max-width: 500px;
  line-height: 1.7;
}

/* Cards (services) */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}

.cards-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(69, 224, 255, 0.05), transparent 70%);
  border-radius: 50%;
  animation: pulse 15s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

.card {
  border-radius: 16px;
  background: radial-gradient(circle at -30% -40%, rgba(76, 132, 255, 0.35), rgba(7, 12, 27, 0.97));
  border: 1px solid rgba(60, 80, 140, 0.9);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
  padding: 24px 20px 20px;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s ease-out;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(69, 224, 255, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
}

.card:hover::after {
  opacity: 1;
  animation: rotate 10s linear infinite;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(69, 224, 255, 0.1), transparent);
  transition: left 0.5s ease-out;
}

.card:hover::before {
  left: 100%;
}

.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(99, 139, 255, 0.3);
  border-color: rgba(99, 139, 255, 1);
}

.card-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(8, 15, 38, 0.96);
  border: 1px solid rgba(160, 184, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, background 0.3s ease-out;
  position: relative;
  overflow: hidden;
}

.card-icon-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(69, 224, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.card:hover .card-icon-wrapper::before {
  opacity: 1;
}

.card-icon-svg {
  width: 24px;
  height: 24px;
  stroke: #45e0ff;
  transition: transform 0.3s ease-out, stroke 0.3s ease-out;
}

.card:hover .card-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 25px rgba(69, 224, 255, 0.6);
  background: rgba(8, 15, 38, 1);
}

.card:hover .card-icon-svg {
  transform: scale(1.1);
  stroke: #45e0ff;
  filter: drop-shadow(0 0 8px rgba(69, 224, 255, 0.8));
}

.card-featured {
  position: relative;
  border-color: rgba(69, 224, 255, 0.9) !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65), 0 0 30px rgba(69, 224, 255, 0.2) !important;
}

.cursor-pointer {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 60px;
  height: 60px;
  color: #45e0ff;
  filter: drop-shadow(0 0 15px rgba(69, 224, 255, 0.8));
  animation: cursorMove 4s ease-in-out infinite;
  z-index: 10;
  pointer-events: none;
}

.cursor-pointer svg {
  width: 100%;
  height: 100%;
}

@keyframes cursorMove {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-10px, -10px) rotate(10deg);
  }
  50% {
    transform: translate(-5px, -15px) rotate(-5deg);
  }
  75% {
    transform: translate(-15px, -5px) rotate(5deg);
  }
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
}

.card-text {
  font-size: 16px;
  line-height: 1.7;
  color: #a6afc7;
  margin: 0;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 24px;
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(150, 105, 255, 0.1), transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 9px;
  position: relative;
  z-index: 1;
}

.steps::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(69, 224, 255, 0.3), transparent);
  z-index: 0;
  animation: lineGrow 2s ease-out forwards;
}

@keyframes lineGrow {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}

.step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(9, 14, 32, 0.98), #050812);
  border: 1px solid rgba(63, 83, 147, 0.95);
  padding: 18px 16px;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s ease-out;
  position: relative;
  overflow: hidden;
}

.step-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}

.step-image {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.step-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 15px rgba(69, 224, 255, 0.4));
  transition: transform 0.3s ease-out, filter 0.3s ease-out;
}

.step:hover .step-svg {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 25px rgba(69, 224, 255, 0.7));
}

.step-number {
  position: relative;
  z-index: 2;
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #45e0ff, #2f7cff);
  transform: scaleY(0);
  transition: transform 0.3s ease-out;
}

.step:hover::before {
  transform: scaleY(1);
}

.step:hover {
  transform: translateX(5px) translateY(-2px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75), 0 0 20px rgba(69, 224, 255, 0.2);
  border-color: rgba(104, 136, 230, 1);
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: radial-gradient(circle at 25% 0, #45e0ff, #2f7cff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 0 14px rgba(69, 224, 255, 0.8);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  animation: pulse 3s infinite ease-in-out;
}

.step:hover .step-number {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 0 25px rgba(69, 224, 255, 1);
}

.step-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
}

.step-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #a6afc7;
}

.process-side {
  border-radius: 20px;
  background: radial-gradient(circle at 120% -40%, rgba(148, 108, 255, 0.55), rgba(5, 9, 22, 0.98));
  border: 1px solid rgba(103, 136, 231, 0.9);
  padding: 32px 24px 28px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.process-side-visual {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-preview {
  width: 100%;
  max-width: 220px;
  height: 160px;
  position: relative;
}

.dashboard-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(69, 224, 255, 0.3));
  animation: float 8s ease-in-out infinite;
}

.dashboard-svg rect {
  animation: fadeInUp 1s ease-out backwards;
}

.dashboard-svg rect:nth-child(2) { animation-delay: 0.1s; }
.dashboard-svg rect:nth-child(3) { animation-delay: 0.2s; }
.dashboard-svg rect:nth-child(4) { animation-delay: 0.3s; }
.dashboard-svg rect:nth-child(5) { animation-delay: 0.4s; }
.dashboard-svg circle { animation-delay: 0.5s; }
.dashboard-svg path { animation-delay: 0.6s; }

.process-side::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(148, 108, 255, 0.2), transparent);
  animation: pulse 6s ease-in-out infinite;
  pointer-events: none;
}

.process-side:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.8), 0 0 30px rgba(148, 108, 255, 0.3);
}

.process-side-title {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.process-side-text {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.8;
  color: #d0d8f0;
  text-align: center;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  font-size: 14px;
}

.metric {
  border-radius: 16px;
  padding: 18px 14px;
  background: linear-gradient(135deg, rgba(69, 224, 255, 0.12), rgba(47, 124, 255, 0.08));
  border: 1.5px solid rgba(135, 166, 255, 0.6);
  transition: all 0.3s ease-out;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.metric::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease-out;
}

.metric:hover::before {
  left: 100%;
}

.metric:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 28px rgba(135, 166, 255, 0.5), 0 0 20px rgba(69, 224, 255, 0.3);
  border-color: rgba(135, 166, 255, 1);
  background: linear-gradient(135deg, rgba(69, 224, 255, 0.18), rgba(47, 124, 255, 0.12));
}

.metric-value {
  display: block;
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(120deg, #45e0ff, #9669ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
  line-height: 1.2;
}

.metric-label {
  font-size: 13px;
  color: #b8c4e8;
  line-height: 1.5;
  font-weight: 500;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 22px;
}

.about-text-block {
  font-size: 18px;
  line-height: 1.8;
  color: #a6afc7;
}

.about-text-block p {
  margin: 0 0 16px;
}

.about-text-block strong {
  color: #f4f6ff;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.about-metric {
  border-radius: 14px;
  border: 1px solid rgba(96, 124, 209, 0.9);
  background: rgba(4, 8, 20, 0.96);
  padding: 14px 12px;
  font-size: 14px;
}

.about-metric-value {
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

.about-metric-label {
  font-size: 13px;
  color: #a6afc7;
  line-height: 1.5;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
  position: relative;
}

.contact-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(69, 224, 255, 0.06), transparent 70%);
  border-radius: 50%;
  animation: pulse 18s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.contact-info {
  font-size: 19px;
  color: #a6afc7;
  position: relative;
  line-height: 1.8;
}

.contact-visual {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-icon-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(69, 224, 255, 0.5));
  animation: float 6s ease-in-out infinite;
  z-index: 1;
  position: relative;
}

.contact-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(69, 224, 255, 0.4);
  animation: pulseRing 2s infinite ease-out;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.contact-list-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  color: #45e0ff;
  filter: drop-shadow(0 0 8px rgba(69, 224, 255, 0.6));
  animation: pulse 3s infinite ease-in-out;
}

.contact-info .section-head {
  margin-bottom: 18px;
  align-items: flex-start;
}

.contact-info .section-subtitle {
  max-width: none;
}

.contact-info p {
  margin-top: 0;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  font-size: 19px;
}

.contact-list li {
  margin-bottom: 8px;
}

.contact-list a {
  color: #e0e5ff;
  font-weight: 500;
}

.contact-note {
  font-size: 17px;
  color: #8f96ba;
  line-height: 1.7;
  margin-top: 20px;
}

/* Новая красивая форма связи */
.contact-form-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}

.contact-form-subtitle {
  font-size: 19px;
  color: #b8c1e0;
  margin: 0 0 40px;
  line-height: 1.7;
  text-align: center;
}

.contact-form-wrapper {
  border-radius: 20px;
  background: rgba(5, 8, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 52px 44px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(69, 224, 255, 0.1);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s ease-out;
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(69, 224, 255, 0.6), transparent);
  animation: shimmer 3s infinite;
}

.contact-form-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.9), 0 0 50px rgba(69, 224, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.25);
}

.form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

label {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.01em;
}

input,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  padding: 20px 24px;
  font-family: inherit;
  font-size: 18px;
  line-height: 1.6;
  outline: none;
  transition: all 0.3s ease-out;
  resize: vertical;
  backdrop-filter: blur(10px);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  font-size: 18px;
}

input:focus,
textarea:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(69, 224, 255, 0.2), 0 8px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

input:hover,
textarea:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.btn-submit {
  width: 100%;
  padding: 22px 36px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #45e0ff 0%, #2f7cff 50%, #9669ff 100%);
  background-size: 200% 200%;
  animation: gradientShift 5s ease infinite;
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.3s ease-out;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(69, 224, 255, 0.4), 0 0 20px rgba(69, 224, 255, 0.2);
  margin-top: 8px;
}

.btn-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease-out;
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(69, 224, 255, 0.5), 0 0 30px rgba(69, 224, 255, 0.3);
}

.btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 6px 20px rgba(69, 224, 255, 0.4);
}

.error {
  display: none;
  font-size: 14px;
  color: #ff4d4f;
  line-height: 1.5;
}

/* Footer */
.footer {
  margin-top: 40px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(34, 45, 78, 0.9);
  font-size: 15px;
  line-height: 1.6;
  color: #7d86aa;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 960px) {
  .nav,
  .header-cta {
    display: none;
  }

  .burger {
    display: block;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-platforms {
    flex-direction: column;
    gap: 8px;
  }

  .platform-item {
    width: 100%;
    justify-content: flex-start;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-form-title {
    font-size: 32px;
  }

  .contact-form-subtitle {
    font-size: 17px;
    margin-bottom: 28px;
  }

  .contact-form-wrapper {
    padding: 28px 20px;
  }

  .about-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-visual {
    margin-top: 20px;
    width: 100%;
  }

  .visual-chart {
    width: 100px;
    height: 100px;
  }

  .step-visual {
    flex-direction: row;
    gap: 12px;
  }

  .step-image {
    width: 50px;
    height: 50px;
  }

  .dashboard-preview {
    max-width: 150px;
    height: 110px;
  }

  .contact-icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-platforms {
    flex-direction: column;
  }

  .platform-item {
    width: 100%;
  }

  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .metrics,
  .about-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .metric {
    padding: 14px 10px;
  }

  .metric-value {
    font-size: 20px;
  }

  .metric-label {
    font-size: 12px;
  }

  .process-side {
    padding: 24px 18px 22px;
  }

  .process-side-title {
    font-size: 20px;
  }

  .process-side-text {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    margin-top: 20px;
  }

  .hero-globe-wrapper {
    height: 250px;
  }

  .hero-globe {
    width: 160px;
    height: 160px;
  }

  .metric-badge {
    font-size: 10px;
    padding: 5px 8px;
  }

  .metric-badge-value {
    font-size: 12px;
  }

  .stat-card {
    padding: 12px 14px;
  }

  .stat-value {
    font-size: 18px;
  }
}


