:root {
  --color-bg: #fafbfc;
  --color-primary: #2563eb;
  --color-secondary: #1d4ed8;
  --color-accent: #3b82f6;
  --color-success: #10b981;
  --color-text: #0f172a;
  --color-subtext: #475569;
  --color-muted: #64748b;
  --color-card: #ffffff;
  --color-border: #e2e8f0;
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
  --gradient-accent: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 25px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 0 1px rgba(37, 99, 235, 0.1), 0 8px 32px rgba(37, 99, 235, 0.15);
  --border-radius: 16px;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}


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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 2rem 0;
  background: var(--color-bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
  border: 1px solid rgba(37, 99, 235, 0.15);
  color: var(--color-primary);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  align-self: flex-start;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  font-size: 1rem;
  color: var(--color-success);
}

.hero-title {
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-subtext);
  line-height: 1.6;
  max-width: 600px;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2), 0 12px 40px rgba(37, 99, 235, 0.25);
}

.btn-secondary {
  background: var(--color-card);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 1rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--color-text);
}

.stat-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-accent);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.trust-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.trust-label {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-logo {
  padding: 0.75rem 1.5rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  font-weight: 600;
  color: var(--color-subtext);
  font-size: 0.9rem;
  transition: var(--transition);
  opacity: 0.8;
}

.trust-logo:hover {
  opacity: 1;
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-card {
  background: var(--color-card);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  max-width: 500px;
  position: relative;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: between;
  margin-bottom: 1.5rem;
}

.dashboard-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text);
}

.growth-indicator {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.metric {
  text-align: center;
  padding: 1rem;
  background: rgba(37, 99, 235, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, 0.05);
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
}

.metric-label {
  font-size: 0.8rem;
  color: var(--color-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.chart-area {
  height: 100px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(59, 130, 246, 0.02) 100%);
  border-radius: 8px;
  display: flex;
  align-items: end;
  padding: 0.5rem;
  gap: 0.25rem;
}

.chart-bar {
  background: var(--gradient-primary);
  border-radius: 4px 4px 0 0;
  flex: 1;
  min-height: 20px;
}

.floating-element {
  position: absolute;
  background: var(--color-card);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  animation: float 6s ease-in-out infinite;
}

.floating-element-1 {
  top: -20px;
  right: -20px;
  animation-delay: 0s;
}

.floating-element-2 {
  bottom: -20px;
  left: -20px;
  animation-delay: 3s;
}

.floating-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.floating-icon {
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-visual {
    order: 2;
  }

  .hero-badge {
    align-self: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-stats {
    justify-content: center;
    gap: 1.5rem;
  }

  .trust-logos {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 0 1rem;
    gap: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .trust-logos {
    gap: 1rem;
  }

  .dashboard-card {
    max-width: 100%;
    padding: 1.5rem;
  }

  .floating-element {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}