/* Hero Component Styles */
.hero {
  padding: 60px 0 80px;
  background: var(--gradient);
  position: relative;
}

.hero-content {
  max-width: 500px;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 700;
  color: var(--text);
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 0 24px;
  line-height: 1.5;
}

.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--bg);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
  max-width: 400px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 10px;
}

.trust-indicators {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 12px;
}

.trust-icon {
  font-size: 14px;
}

.cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.hero-visual {
  position: absolute;
  top: 50%;
  left: 55%; /* Soldan 55% mesafe - daha büyük için */
  transform: translateY(-50%);
  width: 42%; /* Büyültüldü */
  height: 320px; /* Büyültüldü */
  z-index: 1;
  max-width: 500px; /* Maksimum genişlik artırıldı */
}

.dashboard-preview {
  width: 100%;
  height: 100%;
  background: var(--surface);
  border: 2px solid var(--border-light); /* Daha kalın border */
  border-radius: 12px;
  box-shadow: 0 8px 24px var(--shadow-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; /* overlay için */
}

.dashboard-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.06); /* 1-2 tık karartma */
  pointer-events: none;
}

.dashboard-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-visual {
    position: static;
    transform: none;
    width: 100%;
    height: 250px; /* Büyültüldü */
    margin-top: 24px;
  }
  
  .dashboard-image {
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0 60px;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .trust-indicators {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }
}
