:root {
  --void: #07010e;
  --deep: #0d0118;
  --p-dark: #1a0535;
  --p-mid: #380e78;
  --p-glow: #6920c5;
  --p-bright: #9940ff;
  --g-dark: #8a6812;
  --g-mid: #c8a748;
  --gold: #d9b64e;
  --g-light: #efce5e;
  --g-shine: #ffe060;
  --white: #ffffff;
  --muted: #b6a6d2;
  --dim: #786890;
  --glass: rgba(255, 255, 255, 0.035);
  --glass-border: rgba(201, 168, 76, 0.18);
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
  --gg: linear-gradient(135deg, #c8a748, #ffe060, #c8a748);
  --pg: linear-gradient(135deg, #380e78, #6920c5);
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  background: var(--void);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}

/* ── BG ORBS ── */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.3;
  animation: orb 14s ease-in-out infinite alternate;
}
.o1 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, #6920c5, transparent);
  top: -180px;
  left: -120px;
  animation-duration: 16s;
}
.o2 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, #c8a74840, transparent);
  top: 25%;
  right: -80px;
  animation-duration: 11s;
  animation-delay: -4s;
}
.o3 {
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, #380e78, transparent);
  bottom: 5%;
  left: 25%;
  animation-duration: 18s;
  animation-delay: -7s;
}
.o4 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #9940ff28, transparent);
  bottom: -80px;
  right: 18%;
  animation-duration: 12s;
  animation-delay: -2s;
}
@keyframes orb {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(28px, -38px) scale(1.04);
  }
  100% {
    transform: translate(-18px, 28px) scale(0.97);
  }
}
.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* ── UTILS ── */
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.sec {
  padding: 96px 0;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 100px;
  padding: 5px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--g-light);
  margin-bottom: 18px;
}
.tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.6);
  }
}
.h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
}
.h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 14px;
}
.h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.gold {
  background: var(--gg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: gs 3.5s ease-in-out infinite;
}
@keyframes gs {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 540px;
}
.divider {
  width: 52px;
  height: 2px;
  background: var(--gg);
  margin: 16px 0;
  border-radius: 2px;
}
.card {
  background: var(--glass);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow:
    0 22px 56px rgba(107, 32, 197, 0.2),
    0 0 0 1px rgba(201, 168, 76, 0.08);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 34px;
  border-radius: 100px;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.btn-g {
  background: var(--gg);
  background-size: 200%;
  animation: gs 3.5s ease-in-out infinite;
  color: #1a0900;
  box-shadow: 0 4px 22px rgba(201, 168, 76, 0.32);
}
.btn-g:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 34px rgba(201, 168, 76, 0.48);
}
.btn-o {
  background: transparent;
  color: var(--g-light);
  border: 1px solid rgba(201, 168, 76, 0.45);
  backdrop-filter: blur(10px);
}
.btn-o:hover {
  background: rgba(201, 168, 76, 0.09);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ── REVEAL ── */
.rev {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.rev.on {
  opacity: 1;
  transform: translateY(0);
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(7, 1, 14, 0.88);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  padding: 14px 0;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.55);
}
.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.logo-m {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 700;
  background: var(--gg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: gs 3.5s ease-in-out infinite;
  line-height: 1;
}
.logo-s {
  font-size: 9px;
  color: var(--dim);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gg);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a:hover {
  color: var(--g-light);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.ham span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}
.mob {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 1, 14, 0.97);
  backdrop-filter: blur(28px);
  z-index: 1001; /* ← lebih tinggi dari navbar (1000) */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mob.on {
  display: flex;
}
.mob a {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.mob a:hover {
  color: var(--g-light);
}
.mob-x {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 90px;
  left: 0;
  width: 280px;
  height: 280px;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  border-left: 1px solid rgba(201, 168, 76, 0.08);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 50px;
  right: 0;
  width: 200px;
  height: 200px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  border-right: 1px solid rgba(201, 168, 76, 0.08);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--g-light);
  margin-bottom: 26px;
  animation: fadeUp 0.8s ease both;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
.hero-title {
  animation: fadeUp 0.9s ease 0.08s both;
  margin-bottom: 22px;
}
.hero-title em {
  font-style: italic;
  display: block;
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 38px;
  max-width: 490px;
  animation: fadeUp 1s ease 0.16s both;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.24s both;
}
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.32s both;
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 700;
  background: var(--gg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: gs 3.5s ease-in-out infinite;
  line-height: 1;
}
.stat-lab {
  font-size: 11px;
  color: var(--dim);
  margin-top: 3px;
  font-weight: 500;
  letter-spacing: 0.4px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeIn 1s ease 0.3s both;
}
.hv-card {
  padding: 28px;
}
.hv-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}
.hv-icon {
  width: 42px;
  height: 42px;
  background: var(--pg);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.hv-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 600;
}
.hv-sub {
  font-size: 11px;
  color: var(--dim);
  margin-top: 2px;
}
.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.flow-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.025);
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 76, 0.07);
  transition: all 0.3s ease;
}
.flow-step:hover {
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.2);
}
.flow-n {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-weight: 700;
  background: var(--gg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: gs 3.5s ease-in-out infinite;
  flex-shrink: 0;
  font-size: 15px;
}
.flow-n-wrap {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.flow-txt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}
.flow-txt strong {
  color: var(--white);
  font-weight: 600;
}
.flow-badge {
  margin-left: auto;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.fb-gold {
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--g-light);
}
.fb-green {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  color: #7af7a8;
}
.float-card {
  position: absolute;
  padding: 14px 18px;
}
.float-top {
  top: -22px;
  right: -18px;
  animation: float 4.5s ease-in-out infinite alternate;
}
.float-bot {
  bottom: -18px;
  left: -18px;
  animation: float 4.5s ease-in-out 2s infinite alternate;
}
.fl-lab {
  font-size: 10px;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
  font-weight: 500;
}
.fl-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-weight: 700;
  background: var(--gg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: gs 3.5s ease-in-out infinite;
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-14px);
  }
}

/* ══════════════════════════════
   HOW IT WORKS (AI DEMO FLOW)
══════════════════════════════ */
.flow-sec {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(26, 5, 53, 0.4),
    transparent
  );
}
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  position: relative;
}
.flow-line {
  position: absolute;
  top: 52px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.25),
    rgba(201, 168, 76, 0.25),
    transparent
  );
}
.f-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
}
.f-num {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 168, 76, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.f-item:hover .f-num {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--gold);
  box-shadow: 0 0 26px rgba(201, 168, 76, 0.22);
}
.f-num span {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 700;
  background: var(--gg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: gs 3.5s ease-in-out infinite;
}
.f-icon {
  font-size: 22px;
  margin-bottom: 10px;
}
.f-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.f-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}
.f-pill {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 100px;
  font-size: 11px;
  color: var(--g-light);
  font-weight: 600;
}

/* ══════════════════════════════
   KEUNGGULAN
══════════════════════════════ */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.usp-card {
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
}
.usp-card.feat {
  background: rgba(107, 32, 197, 0.08);
  border-color: rgba(201, 168, 76, 0.38);
}
.usp-card.feat::before {
  content: "UNGGULAN";
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 3px 10px;
  background: var(--gg);
  color: #1a0900;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  border-radius: 100px;
}
.usp-no {
  font-family: "Cormorant Garamond", serif;
  font-size: 54px;
  font-weight: 900;
  background: var(--gg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: gs 4s ease-in-out infinite;
  opacity: 0.18;
  line-height: 1;
  position: absolute;
  top: 18px;
  right: 22px;
}
.usp-ico {
  width: 54px;
  height: 54px;
  background: rgba(201, 168, 76, 0.09);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.usp-pitch {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  font-style: italic;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
}

/* ══════════════════════════════
   KENAPA FILAMENT / DASHBOARD
══════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  margin-top: 56px;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}
.why-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}
.why-cta-box {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.15);
}
.why-cta-box p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.compare-table {
  width: 100%;
}
.compare-table th {
  text-align: left;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dim);
}
.compare-table th:not(:first-child) {
  text-align: center;
}
.compare-table td {
  padding: 12px 14px;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.compare-table td:not(:first-child) {
  text-align: center;
}
.compare-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}
.t-yes {
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
}
.t-no {
  color: #444;
  font-size: 16px;
}
.t-warn {
  color: #ff7a7a;
  font-size: 16px;
}

/* ══════════════════════════════
   PAKET HARGA
══════════════════════════════ */
.paket-head {
  text-align: center;
  margin-bottom: 52px;
}
.paket-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.ptab {
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: transparent;
  color: var(--muted);
}
.ptab.active {
  background: var(--gg);
  color: #1a0900;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.3);
}
.paket-group {
  display: none;
}
.paket-group.active {
  display: grid;
}
.pkg-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}
.pkg-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}
.pak {
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.pak.pop {
  background: rgba(107, 32, 197, 0.1);
  border-color: rgba(201, 168, 76, 0.48);
  transform: translateY(-10px);
}
.pop-b {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 18px 7px;
  background: var(--gg);
  color: #1a0900;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 0 0 14px 14px;
  white-space: nowrap;
  background-size: 200%;
  animation: gs 3.5s ease-in-out infinite;
}
.pak-cat {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}
.pak-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}
.pak-sub {
  font-size: 12px;
  color: var(--dim);
  margin-bottom: 20px;
}
.pak-price-wrap {
  padding: 16px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  margin-bottom: 20px;
}
.pak-price-lab {
  font-size: 10px;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.pak-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  background: var(--gg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: gs 3.5s ease-in-out infinite;
  line-height: 1;
}
.pak-price-note {
  font-size: 11px;
  color: var(--dim);
  margin-top: 5px;
}
.pak-dur {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 10px;
  margin-bottom: 18px;
  font-size: 12px;
  color: var(--g-light);
  font-weight: 500;
}
.pak-feat {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
  flex: 1;
}
.pak-feat li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.pak-feat .y {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 13px;
}
.pak-feat .n {
  color: #3a3a4a;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 13px;
}
.pak .btn {
  width: 100%;
  justify-content: center;
  padding: 12px 18px;
  font-size: 14px;
}
.new-badge {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(107, 32, 197, 0.3);
  border: 1px solid rgba(155, 64, 255, 0.4);
  border-radius: 100px;
  font-size: 9px;
  color: #c89fff;
  font-weight: 700;
  letter-spacing: 1px;
  margin-left: 6px;
  vertical-align: middle;
}

/* GEO info box */
.geo-info {
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: 16px;
  background: rgba(155, 64, 255, 0.06);
  border: 1px solid rgba(155, 64, 255, 0.2);
}
.geo-info h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.geo-info p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* ══════════════════════════════
   AFTER SALES / GROW
══════════════════════════════ */
.grow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.grow-card {
  padding: 26px 22px;
}
.grow-ico {
  font-size: 28px;
  margin-bottom: 14px;
}
.grow-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  background: var(--gg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: gs 3.5s ease-in-out infinite;
  margin-top: 6px;
}
.grow-note {
  font-size: 12px;
  color: var(--dim);
  margin-top: 3px;
}

/* ══════════════════════════════
   TESTIMONI
══════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.testi-card {
  padding: 28px;
}
.testi-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testi-q {
  font-size: 15px;
  color: var(--white);
  line-height: 1.7;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  margin-bottom: 18px;
}
.testi-q::before {
  content: "\201C";
  color: var(--gold);
  font-size: 22px;
  line-height: 0;
  vertical-align: -7px;
}
.testi-q::after {
  content: "\201D";
  color: var(--gold);
  font-size: 22px;
  line-height: 0;
  vertical-align: -7px;
}
.testi-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 168, 76, 0.09);
}
.testi-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  border: 2px solid rgba(201, 168, 76, 0.18);
}
.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.testi-role {
  font-size: 11px;
  color: var(--dim);
  margin-top: 2px;
}
.testi-pk {
  margin-left: auto;
  padding: 3px 10px;
  background: rgba(201, 168, 76, 0.09);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 100px;
  font-size: 10px;
  color: var(--g-light);
  font-weight: 600;
  white-space: nowrap;
}

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq-wrap {
  max-width: 780px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border-radius: 15px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 18px 22px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: all 0.3s ease;
  border-radius: 15px;
}
.faq-item.on .faq-q {
  border-radius: 15px 15px 0 0;
  border-bottom-color: transparent;
  background: rgba(201, 168, 76, 0.05);
}
.faq-q:hover {
  background: rgba(201, 168, 76, 0.04);
}
.faq-arr {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 18px;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item.on .faq-arr {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(201, 168, 76, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-top: none;
  border-radius: 0 0 15px 15px;
}
.faq-item.on .faq-a {
  max-height: 320px;
}
.faq-a-in {
  padding: 18px 22px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* ══════════════════════════════
   CTA FINAL
══════════════════════════════ */
.cta-sec {
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 75% 55% at 50% 50%,
    rgba(107, 32, 197, 0.18),
    transparent
  );
  pointer-events: none;
}
.cta-box {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 44px;
  text-align: center;
  position: relative;
}
.cta-box::before,
.cta-box::after {
  content: "◆";
  position: absolute;
  color: rgba(201, 168, 76, 0.18);
  font-size: 11px;
}
.cta-box::before {
  top: 18px;
  left: 22px;
}
.cta-box::after {
  bottom: 18px;
  right: 22px;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}
.cta-note {
  margin-top: 18px;
  font-size: 12px;
  color: var(--dim);
}
.cta-note strong {
  color: var(--gold);
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  padding: 56px 0 28px;
  border-top: 1px solid rgba(201, 168, 76, 0.09);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
.ft-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  font-weight: 700;
  background: var(--gg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: gs 3.5s ease-in-out infinite;
  line-height: 1;
  margin-bottom: 7px;
}
.ft-tag {
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-style: italic;
}
.ft-desc {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.7;
  max-width: 270px;
  margin-bottom: 22px;
}
.ft-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 22px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.22);
  border-radius: 100px;
  font-size: 13px;
  color: #7af7a8;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.ft-wa:hover {
  background: rgba(37, 211, 102, 0.16);
  border-color: rgba(37, 211, 102, 0.45);
}
.ft-col-h {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.ft-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.ft-links a {
  font-size: 13px;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.2s;
}
.ft-links a:hover {
  color: var(--g-light);
}
.ft-bot {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.ft-copy,
.ft-made {
  font-size: 12px;
  color: var(--dim);
}
.ft-made a {
  color: var(--gold);
  text-decoration: none;
}

/* ══════════════════════════════
   FLOATING WA
══════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  text-decoration: none;
}
.wa-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(37, 211, 102, 0.42);
  transition: all 0.3s ease;
  position: relative;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 34px rgba(37, 211, 102, 0.58);
}
.wa-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}
.wa-pulse {
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.22);
  animation: wap 2.8s ease-in-out infinite;
}
@keyframes wap {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.55);
    opacity: 0;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}
.wa-tip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(7, 1, 14, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(37, 211, 102, 0.22);
  border-radius: 10px;
  padding: 8px 14px;
  white-space: nowrap;
  font-size: 12px;
  color: var(--white);
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.wa-float:hover .wa-tip {
  opacity: 1;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .pkg-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .pak.pop {
    transform: none;
  }
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .ham {
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .hero-stats {
    gap: 18px;
  }
  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .flow-line {
    display: none;
  }
  .usp-grid {
    grid-template-columns: 1fr;
  }
  .pkg-4,
  .pkg-3 {
    grid-template-columns: 1fr;
  }
  .grow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .ft-bot {
    flex-direction: column;
    text-align: center;
  }
  .cta-box {
    padding: 36px 22px;
  }
  .sec {
    padding: 70px 0;
  }
  .wa-float {
    bottom: 22px;
    right: 22px;
  }
}
@media (max-width: 480px) {
  .grow-grid {
    grid-template-columns: 1fr;
  }
  .hero-cta {
    flex-direction: column;
  }
}

/* ══════════════════════════════════════════
   PAKET SLIDER — tambahkan ke END of style.css
══════════════════════════════════════════ */

@media (max-width: 900px) {
  .paket-group.active {
    display: flex !important;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding: 30px 28px 16px;
    margin: 0 -24px;
  }

  .paket-group.active::-webkit-scrollbar {
    display: none;
  }

  .paket-group.active .pak {
    scroll-snap-align: center;
    flex-shrink: 0;
    width: min(82vw, 320px);
    transform: none !important;
  }

  .paket-group.active .pak.pop {
    border-color: rgba(201, 168, 76, 0.48);
    background: rgba(107, 32, 197, 0.1);
  }
}

/* ── Slider Controls ── */
.slider-ctrl {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.slider-ctrl.active {
  display: flex;
}

@media (min-width: 901px) {
  .slider-ctrl {
    display: none !important;
  }
}

/* Progress bar */
.slider-progress-bar {
  width: 100%;
  max-width: 200px;
  height: 2px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 100px;
  overflow: hidden;
}

.slider-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #c8a748, #ffe060);
  border-radius: 100px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Nav row */
.slider-nav-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider-counter {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  color: var(--dim);
  min-width: 42px;
  text-align: center;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.slider-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.slider-dot {
  height: 7px;
  width: 7px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  padding: 0;
  background: rgba(201, 168, 76, 0.2);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-dot.active {
  background: linear-gradient(135deg, #c8a748, #ffe060);
  width: 24px;
}

/* Arrows */
.slider-arrows {
  display: flex;
  gap: 10px;
}

.slider-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.22);
  color: var(--g-light);
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  font-family: inherit;
  line-height: 1;
}

.slider-arrow:hover:not(:disabled) {
  background: rgba(201, 168, 76, 0.14);
  border-color: var(--gold);
  transform: scale(1.06);
}

.slider-arrow:disabled {
  opacity: 0.22;
  cursor: default;
}
/* ═══════════════════════════════════════════════════════════════════════════
   ORDER PAGE — Tambahkan ke bagian BAWAH public/style.css
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Layout ── */
.order-hero-sec { padding-top: 120px; padding-bottom: 80px; }

.order-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

@media (max-width: 900px) {
  .order-layout { grid-template-columns: 1fr; }
  .order-sidebar { order: -1; }
  .order-hero-sec { padding-top: 100px; }
}

/* ── Step Indicator ── */
.order-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
}

.ostep {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.35;
  transition: opacity 0.3s;
}

.ostep.active, .ostep.done { opacity: 1; }

.ostep-n {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--g-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: var(--g-mid);
  transition: all 0.3s;
  flex-shrink: 0;
}

.ostep.active .ostep-n {
  background: var(--g-mid);
  color: #000;
}

.ostep.done .ostep-n {
  background: var(--g-mid);
  color: #000;
  border-color: var(--g-mid);
}
.ostep.done .ostep-n::before { content: '✓'; }
.ostep.done .ostep-n .num { display: none; }

.ostep-lab {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}
.ostep.active .ostep-lab { color: var(--text); }
.ostep.done .ostep-lab   { color: var(--g-light); }

.ostep-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 10px;
}

/* ── Order Card ── */
.order-card {
  padding: 36px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 600px) {
  .order-card { padding: 24px 20px; }
}

/* ── Step Panels ── */
.order-step-panel {
  display: none;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.order-step-panel.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

/* ── Card Header ── */
.order-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.order-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(245,158,11,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.order-card-title { font-size: 18px; font-weight: 700; color: var(--text); }
.order-card-sub   { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ── Fields ── */
.ofield-group { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }

.ofield { display: flex; flex-direction: column; gap: 6px; }

.olab {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}
.req { color: var(--g-mid); }

.oinput, .oselect, .otextarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
  padding: 12px 14px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  width: 100%;
  outline: none;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.oinput:focus, .oselect:focus, .otextarea:focus {
  border-color: var(--g-mid);
  background: rgba(245,158,11,0.05);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.12);
}

.oinput.has-error, .oselect.has-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.12);
}

.oinput::placeholder, .otextarea::placeholder { color: var(--muted); opacity: 0.6; }

.oselect { cursor: pointer; }
.oselect option { background: #1a1a1a; color: var(--text); }

.otextarea { resize: vertical; min-height: 100px; }

/* WhatsApp prefix input */
.oinput-prefix-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.oinput-prefix-wrap:focus-within {
  border-color: var(--g-mid);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.12);
}

.oinput-prefix {
  padding: 12px 12px 12px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--g-light);
  background: rgba(245,158,11,0.08);
  border-right: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
  flex-shrink: 0;
}

.oinput.has-prefix {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  flex: 1;
}
.oinput.has-prefix:focus { box-shadow: none; }

/* Hint & char count */
.ohint        { font-size: 12px; color: var(--muted); margin-top: 2px; }
.ochar-count  { font-size: 12px; color: var(--muted); text-align: right; margin-top: 4px; }

/* Error */
.oerr {
  font-size: 12px;
  color: #f87171;
  display: none;
  margin-top: 2px;
}

/* ── File Upload ── */
.ofile-wrap {
  border: 1.5px dashed rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.ofile-wrap:hover {
  border-color: var(--g-mid);
  background: rgba(245,158,11,0.04);
}
.ofile-wrap.has-file {
  border-color: var(--g-mid);
  border-style: solid;
  background: rgba(245,158,11,0.06);
}

.ofile-icon  { font-size: 22px; flex-shrink: 0; }
.ofile-text  { display: flex; flex-direction: column; gap: 3px; }
.ofile-label { font-size: 14px; color: var(--text); font-weight: 500; }
.ofile-sub   { font-size: 12px; color: var(--muted); }

/* ── Summary ── */
.order-summary {
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 24px;
}

.osummary-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--g-light);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.osummary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 500px) {
  .osummary-grid { grid-template-columns: 1fr; }
}

.osummary-item { display: flex; flex-direction: column; gap: 2px; }
.osummary-lab  { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.osummary-val  { font-size: 13px; color: var(--text); font-weight: 500; }

/* ── Buttons ── */
.obtn-next { width: 100%; padding: 14px; font-size: 15px; }
.obtn-arrow { display: inline-block; transition: transform 0.2s; }
.obtn-next:hover .obtn-arrow { transform: translateX(4px); }

.obtn-row {
  display: flex;
  gap: 12px;
}

.obtn-back {
  padding: 13px 20px;
  font-size: 14px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  font-weight: 600;
  white-space: nowrap;
}
.obtn-back:hover { border-color: var(--g-mid); color: var(--g-light); }

.btn.btn-outline { /* reuse */
  padding: 13px 20px;
  font-size: 14px;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--muted);
  background: transparent;
}

.obtn-submit {
  flex: 1;
  padding: 14px;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.obtn-submit-load {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Loader spinner */
.oloader {
  width: 16px; height: 16px;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Success State ── */
.order-success {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 10px;
  gap: 4px;
}

.osuccess-icon  { font-size: 48px; margin-bottom: 8px; }
.osuccess-title { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.osuccess-sub   { font-size: 15px; color: var(--muted); line-height: 1.6; max-width: 340px; margin-bottom: 28px; }

.osuccess-countdown-wrap {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 16px;
  padding: 20px 32px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.osuccess-cd-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.osuccess-cd       { font-size: 52px; font-weight: 900; color: var(--g-mid); line-height: 1.1; }
.osuccess-cd-sub   { font-size: 13px; color: var(--muted); }

.osuccess-wa-btn { padding: 14px 32px; font-size: 15px; width: 100%; text-align: center; margin-top: 4px; }
.osuccess-note   { font-size: 12px; color: var(--muted); margin-top: 10px; }

/* ── Trust Sidebar ── */
.order-trust-card, .order-wa-direct { padding: 24px; margin-bottom: 16px; }

.otrust-head {
  font-size: 14px;
  font-weight: 700;
  color: var(--g-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.otrust-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.otrust-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

.otrust-ico   { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.otrust-desc  { color: var(--muted); font-size: 12px; }

/* ═══════════════════════════════════════════════════════════════════════════
   CHATBOT WIDGET — Tambahkan ke bagian BAWAH public/style.css
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Wrapper ── */
#cb-wrap {
  position: fixed;
  /* WA float ada di bottom-right, chatbot kita taruh sedikit ke kiri */
  bottom: 28px;
  right: 96px; /* geser kiri supaya tidak tumpuk WA button */
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

@media (max-width: 600px) {
  #cb-wrap {
    right: 80px;
    bottom: 20px;
  }
}

/* ── Bubble button ── */
.cb-bubble {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(124,58,237,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  color: #fff;
  font-size: 18px;
  position: relative;
  flex-shrink: 0;
}

.cb-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(124,58,237,0.65);
}

.cb-bubble-active {
  background: linear-gradient(135deg, #5b21b6, #7c3aed) !important;
}

/* Notification badge */
.cb-bubble-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 18px;
  height: 18px;
  background: #ef4444;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0f0f1a;
  animation: cb-bounce 1s ease infinite;
}

@keyframes cb-bounce {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.2); }
}

/* ── Chat window ── */
.cb-window {
  width: 340px;
  max-height: 520px;
  background: #13111f;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cb-window.cb-open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 600px) {
  .cb-window {
    width: calc(100vw - 24px);
    max-height: 75vh;
    position: fixed;
    bottom: 84px;
    right: 12px;
    left: 12px;
  }
  #cb-wrap { right: 12px; }
}

/* ── Header ── */
.cb-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #1e1b2e, #2d1b69);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.cb-header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}

.cb-header-info { flex: 1; min-width: 0; }
.cb-header-name { font-size: 13px; font-weight: 700; color: #fff; }

.cb-header-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.cb-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: cb-pulse 2s ease infinite;
}

@keyframes cb-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.cb-header-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
  transition: color 0.2s;
}
.cb-header-close:hover { color: #fff; }

/* ── Messages area ── */
.cb-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}

.cb-messages::-webkit-scrollbar { width: 4px; }
.cb-messages::-webkit-scrollbar-track { background: transparent; }
.cb-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

/* ── Message bubbles ── */
.cb-msg { display: flex; }
.cb-msg-user { justify-content: flex-end; }
.cb-msg-ai   { justify-content: flex-start; }

.cb-msg-bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.6;
  word-break: break-word;
}

.cb-msg-user .cb-msg-bubble {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.cb-msg-ai .cb-msg-bubble {
  background: rgba(255,255,255,0.07);
  color: #e5e5f0;
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom-left-radius: 4px;
}

/* ── Suggested questions ── */
.cb-suggestions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.cb-suggest {
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12px;
  color: #c4b5fd;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
  font-family: inherit;
}

.cb-suggest:hover {
  background: rgba(124,58,237,0.2);
  border-color: rgba(124,58,237,0.5);
  color: #e9d5ff;
}

/* ── Typing indicator ── */
.cb-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  flex-shrink: 0;
}

.cb-typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(124,58,237,0.7);
  animation: cb-typing 1.2s ease infinite;
}
.cb-typing span:nth-child(2) { animation-delay: 0.2s; }
.cb-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes cb-typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%            { transform: translateY(-6px); opacity: 1; }
}

/* ── Input area ── */
.cb-input-wrap {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  flex-shrink: 0;
}

.cb-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: #e5e5f0;
  font-size: 13px;
  padding: 10px 12px;
  resize: none;
  outline: none;
  font-family: inherit;
  line-height: 1.5;
  min-height: 40px;
  max-height: 100px;
  transition: border-color 0.2s;
}

.cb-input:focus {
  border-color: rgba(124,58,237,0.5);
}

.cb-input::placeholder { color: rgba(255,255,255,0.3); }

.cb-send {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.2s, opacity 0.2s;
  flex-shrink: 0;
}

.cb-send:hover   { transform: scale(1.08); }
.cb-send:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* ── Footer note ── */
.cb-footer-note {
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  text-align: center;
  padding: 4px 12px 8px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CHATBOT + WA WIDGET — Tambahkan ke PALING BAWAH public/style.css
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Sembunyikan WA float button lama — digantikan widget baru ── */
.wa-float { display: none !important; }

/* ── Wrapper ─────────────────────────────────────────────────────────────── */
#cb-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

@media (max-width: 600px) {
  #cb-wrap { right: 16px; bottom: 16px; }
}

/* ── Main bubble ──────────────────────────────────────────────────────────── */
.cb-bubble {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669, #10b981); /* hijau WA ---> ungu AI */
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(16,185,129,0.5);
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
  color: #fff;
  position: relative;
  flex-shrink: 0;
}

.cb-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(16,185,129,0.65);
}

.cb-bubble-active {
  background: linear-gradient(135deg, #7c3aed, #a855f7) !important;
  box-shadow: 0 4px 20px rgba(124,58,237,0.5) !important;
}

.cb-bubble-badge {
  position: absolute;
  top: -3px; right: -3px;
  width: 18px; height: 18px;
  background: #ef4444;
  border-radius: 50%;
  font-size: 10px; font-weight: 700;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #0f0f1a;
  animation: cb-bounce 1.2s ease infinite;
}

@keyframes cb-bounce {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.25); }
}

/* ── Chooser menu (WA vs AI) ─────────────────────────────────────────────── */
.cb-chooser {
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px) scale(0.97);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.cb-chooser-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.cb-choice {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1a1828;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 12px 16px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  min-width: 200px;
  font-family: inherit;
}

.cb-choice:hover {
  transform: translateX(-4px);
  border-color: rgba(255,255,255,0.2);
}

.cb-choice-wa:hover  { background: rgba(16,185,129,0.12); border-color: rgba(16,185,129,0.4); }
.cb-choice-ai:hover  { background: rgba(124,58,237,0.12); border-color: rgba(124,58,237,0.4); }

.cb-choice-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.cb-choice-wa .cb-choice-icon { background: rgba(16,185,129,0.2);  color: #10b981; }
.cb-choice-ai .cb-choice-icon { background: rgba(124,58,237,0.2); color: #a855f7; }

.cb-choice-label { font-size: 13px; font-weight: 700; color: #fff; }
.cb-choice-sub   { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ── Chat window ─────────────────────────────────────────────────────────── */
.cb-window {
  width: 340px;
  max-height: 500px;
  background: #13111f;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cb-window.cb-open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 600px) {
  .cb-window {
    width: calc(100vw - 32px);
    max-height: 72vh;
    position: fixed;
    bottom: 88px;
    right: 16px;
    left: 16px;
  }
}

/* ── Header ─────────────────────────────────────────────────────────────── */
.cb-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #1e1b2e, #2d1b69);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.cb-header-back {
  background: rgba(255,255,255,0.08);
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  font-size: 16px;
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.cb-header-back:hover { background: rgba(255,255,255,0.15); color: #fff; }

.cb-header-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: #fff; font-weight: 700;
  flex-shrink: 0;
}

.cb-header-info { flex: 1; min-width: 0; }
.cb-header-name { font-size: 12px; font-weight: 700; color: #fff; }

.cb-header-status {
  display: flex; align-items: center; gap: 4px;
  font-size: 10px; color: rgba(255,255,255,0.5); margin-top: 1px;
}

.cb-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%; background: #22c55e;
  animation: cb-pulse 2s ease infinite;
}
@keyframes cb-pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.cb-header-close {
  background: none; border: none;
  color: rgba(255,255,255,0.4); cursor: pointer;
  font-size: 14px; padding: 4px;
  transition: color 0.2s; flex-shrink: 0;
}
.cb-header-close:hover { color: #fff; }

/* ── Messages ────────────────────────────────────────────────────────────── */
.cb-messages {
  flex: 1; overflow-y: auto;
  padding: 14px; display: flex;
  flex-direction: column; gap: 8px;
  scroll-behavior: smooth;
}
.cb-messages::-webkit-scrollbar { width: 3px; }
.cb-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

.cb-msg        { display: flex; }
.cb-msg-user   { justify-content: flex-end; }
.cb-msg-ai     { justify-content: flex-start; }

.cb-msg-bubble {
  max-width: 84%; padding: 9px 13px;
  border-radius: 14px;
  font-size: 13px; line-height: 1.6;
  word-break: break-word;
}

.cb-msg-user .cb-msg-bubble {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff; border-bottom-right-radius: 4px;
}

.cb-msg-ai .cb-msg-bubble {
  background: rgba(255,255,255,0.07); color: #e5e5f0;
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom-left-radius: 4px;
}

/* ── Suggestions ─────────────────────────────────────────────────────────── */
.cb-suggestions { display: flex; flex-direction: column; gap: 5px; margin-top: 4px; }

.cb-suggest {
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 9px; padding: 7px 11px;
  font-size: 12px; color: #c4b5fd;
  cursor: pointer; text-align: left;
  transition: all 0.2s; font-family: inherit;
}
.cb-suggest:hover {
  background: rgba(124,58,237,0.2);
  border-color: rgba(124,58,237,0.5); color: #e9d5ff;
}

/* ── Typing indicator ────────────────────────────────────────────────────── */
.cb-typing {
  display: flex; align-items: center; gap: 4px;
  padding: 6px 14px; flex-shrink: 0;
}
.cb-typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(124,58,237,0.7);
  animation: cb-typing 1.2s ease infinite;
}
.cb-typing span:nth-child(2) { animation-delay: 0.2s; }
.cb-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes cb-typing {
  0%,60%,100% { transform: translateY(0); opacity: 0.4; }
  30%          { transform: translateY(-5px); opacity: 1; }
}

/* ── Input ───────────────────────────────────────────────────────────────── */
.cb-input-wrap {
  display: flex; align-items: flex-end; gap: 7px;
  padding: 9px 11px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  flex-shrink: 0;
}

.cb-input {
  flex: 1; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 11px; color: #e5e5f0;
  font-size: 13px; padding: 9px 11px;
  resize: none; outline: none; font-family: inherit;
  line-height: 1.5; min-height: 38px; max-height: 100px;
  transition: border-color 0.2s;
}
.cb-input:focus { border-color: rgba(124,58,237,0.5); }
.cb-input::placeholder { color: rgba(255,255,255,0.3); }

.cb-send {
  width: 36px; height: 36px; border-radius: 9px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: transform 0.2s, opacity 0.2s; flex-shrink: 0;
}
.cb-send:hover    { transform: scale(1.08); }
.cb-send:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.cb-footer-note {
  font-size: 10px; color: rgba(255,255,255,0.18);
  text-align: center; padding: 3px 12px 8px; flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   FOOTER MAP — tambahkan ke END of public/style.css
══════════════════════════════════════════════════════ */

.ft-map-section {
  padding: 48px 0 0;
  border-top: 1px solid rgba(201, 168, 76, 0.09);
}
.ft-map-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.ft-map-heading {
  flex: 1;
  min-width: 220px;
}
.ft-map-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 700;
  color: #f0e6c8;
  line-height: 1.2;
  margin: 0 0 8px;
}
.ft-map-sub {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.65;
  max-width: 340px;
  margin: 0;
}
.ft-map-cards {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ft-map-ic {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.14);
  border-radius: 12px;
  padding: 14px 18px;
  min-width: 120px;
}
.ft-map-ic-icon {
  font-size: 16px;
  margin-bottom: 5px;
}
.ft-map-ic-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 3px;
}
.ft-map-ic-val {
  font-size: 13px;
  color: var(--g-light);
  font-weight: 600;
}

/* ── Map container ── */
.ft-map-wrap {
  position: relative;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  height: 340px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: none;
}
#ft-map {
  height: 100%;
  width: 100%;
}

/* ── Google Maps button ── */
.ft-map-gmaps-btn {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: linear-gradient(135deg, #C9A84C, #e8c96b);
  color: #07010e;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 100px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
  transition: all 0.3s ease;
}
.ft-map-gmaps-btn:hover {
  transform: translateX(-50%) scale(1.04);
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.52);
}

/* ── Leaflet popup styling ── */
.leaflet-popup-content-wrapper {
  background: #0e0618 !important;
  border: 1px solid rgba(201, 168, 76, 0.25) !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6) !important;
  padding: 0 !important;
}
.leaflet-popup-content {
  margin: 0 !important;
  padding: 0 !important;
}
.leaflet-popup-tip {
  background: #0e0618 !important;
}
.leaflet-popup-close-button {
  color: rgba(201, 168, 76, 0.6) !important;
  font-size: 18px !important;
  top: 8px !important;
  right: 10px !important;
}
.ft-map-popup {
  padding: 16px 20px;
  min-width: 200px;
}
.ft-map-popup-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-weight: 700;
  color: #C9A84C;
  margin-bottom: 3px;
}
.ft-map-popup-addr {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
  line-height: 1.5;
}
.ft-map-popup-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 5px;
}
.ft-map-popup-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}
.ft-map-popup-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 8px 14px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 8px;
  font-size: 12px;
  color: #7af7a8;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.ft-map-popup-wa:hover {
  background: rgba(37, 211, 102, 0.2);
}

/* ── Marker pulse animation ── */
@keyframes ft-map-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%       { transform: scale(1.6); opacity: 0; }
}
.ft-map-pulse {
  animation: ft-map-pulse 2.2s ease-in-out infinite;
  transform-origin: center;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .ft-map-top {
    flex-direction: column;
    gap: 20px;
  }
  .ft-map-title {
    font-size: 22px;
  }
  .ft-map-cards {
    width: 100%;
  }
  .ft-map-ic {
    flex: 1;
    min-width: 90px;
  }
  .ft-map-wrap {
    height: 260px;
  }
}
/* ══════════════════════════════════════════════════════════════════
   SECTION PROOF — Rank #1 + Dashboard Demo + Garansi
   Tambahkan ke END of public/style.css
═══════════════════════════════════════════════════════════════════ */

/* ── RANK #1 PROOF ─────────────────────────────────────────────── */
.proof-sec { background: linear-gradient(180deg, transparent, rgba(26,5,53,.3), transparent); }

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 768px) {
  .proof-grid { grid-template-columns: 1fr; }
}

.proof-platform-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-bottom: 10px;
}

/* Search box */
.proof-search-box {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  overflow: hidden;
}
.proof-search-bar {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  gap: 10px;
}
.proof-google-logo {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.proof-search-input {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 7px 14px;
  font-size: 12px;
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  min-height: 34px;
}
.proof-cursor {
  display: inline-block;
  width: 1px;
  height: 13px;
  background: #4285f4;
  margin-left: 2px;
  animation: proof-blink .8s step-end infinite;
  flex-shrink: 0;
}
@keyframes proof-blink { 0%,100%{opacity:1} 50%{opacity:0} }

.proof-results { padding: 12px; }
.proof-result-count {
  font-size: 9px;
  color: rgba(255,255,255,.2);
  padding: 2px 8px 10px;
}
.proof-result {
  padding: 10px 8px;
  border-radius: 10px;
  margin-bottom: 4px;
  border: 1px solid transparent;
  transition: all .2s;
  cursor: pointer;
}
.proof-result:hover { background: rgba(255,255,255,.03); }
.proof-result-top {
  background: rgba(201,168,76,.06);
  border-color: rgba(201,168,76,.2) !important;
}
.proof-result-url {
  font-size: 10px;
  color: #4ade80;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.proof-result-url-gold { color: #d9b64e; }
.proof-rank-badge {
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 8px;
  font-weight: 800;
  color: #d9b64e;
  letter-spacing: .5px;
}
.proof-result-title {
  font-size: 12px;
  font-weight: 600;
  color: #8ab4f8;
  margin-bottom: 3px;
}
.proof-result-title-white { color: #fff; }
.proof-result-desc {
  font-size: 10px;
  color: rgba(255,255,255,.35);
  line-height: 1.45;
}

/* Verify button */
.proof-verify-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  padding: 9px 18px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: #d9b64e;
  text-decoration: none;
  transition: all .2s;
}
.proof-verify-btn:hover {
  background: rgba(201,168,76,.16);
  border-color: #d9b64e;
}

/* GPT mockup */
.proof-right { display: flex; flex-direction: column; }
.proof-gpt-box {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  overflow: hidden;
}
.proof-gpt-header {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  gap: 8px;
}
.proof-gpt-logo {
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,.9);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.proof-gpt-logo::after {
  content: '';
  width: 12px;
  height: 12px;
  background: #10a37f;
  border-radius: 2px;
  display: block;
}
.proof-gpt-title { font-size: 11px; color: rgba(255,255,255,.5); font-weight: 700; }
.proof-gpt-body { padding: 12px 14px; }
.proof-gpt-q {
  background: rgba(255,255,255,.05);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 11px;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
  font-style: italic;
}
.proof-gpt-a { font-size: 11px; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 8px; }
.proof-gpt-highlight {
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 11px;
  color: #d9b64e;
  font-weight: 600;
  line-height: 1.5;
}

/* Info card */
.proof-info-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: border-color .2s;
}
.proof-info-card:hover { border-color: rgba(201,168,76,.25); }
.proof-info-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.proof-info-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.proof-info-desc { font-size: 11px; color: rgba(255,255,255,.4); line-height: 1.55; }

/* ── DASHBOARD DEMO ─────────────────────────────────────────────── */
.dash-demo-sec { padding-top: 0; }

.dash-demo-wrap {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  overflow: hidden;
}
.dash-demo-topbar {
  background: rgba(255,255,255,.04);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.dash-demo-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-demo-url { font-size: 11px; color: rgba(255,255,255,.3); margin-left: 4px; }

.dash-demo-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 360px;
}
@media (max-width: 600px) { .dash-demo-inner { grid-template-columns: 1fr; } }

/* sidebar */
.dash-demo-sidebar {
  background: rgba(255,255,255,.02);
  border-right: 1px solid rgba(255,255,255,.06);
  padding: 16px 0;
}
.dds-brand {
  padding: 0 16px 14px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  margin-bottom: 14px;
}
.dds-brand-name { font-size: 13px; font-weight: 700; color: #d9b64e; }
.dds-brand-sub  { font-size: 9px; color: rgba(255,255,255,.3); margin-top: 2px; }
.dds-group { padding: 0 12px; margin-bottom: 12px; }
.dds-group-label {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  margin-bottom: 6px;
  padding: 0 4px;
}
.dds-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 8px;
  font-size: 11px;
  color: rgba(255,255,255,.45);
  cursor: pointer;
  transition: all .2s;
  position: relative;
}
.dds-item:hover { background: rgba(255,255,255,.04); color: #fff; }
.dds-item-active { background: rgba(201,168,76,.08) !important; color: #d9b64e !important; }
.dds-badge {
  margin-left: auto;
  background: #ef4444;
  border-radius: 100px;
  padding: 1px 6px;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  animation: dds-pulse 2s ease infinite;
}
@keyframes dds-pulse { 0%,100%{opacity:1} 50%{opacity:.6} }

/* main */
.dash-demo-main { padding: 20px; }
.ddm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.ddm-title { font-size: 15px; font-weight: 700; color: #fff; }
.ddm-btn {
  padding: 6px 14px;
  background: linear-gradient(135deg, #c8a748, #ffe060);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #1a0900;
  border: none;
  cursor: pointer;
}
.ddm-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.ddm-stat {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 12px;
}
.ddm-stat-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: #d9b64e;
  line-height: 1;
}
.ddm-stat-l { font-size: 10px; color: rgba(255,255,255,.35); margin-top: 3px; }
.ddm-table {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  overflow: hidden;
}
.ddm-table-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 80px;
  padding: 8px 12px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.ddm-th {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
}
.ddm-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 80px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  align-items: center;
  transition: background .2s;
}
.ddm-row:hover { background: rgba(255,255,255,.02); }
.ddm-row:last-child { border-bottom: none; }
.ddm-row-new { animation: ddm-slide-in .4s ease forwards; }
@keyframes ddm-slide-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ddm-name { font-size: 11px; font-weight: 600; color: #fff; }
.ddm-wa   { font-size: 10px; color: rgba(255,255,255,.3); }
.ddm-paket { font-size: 10px; color: rgba(255,255,255,.5); }
.ddm-status {
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  display: inline-block;
}
.ddm-baru   { background: rgba(251,191,36,.12); color: #fbbf24; border: 1px solid rgba(251,191,36,.25); }
.ddm-proses { background: rgba(96,165,250,.12);  color: #60a5fa; border: 1px solid rgba(96,165,250,.25); }
.ddm-deal   { background: rgba(74,222,128,.12);  color: #4ade80; border: 1px solid rgba(74,222,128,.25); }

/* ── GARANSI ────────────────────────────────────────────────────── */
.garansi-sec { padding-top: 0; }

.garansi-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 700px) { .garansi-strip { grid-template-columns: 1fr; } }

.garansi-item {
  background: #07010e;
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.garansi-item:hover { background: rgba(201,168,76,.04); }

.garansi-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 900;
  background: var(--gg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .1;
  position: absolute;
  top: 12px;
  right: 18px;
  line-height: 1;
  pointer-events: none;
}
.garansi-ico {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.garansi-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.garansi-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.garansi-pill {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 12px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 100px;
  font-size: 10px;
  color: var(--gold);
  font-weight: 700;
}
