/* SimpelPKH — Halaman Paket & Harga (premium layout) */

.paket-body {
  min-height: 100vh;
  color: #f1f5f9;
  background:
    radial-gradient(ellipse 100% 70% at 50% -15%, rgba(59, 130, 246, 0.18), transparent 55%),
    radial-gradient(ellipse 80% 50% at 100% 50%, rgba(6, 182, 212, 0.06), transparent 50%),
    linear-gradient(180deg, #0f172a 0%, #020617 55%, #0c1222 100%);
}

.paket-shell {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 70px);
  overflow: hidden;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.paket-shell::before,
.paket-shell::after {
  content: '';
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.25;
}

.paket-shell::before {
  width: 500px;
  height: 500px;
  left: -96px;
  top: -96px;
  background: rgba(37, 99, 235, 0.7);
}

.paket-shell::after {
  width: 400px;
  height: 400px;
  right: -56px;
  bottom: 10%;
  background: rgba(6, 182, 212, 0.7);
}

.paket-main {
  position: relative;
  z-index: 1;
}

.paket-page {
  --paket-max: 72rem;
  --paket-gap: clamp(1rem, 2.5vw, 1.75rem);
  --paket-section: clamp(2.5rem, 5vw, 4rem);
  --paket-radius: 1.25rem;
  --paket-border: rgba(255, 255, 255, 0.12);
  --paket-surface: rgba(255, 255, 255, 0.06);
  --paket-text: #f1f5f9;
  --paket-muted: #94a3b8;
  --paket-accent: #3b82f6;
  --paket-cyan: #22d3ee;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(1.25rem, 4vw, 2.5rem) clamp(1rem, 3vw, 1.5rem) clamp(3rem, 8vw, 5rem);
  color: var(--paket-text);
  font-family: 'Poppins', 'Plus Jakarta Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.paket-container {
  width: 100%;
  max-width: var(--paket-max);
  margin-inline: auto;
}

/* —— Hero —— */
.paket-hero {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
  padding-bottom: 0.5rem;
}

.paket-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(59, 130, 246, 0.35);
  background: rgba(59, 130, 246, 0.12);
  font-size: 0.75rem;
  font-weight: 600;
  color: #93c5fd;
  letter-spacing: 0.02em;
}

.paket-hero__title {
  margin: 0;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #f8fafc;
}

.paket-hero__lead {
  margin: 1.25rem 0 0;
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  line-height: 1.65;
  color: var(--paket-muted);
}

/* —— Section header —— */
.paket-section {
  margin-top: var(--paket-section);
}

.paket-section__head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.paket-section__head--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.paket-section__eyebrow {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #60a5fa;
}

.paket-section__title {
  margin: 0;
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f8fafc;
}

.paket-section__desc {
  margin: 0.65rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--paket-muted);
}

/* —— Info grid (2 cards) —— */
.paket-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--paket-gap);
}

@media (min-width: 900px) {
  .paket-info-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

/* —— Cards —— */
.paket-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: var(--paket-radius);
  border: 1px solid var(--paket-border);
  background: var(--paket-surface);
  backdrop-filter: blur(12px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.paket-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.paket-card--glow {
  border-color: rgba(34, 211, 238, 0.35);
  background: linear-gradient(145deg, rgba(6, 182, 212, 0.12) 0%, rgba(59, 130, 246, 0.08) 50%, rgba(255, 255, 255, 0.04) 100%);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.08), 0 24px 48px -24px rgba(6, 182, 212, 0.35);
}

.paket-card__top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.paket-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.875rem;
  background: rgba(59, 130, 246, 0.18);
  color: #93c5fd;
}

.paket-card--glow .paket-card__icon {
  background: rgba(6, 182, 212, 0.22);
  color: #67e8f9;
}

.paket-card__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.3;
}

@media (min-width: 640px) {
  .paket-card__title {
    font-size: 1.25rem;
  }
}

.paket-card__body {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #cbd5e1;
}

.paket-card__body + .paket-card__body {
  margin-top: 0.85rem;
}

.paket-card__body a {
  font-weight: 600;
  color: #67e8f9;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(103, 232, 249, 0.45);
}

.paket-card__body a:hover {
  color: #a5f3fc;
}

/* —— Pricing grid —— */
.paket-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .paket-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .paket-pricing-grid {
    gap: 2.25rem;
  }
}

.paket-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  border-radius: 1.125rem;
  border: 1px solid rgba(59, 130, 246, 0.35);
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.75) 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 20px 40px -24px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.paket-price-card:hover {
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.25), 0 24px 48px -20px rgba(37, 99, 235, 0.35);
}

.paket-price-card--featured {
  border-color: rgba(59, 130, 246, 0.65);
  background: linear-gradient(165deg, rgba(30, 58, 138, 0.45) 0%, rgba(15, 23, 42, 0.88) 55%);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.3), 0 28px 56px -22px rgba(37, 99, 235, 0.45);
}

.paket-price-card--premium {
  border-color: rgba(245, 158, 11, 0.4);
}

.paket-price-card--premium:hover {
  border-color: rgba(251, 191, 36, 0.55);
  box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.2), 0 24px 48px -20px rgba(180, 83, 9, 0.35);
}

.paket-price-card__ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.75rem 1rem 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

.paket-price-card__ribbon:not(.paket-price-card__ribbon--spacer) {
  background: linear-gradient(90deg, #1d4ed8, #3b82f6);
}

.paket-price-card--premium .paket-price-card__ribbon:not(.paket-price-card__ribbon--spacer) {
  background: linear-gradient(90deg, #b45309, #f59e0b);
  color: #1c1917;
}

.paket-price-card__ribbon--spacer {
  visibility: hidden;
  pointer-events: none;
}

.paket-price-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0.25rem 1.5rem 1.5rem;
  min-height: 0;
}

.paket-price-card__head {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 1rem;
}

.paket-price-card__plan-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  margin-top: 0.25rem;
  padding: 0.65rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(59, 130, 246, 0.45);
  background: rgba(15, 23, 42, 0.6);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: #e2e8f0;
  line-height: 1.2;
}

.paket-price-card--standard .paket-price-card__plan-box {
  border-color: rgba(34, 211, 238, 0.45);
  color: #cffafe;
}

.paket-price-card--premium .paket-price-card__plan-box {
  border-color: rgba(251, 191, 36, 0.55);
  background: rgba(120, 53, 15, 0.2);
  color: #fde68a;
}

.paket-price-card__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 4.25rem;
  margin-top: 0;
  text-align: center;
}

.paket-price-card__currency {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
}

.paket-price-card__amount {
  margin-top: 0.25rem;
  font-family: ui-monospace, 'Space Mono', monospace;
  font-size: clamp(1.5rem, 3.5vw, 1.875rem);
  font-weight: 700;
  line-height: 1.15;
  color: #f8fafc;
  white-space: nowrap;
}

.paket-price-card__period {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #94a3b8;
}

.paket-price-card__amount--text {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  line-height: 1.25;
  white-space: normal;
}

.paket-price-card__promo-slot {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 2.75rem;
  margin-top: 0.5rem;
  text-align: center;
}

.paket-price-card__promo {
  margin: 0;
  max-width: 100%;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.45;
  color: #86efac;
}

.paket-price-card__features {
  flex: 1 1 auto;
  margin: 1.5rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.paket-price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #cbd5e1;
}

.paket-price-card__features li span {
  flex: 1;
  min-width: 0;
}

.paket-price-card__check {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
  color: #34d399;
}

.paket-pricing-footnote {
  margin-top: 1.75rem;
  text-align: center;
}

.paket-pricing-footnote p {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #cbd5e1;
}

.paket-pricing-footnote p + p {
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #64748b;
}

/* —— Flow: 2 baris + garis penghubung —— */
.paket-flow {
  width: 100%;
  max-width: var(--paket-max);
  margin-inline: auto;
}

.paket-flow__rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.paket-flow__row {
  width: 100%;
}

.paket-flow__track {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
}

.paket-flow__bridge {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.1rem 0 0.2rem;
}

.paket-flow__bridge-lines {
  display: none;
}

.paket-flow__bridge-fallback {
  display: block;
}

/* Penghubung L: langkah 4 → 5 (desktop, CSS agar panah tidak distorsi) */
@media (min-width: 900px) {
  .paket-flow__track {
    flex-direction: row;
    align-items: stretch;
  }

  .paket-flow__bridge-lines {
    --paket-bridge-bend: 42%;
    --paket-bridge-x-end: 87.5%;
    --paket-bridge-x-start: 12.5%;
    position: relative;
    display: block;
    width: 100%;
    height: 2.85rem;
    margin: 0.1rem 0 0.15rem;
  }

  .paket-flow__bridge-line {
    position: absolute;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), rgba(125, 211, 252, 0.95));
    filter: drop-shadow(0 0 3px rgba(56, 189, 248, 0.4));
  }

  .paket-flow__bridge-line--down {
    left: var(--paket-bridge-x-end);
    top: 0;
    width: 1px;
    height: var(--paket-bridge-bend);
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.25), rgba(125, 211, 252, 0.95));
  }

  .paket-flow__bridge-line--across {
    top: var(--paket-bridge-bend);
    left: var(--paket-bridge-x-start);
    width: calc(var(--paket-bridge-x-end) - var(--paket-bridge-x-start));
    height: 1px;
    transform: translateY(-50%);
  }

  .paket-flow__bridge-line--across::before,
  .paket-flow__bridge-line--across::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #38bdf8;
    opacity: 0.65;
    transform: translateY(-50%);
    box-shadow: 0 0 6px rgba(56, 189, 248, 0.55);
  }

  .paket-flow__bridge-line--across::before {
    left: 0;
    transform: translate(-50%, -50%);
  }

  .paket-flow__bridge-line--across::after {
    right: 0;
    transform: translate(50%, -50%);
  }

  .paket-flow__bridge-line--to-five {
    left: var(--paket-bridge-x-start);
    top: var(--paket-bridge-bend);
    bottom: 0;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(125, 211, 252, 0.95), rgba(59, 130, 246, 0.35));
  }

  .paket-flow__bridge-arrow {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 6px;
    height: 6px;
    border: none;
    border-right: 1.5px solid #7dd3fc;
    border-bottom: 1.5px solid #7dd3fc;
    transform: translate(-50%, 50%) rotate(45deg);
    filter: drop-shadow(0 0 3px rgba(56, 189, 248, 0.5));
  }

  .paket-flow__bridge-fallback {
    display: none;
  }
}

/* —— Garis & panah antar langkah (premium) —— */
.paket-flow__connector {
  position: relative;
  flex-shrink: 0;
  background: none;
}

.paket-flow__connector::before,
.paket-flow__connector::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.paket-flow__connector--h {
  display: none;
}

.paket-flow__connector--v {
  width: 1px;
  height: 1.5rem;
  margin: 0 auto;
  background: none;
}

.paket-flow__connector--v::before {
  left: 50%;
  top: 0;
  bottom: 6px;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.25), rgba(125, 211, 252, 0.95));
}

.paket-flow__connector--v::after {
  left: 50%;
  bottom: 0;
  width: 5px;
  height: 5px;
  border: none;
  border-right: 1.5px solid #7dd3fc;
  border-bottom: 1.5px solid #7dd3fc;
  transform: translateX(-50%) rotate(45deg);
  filter: drop-shadow(0 0 3px rgba(56, 189, 248, 0.5));
}

@media (max-width: 899px) {
  .paket-flow__track .paket-flow__connector--h {
    display: block;
    width: 1px;
    height: 1.1rem;
    margin: 0 auto;
    background: none;
  }

  .paket-flow__track .paket-flow__connector--h::before {
    left: 50%;
    top: 0;
    bottom: 5px;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.25), rgba(125, 211, 252, 0.95));
  }

  .paket-flow__track .paket-flow__connector--h::after {
    left: 50%;
    bottom: 0;
    right: auto;
    top: auto;
    width: 5px;
    height: 5px;
    border: none;
    border-right: 1.5px solid #7dd3fc;
    border-bottom: 1.5px solid #7dd3fc;
    transform: translateX(-50%) rotate(45deg);
  }
}

@media (min-width: 900px) {
  .paket-flow__connector--h {
    display: block;
    align-self: center;
    width: clamp(0.75rem, 2vw, 1.5rem);
    height: 1px;
    margin: 0 0.1rem;
    background: none;
  }

  .paket-flow__connector--h::before {
    left: 0;
    right: 6px;
    top: 50%;
    height: 1px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), rgba(125, 211, 252, 0.95));
  }

  .paket-flow__connector--h::after {
    right: 0;
    top: 50%;
    left: auto;
    bottom: auto;
    width: 5px;
    height: 5px;
    border: none;
    border-top: 1.5px solid #7dd3fc;
    border-right: 1.5px solid #7dd3fc;
    transform: translateY(-50%) rotate(45deg);
    filter: drop-shadow(0 0 3px rgba(56, 189, 248, 0.45));
  }
}

.paket-flow-card {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 0;
  min-height: 7.5rem;
  padding: 1.15rem 1.2rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, rgba(15, 23, 42, 0.65) 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 12px 28px -18px rgba(0, 0, 0, 0.5);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.paket-flow-card:hover {
  border-color: rgba(96, 165, 250, 0.45);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.2), 0 16px 32px -14px rgba(37, 99, 235, 0.35);
}

.paket-flow-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  font-size: 0.875rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 6px 16px -4px rgba(37, 99, 235, 0.65);
}

.paket-flow-card__text {
  margin: 0;
  flex: 1;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #e2e8f0;
}

.paket-flow-card__text strong {
  color: #f8fafc;
  font-weight: 600;
}

@media (min-width: 768px) {
  .paket-flow-card {
    padding: 1.25rem 1.35rem 1.35rem;
    min-height: 8rem;
  }

  .paket-flow-card__text {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

/* —— CTA —— */
.paket-cta {
  margin-top: var(--paket-section);
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2.5rem);
  border-radius: 1.5rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.2) 0%, rgba(6, 182, 212, 0.08) 60%, rgba(255, 255, 255, 0.03) 100%);
  text-align: center;
  box-shadow: 0 32px 64px -32px rgba(15, 23, 42, 0.8);
}

.paket-cta__title {
  margin: 0;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 800;
  color: #f8fafc;
}

.paket-cta__desc {
  margin: 0.75rem auto 0;
  max-width: 32rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #94a3b8;
}

.paket-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.paket-btn {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.875rem;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}

.paket-btn:hover {
  transform: translateY(-1px);
}

.paket-btn--primary {
  background: linear-gradient(180deg, #3b82f6, #2563eb);
  color: #fff;
  box-shadow: 0 12px 28px -8px rgba(37, 99, 235, 0.65);
}

.paket-btn--primary:hover {
  opacity: 0.95;
}

.paket-btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #f1f5f9;
}

.paket-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.paket-back {
  margin-top: 2.5rem;
  text-align: center;
}

.paket-back a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
}

.paket-back a:hover {
  color: #e2e8f0;
}

/* Guest wrapper (#app) compatibility */
#app .paket-page {
  padding-top: 0.5rem;
}
