:root {
  /* Skema Warna Baru: Navy & White */
  --bg-top: #060644;      /* Warna Navy persis seperti logo */
  --bg-bottom: #03031f;   /* Navy yang lebih gelap untuk kedalaman */
  --primary: #ffffff;
  --secondary: #dcdcdc;   /* Silver/Light Gray sebagai pengganti rose/gold */
  --muted: rgba(255, 255, 255, 0.65);
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.12);
}

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

body {
  font-family: 'Poppins', sans-serif;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 255, 255, 0.03), transparent 40%),
    radial-gradient(circle at 90% 15%, rgba(255, 255, 255, 0.03), transparent 40%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  background-attachment: fixed;
  color: var(--primary);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 900px;
  animation: fadeUp 1s ease-out forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ SITE LOGO ============ */
.site-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.4s ease;
}
.site-logo:hover {
  transform: scale(1.05);
}
.site-logo img {
  width: 140px; /* Disesuaikan agar proporsional */
  height: auto;
  border-radius: 12px;
  /* Diberi sedikit bayangan putih agar terpisah dari background jika perlu */
  filter: drop-shadow(0px 8px 16px rgba(255, 255, 255, 0.05));
}
.site-logo-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  margin-bottom: 40px;
}

/* ============ HEADER ============ */
.text-center { text-align: center; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}
h1.brand {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 7vw, 68px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}
h1.brand em {
  font-style: italic;
  font-weight: 400;
  color: var(--secondary);
}
.tagline {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--muted);
  max-width: 640px;
  line-height: 1.6;
  margin: 0 auto 60px;
}

/* ============ SECTION LABEL ============ */
.section-label {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(24px, 4vw, 32px);
  color: var(--primary);
  margin-bottom: 6px;
}
.section-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
}

/* ============ PORTAL CARDS (THEMES) ============ */
.portals {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 70px;
}
.portal {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  padding: 26px;
  border-radius: 26px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.portal:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 600px) {
  .portal { flex-direction: column; align-items: flex-start; gap: 20px; }
  .portal-shot { width: 100% !important; height: 180px !important; }
}

.portal-shot {
  width: 180px;
  min-width: 180px;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.portal-shot img { 
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  transition: transform 0.5s ease;
}
.portal:hover .portal-shot img { transform: scale(1.08); }

.portal-info { flex: 1; display: flex; flex-direction: column; height: 100%; justify-content: center; }
.portal-name {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--primary);
}
.portal-vibe {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 500;
}
.portal-desc {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: var(--bg-top);
  background: var(--primary);
  transition: all 0.3s ease;
}
.btn-demo:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* ============ PRICING ============ */
.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px; 
  margin: 0 auto 24px;
}
@media (max-width: 600px) {
  .pricing { grid-template-columns: 1fr; gap: 30px; }
}

.price-card {
  border-radius: 22px;
  padding: 32px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); }

.price-card.featured {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.3);
  transform: scale(1.03);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-3px); }

@media (max-width: 768px) {
  .price-card.featured { transform: scale(1); }
  .price-card.featured:hover { transform: scale(1) translateY(-3px); }
}

.price-tag {
  position: absolute;
  top: -13px;
  right: 24px;
  background: var(--primary);
  color: var(--bg-top);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}
.price-name {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
}
.price-amount {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}
.price-amount span { font-size: 13px; color: var(--muted); font-weight: 400; }

.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  flex: 1;
}
.price-list li {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.price-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-size: 12px;
  top: 1px;
}

.btn-order {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--bg-top);
  background: var(--primary);
  transition: all 0.3s ease;
}
.btn-order:hover {
  background: var(--secondary);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}
.price-card:not(.featured) .btn-order {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.price-card:not(.featured) .btn-order:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ============ CUSTOM ORDER BANNER ============ */
.custom-order {
  max-width: 760px;
  margin: 0 auto 70px;
  padding: 30px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px dashed rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 650px) {
  .custom-order { flex-direction: column; text-align: center; }
}
.custom-info h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 8px;
}
.custom-info p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}
.btn-custom {
  flex-shrink: 0;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--bg-top);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-custom:hover {
  background: var(--secondary);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* ============ ORDER STEPS ============ */
.steps {
  display: flex;
  gap: 20px;
  margin-bottom: 70px;
}
@media (max-width: 600px) {
  .steps { flex-direction: column; }
}
.step {
  flex: 1;
  border-radius: 20px;
  padding: 26px 22px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}
.step::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.step:hover::after { opacity: 1; }

.step-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 8px;
}
.step-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.step-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* ============ FOOTER CTA ============ */
.footer {
  border-radius: 26px;
  padding: 40px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 600px) {
  .footer { flex-direction: column; text-align: center; }
}
.footer-title {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}
.footer-sub {
  font-size: 15px;
  color: var(--muted);
}
.footer-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-btn-wa:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px -5px rgba(37, 211, 102, 0.5);
}