* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  background-color: #eef1f5;
  color: #2d2d2d;
  line-height: 1.6;
}

header {
  background: linear-gradient(135deg, #0f172a, #2563eb);
  color: white;
  text-align: center;
  padding: 30px 20px 50px;
  position: relative;
}

.header-top {
  position: absolute;
  top: 20px;
  left: 20px;
}
header h1 {
  margin: 0;
  font-size: 2.5em;
  letter-spacing: 1px;
}

header p {
  margin-top: 8px;
  font-size: 1.1em;
  color: #d1d5db;
}

section {
  max-width: 700px;
  margin: -20px auto 20px;
  background: white;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
}

section:hover {
  transform: translateY(-4px);
}
h2 {
  color: #1f2937;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 8px;
  margin-top: 0;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 6px;
}

footer {
  text-align: center;
  padding: 25px;
  color: #9ca3af;
  font-size: 0.9em;
}
.foto-profil {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  margin-top: 20px;
  margin-bottom: 15px;
}
.produk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.produk-item {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 22px 18px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.produk-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.produk-icon {
  font-size: 2em;
  margin-bottom: 8px;
}

.produk-desc {
  color: #6b7280;
  font-size: 0.9em;
  margin-bottom: 15px;
  min-height: 55px;
}

.harga-box {
  border-top: 1px solid #e5e7eb;
  padding-top: 12px;
}

.harga-baris {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
}

.harga-label {
  color: #6b7280;
  font-size: 0.9em;
}

.harga-nilai {
  font-weight: bold;
  color: #2563eb;
}

.harga {
  font-weight: bold;
  color: #2563eb;
  margin-bottom: 0;
}
.paket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.paket-item {
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
}

.paket-item h3 {
  margin-top: 0;
  color: #1f2937;
  font-size: 1.4em;
}

.paket-harga {
  font-size: 1.6em;
  font-weight: bold;
  color: #2563eb;
  margin: 10px 0 20px;
}

.paket-fitur {
  list-style: none;
  padding: 0;
  text-align: left;
}

.paket-fitur li {
  padding: 8px 0;
  border-bottom: 1px solid #e5e7eb;
}

.paket-fitur li::before {
  content: "✓ ";
  color: #2563eb;
  font-weight: bold;
}

.paket-advance {
  border-color: #2563eb;
  background: #eff6ff;
  transform: scale(1.03);
  .paket-advance {
  border-color: #2563eb;
  background: #eff6ff;
  transform: scale(1.03);
  position: relative;
}
}.subjudul {
  text-align: center;
  color: #6b7280;
  margin-top: -10px;
  margin-bottom: 20px;
}

.paket-desc {
  color: #6b7280;
  font-size: 0.9em;
  min-height: 40px;
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: white;
  font-size: 0.75em;
  font-weight: bold;
  padding: 4px 14px;
  border-radius: 20px;
}
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-tag {
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: 500;
}
.wa-link {
  color: #16a34a;
  font-weight: bold;
  text-decoration: none;
}

.wa-link:hover {
  text-decoration: underline;
}