﻿.hero {
  padding: 140px 0 80px;
  background: linear-gradient(
    135deg,
    var(--bg-white) 0%,
    var(--primary-ultra-light) 30%,
    #f0e7ff 60%,
    var(--bg-white) 100%
  );
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(79, 70, 229, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: floatOrb 8s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: floatOrb 10s ease-in-out infinite reverse;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  animation: pulseGlow 3s ease-in-out infinite;
}

.hero-badge i {
  color: var(--warning);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 .gradient-text {
  color: var(--primary);
  border-right: 2px solid var(--primary);
  padding-right: 4px;
  animation: smoothBlink 1s ease-in-out infinite;
}

@keyframes smoothBlink {
  0%,
  100% {
    border-color: var(--primary);
  }
  50% {
    border-color: transparent;
  }
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
}

.hero-stat {
  text-align: left;
}

.hero-stat h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2px;
}

.hero-stat p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.hero-image {
  position: relative;
  z-index: 1;
  animation: floatImage 6s ease-in-out infinite;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.25);
  width: 100%;
  object-fit: cover;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  bottom: 10px;
  left: 10px;
  border: 2px solid var(--primary-light);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: -20px;
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.1) 0%,
    rgba(139, 92, 246, 0.05) 100%
  );
  border-radius: var(--radius-xl);
  z-index: -2;
  filter: blur(30px);
}

.trusted-section {
  padding: 48px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-white);
  overflow: hidden;
}

.trusted-section .trusted-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 24px;
}

.trusted-section .typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--primary);
  margin-left: 2px;
  animation: blink 0.7s step-end infinite;
  vertical-align: text-bottom;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.trusted-track {
  display: flex;
  animation: scrollLogos 25s linear infinite;
  width: max-content;
  gap: 60px;
}

.trusted-track:hover {
  animation-play-state: paused;
}

.trusted-track span {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(
    180deg,
    #c0c0c0 0%,
    #8a8a8a 40%,
    #b0b0b0 50%,
    #707070 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: contrast(1.2);
  opacity: 0.7;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.trusted-track span:hover {
  opacity: 1;
  filter: contrast(1.4);
}

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