:root {
  --bg-0: #faf8f4;
  --bg-1: #ffffff;
  --bg-2: #f3efe6;
  --bg-3: #e8e2d2;
  --border: #ddd6c3;
  --text-0: #1c2635;
  --text-1: #4a5568;
  --text-2: #8b93a3;
  --navy: #1e3a5f;
  --navy-2: #16283f;
  --gold: #a3752e;
  --gold-soft: #c9a86a;
  --success: #2f6f4f;
  --danger: #a83246;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-card: 0 8px 24px rgba(30, 58, 95, 0.08);
  --shadow-lift: 0 18px 40px rgba(30, 58, 95, 0.14);
  --font-sans: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg-0);
  color: var(--text-0);
  -webkit-font-smoothing: antialiased;
}

.wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(250, 248, 244, 0.88);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-0);
  margin-right: auto;
}

.brand__mark {
  width: 28px;
  height: 28px;
}

.brand__name {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.site-nav {
  display: flex;
  gap: 22px;
}

.site-nav a {
  color: var(--text-1);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s var(--ease-premium);
}

.site-nav a:hover {
  color: var(--navy);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 14.5px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease-premium), box-shadow 0.2s var(--ease-premium),
    border-color 0.2s var(--ease-premium), color 0.2s var(--ease-premium), background 0.2s var(--ease-premium);
}

.btn--primary {
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 8px 20px -6px rgba(30, 58, 95, 0.45);
}

.btn--primary:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -6px rgba(30, 58, 95, 0.5);
}

.btn--outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn--outline:hover {
  background: var(--navy);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn--sm {
  padding: 9px 18px;
  font-size: 13px;
}

.btn--block {
  width: 100%;
}

/* Hero */
.hero {
  padding: 72px 0 56px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-0));
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__heading {
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin: 0;
  color: var(--navy);
}

.grad-text {
  background: linear-gradient(135deg, var(--navy), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  max-width: 640px;
  color: var(--text-1);
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

.hero__note {
  color: var(--text-2);
  font-size: 13px;
  margin: 4px 0 0;
}

/* Section shared */
.section-heading {
  text-align: center;
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: var(--navy);
}

.section-sub {
  text-align: center;
  color: var(--text-2);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.pain,
.solution,
.features,
.pricing,
.faq {
  padding: 64px 0;
}

.pain {
  border-top: 1px solid var(--border);
}

/* Masalah */
.pain__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pain__card {
  padding: 28px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-1);
  box-shadow: var(--shadow-card);
}

.pain__icon {
  font-size: 26px;
  display: block;
  margin-bottom: 14px;
}

.pain__card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
}

.pain__card p {
  margin: 0;
  color: var(--text-1);
  font-size: 14.5px;
  line-height: 1.65;
}

/* Penyelesaian */
.solution {
  background: var(--navy);
  border-top: 1px solid var(--border);
}

.solution .section-heading {
  color: #ffffff;
}

.solution__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

.solution__row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.solution__row:last-child {
  border-bottom: none;
}

.solution__mark {
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--gold-soft);
  letter-spacing: 0.05em;
  padding-top: 2px;
}

.solution__row h3 {
  margin: 0 0 6px;
  font-size: 16.5px;
  font-weight: 800;
  color: #ffffff;
}

.solution__row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

/* Features */
.features {
  border-top: 1px solid var(--border);
}

.phase-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}

.phase-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-1);
}

.phase-step__num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11.5px;
  font-weight: 800;
  background: var(--navy);
  color: #ffffff;
  flex-shrink: 0;
}

.phase-step__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-1);
  white-space: nowrap;
}

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

.feature-card {
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-1);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-premium), border-color 0.3s var(--ease-premium);
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}

.feature-card__icon {
  font-size: 24px;
  display: block;
  margin-bottom: 12px;
}

.feature-card h3 {
  margin: 0 0 6px;
  font-size: 15.5px;
  font-weight: 800;
  color: var(--navy);
}

.feature-card p {
  margin: 0;
  color: var(--text-2);
  font-size: 13.5px;
  line-height: 1.6;
}

/* Pricing */
.pricing {
  border-top: 1px solid var(--border);
}

.price-card {
  max-width: 420px;
  margin: 0 auto;
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-soft);
  background: linear-gradient(160deg, var(--bg-1), var(--bg-2));
  box-shadow: var(--shadow-lift);
  text-align: center;
}

.price-card__badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--gold) 14%, transparent);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.price-card__original {
  color: var(--text-2);
  font-size: 13px;
  margin-bottom: 4px;
}

.price-card__original span {
  text-decoration: line-through;
  font-weight: 700;
}

.price-card__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}

.price-card__currency {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-1);
}

.price-card__value {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.price-card__desc {
  color: var(--text-2);
  font-size: 14px;
  margin: 0 0 22px;
  line-height: 1.6;
}

.price-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.price-card__list li {
  font-size: 14px;
  color: var(--text-1);
  padding-left: 26px;
  position: relative;
}

.price-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.steps__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 170px;
  text-align: center;
}

.steps__num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid var(--navy);
  color: var(--navy);
}

.steps__item p {
  margin: 0;
  font-size: 13.5px;
  color: var(--text-1);
}

/* FAQ */
.faq {
  border-top: 1px solid var(--border);
}

.faq__list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-1);
}

.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 14.5px;
  list-style: none;
  color: var(--navy);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 800;
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item p {
  margin: 12px 0 0;
  color: var(--text-1);
  font-size: 13.5px;
  line-height: 1.6;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  background: var(--bg-2);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand--footer .brand__mark {
  width: 22px;
  height: 22px;
}

.brand--footer .brand__name {
  font-size: 14px;
}

.footer__whatsapp {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.footer__whatsapp:hover {
  color: var(--gold);
}

.footer__copy {
  color: var(--text-2);
  font-size: 12px;
  margin: 0;
  width: 100%;
  text-align: center;
}

/* Responsive */
@media (max-width: 760px) {
  .site-nav {
    display: none;
  }

  .pain__grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .solution__row {
    flex-direction: column;
    gap: 8px;
  }

  .steps {
    gap: 24px;
  }

  .site-footer__inner {
    flex-direction: column;
    text-align: center;
  }
}
