    /* Reset & Tema Dasar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #0f1115;
  color: #1e222b;
  overflow-x: hidden;
  display: block;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px 20px 20px; /* Padding atas 100px agar tidak tertutup menu top */
}

/* --- HERO SECTION --- */
.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px 40px 10px; /* Jarak atas disesuaikan agar tidak tertutup menu */
  background: radial-gradient(circle at top, rgba(255, 107, 53, 0.05), transparent 60%);
}

.hero-container {
  max-width: 800px;
  width: 100%;
}

.hero-tagline {
  color: #ff6b35;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 0px;
}

.hero-section h1 {
  font-size: 3.5rem;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 25px;
}

.hero-section h1 .highlight {
  color: #ff6b35;
  position: relative;
}

.hero-section p {
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Tombol Desain Slanted (Miring) seperti di halaman kontak */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-primary, .btn-secondary {
  padding: 16px 30px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  transform: skewX(-15deg);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: #ff6b35;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
  border: none;
}

.btn-primary:hover {
  background: #e55a2b;
  transform: skewX(-15deg) translateY(-3px);
  box-shadow: 0 15px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #ff6b35;
  transform: skewX(-15deg) translateY(-3px);
}

.btn-primary span, .btn-secondary span {
  display: inline-block;
  transform: skewX(15deg); /* Mengembalikan teks tetap tegak */
}

/* --- FITUR UTAMA SECTION --- */
.features-section-1 {
  background: #161920;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}

.section-title-1 {
  text-align: left;
  margin-bottom: 60px;
}

.section-title-1 h2 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.section-title-1 p {
  color: #64748b;
  font-size: 1rem;
}

.features-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.section-title p {
  color: #64748b;
  font-size: 1rem;
}

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

.feature-card {
  background: #161920;
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.feature-card i {
  font-size: 2rem;
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 107, 53, 0.15);
}

.feature-card h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.feature-card p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* --- RESPONSIVITAS MOBILE --- */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.3rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}
