:root {
  --bg: #FFFBF6;
  --ink: #1F1B18;
  --muted: #645A51;
  --subtle: #7D7065;
  --brand: #A0612F;
  --brand-dark: #7E4A22;
  --brand-deep: #653A1A;
  --brand-ink: #8A5328;
  --brand-soft: #F8E6D2;
  --tan: #D6A36F;
  --gold: #E0A23E;
  --sand: #FBEFE2;
  --line: #F1E4D6;
  --ok: #2F8A5B;
  --ok-ink: #1F6B44;
  --ok-soft: #E3F2E9;
  --price: #1E7F78;
  --card-shadow: 0 8px 24px rgba(122, 74, 34, 0.08);
  --display: "Poppins", sans-serif;
  --body: Arial, Helvetica, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); text-decoration: underline; }
::selection { background: var(--brand-soft); color: var(--ink); }
input:focus-visible, textarea:focus-visible, button:focus-visible, a:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
svg { display: block; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.display { font-family: var(--display); }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--display);
  font-weight: 600;
  border-radius: 999px;
  display: inline-block;
  transition: background .15s, box-shadow .15s;
}
.btn:hover { text-decoration: none; }
.btn-primary { color: #fff; background: var(--brand); box-shadow: 0 8px 20px rgba(160, 97, 47, 0.32); }
.btn-primary:hover { color: #fff; background: var(--brand-dark); }
.btn-lg { font-size: 15px; padding: 16px 28px; }

/* ---------- Nav ---------- */
.nav {
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
  padding: 24px 0;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); }
.brand:hover { text-decoration: none; color: var(--ink); }
.brand-name { font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.brand-name span { color: var(--gold); }
.nav-links { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.nav-links a { font-family: var(--display); font-size: 14px; font-weight: 500; color: var(--ink); }
.nav-links .btn { color: #fff; font-size: 14px; padding: 12px 22px; box-shadow: 0 6px 16px rgba(160, 97, 47, 0.3); }
.nav-links .btn:hover { color: #fff; }

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.panel { padding: 64px 40px; margin: 24px 0; border-radius: 32px; }
.panel-sand { background: var(--sand); }
.panel-cream { background: #FCF4E0; }
.panel-stone { background: #F4EEE7; }

.h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700; letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.lead { font-size: 16px; line-height: 1.75; color: var(--muted); margin: 0 0 36px; max-width: 60ch; }

.card { background: #fff; border-radius: 22px; box-shadow: var(--card-shadow); }

.grid { display: grid; gap: 20px; }

/* ---------- Hero ---------- */
.hero {
  padding: 56px 40px 72px; margin-top: 8px;
  background: var(--sand); border-radius: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 52px; align-items: center;
}
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; color: var(--brand-ink);
  font-family: var(--display); font-size: 12px; font-weight: 600;
  padding: 7px 16px; border-radius: 999px;
}
.hero .pill { box-shadow: 0 2px 8px rgba(122, 74, 34, 0.10); }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(32px, 4.4vw, 50px);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.15;
  margin: 20px 0 0; text-wrap: balance;
}
.hero-sub { font-size: 17px; line-height: 1.75; color: var(--muted); margin: 22px 0 0; max-width: 50ch; text-wrap: pretty; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-note { font-size: 13px; color: var(--subtle); margin-top: 16px; }

.orders { background: #fff; border-radius: 22px; box-shadow: 0 24px 60px rgba(31, 27, 24, 0.14); padding: 24px; }
.orders-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.orders-title { font-family: var(--display); font-size: 13px; font-weight: 700; }
.live {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--display); font-size: 11px; font-weight: 600;
  color: var(--ok-ink); background: var(--ok-soft);
  padding: 5px 10px; border-radius: 999px;
}
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .35; } }
.orders-list { display: grid; gap: 8px; }
.order {
  display: grid; grid-template-columns: 22px 1fr auto; gap: 10px; align-items: center;
  padding: 10px 12px; background: var(--bg); border-radius: 12px;
}
.order.pending { background: #FDF7EC; }
.order-name { font-size: 13px; font-weight: 600; }
.order-meta { font-size: 11px; color: var(--subtle); }
.tag { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.tag-ok { color: var(--ok-ink); background: var(--ok-soft); }
.tag-wait { color: #8A5508; background: #FBEFD9; }
.orders-foot {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.orders-foot-label { font-size: 12px; color: var(--subtle); }
.orders-foot-value { font-family: var(--display); font-size: 16px; font-weight: 700; color: var(--ok-ink); }

/* ---------- Masalah ---------- */
.flow-card { padding: 32px 30px; border-radius: 24px; }
.flow-label { margin-bottom: 14px; font-family: var(--display); font-size: 11px; font-weight: 700; color: var(--subtle); letter-spacing: .04em; }
.flow-label.after { color: var(--brand-ink); }
.flow { display: flex; flex-wrap: wrap; align-items: center; row-gap: 8px; }
.flow + .flow-label { margin-top: 28px; }
.flow-step {
  background: var(--bg); border-radius: 14px; padding: 14px 18px;
  font-size: 13px; color: var(--muted); flex: 1; min-width: 150px;
}
.flow-step.base { color: var(--ink); font-weight: 500; }
.flow-step.done { background: var(--ok-soft); color: var(--ok-ink); font-weight: 600; }
.flow-arrow { flex: none; margin: 0 6px; }
.flow-note { font-size: 12px; color: var(--subtle); margin-top: 20px; max-width: 60ch; }

.cost {
  background: var(--brand); border-radius: 24px; padding: 36px 32px; margin-top: 20px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 28px; align-items: center;
}
.cost-figure { font-family: var(--display); font-size: clamp(20px, 2.4vw, 26px); font-weight: 700; letter-spacing: -0.01em; line-height: 1.35; color: #fff; text-wrap: balance; }
.cost-text { font-size: 15px; line-height: 1.75; color: #FFF1E2; }

/* ---------- Skenario ---------- */
.scenarios { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.scenario { padding: 28px 24px; }
.icon-box { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.chip { font-family: var(--display); font-size: 11px; font-weight: 600; display: inline-block; padding: 5px 12px; border-radius: 999px; }
.card-title { font-family: var(--display); font-size: 17px; font-weight: 600; margin-top: 14px; line-height: 1.3; }
.card-text { font-size: 14px; line-height: 1.7; color: var(--muted); margin-top: 12px; }

.tone-brown { --tone: #7E4A22; --tone-bg: #F8E6D2; }
.tone-green { --tone: #2E6B48; --tone-bg: #E2F0E6; }
.tone-blue  { --tone: #35467D; --tone-bg: #E4E9F5; }
.tone-gold  { --tone: #855F0A; --tone-bg: #FBEFCF; }
.tone-red   { --tone: #9A4130; --tone-bg: #F8E2DA; }
.tone-brown .icon-box, .tone-green .icon-box, .tone-blue .icon-box, .tone-gold .icon-box, .tone-red .icon-box { background: var(--tone-bg); color: var(--tone); }
.tone-brown .chip, .tone-green .chip, .tone-blue .chip, .tone-gold .chip, .tone-red .chip { background: var(--tone-bg); color: var(--tone); }

/* ---------- Cara kerja ---------- */
.steps { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.step { padding: 26px 22px; }
.step-num {
  width: 38px; height: 38px; border-radius: 12px; background: var(--brand-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; color: var(--brand-dark);
}
.step-title { font-family: var(--display); font-size: 16px; font-weight: 600; margin-top: 16px; }
.step-time { font-size: 12px; color: var(--subtle); margin-top: 4px; }

.pricing { margin-top: 40px; }
.pricing-title { font-family: var(--display); font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.pricing-lead { font-size: 14px; line-height: 1.7; color: var(--subtle); margin: 0 0 20px; max-width: 60ch; }
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr)); gap: 14px; }
.tier { border-radius: 18px; padding: 20px 18px; text-align: center; }
.tier svg { margin: 0 auto 10px; }
.tier-kicker { font-family: var(--display); font-size: 10px; font-weight: 700; color: var(--subtle); letter-spacing: .04em; }
.tier-name { font-family: var(--display); font-size: 13px; font-weight: 600; margin-top: 6px; }
.tier-desc { font-size: 11px; line-height: 1.4; color: var(--subtle); margin-top: 4px; }
.price { font-family: var(--display); font-size: 16px; font-weight: 700; color: var(--price); margin-top: 8px; }

.recurring {
  display: flex; align-items: center; gap: 14px;
  border-radius: 16px; padding: 16px 20px; margin-top: 24px; max-width: 420px;
}
.recurring-body { flex: 1; min-width: 0; }
.recurring-badge {
  font-family: var(--display); font-size: 10px; font-weight: 700; color: var(--brand-ink);
  background: var(--brand-soft); border-radius: 999px; padding: 4px 10px;
  display: inline-block; margin-bottom: 6px;
}
.recurring .price { margin-top: 0; font-size: 15px; white-space: nowrap; }

/* ---------- Model ---------- */
.model { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 48px; align-items: center; }
.wheel { position: relative; width: 280px; height: 280px; margin: 0 auto; max-width: 100%; }
.wheel > div { position: absolute; border-radius: 50%; }
.wheel-outer { inset: 0; background: conic-gradient(from 0deg, #A0612F 0 33.33%, #8A5328 33.33% 66.66%, #D6A36F 66.66% 100%); }
.wheel-gap { inset: 14px; background: #FCF4E0; }
.wheel-inner { inset: 14px; background: conic-gradient(from 0deg, #A0612F 0 32%, #FCF4E0 32% 34.33%, #653A1A 34.33% 65.33%, #FCF4E0 65.33% 67.66%, #D6A36F 67.66% 98.66%, #FCF4E0 98.66% 100%); }
.wheel-hub {
  inset: 70px; background: #fff; box-shadow: 0 8px 24px rgba(31, 27, 24, 0.1);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--display); font-size: 16px; font-weight: 700; line-height: 1.3;
}
.wheel .wheel-label {
  border-radius: 0; transform: translate(-50%, -50%);
  font-family: var(--display); font-size: 12px; font-weight: 700; color: #fff; letter-spacing: 0.02em;
}
.pillars { display: grid; gap: 16px; }
.pillar { display: flex; gap: 14px; align-items: flex-start; }
.pillar-dot { width: 12px; height: 12px; border-radius: 50%; margin-top: 5px; flex: none; }
.pillar strong { font-family: var(--display); font-size: 14px; }
.pillar p { font-size: 14px; line-height: 1.65; color: var(--muted); margin: 2px 0 0; }

/* ---------- Bukan ---------- */
.compare { border-radius: 24px; overflow: hidden; }
.compare-row { display: grid; grid-template-columns: 1fr 1fr; }
.compare-row + .compare-row { border-top: 1px solid var(--line); }
.compare-head { padding: 14px 26px; font-family: var(--display); font-size: 11px; font-weight: 700; letter-spacing: .04em; }
.compare-head.no { color: var(--subtle); background: #FAF5EF; }
.compare-head.yes { color: var(--brand-ink); background: var(--sand); }
.compare-cell { padding: 16px 26px; font-size: 14px; display: flex; gap: 10px; align-items: flex-start; }
.compare-cell svg { flex: none; margin-top: 3px; }
.compare-cell.no { color: var(--subtle); }
.compare-cell.yes { color: var(--ink); font-weight: 500; background: #FFF8F0; }

.quote { background: var(--sand); border-radius: 22px; padding: 26px 28px; margin-top: 20px; max-width: 68ch; }
.quote-q { font-size: 14px; color: var(--subtle); }
.quote-a { font-family: var(--display); font-size: clamp(18px, 2.1vw, 21px); font-weight: 600; line-height: 1.5; margin-top: 8px; text-wrap: pretty; }

/* ---------- Founder ---------- */
.founder { display: grid; grid-template-columns: minmax(0, 280px) minmax(0, 1fr); gap: 36px; align-items: start; }
.founder-photo {
  display: block; width: 100%; height: 300px; border-radius: 22px;
  object-fit: cover; object-position: 55% 30%;
  background: #EADCCB;
}
.founder-name { font-family: var(--display); font-size: 18px; font-weight: 600; margin-top: 16px; }
.founder-role { font-size: 13px; color: var(--subtle); margin-top: 4px; }
.founder-bio p { font-size: 15px; line-height: 1.75; color: var(--muted); margin: 16px 0 0; max-width: 58ch; }
.founder-bio p:first-child { font-size: 16px; color: var(--ink); margin: 0; text-wrap: pretty; }

/* ---------- FAQ ---------- */
.faqs { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 16px; }
.faq { border-radius: 20px; padding: 24px 26px; }
.faq h3 { font-family: var(--display); font-size: 15px; font-weight: 600; margin: 0; }
.faq p { font-size: 14px; line-height: 1.7; color: var(--muted); margin: 10px 0 0; }

/* ---------- CTA ---------- */
.cta { margin: 0 -24px; background: var(--brand); border-radius: 32px 32px 0 0; padding: 72px 24px 80px; }
.cta-inner {
  max-width: 1112px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 48px; align-items: start;
}
.cta .pill { padding: 6px 14px; }
.cta h2 {
  font-family: var(--display); font-size: clamp(26px, 3.2vw, 36px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.2; color: #fff; margin: 18px 0 0; text-wrap: balance;
}
.cta-text { font-size: 15px; line-height: 1.75; color: #FFF3E6; margin: 18px 0 0; max-width: 46ch; }

.booking { background: #fff; border-radius: 24px; overflow: hidden; min-width: 0; }
.calendly-inline-widget { min-width: 320px; height: 700px; }
.booking noscript { display: block; padding: 28px 26px; text-align: center; }

/* ---------- Footer ---------- */
.footer { padding: 32px 0 52px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; font-size: 13px; color: var(--subtle); }
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.footer a { color: var(--subtle); }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .wrap { padding: 0 16px; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.btn) { display: none; }
  .hero { padding: 40px 20px 48px; gap: 36px; border-radius: 24px; }
  .panel { padding: 48px 20px; border-radius: 24px; }
  .section { padding: 48px 0; }
  .flow-card { padding: 24px 20px; }
  .flow { flex-direction: column; align-items: stretch; }
  .flow-step { min-width: 0; }
  .flow-arrow { transform: rotate(90deg); margin: 2px auto; }
  .cost { padding: 28px 22px; }
  .compare-head, .compare-cell { padding-left: 16px; padding-right: 16px; }
  .compare-cell { font-size: 13px; }
  .founder { grid-template-columns: 1fr; }
  .founder > div:first-child { max-width: 280px; }
  .cta { margin: 0 -16px; padding: 56px 16px 64px; }
  .calendly-inline-widget { min-width: 0; height: 900px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .live-dot { animation: none; }
}

/* ---------- Consent banner ---------- */
.footer-links { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.link-btn { background: none; border: none; padding: 0; font: inherit; color: var(--subtle); cursor: pointer; }
.link-btn:hover { color: var(--brand-dark); text-decoration: underline; }

.consent {
  position: fixed; left: 24px; bottom: 24px; z-index: 50;
  width: min(440px, calc(100vw - 32px));
  background: #fff; border-radius: 22px; padding: 22px 22px 20px;
  box-shadow: 0 24px 60px rgba(31, 27, 24, 0.18), 0 0 0 1px var(--line);
}
.consent[hidden] { display: none; }
.consent-title { font-family: var(--display); font-size: 15px; font-weight: 600; }
.consent-text { font-size: 13px; line-height: 1.65; color: var(--muted); margin: 8px 0 0; }
.consent-prefs { display: grid; gap: 10px; margin-top: 16px; }
.consent-prefs[hidden] { display: none; }
.consent-opt {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--bg); border-radius: 14px; padding: 12px 14px; cursor: pointer;
  font-size: 12px; line-height: 1.5; color: var(--subtle);
}
.consent-opt input { flex: none; width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--brand); }
.consent-opt input:disabled { cursor: default; }
.consent-opt strong { display: block; font-family: var(--display); font-size: 13px; font-weight: 600; color: var(--ink); }
.consent-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.consent-btn {
  flex: 1 1 auto; font-family: var(--display); font-size: 13px; font-weight: 600;
  border: none; border-radius: 999px; padding: 12px 16px; cursor: pointer; transition: background .15s;
}
.consent-btn[hidden] { display: none; }
.consent-btn-main { color: #fff; background: var(--brand); }
.consent-btn-main:hover { background: var(--brand-dark); }
.consent-btn-alt { color: var(--ink); background: var(--brand-soft); }
.consent-btn-alt:hover { background: #F1D6BA; }

@media (max-width: 760px) {
  .consent { left: 16px; bottom: 16px; padding: 18px; }
}
