/* HERO */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 150px;
}

.hero-container {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h2 {
  font-size: 36px;   /* lebih kecil, tetap tegas */
  font-weight: 700;
  line-height: 1.3;
}

.hero-title {
  color: #38bdf8;
  font-weight: 600;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #d1d5db; /* abu-abu terang */
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.btn-primary {
  background: #2563eb;
  padding: 15px 25px;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.btn-outline {
  border: 1px solid #38bdf8;
  padding: 15px 25px;
  border-radius: 10px;
  text-decoration: none;
  color: #38bdf8;
}

/* IMAGE */

.hero-image img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #38bdf8;
}

/* IDENTITY */

.identity {
  padding: 120px 20px;
  background: rgba(0, 0, 0, 0.6);
}

.identity-container {
  max-width: 1000px;
  margin: auto;
}

.identity-container h3 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 60px;
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
}

.card h4 {
  color: #38bdf8;
}

/* RESPONSIVE */

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

  .identity-grid {
    grid-template-columns: 1fr;
  }
}
